]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1802 from annando/1508-valid-username
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 10 Aug 2015 06:49:56 +0000 (08:49 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 10 Aug 2015 06:49:56 +0000 (08:49 +0200)
On OStatus and Diaspora the usernames mustn't contain "-"

I don't like it, but if GNU Social and Diaspora have this limitation...

39 files changed:
doc/Accesskeys.md [new file with mode: 0644]
doc/Home.md
doc/de/Home.md
include/bbcode.php
include/conversation.php
include/group.php
include/identity.php
include/plugin.php
include/text.php
mod/contacts.php
mod/display.php
mod/message.php
mod/network.php
mod/notifications.php
mod/profile.php
mod/settings.php
view/de/messages.po
view/de/strings.php
view/fr/messages.po
view/fr/strings.php
view/global.css
view/templates/acl_selector.tpl
view/templates/common_tabs.tpl
view/templates/generic_links_widget.tpl
view/templates/group_side.tpl
view/templates/message_side.tpl
view/templates/nav.tpl
view/templates/nets.tpl
view/templates/saved_searches_aside.tpl
view/theme/duepuntozero/templates/nav.tpl
view/theme/quattro/templates/generic_links_widget.tpl
view/theme/quattro/templates/message_side.tpl
view/theme/quattro/templates/nav.tpl
view/theme/vier/style.css
view/theme/vier/templates/nav.tpl
view/theme/vier/templates/search_item.tpl
view/theme/vier/templates/threaded_conversation.tpl
view/theme/vier/templates/wall_item_tag.tpl
view/theme/vier/templates/wall_thread.tpl

diff --git a/doc/Accesskeys.md b/doc/Accesskeys.md
new file mode 100644 (file)
index 0000000..0c00c25
--- /dev/null
@@ -0,0 +1,70 @@
+Accesskeys in Friendica
+=======================
+
+General
+-------
+* p: profile
+* n: network
+* c: community
+* s: search
+* a: admin
+* f: notifications
+* u: user menu (in themes "vier" and "quattro")
+
+/profile
+--------
+* m: Status Messages and Posts
+* r: Profile Details
+* h: Photo Albums
+* v: Videos
+* e: Events and Calendar
+* t: Personal Notes
+
+/contacts (contact list)
+---------
+* g: Suggestions
+* l: Show all Contacts
+* o: Only show unblocked contacts
+* b: Only show blocked contacts
+* i: Only show ignored contacts
+* y: Only show archived contacts
+* h: Only show hidden contacts
+
+/contacts (single contact view)
+-------------------------------
+* b: Toggle Blocked status
+* i: Toggle Ignored status
+* v: Toggle Archive status
+* r: Repair
+
+/message
+--------
+* m: New message
+
+/network
+--------
+* e: Sort by Comment Date
+* t: Sort by Post Date
+* r: Conversation (Posts that mention or involve you)
+* w: New posts
+* b: Bookmarks
+* m: Favourite Posts
+
+/notifications
+--------------
+* y: System
+* w: Network
+* r: Personal
+* h: Home
+* i: Introductions
+
+/settings
+---------
+* o: Account
+* t: Additional features
+* w: Social Networks
+* l: Plugins
+* d: Delegations
+* b: Connected apps
+* e: Export personal data
+* r: Remove account
index 0685236286b90d47fe5f7c73bad8197dabb50349..1c293e4a51ce504a5e3d05aee98d31e061683548 100644 (file)
@@ -10,6 +10,7 @@ Friendica Documentation and Resources
         * [BBCode tag reference](help/BBCode)
        * [Comment, sort and delete posts](help/Text_comment)
        * [Profiles](help/Profiles)
+       * [Accesskey reference](help/Accesskeys
 * You and other users
        * [Connectors](help/Connectors)
        * [Making Friends](help/Making-Friends)
index 0fd5634cc3f09b859997638472fbf01f7b215c16..bc022a1a27ae273127a7d86e52ce60669e6ca4a1 100644 (file)
@@ -10,6 +10,7 @@ Friendica - Dokumentation und Ressourcen
        * [Referenz der BBCode Elemente](help/BBCode)
        * [Beiträge kommentieren, einordnen und löschen](help/Text_comment)
        * [Profile](help/Profiles)
+       * [Referenz der Accesskeys](help/Accesskeys)
 * Du und andere Nutzer
        * [Konnektoren (Connectors)](help/Connectors)
        * [Freunde finden](help/Making-Friends)
index e872d859c53bec8e599715e775ccea8d34d1d8a3..8102fc3f71e5de0ef5251b034305cddb04ee4f04 100644 (file)
@@ -1207,7 +1207,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
 
        // fix any escaped ampersands that may have been converted into links
        $Text = preg_replace("/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
-       $Text = preg_replace("/\<([^>]*?)(src|href)=\"(?!http|ftp|mailto|cid)(.*?)\>/ism",'<$1$2="">',$Text);
+       $Text = preg_replace("/\<([^>]*?)(src|href)=\"(?!http|ftp|mailto|gopher|cid)(.*?)\>/ism",'<$1$2="">',$Text);
 
        if($saved_image)
                $Text = bb_replace_images($Text, $saved_image);
index 4aae611804cb7f0ebdf99856554293fc3f934c05..5a84ca42a635be89c7c0752a34d1612dd3c07ca9 100644 (file)
@@ -892,9 +892,9 @@ function item_photo_menu($item){
        foreach($menu as $k=>$v){
                if(strpos($v,'javascript:') === 0) {
                        $v = substr($v,11);
-                       $o .= "<li><a href=\"#\" onclick=\"$v\">$k</a></li>\n";
+                       $o .= "<li role=\"menuitem\"><a onclick=\"$v\">$k</a></li>\n";
                }
-               elseif ($v!="") $o .= "<li><a href=\"$v\">$k</a></li>\n";
+               elseif ($v!="") $o .= "<li role=\"menuitem\"><a href=\"$v\">$k</a></li>\n";
        }
        return $o;
 }}
index bbfac7ac1d6819e77d2b592e4b96102e673a2fbd..b7e1963bf37901cb2d6d77a3ca6d8ae224752c6b 100644 (file)
@@ -263,8 +263,8 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0
                        );
                }
        }
-       
-       
+
+
        $tpl = get_markup_template("group_side.tpl");
        $o = replace_macros($tpl, array(
                '$title'                => t('Groups'),
@@ -276,8 +276,8 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0
                '$groups'               => $groups,
                '$add'                  => t('add'),
        ));
-               
-       
+
+
        return $o;
 }
 
index b584896d36c5474372245231cb58df6a707c0260..9f3e1dda06b83178a6a9a1c46396a672f1255fb9 100644 (file)
@@ -634,6 +634,7 @@ if(! function_exists('profile_tabs')){
                                'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
                                'title' => t('Status Messages and Posts'),
                                'id' => 'status-tab',
+                               'accesskey' => 'm',
                        ),
                        array(
                                'label' => t('Profile'),
@@ -641,6 +642,7 @@ if(! function_exists('profile_tabs')){
                                'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
                                'title' => t('Profile Details'),
                                'id' => 'profile-tab',
+                               'accesskey' => 'r',
                        ),
                        array(
                                'label' => t('Photos'),
@@ -648,6 +650,7 @@ if(! function_exists('profile_tabs')){
                                'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
                                'title' => t('Photo Albums'),
                                'id' => 'photo-tab',
+                               'accesskey' => 'h',
                        ),
                        array(
                                'label' => t('Videos'),
@@ -655,6 +658,7 @@ if(! function_exists('profile_tabs')){
                                'sel'   => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''),
                                'title' => t('Videos'),
                                'id' => 'video-tab',
+                               'accesskey' => 'v',
                        ),
                );
 
@@ -665,6 +669,7 @@ if(! function_exists('profile_tabs')){
                                'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
                                'title' => t('Events and Calendar'),
                                'id' => 'events-tab',
+                               'accesskey' => 'e',
                        );
                        $tabs[] = array(
                                'label' => t('Personal Notes'),
@@ -672,6 +677,7 @@ if(! function_exists('profile_tabs')){
                                'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
                                'title' => t('Only You Can See This'),
                                'id' => 'notes-tab',
+                               'accesskey' => 't',
                        );
                }
 
index f4861536c10726e6ff8b857d73872e49b61c4925..9dc3ebd407dfe16b6a81121b0ba8e5c45c781100 100644 (file)
@@ -162,6 +162,8 @@ function call_hooks($name, &$data = null) {
 
        $a = get_app();
 
+       #logger($name, LOGGER_ALL);
+
        if((is_array($a->hooks)) && (array_key_exists($name,$a->hooks))) {
                foreach($a->hooks[$name] as $hook) {
                        // Don't run a theme's hook if the user isn't using the theme
@@ -171,6 +173,7 @@ function call_hooks($name, &$data = null) {
                        @include_once($hook[0]);
                        if(function_exists($hook[1])) {
                                $func = $hook[1];
+                               logger($name." => ".$hook[0].":".$func."()", LOGGER_DEBUG);
                                $func($a,$data);
                        }
                        else {
@@ -386,11 +389,11 @@ function install_theme($theme) {
 
 
 // check service_class restrictions. If there are no service_classes defined, everything is allowed.
-// if $usage is supplied, we check against a maximum count and return true if the current usage is 
+// if $usage is supplied, we check against a maximum count and return true if the current usage is
 // less than the subscriber plan allows. Otherwise we return boolean true or false if the property
-// is allowed (or not) in this subscriber plan. An unset property for this service plan means 
-// the property is allowed, so it is only necessary to provide negative properties for each plan, 
-// or what the subscriber is not allowed to do. 
+// is allowed (or not) in this subscriber plan. An unset property for this service plan means
+// the property is allowed, so it is only necessary to provide negative properties for each plan,
+// or what the subscriber is not allowed to do.
 
 
 function service_class_allows($uid,$property,$usage = false) {
index 829e37c2ce97f8088bbd1e2a480454ff681f7c8d..510db01bf1030a0f7ba0bf3d5ff864698dd9f2cf 100644 (file)
@@ -1676,11 +1676,14 @@ function get_plink($item) {
                                //'href' => $a->get_baseurl()."/display/".$a->user['nickname']."/".$item['id'],
                                'href' => $a->get_baseurl()."/display/".$item['guid'],
                                'orig' => $a->get_baseurl()."/display/".$item['guid'],
-                               'title' => t('link to source'),
+                               'title' => t('local thread'),
+                               'orig_title' => t('local thread'),
                        );
 
-               if (x($item,'plink'))
+               if (x($item,'plink')) {
                        $ret["href"] = $item['plink'];
+                       $ret["title"] = t('link to source');
+               }
 
        } elseif (x($item,'plink') && ($item['private'] != 1))
                $ret = array(
index 63dffab67f047a0bc4e968485fbcbe87c99a4407..826630d30565fb24de4404f8db3a3424db1b3b79 100644 (file)
@@ -522,12 +522,14 @@ function contacts_content(&$a) {
                                'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block',
                                'sel'   => '',
                                'title' => t('Toggle Blocked status'),
+                               'accesskey' => 'b',
                        ),
                        array(
                                'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
                                'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore',
                                'sel'   => '',
                                'title' => t('Toggle Ignored status'),
+                               'accesskey' => 'i',
                        ),
 
                        array(
@@ -535,12 +537,14 @@ function contacts_content(&$a) {
                                'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive',
                                'sel'   => '',
                                'title' => t('Toggle Archive status'),
+                               'accesskey' => 'v',
                        ),
                        array(
                                'label' => t('Repair'),
                                'url'   => $a->get_baseurl(true) . '/crepair/' . $contact_id,
                                'sel'   => '',
                                'title' => t('Advanced Contact Settings'),
+                               'accesskey' => 'r',
                        )
                );
                $tab_tpl = get_markup_template('common_tabs.tpl');
@@ -652,21 +656,24 @@ function contacts_content(&$a) {
        $tabs = array(
                array(
                        'label' => t('Suggestions'),
-                       'url'   => $a->get_baseurl(true) . '/suggest', 
+                       'url'   => $a->get_baseurl(true) . '/suggest',
                        'sel'   => '',
                        'title' => t('Suggest potential friends'),
+                       'accesskey' => 'g',
                ),
                array(
                        'label' => t('All Contacts'),
-                       'url'   => $a->get_baseurl(true) . '/contacts/all', 
+                       'url'   => $a->get_baseurl(true) . '/contacts/all',
                        'sel'   => ($all) ? 'active' : '',
                        'title' => t('Show all contacts'),
+                       'accesskey' => 'l',
                ),
                array(
                        'label' => t('Unblocked'),
                        'url'   => $a->get_baseurl(true) . '/contacts',
                        'sel'   => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
                        'title' => t('Only show unblocked contacts'),
+                       'accesskey' => 'o',
                ),
 
                array(
@@ -674,6 +681,7 @@ function contacts_content(&$a) {
                        'url'   => $a->get_baseurl(true) . '/contacts/blocked',
                        'sel'   => ($blocked) ? 'active' : '',
                        'title' => t('Only show blocked contacts'),
+                       'accesskey' => 'b',
                ),
 
                array(
@@ -681,6 +689,7 @@ function contacts_content(&$a) {
                        'url'   => $a->get_baseurl(true) . '/contacts/ignored',
                        'sel'   => ($ignored) ? 'active' : '',
                        'title' => t('Only show ignored contacts'),
+                       'accesskey' => 'i',
                ),
 
                array(
@@ -688,6 +697,7 @@ function contacts_content(&$a) {
                        'url'   => $a->get_baseurl(true) . '/contacts/archived',
                        'sel'   => ($archived) ? 'active' : '',
                        'title' => t('Only show archived contacts'),
+                       'accesskey' => 'y',
                ),
 
                array(
@@ -695,6 +705,7 @@ function contacts_content(&$a) {
                        'url'   => $a->get_baseurl(true) . '/contacts/hidden',
                        'sel'   => ($hidden) ? 'active' : '',
                        'title' => t('Only show hidden contacts'),
+                       'accesskey' => 'h',
                ),
 
        );
index 95f248bfe5a706d3577f66384e435beea6d32341..be5dd7cae38a2e56ac7a2db29812f6669cdb61f1 100644 (file)
@@ -18,7 +18,7 @@ function display_init(&$a) {
                if (local_user()) {
                        $r = q("SELECT `id`, `parent`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid` FROM `item`
                                WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
-                                       AND `guid` = '%s' AND `uid` = %d", $a->argv[1], local_user());
+                                       AND `guid` = '%s' AND `uid` = %d", dbesc($a->argv[1]), local_user());
                        if (count($r)) {
                                $nick = $a->user["nickname"];
                                $itemuid = local_user();
@@ -34,7 +34,7 @@ function display_init(&$a) {
                                        AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
                                        AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
                                        AND `item`.`private` = 0 AND NOT `user`.`hidewall`
-                                       AND `item`.`guid` = '%s'", $a->argv[1]);
+                                       AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
                                //      AND `item`.`private` = 0 AND `item`.`wall` = 1
                        if (count($r)) {
                                $nick = $r[0]["nickname"];
@@ -50,7 +50,7 @@ function display_init(&$a) {
                                        AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
                                        AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
                                        AND `item`.`private` = 0 AND `item`.`uid` = 0
-                                       AND `item`.`guid` = '%s'", $a->argv[1]);
+                                       AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
                                //      AND `item`.`private` = 0 AND `item`.`wall` = 1
                }
                if (count($r)) {
@@ -255,7 +255,7 @@ function display_content(&$a, $update = 0) {
                        if (local_user()) {
                                $r = q("SELECT `id` FROM `item`
                                        WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
-                                               AND `guid` = '%s' AND `uid` = %d", $a->argv[1], local_user());
+                                               AND `guid` = '%s' AND `uid` = %d", dbesc($a->argv[1]), local_user());
                                if (count($r)) {
                                        $item_id = $r[0]["id"];
                                        $nick = $a->user["nickname"];
@@ -268,7 +268,7 @@ function display_content(&$a, $update = 0) {
                                                AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
                                                AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
                                                AND `item`.`private` = 0  AND NOT `user`.`hidewall`
-                                               AND `item`.`guid` = '%s'", $a->argv[1]);
+                                               AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
                                        //      AND `item`.`private` = 0 AND `item`.`wall` = 1
                                if (count($r)) {
                                        $item_id = $r[0]["id"];
@@ -281,7 +281,7 @@ function display_content(&$a, $update = 0) {
                                                AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
                                                AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
                                                AND `item`.`private` = 0  AND `item`.`uid` = 0
-                                               AND `item`.`guid` = '%s'", $a->argv[1]);
+                                               AND `item`.`guid` = '%s'", dbesc($a->argv[1]));
                                        //      AND `item`.`private` = 0 AND `item`.`wall` = 1
                                if (count($r)) {
                                        $item_id = $r[0]["id"];
@@ -412,7 +412,7 @@ function display_content(&$a, $update = 0) {
 
                        $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,  `item`.`network` AS `item_network`,
                                `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
-                               `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
+                               `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
                                `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
                                FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                                AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
index 178d99bba5fb0383d7958bf712f95283152a2fc6..1331ce7fb5f36167219d6a12aa5b051dcbcb9675 100644 (file)
@@ -9,8 +9,9 @@ function message_init(&$a) {
                'label' => t('New Message'),
                'url' => $a->get_baseurl(true) . '/message/new',
                'sel'=> ($a->argv[1] == 'new'),
+               'accesskey' => 'm',
        );
-       
+
        $tpl = get_markup_template('message_side.tpl');
        $a->page['aside'] = replace_macros($tpl, array(
                '$tabs'=>$tabs,
@@ -29,7 +30,7 @@ function message_init(&$a) {
                '$baseurl' => $a->get_baseurl(true),
                '$base' => $base
        ));
-       
+
 }
 
 function message_post(&$a) {
index 5562218701e7a4555d8d611dd4b9febd64501197..56c0eeb95376a5ca00b8c70f79fc2fa743512b02 100644 (file)
@@ -359,12 +359,14 @@ function network_content(&$a, $update = 0) {
                        'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
                        'sel'=>$all_active,
                        'title'=> t('Sort by Comment Date'),
+                       'accesskey' => "e",
                ),
                array(
                        'label' => t('Posted Order'),
                        'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
                        'sel'=>$postord_active,
                        'title' => t('Sort by Post Date'),
+                       'accesskey' => "t",
                ),
        );
 
@@ -374,6 +376,7 @@ function network_content(&$a, $update = 0) {
                        'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
                        'sel' => $conv_active,
                        'title' => t('Posts that mention or involve you'),
+                       'accesskey' => "r",
                );
        }
 
@@ -383,6 +386,7 @@ function network_content(&$a, $update = 0) {
                        'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
                        'sel' => $new_active,
                        'title' => t('Activity Stream - by date'),
+                       'accesskey' => "w",
                );
        }
 
@@ -392,6 +396,7 @@ function network_content(&$a, $update = 0) {
                        'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
                        'sel'=>$bookmarked_active,
                        'title'=> t('Interesting Links'),
+                       'accesskey' => "b",
                );
        }
 
@@ -401,6 +406,7 @@ function network_content(&$a, $update = 0) {
                        'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
                        'sel'=>$starred_active,
                        'title' => t('Favourite Posts'),
+                       'accesskey' => "m",
                );
        }
 
index 2ecc2621eb5818f89059d4c491ee1cf2db9b4596..09666d08c2e5ace79f952fe208173392a947f136 100644 (file)
@@ -78,26 +78,31 @@ function notifications_content(&$a) {
                        'label' => t('System'),
                        'url'=>$a->get_baseurl(true) . '/notifications/system',
                        'sel'=> (($a->argv[1] == 'system') ? 'active' : ''),
+                       'accesskey' => 'y',
                ),
                array(
                        'label' => t('Network'),
                        'url'=>$a->get_baseurl(true) . '/notifications/network',
                        'sel'=> (($a->argv[1] == 'network') ? 'active' : ''),
+                       'accesskey' => 'w',
                ),
                array(
                        'label' => t('Personal'),
                        'url'=>$a->get_baseurl(true) . '/notifications/personal',
                        'sel'=> (($a->argv[1] == 'personal') ? 'active' : ''),
+                       'accesskey' => 'r',
                ),
                array(
                        'label' => t('Home'),
                        'url' => $a->get_baseurl(true) . '/notifications/home',
                        'sel'=> (($a->argv[1] == 'home') ? 'active' : ''),
+                       'accesskey' => 'h',
                ),
                array(
                        'label' => t('Introductions'),
                        'url' => $a->get_baseurl(true) . '/notifications/intros',
                        'sel'=> (($a->argv[1] == 'intros') ? 'active' : ''),
+                       'accesskey' => 'i',
                ),
                /*array(
                        'label' => t('Messages'),
index 94e3c0a37f0b4460a3cad33a4ef78f7b32229c19..608971d08d38dd1dce47516b4d1ca2ae5dbd6d88 100644 (file)
@@ -181,7 +181,7 @@ function profile_content(&$a, $update = 0) {
                $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
                $commvisitor = (($commpage && $remote_contact == true) ? true : false);
 
-               $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true); 
+               $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
                $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
 
                if(can_write_wall($a,$a->profile['profile_uid'])) {
@@ -191,8 +191,8 @@ function profile_content(&$a, $update = 0) {
                                'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
                                'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
                                'nickname' => $a->profile['nickname'],
-                               'lockstate' => (((is_array($a->user) && ((strlen($a->user['allow_cid'])) || 
-                                               (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || 
+                               'lockstate' => (((is_array($a->user) && ((strlen($a->user['allow_cid'])) ||
+                                               (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) ||
                                                (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
                                'acl' => (($is_owner) ? populate_acl($a->user, true) : ''),
                                'bang' => '',
@@ -302,9 +302,9 @@ function profile_content(&$a, $update = 0) {
                foreach($r as $rr)
                        $parents_arr[] = $rr['item_id'];
                $parents_str = implode(', ', $parents_arr);
+
                $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
-                       `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, 
+                       `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`,
                        `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
                        `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
                        FROM `item`, `contact`
index e4ef30a6138cefc7858e1d46c8eae71286e2ff04..dba12fa879678a132fad6b69dfec921ad39bcb06 100644 (file)
@@ -41,47 +41,56 @@ function settings_init(&$a) {
                        'label' => t('Account'),
                        'url'   => $a->get_baseurl(true).'/settings',
                        'selected'      =>  (($a->argc == 1) && ($a->argv[0] === 'settings')?'active':''),
+                       'accesskey' => 'o',
                ),
                array(
                        'label' => t('Additional features'),
                        'url'   => $a->get_baseurl(true).'/settings/features',
                        'selected'      => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''),
+                       'accesskey' => 't',
                ),
                array(
                        'label' => t('Display'),
                        'url'   => $a->get_baseurl(true).'/settings/display',
                        'selected'      => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
+                       'accesskey' => 'i',
                ),
 
                array(
                        'label' => t('Social Networks'),
                        'url'   => $a->get_baseurl(true).'/settings/connectors',
                        'selected'      => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
+                       'accesskey' => 'w',
                ),
                array(
                        'label' => t('Plugins'),
                        'url'   => $a->get_baseurl(true).'/settings/addon',
                        'selected'      => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
+                       'accesskey' => 'l',
                ),
                array(
                        'label' => t('Delegations'),
                        'url'   => $a->get_baseurl(true).'/delegate',
                        'selected'      => (($a->argc == 1) && ($a->argv[0] === 'delegate')?'active':''),
+                       'accesskey' => 'd',
                ),
                array(
                        'label' => t('Connected apps'),
                        'url' => $a->get_baseurl(true) . '/settings/oauth',
                        'selected' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
+                       'accesskey' => 'b',
                ),
                array(
                        'label' => t('Export personal data'),
                        'url' => $a->get_baseurl(true) . '/uexport',
                        'selected' => (($a->argc == 1) && ($a->argv[0] === 'uexport')?'active':''),
+                       'accesskey' => 'e',
                ),
                array(
                        'label' => t('Remove account'),
                        'url' => $a->get_baseurl(true) . '/removeme',
                        'selected' => (($a->argc == 1) && ($a->argv[0] === 'removeme')?'active':''),
+                       'accesskey' => 'r',
                )
        );
 
index c61ab829e290fcacb8cf9c6d5e63146d61d19cc3..bd880d61c56267cb682fcc76962e380515186b1d 100644 (file)
@@ -30,1614 +30,1560 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-08 13:18+0200\n"
-"PO-Revision-Date: 2015-07-13 06:10+0000\n"
+"POT-Creation-Date: 2015-08-02 13:56+0200\n"
+"PO-Revision-Date: 2015-08-04 06:04+0000\n"
 "Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
-"Language-Team: German (http://www.transifex.com/p/friendica/language/de/)\n"
+"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: object/Item.php:95
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: mod/contacts.php:114
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet"
 
-#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: mod/contacts.php:145 mod/contacts.php:340
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: object/Item.php:121 mod/content.php:730 mod/settings.php:683
-msgid "Edit"
-msgstr "Bearbeiten"
+#: mod/contacts.php:159
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: object/Item.php:130 mod/content.php:439 mod/content.php:742
-#: mod/photos.php:1672 include/conversation.php:612
-msgid "Select"
-msgstr "Auswählen"
+#: mod/contacts.php:192
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760
-#: mod/content.php:440 mod/content.php:743 mod/group.php:171
-#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613
-msgid "Delete"
-msgstr "Löschen"
+#: mod/contacts.php:194 mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: object/Item.php:134 mod/content.php:765
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508
+#: 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/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186
+#: 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:120
+#: mod/nogroup.php:25 mod/network.php:4 mod/allfriends.php:9
+#: mod/events.php:164 mod/wallmessage.php:9 mod/wallmessage.php:33
+#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/wall_attach.php:55
+#: mod/settings.php:20 mod/settings.php:107 mod/settings.php:609
+#: mod/register.php:42 mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58
+#: mod/profiles.php:165 mod/profiles.php:615 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:156 mod/photos.php:1072
+#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33
+#: include/items.php:5022 index.php:382
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: object/Item.php:196 mod/content.php:755
-msgid "add star"
-msgstr "markieren"
+#: mod/contacts.php:361
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: object/Item.php:197 mod/content.php:756
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: mod/contacts.php:361
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: object/Item.php:198 mod/content.php:757
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: mod/contacts.php:372
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: object/Item.php:201 mod/content.php:760
-msgid "starred"
-msgstr "markiert"
+#: mod/contacts.php:372
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: object/Item.php:209
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: mod/contacts.php:384
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: object/Item.php:210
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: mod/contacts.php:384
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: object/Item.php:211
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/contacts.php:411 mod/contacts.php:756
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: object/Item.php:214
-msgid "ignored"
-msgstr "Ignoriert"
+#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:209
+#: mod/settings.php:1045 mod/settings.php:1051 mod/settings.php:1059
+#: mod/settings.php:1063 mod/settings.php:1068 mod/settings.php:1074
+#: mod/settings.php:1080 mod/settings.php:1086 mod/settings.php:1114
+#: mod/settings.php:1115 mod/settings.php:1116 mod/settings.php:1117
+#: mod/settings.php:1118 mod/dfrn_request.php:845 mod/register.php:235
+#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
+#: mod/api.php:105 include/items.php:4854
+msgid "Yes"
+msgstr "Ja"
 
-#: object/Item.php:221 mod/content.php:761
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68
+#: mod/videos.php:121 mod/message.php:212 mod/fbrowser.php:89
+#: mod/fbrowser.php:125 mod/settings.php:623 mod/settings.php:649
+#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148
+#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093
+#: include/items.php:4857
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: mod/contacts.php:428
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: object/Item.php:232 mod/content.php:686
-msgid "like"
-msgstr "mag ich"
+#: mod/contacts.php:466
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: mod/contacts.php:470
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: object/Item.php:233 mod/content.php:687
-msgid "dislike"
-msgstr "mag ich nicht"
+#: mod/contacts.php:475
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: object/Item.php:235 mod/content.php:689
-msgid "Share this"
-msgstr "Weitersagen"
+#: mod/contacts.php:495
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: object/Item.php:235 mod/content.php:689
-msgid "share"
-msgstr "Teilen"
+#: mod/contacts.php:498 mod/admin.php:585
+msgid "Never"
+msgstr "Niemals"
 
-#: object/Item.php:319 include/conversation.php:665
-msgid "Categories:"
-msgstr "Kategorien:"
+#: mod/contacts.php:502
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: object/Item.php:320 include/conversation.php:666
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: mod/contacts.php:502
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: object/Item.php:329 object/Item.php:330 mod/content.php:473
-#: mod/content.php:854 mod/content.php:855 include/conversation.php:653
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: mod/contacts.php:504
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: object/Item.php:331 mod/content.php:856
-msgid "to"
-msgstr "zu"
+#: mod/contacts.php:508
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: object/Item.php:332
-msgid "via"
-msgstr "via"
+#: mod/contacts.php:511 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"
 
-#: object/Item.php:333 mod/content.php:857
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: mod/contacts.php:516
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: object/Item.php:334 mod/content.php:858
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: mod/contacts.php:521 mod/contacts.php:590 mod/contacts.php:759
+#: mod/admin.php:1047
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: object/Item.php:343 mod/content.php:483 mod/content.php:866
-#: include/conversation.php:673
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: mod/contacts.php:521 mod/contacts.php:590 mod/contacts.php:759
+#: mod/admin.php:1046
+msgid "Block"
+msgstr "Sperren"
 
-#: object/Item.php:364 object/Item.php:680 mod/content.php:711
-#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754
-msgid "Comment"
-msgstr "Kommentar"
+#: mod/contacts.php:524
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334
-#: mod/message.php:565 mod/content.php:501 mod/content.php:885
-#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691
-#: include/conversation.php:1074
-msgid "Please wait"
-msgstr "Bitte warten"
+#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:760
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: object/Item.php:390 mod/content.php:605
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:760
+#: mod/notifications.php:51 mod/notifications.php:164
+#: mod/notifications.php:214
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: object/Item.php:392 object/Item.php:405 mod/content.php:607
-#: include/text.php:2004
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: mod/contacts.php:530
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205
-#: include/items.php:5133 boot.php:755
-msgid "show more"
-msgstr "mehr anzeigen"
+#: mod/contacts.php:534 mod/contacts.php:761
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581
-#: mod/photos.php:1625 mod/photos.php:1713
-msgid "This is you"
-msgstr "Das bist Du"
+#: mod/contacts.php:534 mod/contacts.php:761
+msgid "Archive"
+msgstr "Archivieren"
 
-#: object/Item.php:681 view/theme/perihel/config.php:95
-#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633
-#: view/theme/quattro/config.php:64
-#: view/theme/zero-childs/cleanzero/config.php:80
-#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83
-#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80
-#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47
-#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107
-#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335
-#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712
-#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250
-#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223
-#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628
-#: mod/photos.php:1716 mod/profiles.php:682
-msgid "Submit"
-msgstr "Senden"
+#: mod/contacts.php:537
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: object/Item.php:682 mod/content.php:713
-msgid "Bold"
-msgstr "Fett"
+#: mod/contacts.php:540
+msgid "Repair"
+msgstr "Reparieren"
 
-#: object/Item.php:683 mod/content.php:714
-msgid "Italic"
-msgstr "Kursiv"
+#: mod/contacts.php:543
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: object/Item.php:684 mod/content.php:715
-msgid "Underline"
-msgstr "Unterstrichen"
+#: mod/contacts.php:549
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: object/Item.php:685 mod/content.php:716
-msgid "Quote"
-msgstr "Zitat"
+#: mod/contacts.php:552
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: object/Item.php:686 mod/content.php:717
-msgid "Code"
-msgstr "Code"
+#: mod/contacts.php:553 mod/admin.php:594
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: object/Item.php:687 mod/content.php:718
-msgid "Image"
-msgstr "Bild"
+#: mod/contacts.php:553
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: object/Item.php:688 mod/content.php:719
-msgid "Link"
-msgstr "Link"
+#: mod/contacts.php:553
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: object/Item.php:689 mod/content.php:720
-msgid "Video"
-msgstr "Video"
+#: mod/contacts.php:562
+msgid "Contact Editor"
+msgstr "Kontakt Editor"
 
-#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145
-#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629
-#: mod/photos.php:1717 include/conversation.php:1089
-msgid "Preview"
-msgstr "Vorschau"
+#: mod/contacts.php:564 mod/manage.php:110 mod/fsuggest.php:107
+#: mod/message.php:335 mod/message.php:564 mod/crepair.php:191
+#: mod/events.php:511 mod/content.php:712 mod/install.php:250
+#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683
+#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140
+#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533
+#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716
+#: object/Item.php:680 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:56 view/theme/duepuntozero/config.php:59
+msgid "Submit"
+msgstr "Senden"
 
-#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76
-#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76
-#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77
-#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76
-#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76
-#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77
-msgid "Clone this project:"
-msgstr "Dieses Projekt clonen"
-
-#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111
-msgid "Click here to download"
-msgstr "Zum Download hier klicken"
-
-#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98
-msgid "This project is empty!"
-msgstr "Dieses Projekt is leer!"
-
-#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31
-msgid "Projects"
-msgstr "Projekte"
-
-#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32
-msgid "add new"
-msgstr "neues hinzufügen"
-
-#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51
-msgid "delete"
-msgstr "löschen"
+#: mod/contacts.php:565
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68
+#: mod/contacts.php:566
 #, php-format
 msgid ""
-"Do you want to delete the project '%s'?\\n\\nThis operation cannot be "
-"undone."
-msgstr "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden."
+"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/perihel/theme.php:33 view/theme/diabook/theme.php:123
-#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148
-msgid "Home"
-msgstr "Pinnwand"
+#: mod/contacts.php:567
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: view/theme/perihel/theme.php:33 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"
-
-#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124
-#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529
-#: include/identity.php:610 include/identity.php:639 include/nav.php:77
-msgid "Profile"
-msgstr "Profil"
+#: mod/contacts.php:568
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124
-#: include/nav.php:77
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: mod/contacts.php:573 mod/contacts.php:799 mod/viewcontacts.php:64
+#: mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126
-#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78
-msgid "Photos"
-msgstr "Bilder"
+#: mod/contacts.php:574
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126
-#: include/nav.php:78
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: mod/contacts.php:575
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127
-#: mod/events.php:396 include/identity.php:663 include/nav.php:80
-msgid "Events"
-msgstr "Veranstaltungen"
+#: mod/contacts.php:576
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127
-#: include/nav.php:80
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: mod/contacts.php:577
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128
-#: include/nav.php:81
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: mod/contacts.php:579
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
+#: mod/contacts.php:583
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129
-#: mod/community.php:32 include/nav.php:129 include/nav.php:131
-msgid "Community"
-msgstr "Gemeinschaft"
+#: mod/contacts.php:585
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142
-#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337
-msgid "don't show"
-msgstr "nicht zeigen"
+#: mod/contacts.php:587 mod/admin.php:1541
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142
-#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336
-msgid "show"
-msgstr "zeigen"
+#: mod/contacts.php:594
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150
-#: view/theme/quattro/config.php:66
-#: view/theme/zero-childs/cleanzero/config.php:82
-#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85
-#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82
-#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49
-#: mod/settings.php:919
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: mod/contacts.php:595
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151
-#: view/theme/zero-childs/cleanzero/config.php:84
-#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84
-msgid "Set font-size for posts and comments"
-msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
+#: mod/contacts.php:596
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152
-#: view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "Liniengröße für Beiträge und Kommantare festlegen"
+#: mod/contacts.php:597 mod/notifications.php:157 mod/notifications.php:208
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt von anderen"
 
-#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
+#: mod/contacts.php:597
+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/config.php:154
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
+#: mod/contacts.php:598
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
+#: mod/contacts.php:598
+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/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:601
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: 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:601
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: view/theme/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:608
+msgid "Profile URL"
+msgstr "Profil URL"
 
-#: 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:654
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: 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:657
+msgid "Suggest potential friends"
+msgstr "Freunde vorschlagen"
 
-#: 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:660 mod/group.php:192
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: 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:663
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: 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:666
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: 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:669
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: 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:673
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: 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:676
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178
-msgid "Contacts"
-msgstr "Kontakte"
+#: mod/contacts.php:680
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Deine Kontakte"
+#: mod/contacts.php:683
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: view/theme/diabook/theme.php:463 include/conversation.php:118
-#: include/conversation.php:245 include/text.php:1998
-msgid "event"
-msgstr "Veranstaltung"
+#: mod/contacts.php:687
+msgid "Archived"
+msgstr "Archiviert"
 
-#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
-#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87
-#: include/conversation.php:121 include/conversation.php:130
-#: include/conversation.php:248 include/conversation.php:257
-#: include/diaspora.php:2106
-msgid "status"
-msgstr "Status"
+#: mod/contacts.php:690
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149
-#: mod/subthread.php:87 include/conversation.php:126
-#: include/conversation.php:253 include/diaspora.php:2106
-#: include/text.php:2000
-msgid "photo"
-msgstr "Foto"
+#: mod/contacts.php:694
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: view/theme/diabook/theme.php:480 mod/like.php:166
-#: include/conversation.php:137 include/diaspora.php:2122
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+#: mod/contacts.php:697
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177
-#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230
-#: mod/photos.php:1779 mod/photos.php:1791
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: mod/contacts.php:747 include/nav.php:178 view/theme/diabook/theme.php:125
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753
-#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74
-#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204
-#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343
-#: include/user.php:350 include/user.php:357
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: mod/contacts.php:751
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: mod/contacts.php:752 mod/directory.php:63
+msgid "Finding: "
+msgstr "Funde: "
 
-#: view/theme/diabook/theme.php:525 mod/directory.php:53
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: mod/contacts.php:753 mod/directory.php:65 include/contact_widgets.php:34
+msgid "Find"
+msgstr "Finde"
 
-#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: mod/contacts.php:758 mod/settings.php:137 mod/settings.php:648
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: view/theme/diabook/theme.php:527 mod/suggest.php:69
-#: include/contact_widgets.php:35
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/contacts.php:762 mod/group.php:171 mod/admin.php:1045
+#: mod/content.php:440 mod/content.php:743 mod/settings.php:685
+#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613
+msgid "Delete"
+msgstr "Löschen"
 
-#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: mod/contacts.php:775
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
-#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335
-#: mod/settings.php:90 include/nav.php:173
-msgid "Settings"
-msgstr "Einstellungen"
+#: mod/contacts.php:779
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
+#: mod/contacts.php:783
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: 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:800 mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: mod/hcard.php:10
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
+#: mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
 
-#: view/theme/quattro/config.php:68
-#: view/theme/zero-childs/cleanzero/config.php:86
-#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Farbschema"
+#: mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: mod/profperm.php:19 mod/group.php:72 index.php:381
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: view/theme/zero-childs/cleanzero/config.php:83
-#: view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
+#: mod/profperm.php:25 mod/profperm.php:56
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: view/theme/zero-childs/cleanzero/config.php:85
-#: view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
+#: mod/profperm.php:102
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
+#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529
+#: include/identity.php:610 include/identity.php:639 include/nav.php:77
+#: view/theme/diabook/theme.php:124
+msgid "Profile"
+msgstr "Profil"
 
-#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44
-#: include/text.php:1734 include/user.php:255
-msgid "default"
-msgstr "Standard"
+#: mod/profperm.php:106 mod/group.php:222
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+
+#: mod/profperm.php:115
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: view/theme/clean/config.php:57
-msgid "Midnight"
-msgstr "Mitternacht"
+#: mod/profperm.php:131
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: view/theme/clean/config.php:58
-msgid "Zenburn"
-msgstr "Zenburn"
+#: mod/display.php:82 mod/display.php:295 mod/display.php:512
+#: mod/viewsrc.php:15 mod/admin.php:169 mod/admin.php:1090 mod/admin.php:1303
+#: mod/notice.php:15 include/items.php:4813
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: view/theme/clean/config.php:59
-msgid "Bootstrap"
-msgstr "Bootstrap"
+#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19
+#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:89
+#: mod/directory.php:35 mod/photos.php:942
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: view/theme/clean/config.php:60
-msgid "Shades of Pink"
-msgstr "Shades of Pink"
+#: mod/display.php:343 mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: view/theme/clean/config.php:61
-msgid "Lime and Orange"
-msgstr "Lime and Orange"
+#: mod/display.php:505
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: view/theme/clean/config.php:62
-msgid "GeoCities Retro"
-msgstr "GeoCities Retro"
+#: mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: view/theme/clean/config.php:86
-msgid "Background Image"
-msgstr "Hintergrundbild"
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: view/theme/clean/config.php:86
+#: mod/newmember.php:12
 msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr "Die URL des Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll."
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: view/theme/clean/config.php:87
-msgid "Background Color"
-msgstr "Hintergrundfarbe"
+#: mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: view/theme/clean/config.php:87
-msgid "HEX value for the background color. Don't include the #"
-msgstr "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an."
+#: mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: view/theme/clean/config.php:89
-msgid "font size"
-msgstr "Schriftgröße"
+#: mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
 
-#: view/theme/clean/config.php:89
-msgid "base font size for your interface"
-msgstr "Grundschriftgröße für dein Web-Interface"
+#: mod/newmember.php:22 mod/admin.php:1142 mod/admin.php:1363
+#: mod/settings.php:90 include/nav.php:173 view/theme/diabook/theme.php:544
+#: view/theme/diabook/theme.php:648
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
+#: mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
+#: mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
 
-#: view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
+#: mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."
 
-#: view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
+#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
+#: 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."
 
-#: view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
+#: mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variationen"
+#: mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."
 
-#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50
-msgid "Set style"
-msgstr "Stil auswählen"
+#: mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: mod/mood.php:62 include/conversation.php:226
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %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 "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
 
-#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135
-#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78
-#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38
-#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66
-#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120
-#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10
-#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81
-#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4
-#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072
-#: mod/profile_photo.php:19 mod/profile_photo.php:169
-#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165
-#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55
-#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20
-#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022
-#: index.php:382
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: 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/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."
 
-#: mod/decrypt.php:9 mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: 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/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169
-#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82
-#: mod/display.php:295 mod/display.php:512 include/items.php:4813
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: 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/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."
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: 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/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
 
-#: mod/api.php:104
+#: mod/newmember.php:60
 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?"
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
 
-#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413
-#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657
-#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235
-#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050
-#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065
-#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105
-#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108
-#: mod/settings.php:1109 include/items.php:4854
-msgid "Yes"
-msgstr "Ja"
+#: mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57
-#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236
-#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050
-#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065
-#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105
-#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108
-#: mod/settings.php:1109
-msgid "No"
-msgstr "Nein"
+#: mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: mod/newmember.php:66 include/group.php:270
+msgid "Groups"
+msgstr "Gruppen"
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
+#: mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: mod/lostpass.php:42
-#, php-format
+#: mod/newmember.php:70
 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."
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: mod/lostpass.php:53
-#, php-format
+#: mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
+
+#: mod/newmember.php:73
 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"
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: mod/lostpass.php:72
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: 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."
+#: mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: mod/lostpass.php:109 boot.php:1277
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: mod/lostpass.php:113
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: 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."
+#: 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:177 mod/photos.php:753
+#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343
+#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: mod/lostpass.php:125
+#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
+#: mod/profile_photo.php:308
 #, 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 "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: mod/lostpass.php:131
-#, php-format
+#: mod/profile_photo.php:118
 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."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: mod/lostpass.php:147
+#: mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
+
+#: mod/profile_photo.php:144 mod/wall_upload.php:122 mod/photos.php:789
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: mod/profile_photo.php:153 mod/wall_upload.php:144 mod/photos.php:829
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: 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."
+#: mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Hochladen"
 
-#: 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/profile_photo.php:248 mod/settings.php:1097
+msgid "or"
+msgstr "oder"
 
-#: mod/wallmessage.php:56 mod/message.php:63
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/wallmessage.php:62 mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/wallmessage.php:65 mod/message.php:73
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: mod/wallmessage.php:68 mod/message.php:76
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283
-#: mod/message.php:291 mod/message.php:466 mod/message.php:474
-#: include/conversation.php:1001 include/conversation.php:1019
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: mod/profile_photo.php:301 mod/wall_upload.php:172 mod/photos.php:856
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: mod/wallmessage.php:142 mod/message.php:319
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149
+#: include/conversation.php:126 include/conversation.php:253
+#: include/text.php:2000 include/diaspora.php:2111
+#: view/theme/diabook/theme.php:471
+msgid "photo"
+msgstr "Foto"
 
-#: mod/wallmessage.php:143
+#: 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:248 include/conversation.php:257
+#: include/diaspora.php:2111 view/theme/diabook/theme.php:466
+#: view/theme/diabook/theme.php:475
+msgid "status"
+msgstr "Status"
+
+#: mod/subthread.php:103
 #, 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."
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553
-msgid "To:"
-msgstr "An:"
+#: mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555
-msgid "Subject:"
-msgstr "Betreff:"
+#: mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329
-#: mod/message.php:558
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562
-#: mod/editpost.php:110 include/conversation.php:1056
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: mod/tagrm.php:93 mod/delegate.php:139
+msgid "Remove"
+msgstr "Entfernen"
 
-#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563
-#: mod/editpost.php:114 include/conversation.php:1060
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: mod/filer.php:30 include/conversation.php:1005
+#: include/conversation.php:1023
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978
+msgid "Save"
+msgstr "Speichern"
 
-#: mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: mod/follow.php:24
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: mod/follow.php:56 mod/dfrn_request.php:844
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: mod/follow.php:57 mod/dfrn_request.php:845
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
+#: mod/follow.php:57 mod/settings.php:1045 mod/settings.php:1051
+#: mod/settings.php:1059 mod/settings.php:1063 mod/settings.php:1068
+#: mod/settings.php:1074 mod/settings.php:1080 mod/settings.php:1086
+#: mod/settings.php:1114 mod/settings.php:1115 mod/settings.php:1116
+#: mod/settings.php:1117 mod/settings.php:1118 mod/dfrn_request.php:845
+#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662
+#: mod/api.php:106
+msgid "No"
+msgstr "Nein"
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: mod/follow.php:58 mod/dfrn_request.php:849
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
+#: mod/follow.php:64 mod/dfrn_request.php:855
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."
+#: mod/follow.php:67 mod/dfrn_request.php:858
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: mod/follow.php:106
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
+#: mod/item.php:115
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: mod/item.php:347
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."
+#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178
+#: mod/wall_upload.php:185 include/Photo.php:951 include/Photo.php:966
+#: include/Photo.php:973 include/Photo.php:995 include/message.php:144
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: mod/item.php:860
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/newmember.php:40
+#: mod/item.php:989
+#, php-format
 msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
-
-#: mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: mod/item.php:991
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/newmember.php:49
+#: mod/item.php:992
 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."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
 
-#: mod/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/item.php:996
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: 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."
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: mod/group.php:47 mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+#: mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
+#: mod/group.php:87
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
+#: mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
 
-#: mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: mod/group.php:94 mod/group.php:178 include/group.php:273
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+#: mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/newmember.php:66 include/group.php:270
-msgid "Groups"
-msgstr "Gruppen"
+#: mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: mod/group.php:177
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: 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."
+#: mod/group.php:190
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: mod/apps.php:7 index.php:225
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+#: mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
+#: mod/profiles.php:179 mod/profiles.php:627
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/newmember.php:82
+#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92
+#: mod/crepair.php:134
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
+
+#: mod/dfrn_confirm.php:121
 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."
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: mod/_search.php:21 mod/network.php:187 mod/search.php:21
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: mod/_search.php:30 mod/network.php:196 mod/search.php:30
-#: include/features.php:42
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18
-#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223
-#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: mod/_search.php:99 mod/search.php:99 include/nav.php:119
-#: include/text.php:977
-msgid "Search"
-msgstr "Suche"
-
-#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62
-#: mod/community.php:71 mod/search.php:174
-msgid "No results."
-msgstr "Keine Ergebnisse."
-
-#: mod/tagger.php:95 include/conversation.php:265
-#, 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/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: 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."
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: mod/regmod.php:55
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: mod/dfrn_confirm.php:430
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: mod/regmod.php:92
+#: mod/dfrn_confirm.php:487 include/conversation.php:172
+#: include/diaspora.php:627
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
-
-#: mod/regmod.php:104
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: mod/uimport.php:50 mod/register.php:188
-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/dfrn_confirm.php:572
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: mod/uimport.php:64 mod/register.php:283
-msgid "Import"
-msgstr "Import"
+#: mod/dfrn_confirm.php:582
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: mod/uimport.php:66
-msgid "Move account"
-msgstr "Account umziehen"
+#: mod/dfrn_confirm.php:593
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: mod/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/dfrn_confirm.php:614
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."
+#: mod/dfrn_confirm.php:628
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
 
-#: mod/uimport.php:69
+#: mod/dfrn_confirm.php:648
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
-
-#: mod/uimport.php:70
-msgid "Account file"
-msgstr "Account Datei"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+#: mod/dfrn_confirm.php:659
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: mod/dfrn_confirm.php:726
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: mod/dfrn_confirm.php:798
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: mod/update_profile.php:41 mod/update_network.php:25
-#: mod/update_display.php:22 mod/update_community.php:18
-#: mod/update_notes.php:37
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: mod/profile.php:21 include/identity.php:77
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: mod/profile.php:179
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: mod/videos.php:113
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: mod/videos.php:118
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: mod/videos.php:197
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/videos.php:298 mod/photos.php:1053
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/videos.php:373 include/text.php:1429
+msgid "View Video"
+msgstr "Video ansehen"
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/videos.php:380 mod/photos.php:1827
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/videos.php:389
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/videos.php:391
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/tagger.php:95 include/conversation.php:265
+#, 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/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/like.php:168 include/conversation.php:140
+#: mod/fsuggest.php:99
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
-
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
 
-#: mod/localtime.php:26
+#: mod/lostpass.php:42
+#, php-format
 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."
+"\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."
 
-#: mod/localtime.php:30
+#: mod/lostpass.php:53
 #, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\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"
 
-#: mod/localtime.php:33
+#: mod/lostpass.php:72
 #, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
-
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: 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."
 
-#: mod/filer.php:30 include/conversation.php:1005
-#: include/conversation.php:1023
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: mod/lostpass.php:109 boot.php:1278
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978
-msgid "Save"
-msgstr "Speichern"
+#: mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: mod/lostpass.php:113
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: 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."
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: 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)."
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: 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."
 
-#: mod/subthread.php:103
+#: mod/lostpass.php:147
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
 
-#: mod/uexport.php:77
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
 
-#: mod/uexport.php:77
+#: mod/lostpass.php:160
 msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
-
-#: mod/uexport.php:78
-msgid "Export all"
-msgstr "Alles exportieren"
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
 
-#: mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
+#: mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: mod/uexport.php:85 mod/settings.php:77
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: mod/lostpass.php:162
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: mod/apps.php:7 index.php:225
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2127
+#: view/theme/diabook/theme.php:480
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: mod/like.php:168 include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: mod/ping.php:233
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/navigation.php:20 include/nav.php:34
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: mod/ping.php:248
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/navigation.php:24 include/nav.php:38
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: mod/ping.php:263
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116
-#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859
-#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225
-#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121
-#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093
-#: include/items.php:4857
-msgid "Cancel"
-msgstr "Abbrechen"
+#: mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: mod/viewcontacts.php:78 include/text.php:899
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: mod/notifications.php:35 mod/notifications.php:165
+#: mod/notifications.php:215
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
-msgstr "Entfernen"
+#: mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: mod/notifications.php:83 include/nav.php:145
+msgid "Network"
+msgstr "Netzwerk"
 
-#: mod/delegate.php:130 include/nav.php:171
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: mod/notifications.php:88 mod/network.php:373
+msgid "Personal"
+msgstr "Persönlich"
 
-#: 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/notifications.php:93 include/nav.php:105 include/nav.php:148
+#: view/theme/diabook/theme.php:123
+msgid "Home"
+msgstr "Pinnwand"
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: mod/notifications.php:98 include/nav.php:153
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
+#: mod/notifications.php:149 mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
+#: mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573
-#: mod/contacts.php:797
+#: mod/notifications.php:152
 #, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/nogroup.php:41 mod/contacts.php:798
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: mod/notifications.php:158 mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: mod/notifications.php:158 mod/notifications.php:209
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/fbrowser.php:113
-msgid "Files"
-msgstr "Dateien"
+#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1043
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+#: mod/notifications.php:181
+msgid "no"
+msgstr "nein"
 
-#: mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: 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 könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
 
-#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134
-#: mod/dfrn_confirm.php:120
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: mod/notifications.php:185
+msgid ""
+"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/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
+#: mod/notifications.php:193
+msgid "Friend"
+msgstr "Freund"
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+#: mod/notifications.php:194
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+#: mod/notifications.php:200
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: mod/notifications.php:221
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: 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/notifications.php:224 include/nav.php:156
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: mod/invite.php:89
+#: mod/notifications.php:262 mod/notifications.php:391
+#: mod/notifications.php:482
 #, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: mod/invite.php:93
+#: mod/notifications.php:272 mod/notifications.php:401
+#: mod/notifications.php:492
 #, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
-
-#: mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: mod/invite.php:120
+#: mod/notifications.php:287 mod/notifications.php:416
+#: mod/notifications.php:507
 #, 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."
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: mod/invite.php:122
+#: mod/notifications.php:294 mod/notifications.php:423
 #, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: mod/invite.php:123
+#: mod/notifications.php:295 mod/notifications.php:424
+#: mod/notifications.php:517
 #, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: 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/notifications.php:310
+msgid "No more network notifications."
+msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
 
-#: mod/invite.php:132
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: mod/notifications.php:340 mod/notify.php:72
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: 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/notifications.php:344 mod/notify.php:76
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: 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/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Keine weiteren persönlichen Benachrichtigungen"
 
-#: mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: 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/notifications.php:524
+msgid "No more home notifications."
+msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
 
-#: mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: 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/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+#: mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
+
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
+
+#: mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
+
+#: mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
+
+#: mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
+
+#: mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
+
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
+
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
+
+#: mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
+
+#: mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
+
+#: mod/navigation.php:20 include/nav.php:34
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
+
+#: mod/navigation.php:24 include/nav.php:38
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
 #: mod/message.php:9 include/nav.php:165
 msgid "New Message"
 msgstr "Neue Nachricht"
 
+#: mod/message.php:63 mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
+
 #: mod/message.php:67
 msgid "Unable to locate contact information."
 msgstr "Konnte die Kontaktinformationen nicht finden."
 
+#: mod/message.php:70 mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
+
+#: mod/message.php:73 mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
+
+#: mod/message.php:76 mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Nachricht gesendet."
+
 #: mod/message.php:182 include/nav.php:162
 msgid "Messages"
 msgstr "Nachrichten"
@@ -1654,8 +1600,48 @@ msgstr "Nachricht gelöscht."
 msgid "Conversation removed."
 msgstr "Unterhaltung gelöscht."
 
-#: mod/message.php:371
-msgid "No messages."
+#: 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:1001 include/conversation.php:1019
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
+
+#: mod/message.php:319 mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
+
+#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144
+msgid "To:"
+msgstr "An:"
+
+#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Betreff:"
+
+#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151
+#: mod/invite.php:134
+msgid "Your message:"
+msgstr "Deine Nachricht:"
+
+#: mod/message.php:332 mod/message.php:562 mod/wallmessage.php:154
+#: mod/editpost.php:110 include/conversation.php:1056
+msgid "Upload photo"
+msgstr "Foto hochladen"
+
+#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:155
+#: mod/editpost.php:114 include/conversation.php:1060
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
+
+#: mod/message.php:334 mod/message.php:565 mod/content.php:501
+#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124
+#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691
+#: include/conversation.php:1074
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: mod/message.php:371
+msgid "No messages."
 msgstr "Keine Nachrichten."
 
 #: mod/message.php:378
@@ -1706,255 +1692,171 @@ msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> k
 msgid "Send Reply"
 msgstr "Antwort senden"
 
-#: mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: mod/update_display.php:22 mod/update_community.php:18
+#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/viewcontacts.php:78 include/text.php:899
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: mod/crepair.php:107
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: mod/crepair.php:109
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: mod/openid.php:53
+#: mod/crepair.php:140
+msgid "Repair Contact Settings"
+msgstr "Kontakteinstellungen reparieren"
+
+#: mod/crepair.php:142
 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."
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: mod/crepair.php:143
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
 
-#: mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/crepair.php:149
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
 
-#: mod/help.php:31
-msgid "Help:"
-msgstr "Hilfe:"
+#: mod/crepair.php:160 mod/crepair.php:162
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: mod/help.php:36 include/nav.php:114
-msgid "Help"
-msgstr "Hilfe"
+#: mod/crepair.php:160
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: mod/crepair.php:160 mod/crepair.php:162
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: mod/help.php:45 index.php:272
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: mod/crepair.php:169
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
 
-#: mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/crepair.php:170 mod/admin.php:1041 mod/admin.php:1053
+#: mod/admin.php:1054 mod/admin.php:1067 mod/settings.php:624
+#: mod/settings.php:650
+msgid "Name"
+msgstr "Name"
 
-#: mod/notifications.php:35 mod/notifications.php:165
-#: mod/notifications.php:215
-msgid "Discard"
-msgstr "Verwerfen"
+#: mod/crepair.php:171
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: mod/notifications.php:51 mod/notifications.php:164
-#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591
-#: mod/contacts.php:758
-msgid "Ignore"
-msgstr "Ignorieren"
+#: mod/crepair.php:172
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: mod/crepair.php:173
+msgid "Account URL"
+msgstr "Konto-URL"
 
-#: mod/notifications.php:83 include/nav.php:145
-msgid "Network"
-msgstr "Netzwerk"
+#: mod/crepair.php:174
+msgid "Friend Request URL"
+msgstr "URL für Freundschaftsanfragen"
 
-#: mod/notifications.php:88 mod/network.php:373
-msgid "Personal"
-msgstr "Persönlich"
+#: mod/crepair.php:175
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Freundschaftsanfragen"
 
-#: mod/notifications.php:98 include/nav.php:153
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: mod/crepair.php:176
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: mod/crepair.php:177
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
 
-#: mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: mod/crepair.php:178
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
 
-#: mod/notifications.php:149 mod/notifications.php:199
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: mod/crepair.php:179
+msgid "Remote Self"
+msgstr "Entfernte Konten"
 
-#: mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: mod/crepair.php:181
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: mod/crepair.php:181
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
-#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt von anderen"
+#: mod/bookmarklet.php:12 boot.php:1264 include/nav.php:92
+msgid "Login"
+msgstr "Anmeldung"
 
-#: mod/notifications.php:158 mod/notifications.php:209
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
 
-#: mod/notifications.php:158 mod/notifications.php:209
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015
-msgid "Approve"
-msgstr "Genehmigen"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: mod/dirfind.php:119 mod/match.php:65 mod/suggest.php:92
+#: include/contact_widgets.php:10 include/identity.php:188
+msgid "Connect"
+msgstr "Verbinden"
 
-#: mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
+#: mod/dirfind.php:133 mod/match.php:73
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: mod/notifications.php:181
-msgid "no"
-msgstr "nein"
+#: mod/fbrowser.php:32 include/identity.php:646 include/nav.php:78
+#: view/theme/diabook/theme.php:126
+msgid "Photos"
+msgstr "Bilder"
 
-#: 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 könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
+#: mod/fbrowser.php:122
+msgid "Files"
+msgstr "Dateien"
 
-#: mod/notifications.php:185
-msgid ""
-"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/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/notifications.php:193
-msgid "Friend"
-msgstr "Freund"
+#: mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/notifications.php:194
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/admin.php:104 mod/admin.php:649
+msgid "Site"
+msgstr "Seite"
 
-#: mod/notifications.php:194
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: mod/admin.php:105 mod/admin.php:595 mod/admin.php:1036 mod/admin.php:1051
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/notifications.php:200
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: mod/admin.php:106 mod/admin.php:1140 mod/admin.php:1193 mod/settings.php:62
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/notifications.php:200
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: mod/admin.php:107 mod/admin.php:1361 mod/admin.php:1395
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/notifications.php:221
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: mod/admin.php:108
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/notifications.php:224 include/nav.php:156
-msgid "Notifications"
-msgstr "Benachrichtigungen"
-
-#: 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/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/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/notifications.php:294 mod/notifications.php:423
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
-
-#: 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/notifications.php:310
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
-
-#: mod/notifications.php:314
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
-
-#: mod/notifications.php:340 mod/notify.php:72
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
-
-#: mod/notifications.php:344 mod/notify.php:76
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
-
-#: mod/notifications.php:439
-msgid "No more personal notifications."
-msgstr "Keine weiteren persönlichen Benachrichtigungen"
-
-#: mod/notifications.php:443
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
-
-#: mod/notifications.php:524
-msgid "No more home notifications."
-msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
-
-#: mod/notifications.php:528
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
-
-#: mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
-
-#: mod/admin.php:104 mod/admin.php:627
-msgid "Site"
-msgstr "Seite"
-
-#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023
-msgid "Users"
-msgstr "Nutzer"
-
-#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62
-msgid "Plugins"
-msgstr "Plugins"
-
-#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367
-msgid "Themes"
-msgstr "Themen"
-
-#: mod/admin.php:108
-msgid "DB updates"
-msgstr "DB Updates"
-
-#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454
+#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1482
 msgid "Logs"
 msgstr "Protokolle"
 
@@ -1982,19 +1884,19 @@ msgstr "Diagnose"
 msgid "User registrations waiting for confirmation"
 msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/admin.php:193 mod/admin.php:961
+#: mod/admin.php:193 mod/admin.php:989
 msgid "Normal Account"
 msgstr "Normales Konto"
 
-#: mod/admin.php:194 mod/admin.php:962
+#: mod/admin.php:194 mod/admin.php:990
 msgid "Soapbox Account"
 msgstr "Marktschreier-Konto"
 
-#: mod/admin.php:195 mod/admin.php:963
+#: mod/admin.php:195 mod/admin.php:991
 msgid "Community/Celebrity Account"
 msgstr "Forum/Promi-Konto"
 
-#: mod/admin.php:196 mod/admin.php:964
+#: mod/admin.php:196 mod/admin.php:992
 msgid "Automatic Friend Account"
 msgstr "Automatisches Freundekonto"
 
@@ -2010,8 +1912,8 @@ msgstr "Privates Forum"
 msgid "Message queues"
 msgstr "Nachrichten-Warteschlangen"
 
-#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111
-#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453
+#: mod/admin.php:222 mod/admin.php:648 mod/admin.php:1035 mod/admin.php:1139
+#: mod/admin.php:1192 mod/admin.php:1360 mod/admin.php:1394 mod/admin.php:1481
 msgid "Administration"
 msgstr "Administration"
 
@@ -2039,365 +1941,389 @@ msgstr "Aktive Plugins"
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: mod/admin.php:524
+#: mod/admin.php:532
 msgid "Site settings updated."
 msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/admin.php:553 mod/settings.php:853
+#: mod/admin.php:561 mod/settings.php:862
 msgid "No special theme for mobile devices"
 msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/admin.php:570
+#: mod/admin.php:578
 msgid "No community page"
 msgstr "Keine Gemeinschaftsseite"
 
-#: mod/admin.php:571
+#: mod/admin.php:579
 msgid "Public postings from users of this site"
 msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/admin.php:572
+#: mod/admin.php:580
 msgid "Global community page"
 msgstr "Globale Gemeinschaftsseite"
 
-#: mod/admin.php:577 mod/contacts.php:498
-msgid "Never"
-msgstr "Niemals"
-
-#: mod/admin.php:578
+#: mod/admin.php:586
 msgid "At post arrival"
 msgstr "Beim Empfang von Nachrichten"
 
-#: mod/admin.php:579 include/contact_selectors.php:56
+#: mod/admin.php:587 include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "immer wieder"
 
-#: mod/admin.php:580 include/contact_selectors.php:57
+#: mod/admin.php:588 include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Stündlich"
 
-#: mod/admin.php:581 include/contact_selectors.php:58
+#: mod/admin.php:589 include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Zweimal täglich"
 
-#: mod/admin.php:582 include/contact_selectors.php:59
+#: mod/admin.php:590 include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Täglich"
 
-#: mod/admin.php:587
+#: mod/admin.php:596
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
+
+#: mod/admin.php:597
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
+
+#: mod/admin.php:601
+msgid "One month"
+msgstr "ein Monat"
+
+#: mod/admin.php:602
+msgid "Three months"
+msgstr "drei Monate"
+
+#: mod/admin.php:603
+msgid "Half a year"
+msgstr "ein halbes Jahr"
+
+#: mod/admin.php:604
+msgid "One year"
+msgstr "ein Jahr"
+
+#: mod/admin.php:609
 msgid "Multi user instance"
 msgstr "Mehrbenutzer Instanz"
 
-#: mod/admin.php:610
+#: mod/admin.php:632
 msgid "Closed"
 msgstr "Geschlossen"
 
-#: mod/admin.php:611
+#: mod/admin.php:633
 msgid "Requires approval"
 msgstr "Bedarf der Zustimmung"
 
-#: mod/admin.php:612
+#: mod/admin.php:634
 msgid "Open"
 msgstr "Offen"
 
-#: mod/admin.php:616
+#: mod/admin.php:638
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/admin.php:617
+#: mod/admin.php:639
 msgid "Force all links to use SSL"
 msgstr "SSL für alle Links erzwingen"
 
-#: mod/admin.php:618
+#: mod/admin.php:640
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455
-#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754
-#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137
+#: mod/admin.php:650 mod/admin.php:1194 mod/admin.php:1396 mod/admin.php:1483
+#: mod/settings.php:622 mod/settings.php:732 mod/settings.php:763
+#: mod/settings.php:832 mod/settings.php:914 mod/settings.php:1146
 msgid "Save Settings"
 msgstr "Einstellungen speichern"
 
-#: mod/admin.php:629 mod/register.php:260
+#: mod/admin.php:651 mod/register.php:260
 msgid "Registration"
 msgstr "Registrierung"
 
-#: mod/admin.php:630
+#: mod/admin.php:652
 msgid "File upload"
 msgstr "Datei hochladen"
 
-#: mod/admin.php:631
+#: mod/admin.php:653
 msgid "Policies"
 msgstr "Regeln"
 
-#: mod/admin.php:632
+#: mod/admin.php:654
 msgid "Advanced"
 msgstr "Erweitert"
 
-#: mod/admin.php:633
+#: mod/admin.php:655
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+
+#: mod/admin.php:656
 msgid "Performance"
 msgstr "Performance"
 
-#: mod/admin.php:634
+#: mod/admin.php:657
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/admin.php:637
+#: mod/admin.php:660
 msgid "Site name"
 msgstr "Seitenname"
 
-#: mod/admin.php:638
+#: mod/admin.php:661
 msgid "Host name"
 msgstr "Host Name"
 
-#: mod/admin.php:639
+#: mod/admin.php:662
 msgid "Sender Email"
 msgstr "Absender für Emails"
 
-#: mod/admin.php:640
+#: mod/admin.php:663
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: mod/admin.php:641
+#: mod/admin.php:664
 msgid "Shortcut icon"
 msgstr "Shortcut Icon"
 
-#: mod/admin.php:642
+#: mod/admin.php:665
 msgid "Touch icon"
 msgstr "Touch Icon"
 
-#: mod/admin.php:643
+#: mod/admin.php:666
 msgid "Additional Info"
 msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:643
+#: mod/admin.php:666
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden."
 
-#: mod/admin.php:644
+#: mod/admin.php:667
 msgid "System language"
 msgstr "Systemsprache"
 
-#: mod/admin.php:645
+#: mod/admin.php:668
 msgid "System theme"
 msgstr "Systemweites Theme"
 
-#: mod/admin.php:645
+#: mod/admin.php:668
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: mod/admin.php:646
+#: mod/admin.php:669
 msgid "Mobile system theme"
 msgstr "Systemweites mobiles Theme"
 
-#: mod/admin.php:646
+#: mod/admin.php:669
 msgid "Theme for mobile devices"
 msgstr "Thema für mobile Geräte"
 
-#: mod/admin.php:647
+#: mod/admin.php:670
 msgid "SSL link policy"
 msgstr "Regeln für SSL Links"
 
-#: mod/admin.php:647
+#: mod/admin.php:670
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/admin.php:648
+#: mod/admin.php:671
 msgid "Force SSL"
 msgstr "Erzwinge SSL"
 
-#: mod/admin.php:648
+#: mod/admin.php:671
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
 msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: mod/admin.php:649
+#: mod/admin.php:672
 msgid "Old style 'Share'"
 msgstr "Altes \"Teilen\" Element"
 
-#: mod/admin.php:649
+#: mod/admin.php:672
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: mod/admin.php:650
+#: mod/admin.php:673
 msgid "Hide help entry from navigation menu"
 msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/admin.php:650
+#: mod/admin.php:673
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: mod/admin.php:651
+#: mod/admin.php:674
 msgid "Single user instance"
 msgstr "Ein-Nutzer Instanz"
 
-#: mod/admin.php:651
+#: mod/admin.php:674
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: mod/admin.php:652
+#: mod/admin.php:675
 msgid "Maximum image size"
 msgstr "Maximale Bildgröße"
 
-#: mod/admin.php:652
+#: mod/admin.php:675
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: mod/admin.php:653
+#: mod/admin.php:676
 msgid "Maximum image length"
 msgstr "Maximale Bildlänge"
 
-#: mod/admin.php:653
+#: mod/admin.php:676
 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/admin.php:654
+#: mod/admin.php:677
 msgid "JPEG image quality"
 msgstr "Qualität des JPEG Bildes"
 
-#: mod/admin.php:654
+#: mod/admin.php:677
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: mod/admin.php:656
+#: mod/admin.php:679
 msgid "Register policy"
 msgstr "Registrierungsmethode"
 
-#: mod/admin.php:657
+#: mod/admin.php:680
 msgid "Maximum Daily Registrations"
 msgstr "Maximum täglicher Registrierungen"
 
-#: mod/admin.php:657
+#: mod/admin.php:680
 msgid ""
 "If registration is permitted above, this sets the maximum number of new user"
 " registrations to accept per day.  If register is set to closed, this "
 "setting has no effect."
 msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: mod/admin.php:658
+#: mod/admin.php:681
 msgid "Register text"
 msgstr "Registrierungstext"
 
-#: mod/admin.php:658
+#: mod/admin.php:681
 msgid "Will be displayed prominently on the registration page."
 msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/admin.php:659
+#: mod/admin.php:682
 msgid "Accounts abandoned after x days"
 msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: mod/admin.php:659
+#: mod/admin.php:682
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: mod/admin.php:660
+#: mod/admin.php:683
 msgid "Allowed friend domains"
 msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/admin.php:660
+#: mod/admin.php:683
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/admin.php:661
+#: mod/admin.php:684
 msgid "Allowed email domains"
 msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/admin.php:661
+#: mod/admin.php:684
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/admin.php:662
+#: mod/admin.php:685
 msgid "Block public"
 msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/admin.php:662
+#: mod/admin.php:685
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: mod/admin.php:663
+#: mod/admin.php:686
 msgid "Force publish"
 msgstr "Erzwinge Veröffentlichung"
 
-#: mod/admin.php:663
+#: mod/admin.php:686
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: mod/admin.php:664
+#: mod/admin.php:687
 msgid "Global directory update URL"
 msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: mod/admin.php:664
+#: mod/admin.php:687
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
 
-#: mod/admin.php:665
+#: mod/admin.php:688
 msgid "Allow threaded items"
 msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/admin.php:665
+#: mod/admin.php:688
 msgid "Allow infinite level threading for items on this site."
 msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/admin.php:666
+#: mod/admin.php:689
 msgid "Private posts by default for new users"
 msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/admin.php:666
+#: mod/admin.php:689
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: mod/admin.php:667
+#: mod/admin.php:690
 msgid "Don't include post content in email notifications"
 msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/admin.php:667
+#: mod/admin.php:690
 msgid ""
 "Don't include the content of a post/comment/private message/etc. in the "
 "email notifications that are sent out from this site, as a privacy measure."
 msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: mod/admin.php:668
+#: mod/admin.php:691
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/admin.php:668
+#: mod/admin.php:691
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: mod/admin.php:669
+#: mod/admin.php:692
 msgid "Don't embed private images in posts"
 msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/admin.php:669
+#: mod/admin.php:692
 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 "
@@ -2405,335 +2331,380 @@ msgid ""
 "while."
 msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: mod/admin.php:670
+#: mod/admin.php:693
 msgid "Allow Users to set remote_self"
 msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/admin.php:670
+#: mod/admin.php:693
 msgid ""
 "With checking this, every user is allowed to mark every contact as a "
 "remote_self in the repair contact dialog. Setting this flag on a contact "
 "causes mirroring every posting of that contact in the users stream."
 msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
 
-#: mod/admin.php:671
+#: mod/admin.php:694
 msgid "Block multiple registrations"
 msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/admin.php:671
+#: mod/admin.php:694
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: mod/admin.php:672
+#: mod/admin.php:695
 msgid "OpenID support"
 msgstr "OpenID Unterstützung"
 
-#: mod/admin.php:672
+#: mod/admin.php:695
 msgid "OpenID support for registration and logins."
 msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/admin.php:673
+#: mod/admin.php:696
 msgid "Fullname check"
 msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/admin.php:673
+#: mod/admin.php:696
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: mod/admin.php:674
+#: mod/admin.php:697
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: mod/admin.php:674
+#: mod/admin.php:697
 msgid "Use PHP UTF8 regular expressions"
 msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: mod/admin.php:675
+#: mod/admin.php:698
 msgid "Community Page Style"
 msgstr "Art der Gemeinschaftsseite"
 
-#: mod/admin.php:675
+#: mod/admin.php:698
 msgid ""
 "Type of community page to show. 'Global community' shows every public "
 "posting from an open distributed network that arrived on this server."
 msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
 
-#: mod/admin.php:676
+#: mod/admin.php:699
 msgid "Posts per user on community page"
 msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/admin.php:676
+#: mod/admin.php:699
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "'Global Community')"
 msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
 
-#: mod/admin.php:677
+#: mod/admin.php:700
 msgid "Enable OStatus support"
 msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/admin.php:677
+#: mod/admin.php:700
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: mod/admin.php:678
+#: mod/admin.php:701
 msgid "OStatus conversation completion interval"
 msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: mod/admin.php:678
+#: mod/admin.php:701
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
 
-#: mod/admin.php:679
+#: mod/admin.php:702
 msgid "Enable Diaspora support"
 msgstr "Diaspora-Support aktivieren"
 
-#: mod/admin.php:679
+#: mod/admin.php:702
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/admin.php:680
+#: mod/admin.php:703
 msgid "Only allow Friendica contacts"
 msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/admin.php:680
+#: mod/admin.php:703
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: mod/admin.php:681
+#: mod/admin.php:704
 msgid "Verify SSL"
 msgstr "SSL Überprüfen"
 
-#: mod/admin.php:681
+#: mod/admin.php:704
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: mod/admin.php:682
+#: mod/admin.php:705
 msgid "Proxy user"
 msgstr "Proxy Nutzer"
 
-#: mod/admin.php:683
+#: mod/admin.php:706
 msgid "Proxy URL"
 msgstr "Proxy URL"
 
-#: mod/admin.php:684
+#: mod/admin.php:707
 msgid "Network timeout"
 msgstr "Netzwerk Wartezeit"
 
-#: mod/admin.php:684
+#: mod/admin.php:707
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: mod/admin.php:685
+#: mod/admin.php:708
 msgid "Delivery interval"
 msgstr "Zustellungsintervall"
 
-#: mod/admin.php:685
+#: mod/admin.php:708
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: mod/admin.php:686
+#: mod/admin.php:709
 msgid "Poll interval"
 msgstr "Abfrageintervall"
 
-#: mod/admin.php:686
+#: mod/admin.php:709
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: mod/admin.php:687
+#: mod/admin.php:710
 msgid "Maximum Load Average"
 msgstr "Maximum Load Average"
 
-#: mod/admin.php:687
+#: mod/admin.php:710
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: mod/admin.php:688
+#: mod/admin.php:711
 msgid "Maximum Load Average (Frontend)"
 msgstr "Maximum Load Average (Frontend)"
 
-#: mod/admin.php:688
+#: mod/admin.php:711
 msgid "Maximum system load before the frontend quits service - default 50."
 msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/admin.php:690
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: mod/admin.php:713
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/admin.php:690
+#: mod/admin.php:713
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
+
+#: mod/admin.php:714
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
+
+#: mod/admin.php:714
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
+
+#: mod/admin.php:715
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
+
+#: mod/admin.php:715
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
+
+#: mod/admin.php:716
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
+
+#: mod/admin.php:716
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
+
+#: mod/admin.php:718
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
+
+#: mod/admin.php:718
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
 
-#: mod/admin.php:691
+#: mod/admin.php:719
 msgid "Suppress Language"
 msgstr "Sprachinformation unterdrücken"
 
-#: mod/admin.php:691
+#: mod/admin.php:719
 msgid "Suppress language information in meta information about a posting."
 msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: mod/admin.php:692
+#: mod/admin.php:720
 msgid "Suppress Tags"
 msgstr "Tags Unterdrücken"
 
-#: mod/admin.php:692
+#: mod/admin.php:720
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
 
-#: mod/admin.php:693
+#: mod/admin.php:721
 msgid "Path to item cache"
 msgstr "Pfad zum Eintrag Cache"
 
-#: mod/admin.php:694
+#: mod/admin.php:722
 msgid "Cache duration in seconds"
 msgstr "Cache-Dauer in Sekunden"
 
-#: mod/admin.php:694
+#: mod/admin.php:722
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day). To disable the item cache, set the value to -1."
 msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
 
-#: mod/admin.php:695
+#: mod/admin.php:723
 msgid "Maximum numbers of comments per post"
 msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/admin.php:695
+#: mod/admin.php:723
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
 
-#: mod/admin.php:696
+#: mod/admin.php:724
 msgid "Path for lock file"
 msgstr "Pfad für die Sperrdatei"
 
-#: mod/admin.php:697
+#: mod/admin.php:725
 msgid "Temp path"
 msgstr "Temp Pfad"
 
-#: mod/admin.php:698
+#: mod/admin.php:726
 msgid "Base path to installation"
 msgstr "Basis-Pfad zur Installation"
 
-#: mod/admin.php:699
+#: mod/admin.php:727
 msgid "Disable picture proxy"
 msgstr "Bilder Proxy deaktivieren"
 
-#: mod/admin.php:699
+#: mod/admin.php:727
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
 " systems with very low bandwith."
 msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: mod/admin.php:700
+#: mod/admin.php:728
 msgid "Enable old style pager"
 msgstr "Den Old-Style Pager aktiviren"
 
-#: mod/admin.php:700
+#: mod/admin.php:728
 msgid ""
 "The old style pager has page numbers but slows down massively the page "
 "speed."
 msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
 
-#: mod/admin.php:701
+#: mod/admin.php:729
 msgid "Only search in tags"
 msgstr "Nur in Tags suchen"
 
-#: mod/admin.php:701
+#: mod/admin.php:729
 msgid "On large systems the text search can slow down the system extremely."
 msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
 
-#: mod/admin.php:703
+#: mod/admin.php:731
 msgid "New base url"
 msgstr "Neue Basis-URL"
 
-#: mod/admin.php:705
+#: mod/admin.php:733
 msgid "RINO Encryption"
 msgstr "RINO Verschlüsselung"
 
-#: mod/admin.php:705
+#: mod/admin.php:733
 msgid "Encryption layer between nodes."
 msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/admin.php:723
+#: mod/admin.php:751
 msgid "Update has been marked successful"
 msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/admin.php:731
+#: mod/admin.php:759
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/admin.php:734
+#: mod/admin.php:762
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
 
-#: mod/admin.php:746
+#: mod/admin.php:774
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/admin.php:749
+#: mod/admin.php:777
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Update %s war erfolgreich."
 
-#: mod/admin.php:753
+#: mod/admin.php:781
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: mod/admin.php:755
+#: mod/admin.php:783
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
 
-#: mod/admin.php:774
+#: mod/admin.php:802
 msgid "No failed updates."
 msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/admin.php:775
+#: mod/admin.php:803
 msgid "Check database structure"
 msgstr "Datenbank Struktur überprüfen"
 
-#: mod/admin.php:780
+#: mod/admin.php:808
 msgid "Failed Updates"
 msgstr "Fehlgeschlagene Updates"
 
-#: mod/admin.php:781
+#: mod/admin.php:809
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
 
-#: mod/admin.php:782
+#: mod/admin.php:810
 msgid "Mark success (if update was manually applied)"
 msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/admin.php:783
+#: mod/admin.php:811
 msgid "Attempt to execute this update step automatically"
 msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/admin.php:815
+#: mod/admin.php:843
 #, php-format
 msgid ""
 "\n"
@@ -2741,7 +2712,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
 
-#: mod/admin.php:818
+#: mod/admin.php:846
 #, php-format
 msgid ""
 "\n"
@@ -2771,1954 +2742,2030 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
 
-#: mod/admin.php:850 include/user.php:421
+#: mod/admin.php:878 include/user.php:421
 #, php-format
 msgid "Registration details for %s"
 msgstr "Details der Registration von %s"
 
-#: mod/admin.php:862
+#: mod/admin.php:890
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s Benutzer geblockt/freigegeben"
 msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: mod/admin.php:869
+#: mod/admin.php:897
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s Nutzer gelöscht"
 msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/admin.php:908
+#: mod/admin.php:936
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Nutzer '%s' gelöscht"
 
-#: mod/admin.php:916
+#: mod/admin.php:944
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Nutzer '%s' entsperrt"
 
-#: mod/admin.php:916
+#: mod/admin.php:944
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Nutzer '%s' gesperrt"
 
-#: mod/admin.php:1009
+#: mod/admin.php:1037
 msgid "Add User"
 msgstr "Nutzer hinzufügen"
 
-#: mod/admin.php:1010
+#: mod/admin.php:1038
 msgid "select all"
 msgstr "Alle auswählen"
 
-#: mod/admin.php:1011
+#: mod/admin.php:1039
 msgid "User registrations waiting for confirm"
 msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/admin.php:1012
+#: mod/admin.php:1040
 msgid "User waiting for permanent deletion"
 msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/admin.php:1013
+#: mod/admin.php:1041
 msgid "Request date"
 msgstr "Anfragedatum"
 
-#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039
-#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649
-msgid "Name"
-msgstr "Name"
-
-#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041
+#: mod/admin.php:1041 mod/admin.php:1053 mod/admin.php:1054 mod/admin.php:1069
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
 msgid "Email"
 msgstr "E-Mail"
 
-#: mod/admin.php:1014
+#: mod/admin.php:1042
 msgid "No registrations."
 msgstr "Keine Neuanmeldungen."
 
-#: mod/admin.php:1016
+#: mod/admin.php:1044
 msgid "Deny"
 msgstr "Verwehren"
 
-#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590
-#: mod/contacts.php:757
-msgid "Block"
-msgstr "Sperren"
-
-#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590
-#: mod/contacts.php:757
-msgid "Unblock"
-msgstr "Entsperren"
-
-#: mod/admin.php:1020
+#: mod/admin.php:1048
 msgid "Site admin"
 msgstr "Seitenadministrator"
 
-#: mod/admin.php:1021
+#: mod/admin.php:1049
 msgid "Account expired"
 msgstr "Account ist abgelaufen"
 
-#: mod/admin.php:1024
+#: mod/admin.php:1052
 msgid "New User"
 msgstr "Neuer Nutzer"
 
-#: mod/admin.php:1025 mod/admin.php:1026
+#: mod/admin.php:1053 mod/admin.php:1054
 msgid "Register date"
 msgstr "Anmeldedatum"
 
-#: mod/admin.php:1025 mod/admin.php:1026
+#: mod/admin.php:1053 mod/admin.php:1054
 msgid "Last login"
 msgstr "Letzte Anmeldung"
 
-#: mod/admin.php:1025 mod/admin.php:1026
+#: mod/admin.php:1053 mod/admin.php:1054
 msgid "Last item"
 msgstr "Letzter Beitrag"
 
-#: mod/admin.php:1025
+#: mod/admin.php:1053
 msgid "Deleted since"
 msgstr "Gelöscht seit"
 
-#: mod/admin.php:1026 mod/settings.php:41
+#: mod/admin.php:1054 mod/settings.php:41
 msgid "Account"
 msgstr "Nutzerkonto"
 
-#: mod/admin.php:1028
+#: mod/admin.php:1056
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/admin.php:1029
+#: mod/admin.php:1057
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/admin.php:1039
+#: mod/admin.php:1067
 msgid "Name of the new user."
 msgstr "Name des neuen Nutzers"
 
-#: mod/admin.php:1040
+#: mod/admin.php:1068
 msgid "Nickname"
 msgstr "Spitzname"
 
-#: mod/admin.php:1040
+#: mod/admin.php:1068
 msgid "Nickname of the new user."
 msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/admin.php:1041
+#: mod/admin.php:1069
 msgid "Email address of the new user."
 msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/admin.php:1074
+#: mod/admin.php:1102
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Plugin %s deaktiviert."
 
-#: mod/admin.php:1078
+#: mod/admin.php:1106
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Plugin %s aktiviert."
 
-#: mod/admin.php:1088 mod/admin.php:1304
+#: mod/admin.php:1116 mod/admin.php:1332
 msgid "Disable"
 msgstr "Ausschalten"
 
-#: mod/admin.php:1090 mod/admin.php:1306
+#: mod/admin.php:1118 mod/admin.php:1334
 msgid "Enable"
 msgstr "Einschalten"
 
-#: mod/admin.php:1113 mod/admin.php:1334
+#: mod/admin.php:1141 mod/admin.php:1362
 msgid "Toggle"
 msgstr "Umschalten"
 
-#: mod/admin.php:1121 mod/admin.php:1344
+#: mod/admin.php:1149 mod/admin.php:1372
 msgid "Author: "
 msgstr "Autor:"
 
-#: mod/admin.php:1122 mod/admin.php:1345
+#: mod/admin.php:1150 mod/admin.php:1373
 msgid "Maintainer: "
 msgstr "Betreuer:"
 
-#: mod/admin.php:1264
+#: mod/admin.php:1292
 msgid "No themes found."
 msgstr "Keine Themen gefunden."
 
-#: mod/admin.php:1326
+#: mod/admin.php:1354
 msgid "Screenshot"
 msgstr "Bildschirmfoto"
 
-#: mod/admin.php:1372
+#: mod/admin.php:1400
 msgid "[Experimental]"
 msgstr "[Experimentell]"
 
-#: mod/admin.php:1373
+#: mod/admin.php:1401
 msgid "[Unsupported]"
 msgstr "[Nicht unterstützt]"
 
-#: mod/admin.php:1400
+#: mod/admin.php:1428
 msgid "Log settings updated."
 msgstr "Protokolleinstellungen aktualisiert."
 
-#: mod/admin.php:1456
+#: mod/admin.php:1484
 msgid "Clear"
 msgstr "löschen"
 
-#: mod/admin.php:1462
+#: mod/admin.php:1490
 msgid "Enable Debugging"
 msgstr "Protokoll führen"
 
-#: mod/admin.php:1463
+#: mod/admin.php:1491
 msgid "Log file"
 msgstr "Protokolldatei"
 
-#: mod/admin.php:1463
+#: mod/admin.php:1491
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/admin.php:1464
+#: mod/admin.php:1492
 msgid "Log level"
 msgstr "Protokoll-Level"
 
-#: mod/admin.php:1513 mod/contacts.php:587
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
-
-#: mod/admin.php:1514 include/acl_selectors.php:347
+#: mod/admin.php:1542 include/acl_selectors.php:347
 msgid "Close"
 msgstr "Schließen"
 
-#: mod/admin.php:1520
+#: mod/admin.php:1548
 msgid "FTP Host"
 msgstr "FTP Host"
 
-#: mod/admin.php:1521
+#: mod/admin.php:1549
 msgid "FTP Path"
 msgstr "FTP Pfad"
 
-#: mod/admin.php:1522
+#: mod/admin.php:1550
 msgid "FTP User"
 msgstr "FTP Nutzername"
 
-#: mod/admin.php:1523
+#: mod/admin.php:1551
 msgid "FTP Password"
 msgstr "FTP Passwort"
 
-#: mod/allfriends.php:37
+#: mod/network.php:143
 #, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
+msgid "Search Results For: %s"
+msgstr "Suchergebnisse für: %s"
 
-#: mod/allfriends.php:44
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+#: mod/network.php:187 mod/search.php:21
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/common.php:45
-msgid "Common Friends"
-msgstr "Gemeinsame Freunde"
+#: mod/network.php:196 mod/search.php:30 include/features.php:42
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: mod/common.php:82
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: mod/network.php:197 include/group.php:277
+msgid "add"
+msgstr "hinzufügen"
 
-#: mod/contacts.php:114
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet"
+#: mod/network.php:358
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/contacts.php:145 mod/contacts.php:340
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: mod/network.php:361
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/contacts.php:159
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: mod/network.php:364
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/contacts.php:192
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: mod/network.php:367
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/contacts.php:194 mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: mod/network.php:376
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/contacts.php:361
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: mod/network.php:382
+msgid "New"
+msgstr "Neue"
 
-#: mod/contacts.php:361
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: mod/network.php:385
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/contacts.php:372
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: mod/network.php:391
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/contacts.php:372
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: mod/network.php:394
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/contacts.php:384
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: mod/network.php:400
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/contacts.php:384
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: mod/network.php:403
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/contacts.php:411 mod/contacts.php:754
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: mod/network.php:460
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
 
-#: mod/contacts.php:428
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: mod/network.php:463
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
 
-#: mod/contacts.php:466
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: mod/network.php:526 mod/content.php:119
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: mod/contacts.php:470
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: mod/network.php:543 mod/content.php:130
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: mod/contacts.php:475
+#: mod/network.php:554 mod/content.php:135
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
-
-#: mod/contacts.php:495
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+msgid "Group: %s"
+msgstr "Gruppe: %s"
 
-#: mod/contacts.php:502
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: mod/network.php:572
+#, php-format
+msgid "Contact: %s"
+msgstr "Kontakt: %s"
 
-#: mod/contacts.php:502
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: mod/network.php:576
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: mod/contacts.php:504
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: mod/network.php:581
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/contacts.php:508
+#: mod/allfriends.php:37
 #, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+msgid "Friends of %s"
+msgstr "Freunde von %s"
 
-#: mod/contacts.php:511 include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+#: mod/allfriends.php:44
+msgid "No friends to display."
+msgstr "Keine Freunde zum Anzeigen."
 
-#: mod/contacts.php:516
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/events.php:71 mod/events.php:73
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/contacts.php:524
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/events.php:80 mod/events.php:82
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: mod/events.php:317
+msgid "l, F j"
+msgstr "l, F j"
 
-#: mod/contacts.php:530
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/events.php:339
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: mod/contacts.php:534 mod/contacts.php:759
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/events.php:361 include/text.php:1679 include/text.php:1689
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: mod/contacts.php:534 mod/contacts.php:759
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/events.php:396 include/identity.php:663 include/nav.php:80
+#: view/theme/diabook/theme.php:127
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: mod/contacts.php:537
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/events.php:397
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/contacts.php:540
-msgid "Repair"
-msgstr "Reparieren"
+#: mod/events.php:398
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/contacts.php:543
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/events.php:399 mod/install.php:209
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/contacts.php:549
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: mod/events.php:491
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/contacts.php:552
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: mod/events.php:492
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/contacts.php:553
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: mod/events.php:493
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/contacts.php:553
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: mod/events.php:493 mod/events.php:505
+msgid "Required"
+msgstr "Benötigt"
 
-#: mod/contacts.php:553
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: mod/events.php:495
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/contacts.php:562
-msgid "Contact Editor"
-msgstr "Kontakt Editor"
+#: mod/events.php:497
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/contacts.php:565
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: mod/events.php:499
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/contacts.php:566
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
+#: mod/events.php:501
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/contacts.php:567
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: mod/events.php:503 mod/directory.php:152 include/identity.php:268
+#: include/bb2diaspora.php:170 include/event.php:42
+msgid "Location:"
+msgstr "Ort:"
 
-#: mod/contacts.php:568
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: mod/events.php:505
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/contacts.php:574
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: mod/events.php:507
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/contacts.php:575
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145
+#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717
+#: object/Item.php:689 include/conversation.php:1089
+msgid "Preview"
+msgstr "Vorschau"
 
-#: mod/contacts.php:576
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672
+#: object/Item.php:130 include/conversation.php:612
+msgid "Select"
+msgstr "Auswählen"
 
-#: mod/contacts.php:577
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: mod/content.php:473 mod/content.php:854 mod/content.php:855
+#: object/Item.php:328 object/Item.php:329 include/conversation.php:653
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: mod/contacts.php:579
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/content.php:483 mod/content.php:866 object/Item.php:342
+#: include/conversation.php:673
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: mod/contacts.php:583
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: mod/content.php:499 include/conversation.php:689
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: mod/contacts.php:585
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: mod/content.php:605 object/Item.php:389
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: mod/contacts.php:594
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: mod/content.php:607 object/Item.php:391 object/Item.php:404
+#: include/text.php:2004
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
 
-#: mod/contacts.php:595
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: mod/content.php:608 boot.php:756 object/Item.php:392
+#: include/contact_widgets.php:205 include/items.php:5133
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: mod/contacts.php:596
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: mod/contacts.php:597
-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/content.php:686 mod/photos.php:1561 object/Item.php:232
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
 
-#: mod/contacts.php:598
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: mod/content.php:686 object/Item.php:232
+msgid "like"
+msgstr "mag ich"
 
-#: mod/contacts.php:598
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
 
-#: mod/contacts.php:601
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/content.php:687 object/Item.php:233
+msgid "dislike"
+msgstr "mag ich nicht"
 
-#: mod/contacts.php:601
-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/content.php:689 object/Item.php:235
+msgid "Share this"
+msgstr "Weitersagen"
 
-#: mod/contacts.php:652
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/content.php:689 object/Item.php:235
+msgid "share"
+msgstr "Teilen"
 
-#: mod/contacts.php:655
-msgid "Suggest potential friends"
-msgstr "Freunde vorschlagen"
+#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625
+#: mod/photos.php:1713 object/Item.php:677
+msgid "This is you"
+msgstr "Das bist Du"
 
-#: mod/contacts.php:658 mod/group.php:192
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627
+#: mod/photos.php:1715 boot.php:755 object/Item.php:363 object/Item.php:679
+msgid "Comment"
+msgstr "Kommentar"
 
-#: mod/contacts.php:661
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/content.php:713 object/Item.php:681
+msgid "Bold"
+msgstr "Fett"
 
-#: mod/contacts.php:664
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/content.php:714 object/Item.php:682
+msgid "Italic"
+msgstr "Kursiv"
 
-#: mod/contacts.php:667
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/content.php:715 object/Item.php:683
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: mod/contacts.php:671
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/content.php:716 object/Item.php:684
+msgid "Quote"
+msgstr "Zitat"
 
-#: mod/contacts.php:674
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/content.php:717 object/Item.php:685
+msgid "Code"
+msgstr "Code"
 
-#: mod/contacts.php:678
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/content.php:718 object/Item.php:686
+msgid "Image"
+msgstr "Bild"
 
-#: mod/contacts.php:681
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/content.php:719 object/Item.php:687
+msgid "Link"
+msgstr "Link"
 
-#: mod/contacts.php:685
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/content.php:720 object/Item.php:688
+msgid "Video"
+msgstr "Video"
 
-#: mod/contacts.php:688
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/content.php:730 mod/settings.php:684 object/Item.php:121
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: mod/contacts.php:692
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/content.php:755 object/Item.php:196
+msgid "add star"
+msgstr "markieren"
 
-#: mod/contacts.php:695
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/content.php:756 object/Item.php:197
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: mod/contacts.php:749
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/content.php:757 object/Item.php:198
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: mod/contacts.php:750 mod/directory.php:63
-msgid "Finding: "
-msgstr "Funde: "
+#: mod/content.php:760 object/Item.php:201
+msgid "starred"
+msgstr "markiert"
 
-#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34
-msgid "Find"
-msgstr "Finde"
+#: mod/content.php:761 object/Item.php:221
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/content.php:765 object/Item.php:134
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: mod/contacts.php:773
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/content.php:856 object/Item.php:330
+msgid "to"
+msgstr "zu"
 
-#: mod/contacts.php:777
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/content.php:857 object/Item.php:332
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: mod/contacts.php:781
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/content.php:858 object/Item.php:333
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: mod/content.php:119 mod/network.php:526
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: mod/removeme.php:46 mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: mod/content.php:130 mod/network.php:543
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: mod/content.php:135 mod/network.php:554
-#, php-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
+#: mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: mod/content.php:499 include/conversation.php:689
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: mod/install.php:119
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/crepair.php:107
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: mod/install.php:125
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/crepair.php:109
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: mod/install.php:129
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/crepair.php:140
-msgid "Repair Contact Settings"
-msgstr "Kontakteinstellungen reparieren"
+#: mod/install.php:135
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/crepair.php:142
+#: mod/install.php:140
 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."
+"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/crepair.php:143
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
+#: mod/install.php:141 mod/install.php:208 mod/install.php:530
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/crepair.php:149
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: mod/install.php:153
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/crepair.php:160 mod/crepair.php:162
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: mod/install.php:205
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/crepair.php:160
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/crepair.php:160 mod/crepair.php:162
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
+#: mod/install.php:229
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/crepair.php:169
-msgid "Refetch contact data"
-msgstr "Kontaktdaten neu laden"
+#: mod/install.php:230
+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/crepair.php:171
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
+#: mod/install.php:231
+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/crepair.php:172
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
+#: mod/install.php:232
+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/crepair.php:173
-msgid "Account URL"
-msgstr "Konto-URL"
+#: mod/install.php:236
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/crepair.php:174
-msgid "Friend Request URL"
-msgstr "URL für Freundschaftsanfragen"
+#: mod/install.php:237
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/crepair.php:175
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+#: mod/install.php:238
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/crepair.php:176
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: mod/install.php:239
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/crepair.php:177
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: mod/install.php:240 mod/install.php:279
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/crepair.php:178
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: mod/install.php:240 mod/install.php:279
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
 
-#: mod/crepair.php:179
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: mod/install.php:244 mod/install.php:282
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/crepair.php:181
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: mod/install.php:269
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/crepair.php:181
+#: mod/install.php:323
+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/install.php:324
 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."
+"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/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
-#: mod/profiles.php:179 mod/profiles.php:626
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: mod/install.php:328
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/dfrn_confirm.php:121
+#: mod/install.php:328
 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."
+"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/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: mod/install.php:333
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: mod/install.php:342
+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/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: mod/install.php:343
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: mod/install.php:345
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: 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."
+#: mod/install.php:356
+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/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: mod/install.php:357
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/dfrn_confirm.php:430
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: mod/install.php:359
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/dfrn_confirm.php:487 include/conversation.php:172
-#: include/diaspora.php:622
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: mod/install.php:380
+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/dfrn_confirm.php:572
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: mod/install.php:381
+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/dfrn_confirm.php:582
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: mod/install.php:383
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/dfrn_confirm.php:593
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: mod/install.php:390
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/dfrn_confirm.php:614
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: mod/install.php:391
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/dfrn_confirm.php:628
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+#: mod/install.php:392
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/dfrn_confirm.php:648
+#: mod/install.php:393
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
+
+#: mod/install.php:394
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
+
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
+
+#: mod/install.php:399
 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."
+"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/dfrn_confirm.php:659
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: mod/install.php:407
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: mod/dfrn_confirm.php:726
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
+#: mod/install.php:411
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/dfrn_confirm.php:798
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: mod/install.php:419
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: mod/install.php:423
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: 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/install.php:440
+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/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/install.php:441
+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/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/install.php:442
+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/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/install.php:443
+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/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: mod/install.php:446
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: mod/install.php:456
+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/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: mod/install.php:457
+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/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+#: mod/install.php:458
+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/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: mod/install.php:459
+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/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/install.php:462
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: mod/install.php:478
+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/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/install.php:480
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: 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/install.php:489
+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/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/install.php:528
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: mod/install.php:529
+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/dfrn_request.php:480
+#: mod/wallmessage.php:42 mod/wallmessage.php:112
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist."
+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/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
 
-#: mod/dfrn_request.php:507 include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: 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/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: mod/help.php:31
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: 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/help.php:36 include/nav.php:114
+msgid "Help"
+msgstr "Hilfe"
 
-#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
-msgid "Confirm"
-msgstr "Bestätigen"
+#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: mod/dfrn_request.php:686
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: mod/help.php:45 index.php:272
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: mod/dfrn_request.php:689
+#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
 #, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: mod/dfrn_request.php:690
+#: mod/home.php:35
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: mod/dfrn_request.php:819
-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/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: mod/dfrn_request.php:839
-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/dfrn_request.php:842
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
+#: mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: mod/dfrn_request.php:843
-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/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: mod/dfrn_request.php:844 mod/follow.php:56
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: mod/wall_attach.php:122 mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: mod/dfrn_request.php:845 mod/follow.php:57
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: mod/match.php:13
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/dfrn_request.php:849 mod/follow.php:58
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: mod/match.php:22
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
 
-#: mod/dfrn_request.php:851 include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: mod/match.php:64
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/dfrn_request.php:852
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/share.php:38
+msgid "link"
+msgstr "Link"
 
-#: mod/dfrn_request.php:853 mod/settings.php:761
-#: include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: mod/dfrn_request.php:854
-#, 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/community.php:32 include/nav.php:129 include/nav.php:131
+#: view/theme/diabook/theme.php:129
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: mod/dfrn_request.php:855 mod/follow.php:64
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: mod/community.php:62 mod/community.php:71 mod/search.php:178
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: mod/dfrn_request.php:858 mod/follow.php:67
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: mod/settings.php:34 mod/photos.php:102
+msgid "everybody"
+msgstr "jeder"
 
-#: mod/directory.php:61
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: mod/settings.php:46
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/directory.php:64
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: mod/settings.php:51
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/directory.php:129 mod/profiles.php:746
-msgid "Age: "
-msgstr "Alter: "
+#: mod/settings.php:57 mod/settings.php:814
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: mod/directory.php:132
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: mod/settings.php:67 include/nav.php:171
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161
-#: include/event.php:42 include/identity.php:268
-msgid "Location:"
-msgstr "Ort:"
+#: mod/settings.php:72
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/directory.php:154 include/identity.php:270 include/identity.php:540
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: mod/settings.php:77 mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
-msgid "Status:"
-msgstr "Status:"
+#: mod/settings.php:82
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: mod/directory.php:158 include/identity.php:275 include/identity.php:571
-msgid "Homepage:"
-msgstr "Homepage:"
+#: mod/settings.php:134
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: mod/directory.php:160 include/identity.php:277 include/identity.php:581
-msgid "About:"
-msgstr "Über:"
+#: mod/settings.php:246
+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/directory.php:205
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: mod/settings.php:251
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/dirfind.php:27
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/settings.php:266
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/dirfind.php:62 mod/match.php:73
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: mod/settings.php:329
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/display.php:343 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: mod/settings.php:343 include/user.php:39
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: mod/display.php:505
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: mod/settings.php:348
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: mod/settings.php:356
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/editpost.php:40
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: mod/settings.php:367
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/editpost.php:111 include/conversation.php:1057
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: mod/settings.php:369
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/editpost.php:112 include/conversation.php:1058
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: mod/settings.php:436
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/editpost.php:113 include/conversation.php:1059
-msgid "attach file"
-msgstr "Datei anhängen"
+#: mod/settings.php:438
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/editpost.php:115 include/conversation.php:1061
-msgid "web link"
-msgstr "Weblink"
+#: mod/settings.php:447
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/editpost.php:116 include/conversation.php:1062
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: mod/settings.php:452
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: mod/editpost.php:117 include/conversation.php:1063
-msgid "video link"
-msgstr "Video-Link"
+#: mod/settings.php:458
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/editpost.php:118 include/conversation.php:1064
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: mod/settings.php:514
+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/editpost.php:119 include/conversation.php:1065
-msgid "audio link"
-msgstr "Audio-Link"
+#: mod/settings.php:518
+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/editpost.php:120 include/conversation.php:1066
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: mod/settings.php:548
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: mod/editpost.php:121 include/conversation.php:1067
-msgid "set location"
-msgstr "Ort setzen"
+#: mod/settings.php:621 mod/settings.php:647 mod/settings.php:683
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/editpost.php:122 include/conversation.php:1068
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: mod/settings.php:625 mod/settings.php:651
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/editpost.php:123 include/conversation.php:1069
-msgid "clear location"
-msgstr "Ort löschen"
+#: mod/settings.php:626 mod/settings.php:652
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/editpost.php:125 include/conversation.php:1075
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: mod/settings.php:627 mod/settings.php:653
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: mod/editpost.php:133 include/acl_selectors.php:343
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: mod/settings.php:628 mod/settings.php:654
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/editpost.php:134 include/conversation.php:1084
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: mod/settings.php:639
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/editpost.php:137 include/conversation.php:1071
-msgid "Set title"
-msgstr "Titel setzen"
+#: mod/settings.php:682
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/editpost.php:139 include/conversation.php:1073
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: mod/settings.php:686
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/editpost.php:140 include/acl_selectors.php:344
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: mod/settings.php:687
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/events.php:71 mod/events.php:73
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+#: mod/settings.php:688
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/events.php:80 mod/events.php:82
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: mod/settings.php:700
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/events.php:317
-msgid "l, F j"
-msgstr "l, F j"
+#: mod/settings.php:708
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: mod/events.php:339
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: mod/settings.php:722
+msgid "Off"
+msgstr "Aus"
 
-#: mod/events.php:361 include/text.php:1679 include/text.php:1689
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: mod/settings.php:722
+msgid "On"
+msgstr "An"
 
-#: mod/events.php:397
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/settings.php:730
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/events.php:398
-msgid "Previous"
-msgstr "Vorherige"
+#: mod/settings.php:740 mod/settings.php:744
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/events.php:399 mod/install.php:209
-msgid "Next"
-msgstr "Nächste"
+#: mod/settings.php:750
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/events.php:491
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/settings.php:752
+msgid ""
+"Normally the system tries to find the best link to add to shortened posts. "
+"If this option is enabled then every shortened post will always point to the"
+" original friendica post."
+msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
 
-#: mod/events.php:492
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/settings.php:758
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/events.php:493
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/settings.php:760
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
+msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
 
-#: mod/events.php:493 mod/events.php:505
-msgid "Required"
-msgstr "Benötigt"
+#: mod/settings.php:770 mod/settings.php:771
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: mod/events.php:495
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/settings.php:770 mod/dfrn_request.php:853
+#: include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: mod/events.php:497
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/settings.php:770 mod/settings.php:771
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/events.php:499
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/settings.php:770 mod/settings.php:771
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/events.php:501
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/settings.php:771
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/events.php:505
-msgid "Title:"
-msgstr "Titel:"
+#: mod/settings.php:807
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/events.php:507
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/settings.php:819
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/follow.php:24
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
+#: mod/settings.php:820
+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/follow.php:106
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: mod/settings.php:821
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: mod/settings.php:823
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: mod/settings.php:824
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: mod/settings.php:825
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: mod/settings.php:825 mod/settings.php:830
+msgid "None"
+msgstr "Keine"
 
-#: mod/group.php:72 mod/profperm.php:19 index.php:381
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: mod/settings.php:826
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: mod/settings.php:827
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+#: mod/settings.php:828
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/group.php:94 mod/group.php:178 include/group.php:273
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: mod/settings.php:829
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: mod/settings.php:830
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: mod/settings.php:830
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: mod/settings.php:830
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/group.php:190
-msgid "Members"
-msgstr "Mitglieder"
+#: mod/settings.php:831
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/group.php:222 mod/profperm.php:106
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: mod/settings.php:912
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: mod/install.php:119
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: mod/settings.php:918 mod/settings.php:934
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: mod/install.php:125
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/settings.php:919
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: mod/install.php:129
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/settings.php:920
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/install.php:135
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/settings.php:920
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: mod/install.php:140
-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/settings.php:921
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/install.php:141 mod/install.php:208 mod/install.php:530
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/settings.php:921 mod/settings.php:922
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/install.php:153
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/settings.php:922
+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/install.php:205
-msgid "System check"
-msgstr "Systemtest"
+#: mod/settings.php:923
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/settings.php:924
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/install.php:229
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/settings.php:925
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/install.php:230
-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/settings.php:926
+msgid "Automatic updates only at the top of the network page"
+msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
 
-#: mod/install.php:231
-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/settings.php:928 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:58
+#: view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/install.php:232
-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/settings.php:1004
+msgid "User Types"
+msgstr "Nutzer Art"
 
-#: mod/install.php:236
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/settings.php:1005
+msgid "Community Types"
+msgstr "Gemeinschafts Art"
 
-#: mod/install.php:237
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/settings.php:1006
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/install.php:238
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/settings.php:1007
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/install.php:239
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/settings.php:1010
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/install.php:240 mod/install.php:279
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/settings.php:1011
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: mod/install.php:240 mod/install.php:279
+#: mod/settings.php:1014
+msgid "Community Forum/Celebrity Account"
+msgstr "Forum/Promi-Konto"
+
+#: mod/settings.php:1015
 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."
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
 
-#: mod/install.php:244 mod/install.php:282
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: mod/settings.php:1018
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/install.php:269
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/settings.php:1019
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: mod/install.php:323
-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/settings.php:1022
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/install.php:324
-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/settings.php:1023
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: mod/install.php:328
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/settings.php:1035
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/install.php:328
-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/settings.php:1035
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: mod/install.php:333
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/settings.php:1045
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/install.php:342
-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/settings.php:1051
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/install.php:343
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/settings.php:1059
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/install.php:345
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/settings.php:1063 include/acl_selectors.php:330
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: mod/install.php:356
+#: mod/settings.php:1063
 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."
+"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/install.php:357
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/settings.php:1068
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/install.php:359
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/settings.php:1074
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/install.php:380
-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/settings.php:1080
+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/install.php:381
-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/settings.php:1086
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/install.php:383
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/settings.php:1094
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/install.php:390
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/settings.php:1102
+msgid "Your Identity Address is"
+msgstr "Die Adresse Deines Profils lautet:"
 
-#: mod/install.php:391
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/settings.php:1111
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/install.php:392
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/settings.php:1111
+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/install.php:393
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: mod/settings.php:1112
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/install.php:394
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/settings.php:1113
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: mod/install.php:399 mod/install.php:401
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/settings.php:1114
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/install.php:399
-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/settings.php:1115
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/install.php:407
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/settings.php:1116
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/install.php:411
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+#: mod/settings.php:1117
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: mod/install.php:415
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1118
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/install.php:419
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1144
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/install.php:423
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/settings.php:1152
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/install.php:440
-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/settings.php:1153 mod/register.php:271
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: mod/install.php:441
-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/settings.php:1154 mod/register.php:272
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: mod/install.php:442
-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/settings.php:1154
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/install.php:443
-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/settings.php:1155
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/install.php:446
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/settings.php:1155 mod/settings.php:1156
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/install.php:456
-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/settings.php:1156
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/install.php:457
-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/settings.php:1160
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/install.php:458
-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/settings.php:1161 include/identity.php:538
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: mod/install.php:459
-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/settings.php:1162
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/install.php:462
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/settings.php:1163
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/install.php:478
-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/settings.php:1164
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: mod/install.php:480
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/settings.php:1165
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: mod/install.php:489
-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/settings.php:1168
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/install.php:528
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/settings.php:1170
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: mod/install.php:529
-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/settings.php:1170 mod/settings.php:1200
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/item.php:115
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: mod/settings.php:1171
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/item.php:347
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: mod/settings.php:1172
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178
-#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951
-#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: mod/settings.php:1181 mod/photos.php:1166 mod/photos.php:1538
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/item.php:860
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: mod/settings.php:1182 mod/photos.php:1167 mod/photos.php:1539
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/item.php:989
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
+#: mod/settings.php:1183
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/item.php:991
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: mod/settings.php:1184
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/item.php:992
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
+#: mod/settings.php:1188
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/item.php:996
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: mod/settings.php:1200
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/match.php:13
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: mod/settings.php:1203
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/match.php:22
-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/settings.php:1204
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/match.php:64
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: mod/settings.php:1205
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10
-#: include/identity.php:188
-msgid "Connect"
-msgstr "Verbinden"
+#: mod/settings.php:1206
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/network.php:143
-#, php-format
-msgid "Search Results For: %s"
-msgstr "Suchergebnisse für: %s"
+#: mod/settings.php:1207
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/network.php:197 include/group.php:277
-msgid "add"
-msgstr "hinzufügen"
+#: mod/settings.php:1208
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/network.php:358
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/settings.php:1209
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/network.php:361
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/settings.php:1210
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/network.php:364
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/settings.php:1211
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/network.php:367
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/settings.php:1212
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/network.php:376
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/settings.php:1213
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/network.php:382
-msgid "New"
-msgstr "Neue"
+#: mod/settings.php:1214
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/network.php:385
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/settings.php:1215
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/network.php:391
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/settings.php:1216
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/network.php:394
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/settings.php:1218
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/network.php:400
-msgid "Starred"
-msgstr "Markierte"
+#: mod/settings.php:1218
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/network.php:403
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/settings.php:1220
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/network.php:460
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+#: mod/settings.php:1222
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/network.php:463
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+#: mod/settings.php:1224
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/network.php:572
-#, php-format
-msgid "Contact: %s"
-msgstr "Kontakt: %s"
+#: mod/settings.php:1225
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/network.php:576
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: mod/settings.php:1228
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: mod/network.php:581
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/settings.php:1229
+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/notes.php:44 include/identity.php:670
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: mod/settings.php:1230
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: mod/photos.php:84 include/identity.php:649
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: 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/photos.php:85 mod/photos.php:1836
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: 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/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: 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/photos.php:102 mod/settings.php:34
-msgid "everybody"
-msgstr "jeder"
+#: 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/photos.php:166
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: mod/photos.php:187
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224
-msgid "Delete Album"
-msgstr "Album löschen"
+#: mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: mod/photos.php:220
-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/photos.php:300 mod/photos.php:311 mod/photos.php:1534
-msgid "Delete Photo"
-msgstr "Foto löschen"
-
-#: mod/photos.php:309
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
-
-#: mod/photos.php:684
+#: mod/dfrn_request.php:267
 #, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
 
-#: mod/photos.php:684
-msgid "a photo"
-msgstr "einem Foto"
+#: mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
+#: 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/photos.php:797
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: 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/photos.php:952
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: 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/photos.php:1053 mod/videos.php:298
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: mod/photos.php:1114
+#: mod/dfrn_request.php:480
 #, 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/photos.php:1149
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
-
-#: mod/photos.php:1153 mod/photos.php:1219
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist."
 
-#: mod/photos.php:1154
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: mod/photos.php:1155
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: mod/dfrn_request.php:507 include/follow.php:70
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: 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/photos.php:1168
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: mod/photos.php:1169
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: mod/dfrn_request.php:686
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: mod/photos.php:1232
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: mod/dfrn_request.php:689
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: mod/photos.php:1238
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: mod/dfrn_request.php:690
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: mod/photos.php:1240
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: mod/dfrn_request.php:819
+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/photos.php:1268 mod/photos.php:1821
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: mod/dfrn_request.php:839
+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/photos.php:1314
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: mod/dfrn_request.php:842
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
 
-#: mod/photos.php:1316
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: mod/dfrn_request.php:843
+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/photos.php:1372
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: mod/dfrn_request.php:851 include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: mod/photos.php:1372
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: mod/dfrn_request.php:852
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: mod/dfrn_request.php:854
+#, 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/photos.php:1398
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: mod/register.php:92
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: mod/photos.php:1477
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/register.php:97
+#, 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/photos.php:1480
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: mod/register.php:107
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/photos.php:1520
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/register.php:150
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: mod/photos.php:1521
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: mod/register.php:188 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/photos.php:1522
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/register.php:216
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
 
-#: mod/photos.php:1522
+#: mod/register.php:217
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"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/photos.php:1523
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: mod/register.php:218
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: mod/photos.php:1524
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/register.php:232
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/photos.php:1525
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/register.php:256
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: mod/photos.php:1540
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/register.php:257
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
 
-#: mod/photos.php:1541
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/register.php:268
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vollständiger Name (z.B. Max Mustermann): "
 
-#: mod/photos.php:1563 include/conversation.php:1055
-msgid "Share"
-msgstr "Teilen"
+#: mod/register.php:269
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: mod/photos.php:1827 mod/videos.php:380
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/register.php:271
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: mod/ping.php:233
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: mod/register.php:273
+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/ping.php:248
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: mod/register.php:274
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: mod/ping.php:263
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: mod/register.php:277 boot.php:1239 include/nav.php:109
+msgid "Register"
+msgstr "Registrieren"
 
-#: mod/profile.php:21 include/identity.php:77
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: mod/register.php:283 mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: mod/register.php:284
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:308
+#: mod/search.php:99 include/text.php:977 include/nav.php:119
+msgid "Search"
+msgstr "Suche"
+
+#: mod/search.php:184
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+msgid "Items tagged with: %s"
+msgstr "Beiträge markiert mit: %s"
 
-#: mod/profile_photo.php:118
+#: mod/search.php:186
+#, php-format
+msgid "Search results for: %s"
+msgstr "Suchergebnisse für: %s"
+
+#: mod/directory.php:53 view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
+
+#: mod/directory.php:61
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
+
+#: mod/directory.php:64
+msgid "Site Directory"
+msgstr "Verzeichnis"
+
+#: mod/directory.php:129 mod/profiles.php:747
+msgid "Age: "
+msgstr "Alter: "
+
+#: mod/directory.php:132
+msgid "Gender: "
+msgstr "Geschlecht:"
+
+#: mod/directory.php:154 include/identity.php:270 include/identity.php:540
+msgid "Gender:"
+msgstr "Geschlecht:"
+
+#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
+msgid "Status:"
+msgstr "Status:"
+
+#: mod/directory.php:158 include/identity.php:275 include/identity.php:571
+msgid "Homepage:"
+msgstr "Homepage:"
+
+#: mod/directory.php:160 include/identity.php:277 include/identity.php:581
+msgid "About:"
+msgstr "Über:"
+
+#: mod/directory.php:205
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+
+#: mod/delegate.php:130 include/nav.php:171
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
+
+#: mod/delegate.php:132
 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."
+"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/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Hochladen"
+#: mod/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: mod/profile_photo.php:248 mod/settings.php:1088
-msgid "or"
-msgstr "oder"
+#: mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: mod/common.php:45
+msgid "Common Friends"
+msgstr "Gemeinsame Freunde"
 
-#: mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/common.php:82
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/uexport.php:77
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
 
-#: mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/uexport.php:78
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
+
+#: mod/mood.php:62 include/conversation.php:226
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
+
+#: mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
+
+#: mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"
+
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+
+#: mod/suggest.php:69 include/contact_widgets.php:35
+#: view/theme/diabook/theme.php:527
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
+
+#: mod/suggest.php:76
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+
+#: mod/suggest.php:94
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
 #: mod/profiles.php:37
 msgid "Profile deleted."
@@ -4780,7 +4827,7 @@ msgstr "Sexuelle Vorlieben"
 msgid "Homepage"
 msgstr "Webseite"
 
-#: mod/profiles.php:375 mod/profiles.php:694
+#: mod/profiles.php:375 mod/profiles.php:695
 msgid "Interests"
 msgstr "Interessen"
 
@@ -4788,7 +4835,7 @@ msgstr "Interessen"
 msgid "Address"
 msgstr "Adresse"
 
-#: mod/profiles.php:386 mod/profiles.php:690
+#: mod/profiles.php:386 mod/profiles.php:691
 msgid "Location"
 msgstr "Wohnort"
 
@@ -4796,3181 +4843,3120 @@ msgstr "Wohnort"
 msgid "Profile updated."
 msgstr "Profil aktualisiert."
 
-#: mod/profiles.php:564
+#: mod/profiles.php:565
 msgid " and "
 msgstr " und "
 
-#: mod/profiles.php:572
+#: mod/profiles.php:573
 msgid "public profile"
 msgstr "öffentliches Profil"
 
-#: mod/profiles.php:575
+#: mod/profiles.php:576
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
 
-#: mod/profiles.php:576
+#: mod/profiles.php:577
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr " – %1$ss %2$s besuchen"
 
-#: mod/profiles.php:579
+#: mod/profiles.php:580
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
 
-#: mod/profiles.php:654
+#: mod/profiles.php:655
 msgid "Hide contacts and friends:"
 msgstr "Kontakte und Freunde verbergen"
 
-#: mod/profiles.php:659
+#: mod/profiles.php:660
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/profiles.php:681
+#: mod/profiles.php:682
 msgid "Edit Profile Details"
 msgstr "Profil bearbeiten"
 
-#: mod/profiles.php:683
+#: mod/profiles.php:684
 msgid "Change Profile Photo"
 msgstr "Profilbild ändern"
 
-#: mod/profiles.php:684
+#: mod/profiles.php:685
 msgid "View this profile"
 msgstr "Dieses Profil anzeigen"
 
-#: mod/profiles.php:685
+#: mod/profiles.php:686
 msgid "Create a new profile using these settings"
 msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/profiles.php:686
+#: mod/profiles.php:687
 msgid "Clone this profile"
 msgstr "Dieses Profil duplizieren"
 
-#: mod/profiles.php:687
+#: mod/profiles.php:688
 msgid "Delete this profile"
 msgstr "Dieses Profil löschen"
 
-#: mod/profiles.php:688
+#: mod/profiles.php:689
 msgid "Basic information"
 msgstr "Grundinformationen"
 
-#: mod/profiles.php:689
+#: mod/profiles.php:690
 msgid "Profile picture"
 msgstr "Profilbild"
 
-#: mod/profiles.php:691
+#: mod/profiles.php:692
 msgid "Preferences"
 msgstr "Vorlieben"
 
-#: mod/profiles.php:692
+#: mod/profiles.php:693
 msgid "Status information"
 msgstr "Status Informationen"
 
-#: mod/profiles.php:693
+#: mod/profiles.php:694
 msgid "Additional information"
 msgstr "Zusätzliche Informationen"
 
-#: mod/profiles.php:696
+#: mod/profiles.php:697
 msgid "Profile Name:"
 msgstr "Profilname:"
 
-#: mod/profiles.php:697
+#: mod/profiles.php:698
 msgid "Your Full Name:"
 msgstr "Dein kompletter Name:"
 
-#: mod/profiles.php:698
+#: mod/profiles.php:699
 msgid "Title/Description:"
 msgstr "Titel/Beschreibung:"
 
-#: mod/profiles.php:699
+#: mod/profiles.php:700
 msgid "Your Gender:"
 msgstr "Dein Geschlecht:"
 
-#: mod/profiles.php:700
+#: mod/profiles.php:701
 msgid "Birthday :"
 msgstr "Geburtstag :"
 
-#: mod/profiles.php:701
+#: mod/profiles.php:702
 msgid "Street Address:"
 msgstr "Adresse:"
 
-#: mod/profiles.php:702
+#: mod/profiles.php:703
 msgid "Locality/City:"
 msgstr "Wohnort:"
 
-#: mod/profiles.php:703
+#: mod/profiles.php:704
 msgid "Postal/Zip Code:"
 msgstr "Postleitzahl:"
 
-#: mod/profiles.php:704
+#: mod/profiles.php:705
 msgid "Country:"
 msgstr "Land:"
 
-#: mod/profiles.php:705
+#: mod/profiles.php:706
 msgid "Region/State:"
 msgstr "Region/Bundesstaat:"
 
-#: mod/profiles.php:706
+#: mod/profiles.php:707
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/profiles.php:707
+#: mod/profiles.php:708
 msgid "Who: (if applicable)"
 msgstr "Wer: (falls anwendbar)"
 
-#: mod/profiles.php:708
+#: mod/profiles.php:709
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/profiles.php:709
+#: mod/profiles.php:710
 msgid "Since [date]:"
 msgstr "Seit [Datum]:"
 
-#: mod/profiles.php:710 include/identity.php:569
+#: mod/profiles.php:711 include/identity.php:569
 msgid "Sexual Preference:"
 msgstr "Sexuelle Vorlieben:"
 
-#: mod/profiles.php:711
+#: mod/profiles.php:712
 msgid "Homepage URL:"
 msgstr "Adresse der Homepage:"
 
-#: mod/profiles.php:712 include/identity.php:573
+#: mod/profiles.php:713 include/identity.php:573
 msgid "Hometown:"
 msgstr "Heimatort:"
 
-#: mod/profiles.php:713 include/identity.php:577
+#: mod/profiles.php:714 include/identity.php:577
 msgid "Political Views:"
 msgstr "Politische Ansichten:"
 
-#: mod/profiles.php:714
+#: mod/profiles.php:715
 msgid "Religious Views:"
 msgstr "Religiöse Ansichten:"
 
-#: mod/profiles.php:715
+#: mod/profiles.php:716
 msgid "Public Keywords:"
 msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/profiles.php:716
+#: mod/profiles.php:717
 msgid "Private Keywords:"
 msgstr "Private Schlüsselwörter:"
 
-#: mod/profiles.php:717 include/identity.php:585
+#: mod/profiles.php:718 include/identity.php:585
 msgid "Likes:"
 msgstr "Likes:"
 
-#: mod/profiles.php:718 include/identity.php:587
+#: mod/profiles.php:719 include/identity.php:587
 msgid "Dislikes:"
 msgstr "Dislikes:"
 
-#: mod/profiles.php:719
+#: mod/profiles.php:720
 msgid "Example: fishing photography software"
 msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/profiles.php:720
+#: mod/profiles.php:721
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
 
-#: mod/profiles.php:721
+#: mod/profiles.php:722
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: mod/profiles.php:722
+#: mod/profiles.php:723
 msgid "Tell us about yourself..."
 msgstr "Erzähle uns ein bisschen von Dir …"
 
-#: mod/profiles.php:723
+#: mod/profiles.php:724
 msgid "Hobbies/Interests"
 msgstr "Hobbies/Interessen"
 
-#: mod/profiles.php:724
+#: mod/profiles.php:725
 msgid "Contact information and Social Networks"
 msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/profiles.php:725
+#: mod/profiles.php:726
 msgid "Musical interests"
 msgstr "Musikalische Interessen"
 
-#: mod/profiles.php:726
+#: mod/profiles.php:727
 msgid "Books, literature"
 msgstr "Bücher, Literatur"
 
-#: mod/profiles.php:727
+#: mod/profiles.php:728
 msgid "Television"
 msgstr "Fernsehen"
 
-#: mod/profiles.php:728
+#: mod/profiles.php:729
 msgid "Film/dance/culture/entertainment"
 msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/profiles.php:729
+#: mod/profiles.php:730
 msgid "Love/romance"
 msgstr "Liebe/Romantik"
 
-#: mod/profiles.php:730
+#: mod/profiles.php:731
 msgid "Work/employment"
 msgstr "Arbeit/Anstellung"
 
-#: mod/profiles.php:731
+#: mod/profiles.php:732
 msgid "School/education"
 msgstr "Schule/Ausbildung"
 
-#: mod/profiles.php:736
+#: mod/profiles.php:737
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
 
-#: mod/profiles.php:799
+#: mod/profiles.php:800
 msgid "Edit/Manage Profiles"
 msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257
+#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257
 msgid "Change profile photo"
 msgstr "Profilbild ändern"
 
-#: mod/profiles.php:801 include/identity.php:232
+#: mod/profiles.php:802 include/identity.php:232
 msgid "Create New Profile"
 msgstr "Neues Profil anlegen"
 
-#: mod/profiles.php:812 include/identity.php:242
+#: mod/profiles.php:813 include/identity.php:242
 msgid "Profile Image"
 msgstr "Profilbild"
 
-#: mod/profiles.php:814 include/identity.php:245
+#: mod/profiles.php:815 include/identity.php:245
 msgid "visible to everybody"
 msgstr "sichtbar für jeden"
 
-#: mod/profiles.php:815 include/identity.php:246
+#: mod/profiles.php:816 include/identity.php:246
 msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: mod/editpost.php:40
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: mod/profperm.php:115
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: mod/editpost.php:111 include/conversation.php:1057
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: mod/editpost.php:112 include/conversation.php:1058
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: mod/search.php:180
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge markiert mit: %s"
+#: mod/editpost.php:113 include/conversation.php:1059
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: mod/search.php:182
-#, php-format
-msgid "Search results for: %s"
-msgstr "Suchergebnisse für: %s"
+#: mod/editpost.php:115 include/conversation.php:1061
+msgid "web link"
+msgstr "Weblink"
 
-#: mod/share.php:38
-msgid "link"
-msgstr "Link"
+#: mod/editpost.php:116 include/conversation.php:1062
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: mod/editpost.php:117 include/conversation.php:1063
+msgid "video link"
+msgstr "Video-Link"
 
-#: mod/suggest.php:76
-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/editpost.php:118 include/conversation.php:1064
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: mod/suggest.php:94
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: mod/editpost.php:119 include/conversation.php:1065
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: mod/videos.php:113
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/editpost.php:120 include/conversation.php:1066
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: mod/videos.php:118
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/editpost.php:121 include/conversation.php:1067
+msgid "set location"
+msgstr "Ort setzen"
 
-#: mod/videos.php:197
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/editpost.php:122 include/conversation.php:1068
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: mod/videos.php:373 include/text.php:1429
-msgid "View Video"
-msgstr "Video ansehen"
+#: mod/editpost.php:123 include/conversation.php:1069
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: mod/videos.php:389
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/editpost.php:125 include/conversation.php:1075
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: mod/videos.php:391
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/editpost.php:133 include/acl_selectors.php:343
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: 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/editpost.php:134 include/conversation.php:1084
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: 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/editpost.php:137 include/conversation.php:1071
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+#: mod/editpost.php:139 include/conversation.php:1073
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: mod/wall_attach.php:122 mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: mod/editpost.php:140 include/acl_selectors.php:344
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: mod/register.php:92
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+#: mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/register.php:97
-#, php-format
+#: mod/friendica.php:60
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
+
+#: mod/friendica.php:62
 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."
+"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/register.php:107
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: mod/register.php:150
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: mod/friendica.php:64
+msgid "the bugtracker at github"
+msgstr "dem Bugtracker auf github"
 
-#: mod/register.php:216
+#: mod/friendica.php:65
 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."
+"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/register.php:217
-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/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps"
 
-#: mod/register.php:218
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: mod/register.php:232
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: mod/register.php:256
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: 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/register.php:257
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
-#: mod/register.php:268
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vollständiger Name (z.B. Max Mustermann): "
+#: 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/register.php:269
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/lockview.php:31 mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: mod/register.php:271 mod/settings.php:1144
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: mod/register.php:271
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/notes.php:44 include/identity.php:670
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: mod/register.php:272 mod/settings.php:1145
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: mod/register.php:273
-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/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: mod/register.php:274
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: 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/register.php:277 include/nav.php:109 boot.php:1238
-msgid "Register"
-msgstr "Registrieren"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: mod/register.php:284
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: mod/settings.php:46
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: mod/settings.php:51
-msgid "Display"
-msgstr "Anzeige"
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: mod/settings.php:57 mod/settings.php:805
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: mod/settings.php:67 include/nav.php:171
-msgid "Delegations"
-msgstr "Delegationen"
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: mod/settings.php:72
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: mod/settings.php:82
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: mod/settings.php:134
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: mod/settings.php:245
-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/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: mod/settings.php:250
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: mod/settings.php:265
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: mod/settings.php:328
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: 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/settings.php:342 include/user.php:39
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+#: mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: mod/settings.php:347
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: 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/settings.php:355
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: mod/settings.php:366
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: mod/settings.php:368
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: 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/settings.php:435
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
 
-#: mod/settings.php:437
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: 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/settings.php:446
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/invite.php:132
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: mod/settings.php:451
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: mod/settings.php:457
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: 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/settings.php:513
-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/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: mod/settings.php:517
-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/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
 
-#: mod/settings.php:547
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: 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/settings.php:620 mod/settings.php:646 mod/settings.php:682
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086
+#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779
+#: mod/photos.php:1791 view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: mod/settings.php:624 mod/settings.php:650
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/photos.php:84 include/identity.php:649
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: mod/settings.php:625 mod/settings.php:651
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/photos.php:85 mod/photos.php:1836
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: mod/settings.php:626 mod/settings.php:652
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: mod/settings.php:627 mod/settings.php:653
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/photos.php:166
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/settings.php:638
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/photos.php:187
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: mod/settings.php:681
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/settings.php:685
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: mod/photos.php:220
+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/settings.php:686
-msgid "No name"
-msgstr "Kein Name"
+#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/settings.php:687
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/photos.php:309
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/settings.php:699
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: mod/photos.php:684
+#, 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/settings.php:707
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: mod/photos.php:684
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/settings.php:721
-msgid "Off"
-msgstr "Aus"
+#: mod/photos.php:797
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/settings.php:721
-msgid "On"
-msgstr "An"
+#: mod/photos.php:952
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/settings.php:729
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
-
-#: mod/settings.php:739 mod/settings.php:743
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
-
-#: mod/settings.php:749
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
-
-#: mod/settings.php:751
-msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the"
-" original friendica post."
-msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
-
-#: mod/settings.php:761 mod/settings.php:762
+#: mod/photos.php:1114
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+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/settings.php:761 mod/settings.php:762
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/photos.php:1149
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/settings.php:761 mod/settings.php:762
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/photos.php:1153 mod/photos.php:1219
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/settings.php:762
-msgid "StatusNet"
-msgstr "StatusNet"
+#: mod/photos.php:1154
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/settings.php:798
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/photos.php:1155
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/settings.php:810
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: mod/settings.php:811
-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/photos.php:1168
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: mod/settings.php:812
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: mod/photos.php:1169
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: mod/settings.php:814
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/photos.php:1232
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/settings.php:815
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/photos.php:1238
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/settings.php:816
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/photos.php:1240
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: mod/settings.php:816 mod/settings.php:821
-msgid "None"
-msgstr "Keine"
+#: mod/photos.php:1268 mod/photos.php:1821
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/settings.php:817
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/photos.php:1314
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/settings.php:818
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/photos.php:1316
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/settings.php:819
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/photos.php:1372
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/settings.php:820
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/photos.php:1372
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/settings.php:821
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/photos.php:1373
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/settings.php:821
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: mod/photos.php:1398
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/settings.php:821
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/photos.php:1477
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/settings.php:822
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/photos.php:1480
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/settings.php:903
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/photos.php:1520
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/settings.php:909 mod/settings.php:925
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/photos.php:1521
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/settings.php:910
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/photos.php:1522
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/settings.php:911
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/photos.php:1522
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/settings.php:911
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimal 10 Sekunden, kein Maximum"
+#: mod/photos.php:1523
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/settings.php:912
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/photos.php:1524
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/settings.php:912 mod/settings.php:913
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/photos.php:1525
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/settings.php:913
-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/photos.php:1540
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: mod/settings.php:914
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/photos.php:1541
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: mod/settings.php:915
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/photos.php:1563 include/conversation.php:1055
+msgid "Share"
+msgstr "Teilen"
 
-#: mod/settings.php:916
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/p.php:9
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: mod/settings.php:917
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
+#: mod/regmod.php:55
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: mod/settings.php:995
-msgid "User Types"
-msgstr "Nutzer Art"
+#: mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: mod/settings.php:996
-msgid "Community Types"
-msgstr "Gemeinschafts Art"
+#: mod/regmod.php:104
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: mod/settings.php:997
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/uimport.php:66
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: mod/settings.php:998
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: 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/settings.php:1001
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."
 
-#: mod/settings.php:1002
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
 
-#: mod/settings.php:1005
-msgid "Community Forum/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: mod/uimport.php:70
+msgid "Account file"
+msgstr "Account Datei"
 
-#: mod/settings.php:1006
+#: mod/uimport.php:70
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: mod/settings.php:1009
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: mod/settings.php:1010
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: mod/settings.php:1013
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: boot.php:754
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: mod/settings.php:1014
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: boot.php:757
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: mod/settings.php:1026
-msgid "OpenID:"
-msgstr "OpenID:"
+#: boot.php:1131
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: mod/settings.php:1026
-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:1036
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: boot.php:1238
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: mod/settings.php:1042
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: boot.php:1263 include/nav.php:73
+msgid "Logout"
+msgstr "Abmelden"
 
-#: mod/settings.php:1050
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: boot.php:1266
+msgid "Nickname or Email address: "
+msgstr "Spitzname oder E-Mail-Adresse: "
 
-#: mod/settings.php:1054 include/acl_selectors.php:330
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: boot.php:1267
+msgid "Password: "
+msgstr "Passwort: "
 
-#: mod/settings.php:1054
-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"
+#: boot.php:1268
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: mod/settings.php:1059
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: boot.php:1271
+msgid "Or login using OpenID: "
+msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: mod/settings.php:1065
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: boot.php:1277
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: mod/settings.php:1071
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: boot.php:1280
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: mod/settings.php:1077
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: boot.php:1281
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: mod/settings.php:1085
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: boot.php:1283
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: mod/settings.php:1093
-msgid "Your Identity Address is"
-msgstr "Die Adresse Deines Profils lautet:"
+#: boot.php:1284
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: mod/settings.php:1102
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: object/Item.php:95
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: mod/settings.php:1102
-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."
+#: object/Item.php:209
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: mod/settings.php:1103
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: object/Item.php:210
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: mod/settings.php:1104
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: object/Item.php:211
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/settings.php:1105
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: object/Item.php:214
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: mod/settings.php:1106
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: object/Item.php:318 include/conversation.php:665
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: mod/settings.php:1107
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: object/Item.php:319 include/conversation.php:666
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: mod/settings.php:1108
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: object/Item.php:331
+msgid "via"
+msgstr "via"
 
-#: mod/settings.php:1109
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: 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/settings.php:1135
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: mod/settings.php:1143
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: include/dbstructure.php:152
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: mod/settings.php:1145
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+#: include/dbstructure.php:210
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
-#: mod/settings.php:1146
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: include/auth.php:38
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: mod/settings.php:1146 mod/settings.php:1147
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+#: include/auth.php:128 include/user.php:75
+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/settings.php:1147
-msgid "Password:"
-msgstr "Passwort:"
+#: include/auth.php:128 include/user.php:75
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: mod/settings.php:1151
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: mod/settings.php:1152 include/identity.php:538
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: mod/settings.php:1153
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: mod/settings.php:1154
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: 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/settings.php:1155
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Leute finden"
 
-#: mod/settings.php:1156
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: mod/settings.php:1159
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: mod/settings.php:1161
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
+#: include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: mod/settings.php:1161 mod/settings.php:1191
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: mod/settings.php:1162
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: mod/settings.php:1163
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: mod/settings.php:1174
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: mod/settings.php:1175
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: mod/settings.php:1179
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: include/contact_widgets.php:104 include/features.php:60
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: mod/settings.php:1191
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: include/contact_widgets.php:107 include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Alles"
 
-#: mod/settings.php:1194
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Kategorien"
 
-#: mod/settings.php:1195
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: mod/settings.php:1196
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: mod/settings.php:1197
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: mod/settings.php:1198
-msgid "making an <em>interesting</em> profile change"
-msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
+#: include/features.php:30
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: mod/settings.php:1199
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: include/features.php:31
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: mod/settings.php:1200
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: mod/settings.php:1201
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: include/features.php:32
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: mod/settings.php:1202
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: 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/settings.php:1203
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: mod/settings.php:1204
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: mod/settings.php:1205
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: mod/settings.php:1206
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: include/features.php:39
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: mod/settings.php:1207
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: mod/settings.php:1209
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: include/features.php:40
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: mod/settings.php:1209
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: 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/settings.php:1211
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: include/features.php:41
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: mod/settings.php:1213
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: 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/settings.php:1215
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: mod/settings.php:1216
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: include/features.php:47
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: mod/settings.php:1219
-msgid "Relocate"
-msgstr "Umziehen"
+#: include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: mod/settings.php:1220
-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."
+#: 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/settings.php:1221
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: include/features.php:49
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263
-msgid "Login"
-msgstr "Anmeldung"
+#: 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/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: 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/friendica.php:60
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: 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/features.php:56
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: mod/friendica.php:64
-msgid "the bugtracker at github"
-msgstr "dem Bugtracker auf github"
+#: include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: 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/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/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps"
+#: include/features.php:58
+msgid "Tagging"
+msgstr "Tagging"
 
-#: mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: include/features.php:59
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: 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"
+#: include/features.php:61
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Leute finden"
+#: include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: include/features.php:62
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Netzwerke"
+#: include/follow.php:75
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: include/follow.php:102
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: include/contact_widgets.php:104 include/features.php:60
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
+#: include/follow.php:103 include/follow.php:123
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: include/contact_widgets.php:107 include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Alles"
+#: include/follow.php:121
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Kategorien"
+#: include/follow.php:125
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: include/plugin.php:455 include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: include/follow.php:127
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
+#: include/follow.php:129
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
-
-#: include/dba_pdo.php:72 include/dba.php:56
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
-
-#: include/auth.php:38
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: include/follow.php:130
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: include/auth.php:128 include/user.php:75
+#: include/follow.php:136
 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."
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: include/auth.php:128 include/user.php:75
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: include/follow.php:146
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: include/follow.php:249
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: include/follow.php:302
+msgid "following"
+msgstr "folgen"
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: include/uimport.php:120 include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: include/group.php:226
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: include/group.php:249
+msgid "edit"
+msgstr "bearbeiten"
 
-#: include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+#: include/group.php:271
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+#: include/group.php:272
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: include/message.php:15 include/message.php:172
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: include/group.php:275
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: include/datetime.php:43 include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: include/datetime.php:141
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: include/datetime.php:256
+msgid "never"
+msgstr "nie"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: include/datetime.php:262
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: include/datetime.php:272
+msgid "year"
+msgstr "Jahr"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: include/datetime.php:272
+msgid "years"
+msgstr "Jahre"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: include/datetime.php:273
+msgid "month"
+msgstr "Monat"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: include/datetime.php:273
+msgid "months"
+msgstr "Monate"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/datetime.php:274
+msgid "week"
+msgstr "Woche"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/datetime.php:274
+msgid "weeks"
+msgstr "Wochen"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: include/datetime.php:275
+msgid "day"
+msgstr "Tag"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/datetime.php:275
+msgid "days"
+msgstr "Tage"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: include/datetime.php:276
+msgid "hour"
+msgstr "Stunde"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/datetime.php:276
+msgid "hours"
+msgstr "Stunden"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/datetime.php:277
+msgid "minute"
+msgstr "Minute"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/datetime.php:277
+msgid "minutes"
+msgstr "Minuten"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/datetime.php:278
+msgid "second"
+msgstr "Sekunde"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: include/datetime.php:278
+msgid "seconds"
+msgstr "Sekunden"
 
-#: include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "StatusNet"
+#: include/datetime.php:287
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: include/datetime.php:459 include/items.php:2431
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: include/datetime.php:460 include/items.php:2432
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: include/identity.php:38
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: include/identity.php:121 include/identity.php:255 include/identity.php:607
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: include/features.php:30
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: include/identity.php:220
+msgid "Message"
+msgstr "Nachricht"
 
-#: include/features.php:31
-msgid "Richtext Editor"
-msgstr "Web-Editor"
+#: include/identity.php:226 include/nav.php:176
+msgid "Profiles"
+msgstr "Profile"
 
-#: include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
+#: include/identity.php:226
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: include/features.php:32
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: include/identity.php:341
+msgid "Network:"
+msgstr "Netzwerk"
 
-#: include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+#: include/identity.php:373 include/identity.php:459
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
+#: include/identity.php:374 include/identity.php:460
+msgid "F d"
+msgstr "d. F"
 
-#: include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
+#: include/identity.php:419 include/identity.php:506
+msgid "[today]"
+msgstr "[heute]"
 
-#: include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: include/identity.php:431
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: include/features.php:39
-msgid "Search by Date"
-msgstr "Archiv"
+#: include/identity.php:432
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: include/identity.php:493
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: include/features.php:40
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: include/identity.php:517
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+#: include/identity.php:518
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: include/features.php:41
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
+#: include/identity.php:545
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
+#: include/identity.php:546
+msgid "j F"
+msgstr "j F"
 
-#: include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: include/identity.php:553
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: include/features.php:47
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
+#: include/identity.php:557
+msgid "Age:"
+msgstr "Alter:"
 
-#: include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
+#: include/identity.php:566
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
+#: include/identity.php:575
+msgid "Tags:"
+msgstr "Tags"
 
-#: include/features.php:49
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
+#: include/identity.php:579
+msgid "Religion:"
+msgstr "Religion:"
 
-#: include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
+#: include/identity.php:583
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
+#: include/identity.php:590
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
+#: include/identity.php:592
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+#: include/identity.php:594
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: include/identity.php:596
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: include/identity.php:598
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: include/identity.php:600
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
+#: include/identity.php:602
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: include/features.php:58
-msgid "Tagging"
-msgstr "Tagging"
+#: include/identity.php:604
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: include/identity.php:632 include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: include/features.php:59
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: include/identity.php:635
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: include/identity.php:642
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: include/identity.php:653 include/identity.php:656 include/nav.php:79
+msgid "Videos"
+msgstr "Videos"
 
-#: include/features.php:61
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: include/identity.php:666
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: include/identity.php:673
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: include/features.php:62
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: include/acl_selectors.php:324
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: include/acl_selectors.php:329
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
+#: include/acl_selectors.php:335
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
+#: include/acl_selectors.php:336 view/theme/diabook/config.php:142
+#: view/theme/diabook/theme.php:621
+msgid "show"
+msgstr "zeigen"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: include/acl_selectors.php:337 view/theme/diabook/config.php:142
+#: view/theme/diabook/theme.php:621
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: include/message.php:15 include/message.php:172
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: include/Contact.php:119
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: include/Contact.php:232 include/conversation.php:881
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: include/Contact.php:233 include/conversation.php:875
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: include/Contact.php:234 include/conversation.php:876
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: include/Contact.php:235 include/conversation.php:877
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: include/Contact.php:236 include/Contact.php:259
+#: include/conversation.php:878
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: include/Contact.php:237 include/Contact.php:259
+#: include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: include/Contact.php:239 include/Contact.php:259
+#: include/conversation.php:880
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: include/security.php:375
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: include/conversation.php:118 include/conversation.php:245
+#: include/text.php:1998 view/theme/diabook/theme.php:463
+msgid "event"
+msgstr "Veranstaltung"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: include/conversation.php:290
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: 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"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: include/conversation.php:771
+msgid "remove"
+msgstr "löschen"
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: 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"
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: 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"
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: include/conversation.php:965
+msgid "and"
+msgstr "und"
 
-#: include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen das nicht."
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: include/conversation.php:1000 include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: include/conversation.php:1002 include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: include/conversation.php:1003 include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: include/conversation.php:1004 include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: include/conversation.php:1006 include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301
-msgid "Friends"
-msgstr "Freunde"
+#: include/conversation.php:1076
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: include/conversation.php:1099
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: include/conversation.php:1100
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: include/conversation.php:1101
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: include/network.php:959
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: include/text.php:299
+msgid "newer"
+msgstr "neuer"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: include/text.php:301
+msgid "older"
+msgstr "älter"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: include/text.php:306
+msgid "prev"
+msgstr "vorige"
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: include/text.php:308
+msgid "first"
+msgstr "erste"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: include/text.php:340
+msgid "last"
+msgstr "letzte"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: include/text.php:343
+msgid "next"
+msgstr "nächste"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: include/text.php:399
+msgid "The end"
+msgstr "Das Ende"
 
-#: include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: include/text.php:878
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: include/text.php:887
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: include/text.php:1027
+msgid "poke"
+msgstr "anstupsen"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: include/text.php:1027
+msgid "poked"
+msgstr "stupste"
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: include/text.php:1028
+msgid "ping"
+msgstr "anpingen"
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: include/text.php:1028
+msgid "pinged"
+msgstr "pingte"
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: include/text.php:1029
+msgid "prod"
+msgstr "knuffen"
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: include/text.php:1029
+msgid "prodded"
+msgstr "knuffte"
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: include/text.php:1030
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: include/Contact.php:119
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: include/text.php:1030
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: include/Contact.php:232 include/conversation.php:881
-msgid "Poke"
-msgstr "Anstupsen"
+#: include/text.php:1031
+msgid "finger"
+msgstr "befummeln"
 
-#: include/Contact.php:233 include/conversation.php:875
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: include/text.php:1031
+msgid "fingered"
+msgstr "befummelte"
 
-#: include/Contact.php:234 include/conversation.php:876
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/text.php:1032
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: include/Contact.php:235 include/conversation.php:877
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: include/text.php:1032
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: include/Contact.php:236 include/Contact.php:259
-#: include/conversation.php:878
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: include/text.php:1046
+msgid "happy"
+msgstr "glücklich"
 
-#: include/Contact.php:237 include/Contact.php:259
-#: include/conversation.php:879
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: include/text.php:1047
+msgid "sad"
+msgstr "traurig"
 
-#: include/Contact.php:238
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: include/text.php:1048
+msgid "mellow"
+msgstr "sanft"
 
-#: include/Contact.php:239 include/Contact.php:259
-#: include/conversation.php:880
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: include/text.php:1049
+msgid "tired"
+msgstr "müde"
 
-#: include/Scrape.php:608
-msgid " on Last.fm"
-msgstr " bei Last.fm"
+#: include/text.php:1050
+msgid "perky"
+msgstr "frech"
 
-#: include/acl_selectors.php:324
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: include/text.php:1051
+msgid "angry"
+msgstr "sauer"
 
-#: include/acl_selectors.php:329
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+#: include/text.php:1052
+msgid "stupified"
+msgstr "verblüfft"
 
-#: include/acl_selectors.php:335
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: include/text.php:1053
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: include/api.php:310 include/api.php:321 include/api.php:430
-#: include/api.php:1133 include/api.php:1135
-msgid "User not found."
-msgstr "Nutzer nicht gefunden."
+#: include/text.php:1054
+msgid "interested"
+msgstr "interessiert"
 
-#: include/api.php:784
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/text.php:1055
+msgid "bitter"
+msgstr "verbittert"
 
-#: include/api.php:803
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/text.php:1056
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: include/api.php:822
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/text.php:1057
+msgid "alive"
+msgstr "lebendig"
 
-#: include/api.php:1342
-msgid "There is no status with this id."
-msgstr "Es gibt keinen Status mit dieser ID."
+#: include/text.php:1058
+msgid "annoyed"
+msgstr "verärgert"
 
-#: include/api.php:1416
-msgid "There is no conversation with this id."
-msgstr "Es existiert keine Unterhaltung mit dieser ID."
+#: include/text.php:1059
+msgid "anxious"
+msgstr "unruhig"
 
-#: include/api.php:1686
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: include/text.php:1060
+msgid "cranky"
+msgstr "schrullig"
 
-#: include/api.php:1697
-msgid "Invalid item."
-msgstr "Ungültiges Objekt"
+#: include/text.php:1061
+msgid "disturbed"
+msgstr "verstört"
 
-#: include/api.php:1707
-msgid "Invalid action. "
-msgstr "Ungültige Aktion"
+#: include/text.php:1062
+msgid "frustrated"
+msgstr "frustriert"
 
-#: include/api.php:1715
-msgid "DB error"
-msgstr "DB Error"
+#: include/text.php:1063
+msgid "motivated"
+msgstr "motiviert"
 
-#: include/bb2diaspora.php:145 include/event.php:22
-msgid "Starts:"
-msgstr "Beginnt:"
+#: include/text.php:1064
+msgid "relaxed"
+msgstr "entspannt"
 
-#: include/bb2diaspora.php:153 include/event.php:32
-msgid "Finishes:"
-msgstr "Endet:"
+#: include/text.php:1065
+msgid "surprised"
+msgstr "überrascht"
 
-#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: include/text.php:1235
+msgid "Monday"
+msgstr "Montag"
 
-#: include/bbcode.php:549
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/text.php:1235
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/bbcode.php:583
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
+#: include/text.php:1235
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/bbcode.php:1065 include/bbcode.php:1085
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: include/text.php:1235
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: include/bbcode.php:1110 include/bbcode.php:1111
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: include/text.php:1235
+msgid "Friday"
+msgstr "Freitag"
 
-#: include/conversation.php:206
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: include/text.php:1235
+msgid "Saturday"
+msgstr "Samstag"
 
-#: include/conversation.php:290
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: include/text.php:1235
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: 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"
+#: include/text.php:1239
+msgid "January"
+msgstr "Januar"
 
-#: include/conversation.php:771
-msgid "remove"
-msgstr "löschen"
+#: include/text.php:1239
+msgid "February"
+msgstr "Februar"
 
-#: include/conversation.php:775
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/text.php:1239
+msgid "March"
+msgstr "März"
 
-#: include/conversation.php:874
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/text.php:1239
+msgid "April"
+msgstr "April"
 
-#: include/conversation.php:943
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: include/text.php:1239
+msgid "May"
+msgstr "Mai"
 
-#: include/conversation.php:943
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: include/text.php:1239
+msgid "June"
+msgstr "Juni"
 
-#: 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"
+#: include/text.php:1239
+msgid "July"
+msgstr "Juli"
 
-#: 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"
+#: include/text.php:1239
+msgid "August"
+msgstr "August"
 
-#: include/conversation.php:965
-msgid "and"
-msgstr "und"
+#: include/text.php:1239
+msgid "September"
+msgstr "September"
 
-#: include/conversation.php:971
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: include/text.php:1239
+msgid "October"
+msgstr "Oktober"
 
-#: include/conversation.php:973
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: include/text.php:1239
+msgid "November"
+msgstr "November"
 
-#: include/conversation.php:973
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen das nicht."
+#: include/text.php:1239
+msgid "December"
+msgstr "Dezember"
 
-#: include/conversation.php:1000 include/conversation.php:1018
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/text.php:1461
+msgid "bytes"
+msgstr "Byte"
 
-#: include/conversation.php:1002 include/conversation.php:1020
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/text.php:1493 include/text.php:1505
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: include/conversation.php:1003 include/conversation.php:1021
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/text.php:1734 include/user.php:255
+#: view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "Standard"
 
-#: include/conversation.php:1004 include/conversation.php:1022
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/text.php:1746
+msgid "Select an alternate language"
+msgstr "Alternative Sprache auswählen"
 
-#: include/conversation.php:1006 include/conversation.php:1024
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/text.php:2002
+msgid "activity"
+msgstr "Aktivität"
 
-#: include/conversation.php:1007
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/text.php:2005
+msgid "post"
+msgstr "Beitrag"
 
-#: include/conversation.php:1076
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: include/text.php:2173
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
 
-#: include/conversation.php:1099
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: include/bbcode.php:451 include/bbcode.php:1105 include/bbcode.php:1106
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: include/conversation.php:1100
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: include/bbcode.php:549
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/conversation.php:1101
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: include/bbcode.php:583
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
 
-#: include/datetime.php:43 include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: include/bbcode.php:1069 include/bbcode.php:1089
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: include/datetime.php:141
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
+#: include/bbcode.php:1114 include/bbcode.php:1115
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: include/datetime.php:256
-msgid "never"
-msgstr "nie"
+#: include/notifier.php:829 include/delivery.php:456
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: include/datetime.php:262
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: include/notifier.php:839 include/delivery.php:467 include/enotify.php:33
+msgid "noreply"
+msgstr "noreply"
 
-#: include/datetime.php:272
-msgid "year"
-msgstr "Jahr"
+#: include/dba_pdo.php:72 include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: include/datetime.php:272
-msgid "years"
-msgstr "Jahre"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: include/datetime.php:273
-msgid "month"
-msgstr "Monat"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: include/datetime.php:273
-msgid "months"
-msgstr "Monate"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: include/datetime.php:274
-msgid "week"
-msgstr "Woche"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: include/datetime.php:274
-msgid "weeks"
-msgstr "Wochen"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: include/datetime.php:275
-msgid "day"
-msgstr "Tag"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: include/datetime.php:275
-msgid "days"
-msgstr "Tage"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: include/datetime.php:276
-msgid "hour"
-msgstr "Stunde"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: include/datetime.php:276
-msgid "hours"
-msgstr "Stunden"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/datetime.php:277
-msgid "minute"
-msgstr "Minute"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/datetime.php:277
-msgid "minutes"
-msgstr "Minuten"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: include/datetime.php:278
-msgid "second"
-msgstr "Sekunde"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/datetime.php:278
-msgid "seconds"
-msgstr "Sekunden"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: include/datetime.php:287
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/datetime.php:459 include/items.php:2431
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/datetime.php:460 include/items.php:2432
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: include/dbstructure.php:152
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "StatusNet"
 
-#: include/dbstructure.php:210
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: include/delivery.php:456 include/notifier.php:825
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: include/contact_selectors.php:103
+msgid "Redmatrix"
+msgstr "Redmatrix"
 
-#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835
-msgid "noreply"
-msgstr "noreply"
+#: include/Scrape.php:603
+msgid " on Last.fm"
+msgstr " bei Last.fm"
 
-#: include/diaspora.php:705
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: include/bb2diaspora.php:154 include/event.php:22
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: include/diaspora.php:2539
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: include/bb2diaspora.php:162 include/event.php:32
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: include/plugin.php:455 include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: include/enotify.php:21
-msgid "Thank You,"
-msgstr "Danke,"
+#: include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/nav.php:73
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/enotify.php:78
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: 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"
 
-#: include/enotify.php:80
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
+#: include/nav.php:77 view/theme/diabook/theme.php:124
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/enotify.php:81
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte Dir %2$s."
+#: include/nav.php:78 view/theme/diabook/theme.php:126
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: include/enotify.php:81
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: include/nav.php:79
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: include/enotify.php:82
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: include/nav.php:80 view/theme/diabook/theme.php:127
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: include/nav.php:81 view/theme/diabook/theme.php:128
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+#: include/nav.php:81
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
+#: include/nav.php:92
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Homepage"
 
-#: include/enotify.php:160
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191
-#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: include/nav.php:114
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: include/enotify.php:170
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
+#: include/nav.php:117
+msgid "Apps"
+msgstr "Apps"
 
-#: include/enotify.php:172
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
+#: include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
+#: include/nav.php:119
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
+#: include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: include/enotify.php:186
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte Dich auf %2$s"
+#: include/nav.php:131
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
+#: include/nav.php:133
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: include/enotify.php:198
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: include/nav.php:133
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: include/enotify.php:199
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: include/nav.php:135
+msgid "Information"
+msgstr "Information"
 
-#: include/enotify.php:200
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: include/enotify.php:212
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
+#: include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: include/enotify.php:213
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat Dich auf %2$s angestupst"
+#: include/nav.php:146
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: include/enotify.php:214
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
+#: include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: include/enotify.php:229
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
+#: include/nav.php:153
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: include/enotify.php:230
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
+#: include/nav.php:157
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: include/enotify.php:231
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: include/nav.php:158
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: include/enotify.php:242
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
-
-#: include/enotify.php:243
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
-
-#: include/enotify.php:244
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+#: include/nav.php:162
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: include/enotify.php:247 include/enotify.php:289
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst Du das Profil betrachten: %s"
+#: include/nav.php:163
+msgid "Inbox"
+msgstr "Eingang"
 
-#: include/enotify.php:249
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: include/nav.php:164
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: include/enotify.php:257
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
+#: include/nav.php:168
+msgid "Manage"
+msgstr "Verwalten"
 
-#: include/enotify.php:258 include/enotify.php:259
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit Dir auf %2$s"
+#: include/nav.php:168
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: include/enotify.php:265
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: include/nav.php:173
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/enotify.php:266 include/enotify.php:267
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
+#: include/nav.php:176
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/enotify.php:280
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: include/nav.php:178
+msgid "Manage/edit friends and contacts"
+msgstr "Freunde und Kontakte verwalten/editieren"
 
-#: include/enotify.php:281
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
+#: include/nav.php:185
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/enotify.php:282
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
+#: include/nav.php:189
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/enotify.php:287
-msgid "Name:"
-msgstr "Name:"
+#: include/nav.php:189
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/enotify.php:288
-msgid "Photo:"
-msgstr "Foto:"
+#: include/api.php:310 include/api.php:321 include/api.php:430
+#: include/api.php:1133 include/api.php:1135
+msgid "User not found."
+msgstr "Nutzer nicht gefunden."
 
-#: include/enotify.php:291
+#: include/api.php:784
 #, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
-
-#: include/enotify.php:299 include/enotify.php:312
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: include/enotify.php:300 include/enotify.php:313
+#: include/api.php:803
 #, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: include/enotify.php:301 include/enotify.php:314
+#: include/api.php:822
 #, 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."
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: include/enotify.php:304
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+#: include/api.php:1342
+msgid "There is no status with this id."
+msgstr "Es gibt keinen Status mit dieser ID."
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
+#: include/api.php:1416
+msgid "There is no conversation with this id."
+msgstr "Es existiert keine Unterhaltung mit dieser ID."
 
-#: include/enotify.php:317
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
+#: include/api.php:1686
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: include/enotify.php:319
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
+#: include/api.php:1697
+msgid "Invalid item."
+msgstr "Ungültiges Objekt"
 
-#: include/enotify.php:332
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: include/api.php:1707
+msgid "Invalid action. "
+msgstr "Ungültige Aktion"
 
-#: include/enotify.php:333
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
+#: include/api.php:1715
+msgid "DB error"
+msgstr "DB Error"
 
-#: include/enotify.php:334
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: include/enotify.php:337
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: include/enotify.php:340
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: include/follow.php:60 include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: include/user.php:98
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: include/user.php:113
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: include/user.php:118
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
+
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: include/follow.php:86
+#: include/user.php:140
 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."
+"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/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: include/user.php:146 include/user.php:244
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: include/follow.php:93
+#: include/user.php:156
 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."
+"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/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
+#: include/user.php:172
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: include/user.php:230
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/follow.php:258
-msgid "following"
-msgstr "folgen"
+#: include/user.php:265
+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/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Freunde"
 
-#: include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: include/user.php:385
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: include/group.php:226
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: include/user.php:389
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: include/group.php:249
-msgid "edit"
-msgstr "bearbeiten"
+#: include/diaspora.php:710
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: include/group.php:271
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: include/diaspora.php:2544
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: include/group.php:272
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: include/items.php:4852
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: include/group.php:275
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: include/items.php:5127
+msgid "Archives"
+msgstr "Archiv"
 
-#: include/identity.php:38
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: include/identity.php:121 include/identity.php:255 include/identity.php:607
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: include/identity.php:220
-msgid "Message"
-msgstr "Nachricht"
+#: include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: include/identity.php:226 include/nav.php:176
-msgid "Profiles"
-msgstr "Profile"
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: include/identity.php:226
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: include/identity.php:341
-msgid "Network:"
-msgstr "Netzwerk"
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: include/identity.php:373 include/identity.php:459
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: include/identity.php:374 include/identity.php:460
-msgid "F d"
-msgstr "d. F"
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: include/identity.php:419 include/identity.php:506
-msgid "[today]"
-msgstr "[heute]"
+#: include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: include/identity.php:431
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: include/identity.php:432
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: include/identity.php:493
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: include/identity.php:517
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: include/identity.php:518
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: include/identity.php:545
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: include/identity.php:546
-msgid "j F"
-msgstr "j F"
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: include/identity.php:553
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: include/identity.php:557
-msgid "Age:"
-msgstr "Alter:"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: include/identity.php:566
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: include/identity.php:575
-msgid "Tags:"
-msgstr "Tags"
+#: include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: include/identity.php:579
-msgid "Religion:"
-msgstr "Religion:"
+#: include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: include/identity.php:583
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: include/identity.php:590
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: include/identity.php:592
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: include/identity.php:594
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: include/identity.php:596
-msgid "Television:"
-msgstr "Fernsehen:"
+#: include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: include/identity.php:598
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: include/identity.php:600
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: include/identity.php:602
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: include/identity.php:604
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: include/identity.php:632 include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: include/identity.php:635
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
-
-#: include/identity.php:642
-msgid "Profile Details"
-msgstr "Profildetails"
+#: include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: include/identity.php:653 include/identity.php:656 include/nav.php:79
-msgid "Videos"
-msgstr "Videos"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: include/identity.php:666
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: include/identity.php:673
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: include/items.php:4852
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: include/items.php:5127
-msgid "Archives"
-msgstr "Archiv"
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: include/nav.php:73 boot.php:1262
-msgid "Logout"
-msgstr "Abmelden"
+#: include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: include/nav.php:73
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: include/nav.php:79
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: include/nav.php:81
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: include/nav.php:92
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: include/nav.php:114
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: include/nav.php:117
-msgid "Apps"
-msgstr "Apps"
+#: include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: include/nav.php:119
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: include/nav.php:131
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: include/nav.php:133
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: include/nav.php:133
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: include/nav.php:135
-msgid "Information"
-msgstr "Information"
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: include/nav.php:146
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: include/nav.php:153
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: include/nav.php:157
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/enotify.php:21
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: include/nav.php:158
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: include/nav.php:162
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/enotify.php:64
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/nav.php:163
-msgid "Inbox"
-msgstr "Eingang"
+#: include/enotify.php:78
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: include/nav.php:164
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/enotify.php:80
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
 
-#: include/nav.php:168
-msgid "Manage"
-msgstr "Verwalten"
+#: include/enotify.php:81
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte Dir %2$s."
 
-#: include/nav.php:168
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/enotify.php:81
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: include/nav.php:173
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/enotify.php:82
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: include/nav.php:176
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: include/nav.php:178
-msgid "Manage/edit friends and contacts"
-msgstr "Freunde und Kontakte verwalten/editieren"
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: include/nav.php:185
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
 
-#: include/nav.php:189
-msgid "Navigation"
-msgstr "Navigation"
+#: include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: include/nav.php:189
-msgid "Site map"
-msgstr "Sitemap"
+#: include/enotify.php:160
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/network.php:959
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
-
-#: include/oembed.php:224
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
-
-#: include/oembed.php:233
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
-
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
-
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
-
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
-
-#: include/security.php:375
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
-
-#: include/text.php:299
-msgid "newer"
-msgstr "neuer"
-
-#: include/text.php:301
-msgid "older"
-msgstr "älter"
-
-#: include/text.php:306
-msgid "prev"
-msgstr "vorige"
-
-#: include/text.php:308
-msgid "first"
-msgstr "erste"
-
-#: include/text.php:340
-msgid "last"
-msgstr "letzte"
-
-#: include/text.php:343
-msgid "next"
-msgstr "nächste"
-
-#: include/text.php:398
-msgid "Loading more entries..."
-msgstr "lade weitere Einträge..."
-
-#: include/text.php:399
-msgid "The end"
-msgstr "Das Ende"
-
-#: include/text.php:878
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191
+#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: include/text.php:887
+#: include/enotify.php:170
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/text.php:1027
-msgid "poke"
-msgstr "anstupsen"
+#: include/enotify.php:172
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: include/text.php:1027
-msgid "poked"
-msgstr "stupste"
+#: include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
 
-#: include/text.php:1028
-msgid "ping"
-msgstr "anpingen"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/text.php:1028
-msgid "pinged"
-msgstr "pingte"
+#: include/enotify.php:186
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/text.php:1029
-msgid "prod"
-msgstr "knuffen"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/text.php:1029
-msgid "prodded"
-msgstr "knuffte"
+#: include/enotify.php:198
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/text.php:1030
-msgid "slap"
-msgstr "ohrfeigen"
+#: include/enotify.php:199
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/text.php:1030
-msgid "slapped"
-msgstr "ohrfeigte"
+#: include/enotify.php:200
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/text.php:1031
-msgid "finger"
-msgstr "befummeln"
+#: include/enotify.php:212
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/text.php:1031
-msgid "fingered"
-msgstr "befummelte"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/text.php:1032
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: include/enotify.php:214
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/text.php:1032
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: include/enotify.php:229
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/text.php:1046
-msgid "happy"
-msgstr "glücklich"
+#: include/enotify.php:230
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/text.php:1047
-msgid "sad"
-msgstr "traurig"
+#: include/enotify.php:231
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/text.php:1048
-msgid "mellow"
-msgstr "sanft"
+#: include/enotify.php:242
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/text.php:1049
-msgid "tired"
-msgstr "müde"
+#: include/enotify.php:243
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: include/text.php:1050
-msgid "perky"
-msgstr "frech"
+#: include/enotify.php:244
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: include/text.php:1051
-msgid "angry"
-msgstr "sauer"
+#: include/enotify.php:247 include/enotify.php:289
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/text.php:1052
-msgid "stupified"
-msgstr "verblüfft"
+#: include/enotify.php:249
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/text.php:1053
-msgid "puzzled"
-msgstr "verwirrt"
+#: include/enotify.php:257
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/text.php:1054
-msgid "interested"
-msgstr "interessiert"
+#: include/enotify.php:258 include/enotify.php:259
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/text.php:1055
-msgid "bitter"
-msgstr "verbittert"
+#: include/enotify.php:265
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/text.php:1056
-msgid "cheerful"
-msgstr "fröhlich"
+#: include/enotify.php:266 include/enotify.php:267
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: include/text.php:1057
-msgid "alive"
-msgstr "lebendig"
+#: include/enotify.php:280
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/text.php:1058
-msgid "annoyed"
-msgstr "verärgert"
+#: include/enotify.php:281
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: include/text.php:1059
-msgid "anxious"
-msgstr "unruhig"
+#: include/enotify.php:282
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: include/text.php:1060
-msgid "cranky"
-msgstr "schrullig"
+#: include/enotify.php:287
+msgid "Name:"
+msgstr "Name:"
 
-#: include/text.php:1061
-msgid "disturbed"
-msgstr "verstört"
+#: include/enotify.php:288
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/text.php:1062
-msgid "frustrated"
-msgstr "frustriert"
+#: include/enotify.php:291
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: include/text.php:1063
-msgid "motivated"
-msgstr "motiviert"
+#: include/enotify.php:299 include/enotify.php:312
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: include/text.php:1064
-msgid "relaxed"
-msgstr "entspannt"
+#: include/enotify.php:300 include/enotify.php:313
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: include/text.php:1065
-msgid "surprised"
-msgstr "überrascht"
+#: include/enotify.php:301 include/enotify.php:314
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: include/text.php:1235
-msgid "Monday"
-msgstr "Montag"
+#: include/enotify.php:304
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: include/text.php:1235
-msgid "Tuesday"
-msgstr "Dienstag"
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: include/text.php:1235
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: include/enotify.php:317
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: include/text.php:1235
-msgid "Thursday"
-msgstr "Donnerstag"
+#: include/enotify.php:319
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: include/text.php:1235
-msgid "Friday"
-msgstr "Freitag"
+#: include/enotify.php:332
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: include/text.php:1235
-msgid "Saturday"
-msgstr "Samstag"
+#: include/enotify.php:333
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: include/text.php:1235
-msgid "Sunday"
-msgstr "Sonntag"
+#: include/enotify.php:334
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: include/text.php:1239
-msgid "January"
-msgstr "Januar"
+#: include/enotify.php:337
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/text.php:1239
-msgid "February"
-msgstr "Februar"
+#: include/enotify.php:340
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/text.php:1239
-msgid "March"
-msgstr "März"
+#: include/oembed.php:224
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: include/text.php:1239
-msgid "April"
-msgstr "April"
+#: include/oembed.php:233
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: include/text.php:1239
-msgid "May"
-msgstr "Mai"
+#: include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: include/text.php:1239
-msgid "June"
-msgstr "Juni"
+#: include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: include/text.php:1239
-msgid "July"
-msgstr "Juli"
+#: include/uimport.php:116 include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: include/text.php:1239
-msgid "August"
-msgstr "August"
+#: include/uimport.php:120 include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: include/text.php:1239
-msgid "September"
-msgstr "September"
+#: include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: include/text.php:1239
-msgid "October"
-msgstr "Oktober"
+#: include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: include/text.php:1239
-msgid "November"
-msgstr "November"
+#: include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: include/text.php:1239
-msgid "December"
-msgstr "Dezember"
+#: include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: include/text.php:1461
-msgid "bytes"
-msgstr "Byte"
+#: index.php:441
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
 
-#: include/text.php:1493 include/text.php:1505
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
 
-#: include/text.php:1746
-msgid "Select an alternate language"
-msgstr "Alternative Sprache auswählen"
+#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73
+#: view/theme/diabook/config.php:151
+msgid "Set font-size for posts and comments"
+msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
 
-#: include/text.php:2002
-msgid "activity"
-msgstr "Aktivität"
+#: view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Theme Breite festlegen"
 
-#: include/text.php:2005
-msgid "post"
-msgstr "Beitrag"
+#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: include/text.php:2173
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
+msgid "Set line-height for posts and comments"
+msgstr "Liniengröße für Beiträge und Kommantare festlegen"
 
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Farbschema wählen"
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Mitte"
 
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+#: view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Auflösung für die Mittelspalte setzen"
 
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+#: view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Wähle Farbschema"
 
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitude (X) der Earth Layer"
 
-#: include/user.php:140
-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."
+#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitude (Y) der Earth Layer"
 
-#: include/user.php:146 include/user.php:244
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130
+#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Foren"
 
-#: include/user.php:156
-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."
+#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579
+#: view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: include/user.php:172
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391
+#: view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: include/user.php:230
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599
+#: view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: include/user.php:265
-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."
+#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606
+#: view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: include/user.php:385
-#, 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."
+#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523
+#: view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Freunde finden"
 
-#: include/user.php:389
-#, 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."
+#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412
+#: view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: index.php:441
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486
+#: view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Letzte Fotos"
 
-#: boot.php:753
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441
+#: view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Zuletzt gemocht"
 
-#: boot.php:756
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Deine Kontakte"
 
-#: boot.php:1130
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Deine privaten Fotos"
 
-#: boot.php:1237
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: boot.php:1265
-msgid "Nickname or Email address: "
-msgstr "Spitzname oder E-Mail-Adresse: "
+#: view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: boot.php:1266
-msgid "Password: "
-msgstr "Passwort: "
+#: view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
 
-#: boot.php:1267
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "Stil auswählen"
 
-#: boot.php:1270
-msgid "Or login using OpenID: "
-msgstr "Oder melde Dich mit Deiner OpenID an: "
+#: view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: boot.php:1276
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: boot.php:1279
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: boot.php:1280
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: boot.php:1282
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: boot.php:1283
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
+#: view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
+
+#: view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variationen"
index 915586ae91e965a90f679211dcd776cd473cf328..7b2d496f2e9d5ebf3d1bee0cd3caaec4280496a7 100644 (file)
@@ -5,193 +5,127 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["Select"] = "Auswählen";
-$a->strings["Delete"] = "Löschen";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["Categories:"] = "Kategorien:";
-$a->strings["Filed under:"] = "Abgelegt unter:";
-$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
-$a->strings["to"] = "zu";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["%s from %s"] = "%s von %s";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Please wait"] = "Bitte warten";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet",
 );
-$a->strings["comment"] = array(
-       0 => "Kommentar",
-       1 => "Kommentare",
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Cancel"] = "Abbrechen";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["Never"] = "Niemals";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d gemeinsamer Kontakt",
+       1 => "%d gemeinsame Kontakte",
 );
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["This is you"] = "Das bist Du";
+$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["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["Submit"] = "Senden";
-$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["Clone this project:"] = "Dieses Projekt clonen";
-$a->strings["Click here to download"] = "Zum Download hier klicken";
-$a->strings["This project is empty!"] = "Dieses Projekt is leer!";
-$a->strings["Projects"] = "Projekte";
-$a->strings["add new"] = "neues hinzufügen";
-$a->strings["delete"] = "löschen";
-$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden.";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["show"] = "zeigen";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
-$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
-$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
-$a->strings["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["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["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["Profile URL"] = "Profil URL";
+$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["Contacts"] = "Kontakte";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$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["Color scheme"] = "Farbschema";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
-$a->strings["Set theme width"] = "Theme Breite festlegen";
-$a->strings["Set colour scheme"] = "Farbschema wählen";
-$a->strings["default"] = "Standard";
-$a->strings["Midnight"] = "Mitternacht";
-$a->strings["Zenburn"] = "Zenburn";
-$a->strings["Bootstrap"] = "Bootstrap";
-$a->strings["Shades of Pink"] = "Shades of Pink";
-$a->strings["Lime and Orange"] = "Lime and Orange";
-$a->strings["GeoCities Retro"] = "GeoCities Retro";
-$a->strings["Background Image"] = "Hintergrundbild";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL des Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll.";
-$a->strings["Background Color"] = "Hintergrundfarbe";
-$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an.";
-$a->strings["font size"] = "Schriftgröße";
-$a->strings["base font size for your interface"] = "Grundschriftgröße für dein Web-Interface";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Variationen";
-$a->strings["Set style"] = "Stil auswählen";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$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["Access denied."] = "Zugriff verweigert.";
+$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["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["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["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$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["Yes"] = "Ja";
-$a->strings["No"] = "Nein";
-$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["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["Upload photo"] = "Foto hochladen";
-$a->strings["Insert web link"] = "Einen Link einfügen";
+$a->strings["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.";
@@ -221,161 +155,140 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
 $a->strings["Getting Help"] = "Hilfe bekommen";
 $a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
 $a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$a->strings["Search"] = "Suche";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde Dich an.";
-$a->strings["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["Import"] = "Import";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
+$a->strings["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 %s"] = "Bildgröße überschreitet das Limit von %s";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$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["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s Dich?";
+$a->strings["No"] = "Nein";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$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["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["Cancel"] = "Abbrechen";
-$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["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["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["Files"] = "Dateien";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
+$a->strings["Delete Video"] = "Video Löschen";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["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["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-);
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["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["No contacts."] = "Keine Kontakte.";
 $a->strings["View Contacts"] = "Kontakte anzeigen";
-$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["Not available."] = "Nicht verfügbar.";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Invalid request identifier."] = "Invalid request identifier.";
 $a->strings["Discard"] = "Verwerfen";
-$a->strings["Ignore"] = "Ignorieren";
 $a->strings["System"] = "System";
 $a->strings["Network"] = "Netzwerk";
 $a->strings["Personal"] = "Persönlich";
+$a->strings["Home"] = "Pinnwand";
 $a->strings["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["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";
@@ -404,9 +317,87 @@ $a->strings["No more personal notifications."] = "Keine weiteren persönlichen B
 $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["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
+$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["Refetch contact data"] = "Kontaktdaten neu laden";
+$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 - %s"] = "Personensuche - %s";
+$a->strings["Connect"] = "Verbinden";
+$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";
@@ -436,12 +427,17 @@ $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für
 $a->strings["No community page"] = "Keine Gemeinschaftsseite";
 $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
 $a->strings["Global community page"] = "Globale Gemeinschaftsseite";
-$a->strings["Never"] = "Niemals";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
 $a->strings["Frequently"] = "immer wieder";
 $a->strings["Hourly"] = "Stündlich";
 $a->strings["Twice daily"] = "Zweimal täglich";
 $a->strings["Daily"] = "Täglich";
+$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
+$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
+$a->strings["One month"] = "ein Monat";
+$a->strings["Three months"] = "drei Monate";
+$a->strings["Half a year"] = "ein halbes Jahr";
+$a->strings["One year"] = "ein Jahr";
 $a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
 $a->strings["Closed"] = "Geschlossen";
 $a->strings["Requires approval"] = "Bedarf der Zustimmung";
@@ -454,6 +450,7 @@ $a->strings["Registration"] = "Registrierung";
 $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Advanced"] = "Erweitert";
+$a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
 $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";
@@ -548,6 +545,14 @@ $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["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)";
 $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50.";
+$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft.";
+$a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken";
+$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'.";
+$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden.";
+$a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen";
+$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird.";
 $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";
@@ -603,581 +608,227 @@ $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
 $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
 $a->strings["Request date"] = "Anfragedatum";
-$a->strings["Name"] = "Name";
 $a->strings["Email"] = "E-Mail";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
 $a->strings["Deny"] = "Verwehren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Site admin"] = "Seitenadministrator";
-$a->strings["Account expired"] = "Account ist abgelaufen";
-$a->strings["New User"] = "Neuer Nutzer";
-$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["Update now"] = "Jetzt aktualisieren";
-$a->strings["Close"] = "Schließen";
-$a->strings["FTP Host"] = "FTP Host";
-$a->strings["FTP Path"] = "FTP Pfad";
-$a->strings["FTP User"] = "FTP Nutzername";
-$a->strings["FTP Password"] = "FTP Passwort";
-$a->strings["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Common Friends"] = "Gemeinsame Freunde";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$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["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d gemeinsamer Kontakt",
-       1 => "%d gemeinsame Kontakte",
-);
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$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["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["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["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["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Finding: "] = "Funde: ";
-$a->strings["Find"] = "Finde";
-$a->strings["Update"] = "Aktualisierungen";
-$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["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: %s"] = "Gruppe: %s";
-$a->strings["View in context"] = "Im Zusammenhang 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["Refetch contact data"] = "Kontaktdaten neu laden";
-$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["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$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["Confirm"] = "Bestätigen";
-$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["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["Location:"] = "Ort:";
-$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["People Search - %s"] = "Personensuche - %s";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
-$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["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["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["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["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$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["Permission denied"] = "Zugriff verweigert";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["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["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["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["Search Results For: %s"] = "Suchergebnisse für: %s";
-$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["Contact: %s"] = "Kontakt: %s";
-$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["Personal Notes"] = "Persönliche Notizen";
-$a->strings["Not Extended"] = "Nicht erweitert.";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["everybody"] = "jeder";
-$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 %s"] = "Bildgröße überschreitet das Limit von %s";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["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["Do not rotate"] = "Nicht rotieren";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Share"] = "Teilen";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$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["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["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 :"] = "Geburtstag :";
-$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["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["Items tagged with: %s"] = "Beiträge markiert mit: %s";
-$a->strings["Search results for: %s"] = "Suchergebnisse für: %s";
-$a->strings["link"] = "Link";
-$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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
-$a->strings["Delete Video"] = "Video Löschen";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["View Video"] = "Video ansehen";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$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: %s"] = "Suchergebnisse für: %s";
+$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: %s"] = "Gruppe: %s";
+$a->strings["Contact: %s"] = "Kontakt: %s";
+$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 can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["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["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt 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["Preview"] = "Vorschau";
+$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["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["Database already in use."] = "Die Datenbank wird bereits verwendet.";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
 $a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$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["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["New Password:"] = "Neues Passwort:";
-$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
+$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["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.";
@@ -1215,10 +866,13 @@ $a->strings["Additional Features"] = "Zusätzliche Features";
 $a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
 $a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
 $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt.";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,.";
 $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["GNU Social (OStatus)"] = "GNU Social (OStatus)";
 $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.";
@@ -1247,6 +901,7 @@ $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["Theme settings"] = "Themeneinstellungen";
 $a->strings["User Types"] = "Nutzer Art";
 $a->strings["Community Types"] = "Gemeinschafts Art";
 $a->strings["Normal Account Page"] = "Normales Konto";
@@ -1283,6 +938,8 @@ $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";
@@ -1298,6 +955,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts
 $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
 $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
 $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
 $a->strings["Default Private Post"] = "Privater Standardbeitrag";
 $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
 $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
@@ -1325,8 +984,196 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$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["Confirm"] = "Bestätigen";
+$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["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["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["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
+$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["Items tagged with: %s"] = "Beiträge markiert mit: %s";
+$a->strings["Search results for: %s"] = "Suchergebnisse für: %s";
+$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 :"] = "Geburtstag :";
+$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.";
@@ -1335,6 +1182,130 @@ $a->strings["the bugtracker at github"] = "dem Bugtracker auf github";
 $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["Contact Photos"] = "Kontaktbilder";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$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 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["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["Do not rotate"] = "Nicht rotieren";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Share"] = "Teilen";
+$a->strings["Not Extended"] = "Nicht erweitert.";
+$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["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";
@@ -1346,31 +1317,255 @@ $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["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["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["following"] = "folgen";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["year"] = "Jahr";
+$a->strings["years"] = "Jahre";
+$a->strings["month"] = "Monat";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["day"] = "Tag";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["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["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["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["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["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["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["post/item"] = "Nachricht/Beitrag";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
+$a->strings["remove"] = "löschen";
+$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
+$a->strings["Follow Thread"] = "Folge der Unterhaltung";
+$a->strings["%s likes this."] = "%s mag das.";
+$a->strings["%s doesn't like this."] = "%s mag das nicht.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
+$a->strings["and"] = "und";
+$a->strings[", and %d other people"] = " und %d andere";
+$a->strings["%s like this."] = "%s mögen das.";
+$a->strings["%s don't like this."] = "%s mögen das nicht.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
+$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
+$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?";
+$a->strings["Delete item(s)?"] = "Einträge löschen?";
+$a->strings["permissions"] = "Zugriffsrechte";
+$a->strings["Post to Groups"] = "Poste an Gruppe";
+$a->strings["Post to Contacts"] = "Poste an Kontakte";
+$a->strings["Private post"] = "Privater Beitrag";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["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["poke"] = "anstupsen";
+$a->strings["poked"] = "stupste";
+$a->strings["ping"] = "anpingen";
+$a->strings["pinged"] = "pingte";
+$a->strings["prod"] = "knuffen";
+$a->strings["prodded"] = "knuffte";
+$a->strings["slap"] = "ohrfeigen";
+$a->strings["slapped"] = "ohrfeigte";
+$a->strings["finger"] = "befummeln";
+$a->strings["fingered"] = "befummelte";
+$a->strings["rebuff"] = "eine Abfuhr erteilen";
+$a->strings["rebuffed"] = "abfuhrerteilte";
+$a->strings["happy"] = "glücklich";
+$a->strings["sad"] = "traurig";
+$a->strings["mellow"] = "sanft";
+$a->strings["tired"] = "müde";
+$a->strings["perky"] = "frech";
+$a->strings["angry"] = "sauer";
+$a->strings["stupified"] = "verblüfft";
+$a->strings["puzzled"] = "verwirrt";
+$a->strings["interested"] = "interessiert";
+$a->strings["bitter"] = "verbittert";
+$a->strings["cheerful"] = "fröhlich";
+$a->strings["alive"] = "lebendig";
+$a->strings["annoyed"] = "verärgert";
+$a->strings["anxious"] = "unruhig";
+$a->strings["cranky"] = "schrullig";
+$a->strings["disturbed"] = "verstört";
+$a->strings["frustrated"] = "frustriert";
+$a->strings["motivated"] = "motiviert";
+$a->strings["relaxed"] = "entspannt";
+$a->strings["surprised"] = "überrascht";
+$a->strings["Monday"] = "Montag";
+$a->strings["Tuesday"] = "Dienstag";
+$a->strings["Wednesday"] = "Mittwoch";
+$a->strings["Thursday"] = "Donnerstag";
+$a->strings["Friday"] = "Freitag";
+$a->strings["Saturday"] = "Samstag";
+$a->strings["Sunday"] = "Sonntag";
+$a->strings["January"] = "Januar";
+$a->strings["February"] = "Februar";
+$a->strings["March"] = "März";
+$a->strings["April"] = "April";
+$a->strings["May"] = "Mai";
+$a->strings["June"] = "Juni";
+$a->strings["July"] = "Juli";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "Oktober";
+$a->strings["November"] = "November";
+$a->strings["December"] = "Dezember";
+$a->strings["bytes"] = "Byte";
+$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
+$a->strings["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["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["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["[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";
@@ -1391,47 +1586,84 @@ $a->strings["Twitter"] = "Twitter";
 $a->strings["Diaspora Connector"] = "Diaspora";
 $a->strings["Statusnet"] = "StatusNet";
 $a->strings["App.net"] = "App.net";
-$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["Redmatrix"] = "Redmatrix";
+$a->strings[" on Last.fm"] = " bei Last.fm";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$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["Male"] = "Männlich";
 $a->strings["Female"] = "Weiblich";
 $a->strings["Currently Male"] = "Momentan männlich";
@@ -1468,7 +1700,6 @@ $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";
@@ -1478,101 +1709,18 @@ $a->strings["Partners"] = "Partner";
 $a->strings["Cohabiting"] = "zusammenlebend";
 $a->strings["Common law"] = "wilde Ehe";
 $a->strings["Happy"] = "Glücklich";
-$a->strings["Not looking"] = "Nicht auf der Suche";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrogen";
-$a->strings["Separated"] = "Getrennt";
-$a->strings["Unstable"] = "Unstabil";
-$a->strings["Divorced"] = "Geschieden";
-$a->strings["Imaginarily divorced"] = "imaginär geschieden";
-$a->strings["Widowed"] = "Verwitwet";
-$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["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[" on Last.fm"] = " bei Last.fm";
-$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["Visible to everybody"] = "Für jeden sichtbar";
-$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["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$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["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["post/item"] = "Nachricht/Beitrag";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
-$a->strings["remove"] = "löschen";
-$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
-$a->strings["Follow Thread"] = "Folge der Unterhaltung";
-$a->strings["%s likes this."] = "%s mag das.";
-$a->strings["%s doesn't like this."] = "%s mag das nicht.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
-$a->strings["and"] = "und";
-$a->strings[", and %d other people"] = " und %d andere";
-$a->strings["%s like this."] = "%s mögen das.";
-$a->strings["%s don't like this."] = "%s mögen das nicht.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
-$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
-$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?";
-$a->strings["Delete item(s)?"] = "Einträge löschen?";
-$a->strings["permissions"] = "Zugriffsrechte";
-$a->strings["Post to Groups"] = "Poste an Gruppe";
-$a->strings["Post to Contacts"] = "Poste an Kontakte";
-$a->strings["Private post"] = "Privater Beitrag";
-$a->strings["Miscellaneous"] = "Verschiedenes";
-$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["year"] = "Jahr";
-$a->strings["years"] = "Jahre";
-$a->strings["month"] = "Monat";
-$a->strings["months"] = "Monate";
-$a->strings["week"] = "Woche";
-$a->strings["weeks"] = "Wochen";
-$a->strings["day"] = "Tag";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Not looking"] = "Nicht auf der Suche";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrogen";
+$a->strings["Separated"] = "Getrennt";
+$a->strings["Unstable"] = "Unstabil";
+$a->strings["Divorced"] = "Geschieden";
+$a->strings["Imaginarily divorced"] = "imaginär geschieden";
+$a->strings["Widowed"] = "Verwitwet";
+$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";
@@ -1630,203 +1778,55 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D
 $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["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["following"] = "folgen";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["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["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["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["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Archives"] = "Archiv";
-$a->strings["Logout"] = "Abmelden";
-$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 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["view full size"] = "Volle Größe anzeigen";
 $a->strings["Embedded content"] = "Eingebetteter Inhalt";
 $a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["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["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["poke"] = "anstupsen";
-$a->strings["poked"] = "stupste";
-$a->strings["ping"] = "anpingen";
-$a->strings["pinged"] = "pingte";
-$a->strings["prod"] = "knuffen";
-$a->strings["prodded"] = "knuffte";
-$a->strings["slap"] = "ohrfeigen";
-$a->strings["slapped"] = "ohrfeigte";
-$a->strings["finger"] = "befummeln";
-$a->strings["fingered"] = "befummelte";
-$a->strings["rebuff"] = "eine Abfuhr erteilen";
-$a->strings["rebuffed"] = "abfuhrerteilte";
-$a->strings["happy"] = "glücklich";
-$a->strings["sad"] = "traurig";
-$a->strings["mellow"] = "sanft";
-$a->strings["tired"] = "müde";
-$a->strings["perky"] = "frech";
-$a->strings["angry"] = "sauer";
-$a->strings["stupified"] = "verblüfft";
-$a->strings["puzzled"] = "verwirrt";
-$a->strings["interested"] = "interessiert";
-$a->strings["bitter"] = "verbittert";
-$a->strings["cheerful"] = "fröhlich";
-$a->strings["alive"] = "lebendig";
-$a->strings["annoyed"] = "verärgert";
-$a->strings["anxious"] = "unruhig";
-$a->strings["cranky"] = "schrullig";
-$a->strings["disturbed"] = "verstört";
-$a->strings["frustrated"] = "frustriert";
-$a->strings["motivated"] = "motiviert";
-$a->strings["relaxed"] = "entspannt";
-$a->strings["surprised"] = "überrascht";
-$a->strings["Monday"] = "Montag";
-$a->strings["Tuesday"] = "Dienstag";
-$a->strings["Wednesday"] = "Mittwoch";
-$a->strings["Thursday"] = "Donnerstag";
-$a->strings["Friday"] = "Freitag";
-$a->strings["Saturday"] = "Samstag";
-$a->strings["Sunday"] = "Sonntag";
-$a->strings["January"] = "Januar";
-$a->strings["February"] = "Februar";
-$a->strings["March"] = "März";
-$a->strings["April"] = "April";
-$a->strings["May"] = "Mai";
-$a->strings["June"] = "Juni";
-$a->strings["July"] = "Juli";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "Oktober";
-$a->strings["November"] = "November";
-$a->strings["December"] = "Dezember";
-$a->strings["bytes"] = "Byte";
-$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
-$a->strings["activity"] = "Aktivität";
-$a->strings["post"] = "Beitrag";
-$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["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["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["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["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["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";
index 000a146cfee87a1007edb2a7b95ddcd006c55465..92e52269463b81154f9ff6720b3eb10e01732521 100644 (file)
@@ -20,7916 +20,7933 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \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"
+"POT-Creation-Date: 2015-08-02 13:56+0200\n"
+"PO-Revision-Date: 2015-08-04 16:56+0000\n"
+"Last-Translator: Sylvain Lagacé\n"
+"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../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:114
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contact édité"
+msgstr[1] "%d contacts édités."
 
-#: ../../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:145 mod/contacts.php:340
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder à l'enregistrement du contact."
 
-#: ../../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:159
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil séléctionné."
 
-#: ../../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:192
+msgid "Contact updated."
+msgstr "Contact mis-à-jour."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Largeur du thème"
+#: mod/contacts.php:194 mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Échec de mise-à-jour du contact."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Palette de couleurs"
+#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508
+#: 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/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186
+#: 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:120
+#: mod/nogroup.php:25 mod/network.php:4 mod/allfriends.php:9
+#: mod/events.php:164 mod/wallmessage.php:9 mod/wallmessage.php:33
+#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/wall_attach.php:55
+#: mod/settings.php:20 mod/settings.php:107 mod/settings.php:609
+#: mod/register.php:42 mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58
+#: mod/profiles.php:165 mod/profiles.php:615 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:156 mod/photos.php:1072
+#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33
+#: include/items.php:5022 index.php:382
+msgid "Permission denied."
+msgstr "Permission refusée."
 
-#: ../../view/theme/vier/config.php:59
-msgid "Set style"
-msgstr "Définir le style"
+#: mod/contacts.php:361
+msgid "Contact has been blocked"
+msgstr "Le contact a été bloqué"
 
-#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
-#: ../../include/user.php:247
-msgid "default"
-msgstr "défaut"
+#: mod/contacts.php:361
+msgid "Contact has been unblocked"
+msgstr "Le contact n'est plus bloqué"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: mod/contacts.php:372
+msgid "Contact has been ignored"
+msgstr "Le contact a été ignoré"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: mod/contacts.php:372
+msgid "Contact has been unignored"
+msgstr "Le contact n'est plus ignoré"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: mod/contacts.php:384
+msgid "Contact has been archived"
+msgstr "Contact archivé"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: mod/contacts.php:384
+msgid "Contact has been unarchived"
+msgstr "Contact désarchivé"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: mod/contacts.php:411 mod/contacts.php:756
+msgid "Do you really want to delete this contact?"
+msgstr "Voulez-vous vraiment supprimer ce contact?"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:209
+#: mod/settings.php:1045 mod/settings.php:1051 mod/settings.php:1059
+#: mod/settings.php:1063 mod/settings.php:1068 mod/settings.php:1074
+#: mod/settings.php:1080 mod/settings.php:1086 mod/settings.php:1114
+#: mod/settings.php:1115 mod/settings.php:1116 mod/settings.php:1117
+#: mod/settings.php:1118 mod/dfrn_request.php:845 mod/register.php:235
+#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
+#: mod/api.php:105 include/items.php:4854
+msgid "Yes"
+msgstr "Oui"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variations"
+#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68
+#: mod/videos.php:121 mod/message.php:212 mod/fbrowser.php:89
+#: mod/fbrowser.php:125 mod/settings.php:623 mod/settings.php:649
+#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148
+#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093
+#: include/items.php:4857
+msgid "Cancel"
+msgstr "Annuler"
 
-#: ../../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:428
+msgid "Contact has been removed."
+msgstr "Ce contact a été retiré."
 
-#: ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
-msgid "show"
-msgstr "montrer"
+#: mod/contacts.php:466
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Vous êtes ami (et réciproquement) avec %s"
 
-#: ../../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:470
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Vous partagez avec %s"
 
-#: ../../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:475
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s partage avec vous"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Choisir le schéma de couleurs"
+#: mod/contacts.php:495
+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:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Niveau de zoom"
+#: mod/contacts.php:498 mod/admin.php:585
+msgid "Never"
+msgstr "Jamais"
 
-#: ../../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:502
+msgid "(Update was successful)"
+msgstr "(Mise à jour effectuée avec succès)"
 
-#: ../../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:502
+msgid "(Update was not successful)"
+msgstr "(Mise à jour échouée)"
 
-#: ../../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:504
+msgid "Suggest friends"
+msgstr "Suggérer amitié/contact"
 
-#: ../../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:508
+#, php-format
+msgid "Network type: %s"
+msgstr "Type de réseau %s"
 
-#: ../../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:511 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:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Aide ou @NewHere?"
+#: mod/contacts.php:516
+msgid "View all contacts"
+msgstr "Voir tous les contacts"
 
-#: ../../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:521 mod/contacts.php:590 mod/contacts.php:759
+#: mod/admin.php:1047
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: ../../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:521 mod/contacts.php:590 mod/contacts.php:759
+#: mod/admin.php:1046
+msgid "Block"
+msgstr "Bloquer"
 
-#: ../../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:524
+msgid "Toggle Blocked status"
+msgstr "(dés)activer l'état \"bloqué\""
 
-#: ../../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:527 mod/contacts.php:591 mod/contacts.php:760
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: ../../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:527 mod/contacts.php:591 mod/contacts.php:760
+#: mod/notifications.php:51 mod/notifications.php:164
+#: mod/notifications.php:214
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../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:530
+msgid "Toggle Ignored status"
+msgstr "(dés)activer l'état \"ignoré\""
 
-#: ../../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:534 mod/contacts.php:761
+msgid "Unarchive"
+msgstr "Désarchiver"
 
-#: ../../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:534 mod/contacts.php:761
+msgid "Archive"
+msgstr "Archiver"
 
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Votre page de profil"
+#: mod/contacts.php:537
+msgid "Toggle Archive status"
+msgstr "(dés)activer l'état \"archivé\""
 
-#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
-#: ../../mod/contacts.php:718
-msgid "Contacts"
-msgstr "Contacts"
+#: mod/contacts.php:540
+msgid "Repair"
+msgstr "Réparer"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vos contacts"
+#: mod/contacts.php:543
+msgid "Advanced Contact Settings"
+msgstr "Réglages avancés du 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:549
+msgid "Communications lost with this contact!"
+msgstr "Communications perdues avec ce contact !"
 
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Vos photos"
+#: mod/contacts.php:552
+msgid "Fetch further information for feeds"
+msgstr "Chercher plus d'informations pour les flux"
 
-#: ../../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:553 mod/admin.php:594
+msgid "Disabled"
+msgstr "Désactivé"
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
-msgid "Your events"
-msgstr "Vos événements"
+#: mod/contacts.php:553
+msgid "Fetch information"
+msgstr "Récupérer informations"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
-msgid "Personal notes"
-msgstr "Notes personnelles"
+#: mod/contacts.php:553
+msgid "Fetch information and keywords"
+msgstr "Récupérer informations"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Vos photos personnelles"
+#: mod/contacts.php:562
+msgid "Contact Editor"
+msgstr "Éditeur de contact"
 
-#: ../../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:564 mod/manage.php:110 mod/fsuggest.php:107
+#: mod/message.php:335 mod/message.php:564 mod/crepair.php:191
+#: mod/events.php:511 mod/content.php:712 mod/install.php:250
+#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683
+#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140
+#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533
+#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716
+#: object/Item.php:680 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:56 view/theme/duepuntozero/config.php:59
+msgid "Submit"
+msgstr "Envoyer"
 
-#: ../../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:565
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
 
-#: ../../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:566
+#, 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: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:567
+msgid "Contact Information / Notes"
+msgstr "Informations de contact / Notes"
+
+#: mod/contacts.php:568
+msgid "Edit contact notes"
+msgstr "Éditer les notes des contacts"
 
-#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027
-#: ../../include/conversation.php:137 ../../mod/like.php:166
+#: mod/contacts.php:573 mod/contacts.php:799 mod/viewcontacts.php:64
+#: mod/nogroup.php:40
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
 
-#: ../../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:574
+msgid "Block/Unblock contact"
+msgstr "Bloquer/débloquer ce contact"
 
-#: ../../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:575
+msgid "Ignore contact"
+msgstr "Ignorer ce contact"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Annuaire local"
+#: mod/contacts.php:576
+msgid "Repair URL settings"
+msgstr "Réglages de réparation des URL"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: mod/contacts.php:577
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
-msgid "Similar Interests"
-msgstr "Intérêts similaires"
+#: mod/contacts.php:579
+msgid "Delete contact"
+msgstr "Effacer ce contact"
 
-#: ../../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:583
+msgid "Last update:"
+msgstr "Dernière mise-à-jour :"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+#: mod/contacts.php:585
+msgid "Update public posts"
+msgstr "Mettre à jour les publications publiques:"
 
-#: ../../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:587 mod/admin.php:1541
+msgid "Update now"
+msgstr "Mettre à jour"
 
-#: ../../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:594
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: ../../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:595
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alignement"
+#: mod/contacts.php:596
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Gauche"
-
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centre"
+#: mod/contacts.php:597 mod/notifications.php:157 mod/notifications.php:208
+msgid "Hide this contact from others"
+msgstr "Cacher ce contact aux autres"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Taille de texte des publications"
+#: mod/contacts.php:597
+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/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Taille de police des zones de texte"
+#: mod/contacts.php:598
+msgid "Notification for new posts"
+msgstr "Notification des nouvelles publications"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Choisir le schéma de couleurs"
+#: mod/contacts.php:598
+msgid "Send a notification of every new post of this contact"
+msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
 
-#: ../../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:601
+msgid "Blacklisted keywords"
+msgstr "Mots-clés sur la liste noire"
 
-#: ../../index.php:255 ../../mod/help.php:42
-msgid "Not Found"
-msgstr "Non trouvé"
+#: mod/contacts.php:601
+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:258 ../../mod/help.php:45
-msgid "Page not found."
-msgstr "Page introuvable."
+#: mod/contacts.php:608
+msgid "Profile URL"
+msgstr "URL du Profil"
 
-#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
-msgid "Permission denied"
-msgstr "Permission refusée"
+#: mod/contacts.php:654
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: ../../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:657
+msgid "Suggest potential friends"
+msgstr "Suggérer des amis potentiels"
 
-#: ../../index.php:427
-msgid "toggle mobile"
-msgstr "activ. mobile"
+#: mod/contacts.php:660 mod/group.php:192
+msgid "All Contacts"
+msgstr "Tous les contacts"
 
-#: ../../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:663
+msgid "Show all contacts"
+msgstr "Montrer tous les contacts"
 
-#: ../../addon-wrk/openidserver/lib/render/trust.php:43
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Confirmer"
+#: mod/contacts.php:666
+msgid "Unblocked"
+msgstr "Non-bloqués"
 
-#: ../../addon-wrk/openidserver/lib/render/trust.php:44
-msgid "Do not confirm"
-msgstr "Ne pas confirmer"
+#: mod/contacts.php:669
+msgid "Only show unblocked contacts"
+msgstr "Ne montrer que les contacts non-bloqués"
 
-#: ../../addon-wrk/openidserver/lib/render/trust.php:48
-msgid "Trust This Site"
-msgstr "Faire confiance à ce site"
+#: mod/contacts.php:673
+msgid "Blocked"
+msgstr "Bloqués"
 
-#: ../../addon-wrk/openidserver/lib/render/trust.php:53
-msgid "No Identifier Sent"
-msgstr "Aucun identifiant envoyé"
+#: mod/contacts.php:676
+msgid "Only show blocked contacts"
+msgstr "Ne montrer que les contacts bloqué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:680
+msgid "Ignored"
+msgstr "Ignoré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:683
+msgid "Only show ignored contacts"
+msgstr "Ne montrer que les contacts ignorés"
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Effacer cet élément?"
+#: mod/contacts.php:687
+msgid "Archived"
+msgstr "Archivé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:690
+msgid "Only show archived contacts"
+msgstr "Ne montrer que les contacts archivés"
 
-#: ../../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:694
+msgid "Hidden"
+msgstr "Cachés"
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "montrer moins"
+#: mod/contacts.php:697
+msgid "Only show hidden contacts"
+msgstr "Ne montrer que les contacts masqués"
 
-#: ../../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:747 include/nav.php:178 view/theme/diabook/theme.php:125
+msgid "Contacts"
+msgstr "Contacts"
 
-#: ../../boot.php:1229
-msgid "Create a New Account"
-msgstr "Créer un nouveau compte"
+#: mod/contacts.php:751
+msgid "Search your contacts"
+msgstr "Rechercher dans vos contacts"
 
-#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
-msgid "Register"
-msgstr "S'inscrire"
+#: mod/contacts.php:752 mod/directory.php:63
+msgid "Finding: "
+msgstr "Trouvé: "
 
-#: ../../boot.php:1254 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Se déconnecter"
+#: mod/contacts.php:753 mod/directory.php:65 include/contact_widgets.php:34
+msgid "Find"
+msgstr "Trouver"
 
-#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
-msgid "Login"
-msgstr "Connexion"
+#: mod/contacts.php:758 mod/settings.php:137 mod/settings.php:648
+msgid "Update"
+msgstr "Mises-à-jour"
 
-#: ../../boot.php:1257
-msgid "Nickname or Email address: "
-msgstr "Pseudo ou courriel: "
+#: mod/contacts.php:762 mod/group.php:171 mod/admin.php:1045
+#: mod/content.php:440 mod/content.php:743 mod/settings.php:685
+#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613
+msgid "Delete"
+msgstr "Supprimer"
 
-#: ../../boot.php:1258
-msgid "Password: "
-msgstr "Mot de passe: "
+#: mod/contacts.php:775
+msgid "Mutual Friendship"
+msgstr "Relation réciproque"
 
-#: ../../boot.php:1259
-msgid "Remember me"
-msgstr "Se souvenir de moi"
+#: mod/contacts.php:779
+msgid "is a fan of yours"
+msgstr "Vous suit"
 
-#: ../../boot.php:1262
-msgid "Or login using OpenID: "
-msgstr "Ou connectez-vous via OpenID: "
+#: mod/contacts.php:783
+msgid "you are a fan of"
+msgstr "Vous le/la suivez"
 
-#: ../../boot.php:1268
-msgid "Forgot your password?"
-msgstr "Mot de passe oublié?"
+#: mod/contacts.php:800 mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Éditer le contact"
 
-#: ../../boot.php:1269 ../../mod/lostpass.php:109
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: mod/hcard.php:10
+msgid "No profile"
+msgstr "Aucun profil"
 
-#: ../../boot.php:1271
-msgid "Website Terms of Service"
-msgstr "Conditions d'utilisation du site internet"
+#: mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gérer les identités et/ou les pages"
 
-#: ../../boot.php:1272
-msgid "terms of service"
-msgstr "conditions d'utilisation"
+#: 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:1274
-msgid "Website Privacy Policy"
-msgstr "Politique de confidentialité du site internet"
+#: mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Choisir une identité à gérer: "
 
-#: ../../boot.php:1275
-msgid "privacy policy"
-msgstr "politique de confidentialité"
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publication réussie."
 
-#: ../../boot.php:1408
-msgid "Requested account is not available."
-msgstr "Le compte demandé n'est pas disponible."
+#: mod/profperm.php:19 mod/group.php:72 index.php:381
+msgid "Permission denied"
+msgstr "Permission refusée"
 
-#: ../../boot.php:1447 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Le profil demandé n'est pas disponible."
+#: mod/profperm.php:25 mod/profperm.php:56
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../boot.php:1490 ../../boot.php:1624
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Editer le profil"
+#: mod/profperm.php:102
+msgid "Profile Visibility Editor"
+msgstr "Éditer la visibilité du profil"
 
-#: ../../boot.php:1557 ../../include/contact_widgets.php:10
-#: ../../mod/suggest.php:90 ../../mod/match.php:58
-msgid "Connect"
-msgstr "Relier"
+#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529
+#: include/identity.php:610 include/identity.php:639 include/nav.php:77
+#: view/theme/diabook/theme.php:124
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../boot.php:1589
-msgid "Message"
-msgstr "Message"
+#: mod/profperm.php:106 mod/group.php:222
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
 
-#: ../../boot.php:1595 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Profils"
+#: mod/profperm.php:115
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../boot.php:1595
-msgid "Manage/edit profiles"
-msgstr "Gérer/éditer les profils"
+#: mod/profperm.php:131
+msgid "All Contacts (with secure profile access)"
+msgstr "Tous les contacts (ayant un accès sécurisé)"
 
-#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
-msgid "Change profile photo"
-msgstr "Changer de photo de profil"
+#: mod/display.php:82 mod/display.php:295 mod/display.php:512
+#: mod/viewsrc.php:15 mod/admin.php:169 mod/admin.php:1090 mod/admin.php:1303
+#: mod/notice.php:15 include/items.php:4813
+msgid "Item not found."
+msgstr "Élément introuvable."
 
-#: ../../boot.php:1601 ../../mod/profiles.php:805
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19
+#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:89
+#: mod/directory.php:35 mod/photos.php:942
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: ../../boot.php:1611 ../../mod/profiles.php:816
-msgid "Profile Image"
-msgstr "Image du profil"
+#: mod/display.php:343 mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "L'accès au profil a été restreint."
 
-#: ../../boot.php:1614 ../../mod/profiles.php:818
-msgid "visible to everybody"
-msgstr "visible par tous"
+#: mod/display.php:505
+msgid "Item has been removed."
+msgstr "Cet élément a été enlevé."
 
-#: ../../boot.php:1615 ../../mod/profiles.php:819
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
+#: mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bienvenue sur Friendica"
 
-#: ../../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:8
+msgid "New Member Checklist"
+msgstr "Checklist du nouvel utilisateur"
 
-#: ../../boot.php:1639 ../../include/profile_advanced.php:17
-#: ../../mod/directory.php:138
-msgid "Gender:"
-msgstr "Genre:"
+#: 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:1642 ../../include/profile_advanced.php:37
-#: ../../mod/directory.php:140
-msgid "Status:"
-msgstr "Statut:"
+#: mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Bien démarrer"
 
-#: ../../boot.php:1644 ../../include/profile_advanced.php:48
-#: ../../mod/directory.php:142
-msgid "Homepage:"
-msgstr "Page personnelle:"
+#: mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica pas-à-pas"
 
-#: ../../boot.php:1646 ../../include/profile_advanced.php:58
-#: ../../mod/directory.php:144
-msgid "About:"
-msgstr "À propos:"
+#: 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:1711
-msgid "Network:"
-msgstr "Réseau"
+#: mod/newmember.php:22 mod/admin.php:1142 mod/admin.php:1363
+#: mod/settings.php:90 include/nav.php:173 view/theme/diabook/theme.php:544
+#: view/theme/diabook/theme.php:648
+msgid "Settings"
+msgstr "Réglages"
 
-#: ../../boot.php:1743 ../../boot.php:1829
-msgid "g A l F d"
-msgstr "g A | F d"
+#: mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Éditer vos Réglages"
 
-#: ../../boot.php:1744 ../../boot.php:1830
-msgid "F d"
-msgstr "F d"
+#: 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:1789 ../../boot.php:1877
-msgid "[today]"
-msgstr "[aujourd'hui]"
+#: 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:1801
-msgid "Birthday Reminders"
-msgstr "Rappels d'anniversaires"
+#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: ../../boot.php:1802
-msgid "Birthdays this week:"
-msgstr "Anniversaires cette semaine:"
+#: 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:1864
-msgid "[No description]"
-msgstr "[Sans description]"
+#: mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Éditer votre Profil"
 
-#: ../../boot.php:1888
-msgid "Event Reminders"
-msgstr "Rappels d'événements"
+#: 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:1889
-msgid "Events this week:"
-msgstr "Evénements cette semaine :"
+#: mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Mots-clés du profil"
 
-#: ../../boot.php:2126 ../../include/nav.php:76
-msgid "Status"
-msgstr "Statut"
+#: 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:2129
-msgid "Status Messages and Posts"
-msgstr "Messages d'état et publications"
+#: mod/newmember.php:44
+msgid "Connecting"
+msgstr "Connexions"
 
-#: ../../boot.php:2136
-msgid "Profile Details"
-msgstr "Détails du profil"
+#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../boot.php:2143 ../../mod/photos.php:52
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: 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:2147 ../../boot.php:2150 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Vidéos"
+#: 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:2160
-msgid "Events and Calendar"
-msgstr "Événements et agenda"
+#: mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importer courriels"
 
-#: ../../boot.php:2164 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Notes personnelles"
+#: 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:2167
-msgid "Only You Can See This"
-msgstr "Vous seul pouvez voir ça"
+#: mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Consulter vos Contacts"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Fonctions générales"
+#: 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/features.php:25
-msgid "Multiple Profiles"
-msgstr "Profils multiples"
+#: mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Consulter l'Annuaire de votre Site"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Possibilité de créer plusieurs profils"
+#: 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:30
-msgid "Post Composition Features"
-msgstr "Caractéristiques de composition de publication"
+#: mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trouver de nouvelles personnes"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Éditeur de texte enrichi"
+#: 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:31
-msgid "Enable richtext editor"
-msgstr "Activer l'éditeur de texte enrichi"
+#: mod/newmember.php:66 include/group.php:270
+msgid "Groups"
+msgstr "Groupes"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Aperçu de la publication"
+#: mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grouper vos contacts"
 
-#: ../../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: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:33
-msgid "Auto-mention Forums"
-msgstr ""
+#: mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Pourquoi mes éléments ne sont pas publics ?"
 
-#: ../../include/features.php:33
+#: mod/newmember.php:73
 msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr ""
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets réseau pour barre latérale"
+"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:39
-msgid "Search by Date"
-msgstr "Rechercher par Date"
+#: mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtenir de l'aide"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Capacité de sélectionner les publications par intervalles de dates"
+#: mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Aller à la section Aide"
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Filtre de groupe"
+#: 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."
 
-#: ../../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/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Filtre de réseau"
+#: mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
 
-#: ../../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/openid.php:93 include/auth.php:112 include/auth.php:175
+msgid "Login failed."
+msgstr "Échec de connexion."
 
-#: ../../include/features.php:42 ../../mod/network.php:194
-#: ../../mod/search.php:30
-msgid "Saved Searches"
-msgstr "Recherches"
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Image envoyée, mais impossible de la retailler."
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
+#: 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:177 mod/photos.php:753
+#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343
+#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Onglets Réseau"
+#: 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:48
-msgid "Network Personal Tab"
-msgstr "Onglet Réseau Personnel"
+#: 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: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:128
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nouvel onglet réseaux"
+#: mod/profile_photo.php:144 mod/wall_upload.php:122 mod/photos.php:789
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "L'image dépasse la taille limite de %s"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
+#: mod/profile_photo.php:153 mod/wall_upload.php:144 mod/photos.php:829
+msgid "Unable to process image."
+msgstr "Impossible de traiter l'image."
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Onglet réseau partagé"
+#: mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Fichier à téléverser:"
 
-#: ../../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:243
+msgid "Select a profile:"
+msgstr "Choisir un profil:"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "outils de publication/commentaire"
+#: mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Téléverser"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Suppression multiple"
+#: mod/profile_photo.php:248 mod/settings.php:1097
+msgid "or"
+msgstr "ou"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
+#: mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "ignorer cette étape"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
+#: mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "choisissez une photo depuis vos albums"
 
-#: ../../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/profile_photo.php:262
+msgid "Crop Image"
+msgstr "(Re)cadrer l'image"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Étiquettage"
+#: 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:58
-msgid "Ability to tag existing posts"
-msgstr "Possibilité d'étiqueter les publications existantes"
+#: mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Édition terminée"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Catégories des publications"
+#: mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
+#: mod/profile_photo.php:301 mod/wall_upload.php:172 mod/photos.php:856
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
 
-#: ../../include/features.php:60 ../../include/contact_widgets.php:104
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
+#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149
+#: include/conversation.php:126 include/conversation.php:253
+#: include/text.php:2000 include/diaspora.php:2111
+#: view/theme/diabook/theme.php:471
+msgid "photo"
+msgstr "photo"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Possibilité d'afficher les publications sous les répertoires"
+#: 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:248 include/conversation.php:257
+#: include/diaspora.php:2111 view/theme/diabook/theme.php:466
+#: view/theme/diabook/theme.php:475
+msgid "status"
+msgstr "le statut"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Publications non aimé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:61
-msgid "Ability to dislike posts/comments"
-msgstr "Possibilité de ne pas aimer les publications/commentaires"
+#: mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette supprimée"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Publications spéciales"
+#: mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Enlever l'étiquette de l'élément"
 
-#: ../../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/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Sélectionner une étiquette à supprimer: "
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
+#: mod/tagrm.php:93 mod/delegate.php:139
+msgid "Remove"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
+#: mod/filer.php:30 include/conversation.php:1005
+#: include/conversation.php:1023
+msgid "Save to Folder:"
+msgstr "Sauver dans le Dossier:"
 
-#: ../../include/items.php:2307 ../../include/datetime.php:477
-#, php-format
-msgid "%s's birthday"
-msgstr "Anniversaire de %s's"
+#: mod/filer.php:30
+msgid "- select -"
+msgstr "- choisir -"
 
-#: ../../include/items.php:2308 ../../include/datetime.php:478
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Joyeux anniversaire, %s !"
+#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978
+msgid "Save"
+msgstr "Sauver"
 
-#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
-#: ../../mod/dfrn_confirm.php:752
-msgid "[Name Withheld]"
-msgstr "[Nom non-publié]"
+#: mod/follow.php:24
+msgid "You already added this contact."
+msgstr "Vous avez déjà ajouté ce contact."
 
-#: ../../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."
-
-#: ../../include/items.php:4658
-msgid "Do you really want to delete this item?"
-msgstr "Voulez-vous vraiment supprimer cet élément ?"
+#: mod/follow.php:56 mod/dfrn_request.php:844
+msgid "Please answer the following:"
+msgstr "Merci de répondre à ce qui suit:"
 
-#: ../../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/follow.php:57 mod/dfrn_request.php:845
+#, php-format
+msgid "Does %s know you?"
+msgstr "Est-ce que %s vous connaît?"
 
-#: ../../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/follow.php:57 mod/settings.php:1045 mod/settings.php:1051
+#: mod/settings.php:1059 mod/settings.php:1063 mod/settings.php:1068
+#: mod/settings.php:1074 mod/settings.php:1080 mod/settings.php:1086
+#: mod/settings.php:1114 mod/settings.php:1115 mod/settings.php:1116
+#: mod/settings.php:1117 mod/settings.php:1118 mod/dfrn_request.php:845
+#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662
+#: mod/api.php:106
+msgid "No"
+msgstr "Non"
 
-#: ../../include/items.php:4881
-msgid "Archives"
-msgstr "Archives"
+#: mod/follow.php:58 mod/dfrn_request.php:849
+msgid "Add a personal note:"
+msgstr "Ajouter une note personnelle:"
 
-#: ../../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/follow.php:64 mod/dfrn_request.php:855
+msgid "Your Identity Address:"
+msgstr "Votre adresse d'identité:"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+#: mod/follow.php:67 mod/dfrn_request.php:858
+msgid "Submit Request"
+msgstr "Envoyer la requête"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tout le monde"
+#: mod/follow.php:106
+msgid "Contact added"
+msgstr "Contact ajouté"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "éditer"
+#: mod/item.php:115
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication originale."
 
-#: ../../include/group.php:270 ../../mod/newmember.php:66
-msgid "Groups"
-msgstr "Groupes"
+#: mod/item.php:347
+msgid "Empty post discarded."
+msgstr "Publication vide rejetée."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editer groupe"
+#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178
+#: mod/wall_upload.php:185 include/Photo.php:951 include/Photo.php:966
+#: include/Photo.php:973 include/Photo.php:995 include/message.php:144
+msgid "Wall Photos"
+msgstr "Photos du mur"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: mod/item.php:860
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvée."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contacts n'appartenant à aucun groupe"
+#: mod/item.php:989
+#, 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."
 
-#: ../../include/group.php:275 ../../mod/network.php:195
-msgid "add"
-msgstr "ajouter"
+#: mod/item.php:991
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: ../../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/item.php:992
+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."
 
-#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#: mod/item.php:996
 #, 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 "%s posted an update."
+msgstr "%s a publié une mise à jour."
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Ajouter un nouveau contact"
+#: mod/group.php:29
+msgid "Group created."
+msgstr "Groupe créé."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Entrez son adresse ou sa localisation web"
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossible de créer le groupe."
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple: bob@example.com, http://example.com/barbara"
+#: mod/group.php:47 mod/group.php:140
+msgid "Group not found."
+msgstr "Groupe introuvable."
 
-#: ../../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/group.php:60
+msgid "Group name changed."
+msgstr "Groupe renommé."
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Trouver des personnes"
+#: mod/group.php:87
+msgid "Save Group"
+msgstr "Sauvegarder le groupe"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Entrez un nom ou un centre d'intérêt"
+#: mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Créez un groupe de contacts/amis."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Connecter/Suivre"
+#: mod/group.php:94 mod/group.php:178 include/group.php:273
+msgid "Group Name: "
+msgstr "Nom du groupe: "
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Pêche"
+#: mod/group.php:113
+msgid "Group removed."
+msgstr "Groupe enlevé."
 
-#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
-#: ../../mod/directory.php:63
-msgid "Find"
-msgstr "Trouver"
+#: mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossible d'enlever le groupe."
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Profil au hasard"
+#: mod/group.php:177
+msgid "Group Editor"
+msgstr "Éditeur de groupe"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Réseaux"
+#: mod/group.php:190
+msgid "Members"
+msgstr "Membres"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Tous réseaux"
+#: mod/apps.php:7 index.php:225
+msgid "You must be logged in to use addons. "
+msgstr "Vous devez être connecté pour utiliser les greffons."
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tout"
+#: mod/apps.php:11
+msgid "Applications"
+msgstr "Applications"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Catégories"
+#: mod/apps.php:14
+msgid "No installed applications."
+msgstr "Pas d'application installée."
 
-#: ../../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 contact en commun"
-msgstr[1] "%d contacts en commun"
+#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
+#: mod/profiles.php:179 mod/profiles.php:627
+msgid "Profile not found."
+msgstr "Profil introuvable."
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Notification Friendica"
+#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92
+#: mod/crepair.php:134
+msgid "Contact not found."
+msgstr "Contact introuvable."
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Merci, "
+#: 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/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "L'administrateur de %s"
+#: mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Réponse du site distant incomprise."
 
-#: ../../include/enotify.php:33 ../../include/delivery.php:467
-#: ../../include/notifier.php:796
-msgid "noreply"
-msgstr "noreply"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Réponse inattendue du site distant : "
 
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Confirmation achevée avec succè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/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Alerte du site distant : "
 
-#: ../../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/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Échec temporaire. Merci de recommencer ultérieurement."
 
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
+#: mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Introduction échouée ou annulée."
 
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "un message privé"
+#: mod/dfrn_confirm.php:430
+msgid "Unable to set contact photo."
+msgstr "Impossible de définir la photo du contact."
 
-#: ../../include/enotify.php:72
+#: mod/dfrn_confirm.php:487 include/conversation.php:172
+#: include/diaspora.php:627
 #, 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."
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s est désormais lié à %2$s"
 
-#: ../../include/enotify.php:124
+#: mod/dfrn_confirm.php:572
 #, 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]"
+msgid "No user record found for '%s' "
+msgstr "Pas d'utilisateur trouvé pour '%s' "
 
-#: ../../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/dfrn_confirm.php:582
+msgid "Our site encryption key is apparently messed up."
+msgstr "Notre clé de chiffrement de site est apparemment corrompue."
 
-#: ../../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/dfrn_confirm.php:593
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "URL de site absente ou indéchiffrable."
 
-#: ../../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/dfrn_confirm.php:614
+msgid "Contact record was not found for you on our site."
+msgstr "Pas d'entrée pour ce contact sur notre site."
 
-#: ../../include/enotify.php:150
+#: mod/dfrn_confirm.php:628
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s a commenté un élément que vous suivez."
+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."
 
-#: ../../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/dfrn_confirm.php:648
+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:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
+#: mod/dfrn_confirm.php:659
+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: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/dfrn_confirm.php:726
+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: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/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236
+msgid "[Name Withheld]"
+msgstr "[Nom non-publié]"
 
-#: ../../include/enotify.php:175
+#: mod/dfrn_confirm.php:798
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notification] %s vous a étiqueté"
+msgid "%1$s has joined %2$s"
+msgstr "%1$s a rejoint %2$s"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s vous a étiqueté sur %2$s"
+#: mod/profile.php:21 include/identity.php:77
+msgid "Requested profile is not available."
+msgstr "Le profil demandé n'est pas disponible."
 
-#: ../../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/profile.php:179
+msgid "Tips for New Members"
+msgstr "Conseils aux nouveaux venus"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notification] %s partage une nouvelle publication"
+#: mod/videos.php:113
+msgid "Do you really want to delete this video?"
+msgstr "Voulez-vous vraiment supprimer cette vidéo?"
 
-#: ../../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/videos.php:118
+msgid "Delete Video"
+msgstr "Supprimer la vidéo"
 
-#: ../../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/videos.php:197
+msgid "No videos selected"
+msgstr "Pas de vidéo sélectionné"
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s vous a sollicité"
+#: mod/videos.php:298 mod/photos.php:1053
+msgid "Access to this item is restricted."
+msgstr "Accès restreint à cet élément."
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s vous a sollicité via %2$s"
+#: mod/videos.php:373 include/text.php:1429
+msgid "View Video"
+msgstr "Regarder la vidéo"
 
-#: ../../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/videos.php:380 mod/photos.php:1827
+msgid "View Album"
+msgstr "Voir l'album"
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notification] %s a étiqueté votre publication"
+#: mod/videos.php:389
+msgid "Recent Videos"
+msgstr "Vidéos récente"
 
-#: ../../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/videos.php:391
+msgid "Upload New Videos"
+msgstr "Téléversé une nouvelle vidéo"
 
-#: ../../include/enotify.php:221
+#: mod/tagger.php:95 include/conversation.php:265
 #, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
-
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notification] Introduction reçue"
+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"
 
-#: ../../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/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/contact envoyée."
 
-#: ../../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/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer des amis/contacts"
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#: mod/fsuggest.php:99
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Vous pouvez visiter son profil sur %s"
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un ami/contact pour %s"
 
-#: ../../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/lostpass.php:19
+msgid "No valid account found."
+msgstr "Impossible de trouver un compte valide."
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
+#: 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:248 ../../include/enotify.php:249
+#: mod/lostpass.php:42
 #, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr ""
+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/enotify.php:256 ../../include/enotify.php:257
+#: mod/lostpass.php:53
 #, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr ""
-
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
+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/enotify.php:271
+#: mod/lostpass.php:72
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
+msgid "Password reset requested at %s"
+msgstr "Requête de réinitialisation de mot de passe à %s"
 
-#: ../../include/enotify.php:272
-#, php-format
+#: mod/lostpass.php:92
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
-
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Nom :"
+"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:278
-msgid "Photo:"
-msgstr "Photo :"
+#: mod/lostpass.php:109 boot.php:1278
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../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/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr ""
+#: mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est "
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr ""
+#: 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:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr ""
+#: mod/lostpass.php:113
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
 
-#: ../../include/enotify.php:294
+#: mod/lostpass.php:114
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr ""
-
-#: ../../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 ""
+"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:307
+#: mod/lostpass.php:125
 #, php-format
 msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
+"\n"
+"\t\t\t\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/enotify.php:309
+#: mod/lostpass.php:131
 #, php-format
 msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr ""
-
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\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/enotify.php:323
+#: mod/lostpass.php:147
 #, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr ""
+msgid "Your password has been changed at %s"
+msgstr "Votre mot de passe a été modifié à %s"
 
-#: ../../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/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié ?"
 
-#: ../../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/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:330
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
+#: mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Pseudo ou eMail : "
 
-#: ../../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/lostpass.php:162
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: ../../include/api.php:770
+#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2127
+#: view/theme/diabook/theme.php:480
 #, 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 "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: ../../include/api.php:789
+#: mod/like.php:168 include/conversation.php:140
 #, 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."
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
 
-#: ../../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/ping.php:233
+msgid "{0} wants to be your friend"
+msgstr "{0} souhaite être votre ami(e)"
 
-#: ../../include/api.php:1271
-msgid "There is no status with this id."
-msgstr "Il n'y a pas de statut avec cet id."
+#: mod/ping.php:248
+msgid "{0} sent you a message"
+msgstr "{0} vous a envoyé un message"
 
-#: ../../include/api.php:1341
-msgid "There is no conversation with this id."
-msgstr "Il n'y a pas de conversation avec cet id."
+#: mod/ping.php:263
+msgid "{0} requested registration"
+msgstr "{0} a demandé à s'inscrire"
 
-#: ../../include/api.php:1613
-msgid "Invalid request."
-msgstr "Requête invalide."
+#: mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Aucun contact."
 
-#: ../../include/api.php:1624
-msgid "Invalid item."
-msgstr "Item invalide."
+#: mod/viewcontacts.php:78 include/text.php:899
+msgid "View Contacts"
+msgstr "Voir les contacts"
 
-#: ../../include/api.php:1634
-msgid "Invalid action. "
-msgstr "Action invalide."
+#: mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de demande invalide."
 
-#: ../../include/api.php:1642
-msgid "DB error"
-msgstr ""
+#: mod/notifications.php:35 mod/notifications.php:165
+#: mod/notifications.php:215
+msgid "Discard"
+msgstr "Rejeter"
 
-#: ../../include/network.php:890
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: mod/notifications.php:78
+msgid "System"
+msgstr "Système"
 
-#: ../../include/Scrape.php:608
-msgid " on Last.fm"
-msgstr "sur Last.fm"
+#: mod/notifications.php:83 include/nav.php:145
+msgid "Network"
+msgstr "Réseau"
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
-msgid "Full Name:"
-msgstr "Nom complet:"
+#: mod/notifications.php:88 mod/network.php:373
+msgid "Personal"
+msgstr "Personnel"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148
+#: view/theme/diabook/theme.php:123
+msgid "Home"
+msgstr "Profil"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: mod/notifications.php:98 include/nav.php:153
+msgid "Introductions"
+msgstr "Introductions"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Anniversaire:"
+#: mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Voir les demandes ignorées"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Age:"
+#: mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Cacher les demandes ignorées"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+#: mod/notifications.php:149 mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Type de notification: "
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
-msgid "Sexual Preference:"
-msgstr "Préférence sexuelle:"
+#: mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Suggestion d'amitié/contact"
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
-msgid "Hometown:"
-msgstr " Ville d'origine:"
+#: mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "suggéré(e) par %s"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Étiquette:"
+#: mod/notifications.php:158 mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Poster une nouvelle avtivité d'ami"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
-msgid "Political Views:"
-msgstr "Opinions politiques:"
+#: mod/notifications.php:158 mod/notifications.php:209
+msgid "if applicable"
+msgstr "si possible"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1043
+msgid "Approve"
+msgstr "Approuver"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt:"
+#: mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Prétend que vous le connaissez: "
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
-msgid "Likes:"
-msgstr "J'aime :"
+#: mod/notifications.php:181
+msgid "yes"
+msgstr "oui"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
-msgid "Dislikes:"
-msgstr "Je n'aime pas :"
+#: mod/notifications.php:181
+msgid "no"
+msgstr "non"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées/Réseaux sociaux:"
+#: 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 "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Goûts musicaux:"
+#: mod/notifications.php:185
+msgid ""
+"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 "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Lectures:"
+#: mod/notifications.php:193
+msgid "Friend"
+msgstr "Ami"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Télévision:"
+#: mod/notifications.php:194
+msgid "Sharer"
+msgstr "Initiateur du partage"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement:"
+#: mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fan/Admirateur"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amour/Romance:"
+#: mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Demande de connexion/relation"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation:"
+#: mod/notifications.php:200
+msgid "New Follower"
+msgstr "Nouvel abonné"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Études/Formation:"
+#: mod/notifications.php:221
+msgid "No introductions."
+msgstr "Aucune demande d'introduction."
 
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
+#: mod/notifications.php:224 include/nav.php:156
+msgid "Notifications"
+msgstr "Notifications"
 
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
-msgstr "Effacer les notifications"
+#: mod/notifications.php:262 mod/notifications.php:391
+#: mod/notifications.php:482
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s a aimé la publication de %s"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Mettre fin à cette session"
+#: mod/notifications.php:272 mod/notifications.php:401
+#: mod/notifications.php:492
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s n'a pas aimé la publication de %s"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Vos vidéos"
+#: mod/notifications.php:287 mod/notifications.php:416
+#: mod/notifications.php:507
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s est désormais ami(e) avec %s"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Vos notes personnelles"
+#: mod/notifications.php:294 mod/notifications.php:423
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a créé une nouvelle publication"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Se connecter"
+#: mod/notifications.php:295 mod/notifications.php:424
+#: mod/notifications.php:517
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s a commenté la publication de %s"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Page d'accueil"
+#: mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Aucune notification du réseau."
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Créer un compte"
+#: mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Notifications du réseau"
 
-#: ../../include/nav.php:114 ../../mod/help.php:36
-msgid "Help"
-msgstr "Aide"
+#: mod/notifications.php:340 mod/notify.php:72
+msgid "No more system notifications."
+msgstr "Pas plus de notifications système."
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Aide et documentation"
+#: mod/notifications.php:344 mod/notify.php:76
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Applications"
+#: mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Aucun notification personnelle."
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, utilitaires, jeux"
+#: mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Notifications personnelles"
 
-#: ../../include/nav.php:119 ../../include/text.php:968
-#: ../../include/text.php:969 ../../mod/search.php:99
-msgid "Search"
-msgstr "Recherche"
+#: mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Aucune notification de la page d'accueil."
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Rechercher dans le contenu du site"
+#: mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Notifications de page d'accueil"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversations ayant cours sur ce site"
+#: mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texte source (bbcode) :"
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr ""
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texte source (Diaspora) à convertir en BBcode :"
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Annuaire"
+#: mod/babel.php:31
+msgid "Source input: "
+msgstr "Source input : "
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Annuaire des utilisateurs"
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML brut)"
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Information"
+#: mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html : "
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Information au sujet de cette instance de friendica"
+#: mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb : "
 
-#: ../../include/nav.php:145 ../../mod/notifications.php:83
-msgid "Network"
-msgstr "Réseau"
+#: mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md : "
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Conversations de vos amis"
+#: mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html : "
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Réinitialiser le réseau"
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb : "
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Chargement des pages du réseau sans filtre"
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb : "
 
-#: ../../include/nav.php:154 ../../mod/notifications.php:98
-msgid "Introductions"
-msgstr "Introductions"
+#: mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Texte source (format Diaspora) :"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Demande d'amitié"
+#: mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb :"
 
-#: ../../include/nav.php:155 ../../mod/notifications.php:224
-msgid "Notifications"
-msgstr "Notifications"
+#: mod/navigation.php:20 include/nav.php:34
+msgid "Nothing new here"
+msgstr "Rien de neuf ici"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Voir toute notification"
+#: mod/navigation.php:24 include/nav.php:38
+msgid "Clear notifications"
+msgstr "Effacer les notifications"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme 'vues'"
+#: mod/message.php:9 include/nav.php:165
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: ../../include/nav.php:161 ../../mod/message.php:182
-msgid "Messages"
-msgstr "Messages"
+#: mod/message.php:63 mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Pas de destinataire sélectionné."
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Messages privés"
+#: mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossible de localiser les informations du contact."
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "Messages entrants"
+#: mod/message.php:70 mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Impossible d'envoyer le message."
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Messages sortants"
+#: mod/message.php:73 mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Récupération des messages infructueuse."
 
-#: ../../include/nav.php:164 ../../mod/message.php:9
-msgid "New Message"
-msgstr "Nouveau message"
+#: mod/message.php:76 mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Message envoyé."
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Gérer"
+#: mod/message.php:182 include/nav.php:162
+msgid "Messages"
+msgstr "Messages"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Gérer les autres pages"
+#: mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Voulez-vous vraiment supprimer ce message ?"
 
-#: ../../include/nav.php:170 ../../mod/settings.php:67
-msgid "Delegations"
-msgstr "Délégations"
+#: mod/message.php:227
+msgid "Message deleted."
+msgstr "Message supprimé."
 
-#: ../../include/nav.php:170 ../../mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Déléguer la gestion de la page"
+#: mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Compte"
+#: 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:1001 include/conversation.php:1019
+msgid "Please enter a link URL:"
+msgstr "Entrez un lien web:"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Gérer/Éditer les profiles"
+#: mod/message.php:319 mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Gérer/éditer les amitiés et contacts"
+#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144
+msgid "To:"
+msgstr "À:"
 
-#: ../../include/nav.php:184 ../../mod/admin.php:130
-msgid "Admin"
-msgstr "Admin"
+#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Sujet:"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Démarrage et configuration du site"
+#: 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:188
-msgid "Navigation"
-msgstr "Navigation"
+#: mod/message.php:332 mod/message.php:562 mod/wallmessage.php:154
+#: mod/editpost.php:110 include/conversation.php:1056
+msgid "Upload photo"
+msgstr "Joindre photo"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Carte du site"
-
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
-
-#: ../../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/message.php:333 mod/message.php:563 mod/wallmessage.php:155
+#: mod/editpost.php:114 include/conversation.php:1060
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: ../../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/message.php:334 mod/message.php:565 mod/content.php:501
+#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124
+#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691
+#: include/conversation.php:1074
+msgid "Please wait"
+msgstr "Patientez"
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: mod/message.php:371
+msgid "No messages."
+msgstr "Aucun message."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de connexion manquante."
+#: mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Émetteur inconnu - %s"
 
-#: ../../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."
+#: mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Vous et %s"
 
-#: ../../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/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s et vous"
 
-#: ../../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/message.php:405 mod/message.php:546
+msgid "Delete conversation"
+msgstr "Effacer conversation"
 
-#: ../../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/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
+#: mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: ../../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/message.php:450
+msgid "Message not available."
+msgstr "Message indisponible."
 
-#: ../../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/message.php:520
+msgid "Delete message"
+msgstr "Effacer message"
 
-#: ../../include/follow.php:93
+#: mod/message.php:548
 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."
+"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/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/message.php:552
+msgid "Send Reply"
+msgstr "Répondre"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
+#: 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/follow.php:258
-msgid "following"
-msgstr "following"
+#: mod/crepair.php:107
+msgid "Contact settings applied."
+msgstr "Réglages du contact appliqués."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
+#: mod/crepair.php:109
+msgid "Contact update failed."
+msgstr "Impossible d'appliquer les réglages."
 
-#: ../../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/crepair.php:140
+msgid "Repair Contact Settings"
+msgstr "Réglages de réparation des contacts"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erreur! Pseudo invalide"
+#: mod/crepair.php:142
+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/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/crepair.php:143
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "une photo"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erreur de création d'utilisateur"
+#: mod/crepair.php:149
+msgid "Return to contact editor"
+msgstr "Retour à l'éditeur de contact"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erreur de création du profil utilisateur"
+#: mod/crepair.php:160 mod/crepair.php:162
+msgid "No mirroring"
+msgstr "Pas de miroir"
 
-#: ../../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/crepair.php:160
+msgid "Mirror as forwarded posting"
+msgstr ""
 
-#: ../../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/crepair.php:160 mod/crepair.php:162
+msgid "Mirror as my own posting"
+msgstr ""
 
-#: ../../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/crepair.php:169
+msgid "Refetch contact data"
+msgstr ""
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
-msgid "Starts:"
-msgstr "Débute:"
+#: mod/crepair.php:170 mod/admin.php:1041 mod/admin.php:1053
+#: mod/admin.php:1054 mod/admin.php:1067 mod/settings.php:624
+#: mod/settings.php:650
+msgid "Name"
+msgstr "Nom"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
-msgid "Finishes:"
-msgstr "Finit:"
+#: mod/crepair.php:171
+msgid "Account Nickname"
+msgstr "Pseudo du compte"
 
-#: ../../include/Contact.php:119
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
+#: mod/crepair.php:172
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
 
-#: ../../include/Contact.php:232 ../../include/conversation.php:881
-msgid "Poke"
-msgstr "Sollicitations (pokes)"
+#: mod/crepair.php:173
+msgid "Account URL"
+msgstr "URL du compte"
 
-#: ../../include/Contact.php:233 ../../include/conversation.php:875
-msgid "View Status"
-msgstr "Voir les statuts"
+#: mod/crepair.php:174
+msgid "Friend Request URL"
+msgstr "Echec du téléversement de l'image."
 
-#: ../../include/Contact.php:234 ../../include/conversation.php:876
-msgid "View Profile"
-msgstr "Voir le profil"
+#: mod/crepair.php:175
+msgid "Friend Confirm URL"
+msgstr "Accès public refusé."
 
-#: ../../include/Contact.php:235 ../../include/conversation.php:877
-msgid "View Photos"
-msgstr "Voir les photos"
+#: mod/crepair.php:176
+msgid "Notification Endpoint URL"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../include/Contact.php:236 ../../include/Contact.php:259
-#: ../../include/conversation.php:878
-msgid "Network Posts"
-msgstr "Publications du réseau"
+#: mod/crepair.php:177
+msgid "Poll/Feed URL"
+msgstr "Téléverser des photos"
 
-#: ../../include/Contact.php:237 ../../include/Contact.php:259
-#: ../../include/conversation.php:879
-msgid "Edit Contact"
-msgstr "Éditer le contact"
+#: mod/crepair.php:178
+msgid "New photo from this URL"
+msgstr "Nouvelle photo depuis cette URL"
 
-#: ../../include/Contact.php:238
-msgid "Drop Contact"
-msgstr "Supprimer le contact"
+#: mod/crepair.php:179
+msgid "Remote Self"
+msgstr ""
 
-#: ../../include/Contact.php:239 ../../include/Contact.php:259
-#: ../../include/conversation.php:880
-msgid "Send PM"
-msgstr "Message privé"
+#: mod/crepair.php:181
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../include/dbstructure.php:26
-#, php-format
+#: mod/crepair.php:181
 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."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../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/bookmarklet.php:12 boot.php:1264 include/nav.php:92
+msgid "Login"
+msgstr "Connexion"
 
-#: ../../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/bookmarklet.php:41
+msgid "The post was created"
+msgstr ""
 
-#: ../../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/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accès refusé."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Divers"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
+msgstr ""
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "an"
+#: mod/dirfind.php:119 mod/match.php:65 mod/suggest.php:92
+#: include/contact_widgets.php:10 include/identity.php:188
+msgid "Connect"
+msgstr "Relier"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "mois"
+#: mod/dirfind.php:133 mod/match.php:73
+msgid "No matches"
+msgstr "Aucune correspondance"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "jour"
+#: mod/fbrowser.php:32 include/identity.php:646 include/nav.php:78
+#: view/theme/diabook/theme.php:126
+msgid "Photos"
+msgstr "Photos"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "jamais"
+#: mod/fbrowser.php:122
+msgid "Files"
+msgstr "Fichiers"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacts qui n’appartiennent à aucun groupe"
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "ans"
+#: mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvés."
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "mois"
+#: mod/admin.php:104 mod/admin.php:649
+msgid "Site"
+msgstr "Site"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "semaine"
+#: mod/admin.php:105 mod/admin.php:595 mod/admin.php:1036 mod/admin.php:1051
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "semaines"
+#: mod/admin.php:106 mod/admin.php:1140 mod/admin.php:1193 mod/settings.php:62
+msgid "Plugins"
+msgstr "Extensions"
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "jours"
+#: mod/admin.php:107 mod/admin.php:1361 mod/admin.php:1395
+msgid "Themes"
+msgstr "Thèmes"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "heure"
+#: mod/admin.php:108
+msgid "DB updates"
+msgstr "Mise-à-jour de la base"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "heures"
+#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1482
+msgid "Logs"
+msgstr "Journaux"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minute"
+#: mod/admin.php:124
+msgid "probe address"
+msgstr ""
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minutes"
+#: mod/admin.php:125
+msgid "check webfinger"
+msgstr ""
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "seconde"
+#: mod/admin.php:130 include/nav.php:185
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "secondes"
+#: mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Propriétés des extensions"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s auparavant"
+#: mod/admin.php:133
+msgid "diagnostics"
+msgstr ""
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[pas de sujet]"
+#: mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente de confirmation"
 
-#: ../../include/delivery.php:456 ../../include/notifier.php:786
-msgid "(no subject)"
-msgstr "(sans titre)"
+#: mod/admin.php:193 mod/admin.php:989
+msgid "Normal Account"
+msgstr "Compte normal"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Inconnu | Non-classé"
+#: mod/admin.php:194 mod/admin.php:990
+msgid "Soapbox Account"
+msgstr "Compte \"boîte à savon\""
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquer immédiatement"
+#: mod/admin.php:195 mod/admin.php:991
+msgid "Community/Celebrity Account"
+msgstr "Compte de communauté/célébrité"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Douteux, spammeur, accro à l'auto-promotion"
+#: mod/admin.php:196 mod/admin.php:992
+msgid "Automatic Friend Account"
+msgstr "Compte auto-amical"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Connu de moi, mais sans opinion"
+#: mod/admin.php:197
+msgid "Blog Account"
+msgstr "Compte de blog"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probablement inoffensif"
+#: mod/admin.php:198
+msgid "Private Forum"
+msgstr "Forum privé"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Réputé, a toute ma confiance"
+#: mod/admin.php:217
+msgid "Message queues"
+msgstr "Files d'attente des messages"
+
+#: mod/admin.php:222 mod/admin.php:648 mod/admin.php:1035 mod/admin.php:1139
+#: mod/admin.php:1192 mod/admin.php:1360 mod/admin.php:1394 mod/admin.php:1481
+msgid "Administration"
+msgstr "Administration"
+
+#: mod/admin.php:223
+msgid "Summary"
+msgstr "Résumé"
+
+#: mod/admin.php:225
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
+
+#: mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
+
+#: mod/admin.php:228
+msgid "Version"
+msgstr "Versio"
+
+#: mod/admin.php:232
+msgid "Active plugins"
+msgstr "Extensions activés"
+
+#: mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
+
+#: mod/admin.php:532
+msgid "Site settings updated."
+msgstr "Réglages du site mis-à-jour."
+
+#: mod/admin.php:561 mod/settings.php:862
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème particulier pour les terminaux mobiles"
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+#: mod/admin.php:578
+msgid "No community page"
+msgstr ""
+
+#: mod/admin.php:579
+msgid "Public postings from users of this site"
+msgstr ""
+
+#: mod/admin.php:580
+msgid "Global community page"
+msgstr ""
+
+#: mod/admin.php:586
+msgid "At post arrival"
+msgstr "A l'arrivé d'une publication"
+
+#: mod/admin.php:587 include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Fréquemment"
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+#: mod/admin.php:588 include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Toutes les heures"
 
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+#: mod/admin.php:589 include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Deux fois par jour"
 
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+#: mod/admin.php:590 include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Chaque jour"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Chaque semaine"
+#: mod/admin.php:596
+msgid "Users, Global Contacts"
+msgstr ""
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Chaque mois"
+#: mod/admin.php:597
+msgid "Users, Global Contacts/fallback"
+msgstr ""
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
-msgid "Friendica"
-msgstr "Friendica"
+#: mod/admin.php:601
+msgid "One month"
+msgstr "Un mois"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: mod/admin.php:602
+msgid "Three months"
+msgstr "Trois mois"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: mod/admin.php:603
+msgid "Half a year"
+msgstr ""
 
-#: ../../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:604
+msgid "One year"
+msgstr "Un an"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
-#: ../../mod/dfrn_request.php:838
-msgid "Diaspora"
-msgstr "Diaspora"
+#: mod/admin.php:609
+msgid "Multi user instance"
+msgstr "Instance multi-utilisateurs"
 
-#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
-#: ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: mod/admin.php:632
+msgid "Closed"
+msgstr "Fermé"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: mod/admin.php:633
+msgid "Requires approval"
+msgstr "Demande une apptrobation"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: mod/admin.php:634
+msgid "Open"
+msgstr "Ouvert"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: mod/admin.php:638
+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/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: mod/admin.php:639
+msgid "Force all links to use SSL"
+msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: mod/admin.php:640
+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/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: mod/admin.php:650 mod/admin.php:1194 mod/admin.php:1396 mod/admin.php:1483
+#: mod/settings.php:622 mod/settings.php:732 mod/settings.php:763
+#: mod/settings.php:832 mod/settings.php:914 mod/settings.php:1146
+msgid "Save Settings"
+msgstr "Sauvegarder les paramétres"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: mod/admin.php:651 mod/register.php:260
+msgid "Registration"
+msgstr "Inscription"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Connecteur Diaspora"
+#: mod/admin.php:652
+msgid "File upload"
+msgstr "Téléversement de fichier"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: mod/admin.php:653
+msgid "Policies"
+msgstr "Politiques"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: mod/admin.php:654
+msgid "Advanced"
+msgstr "Avancé"
 
-#: ../../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:655
+msgid "Auto Discovered Contact Directory"
+msgstr ""
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
+#: mod/admin.php:656
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../include/diaspora.php:2444
-msgid "Attachments:"
-msgstr "Pièces jointes : "
+#: mod/admin.php:657
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
 
-#: ../../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:660
+msgid "Site name"
+msgstr "Nom du site"
 
-#: ../../include/conversation.php:206
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s a sollicité %2$s"
+#: mod/admin.php:661
+msgid "Host name"
+msgstr "Nom de la machine hôte"
 
-#: ../../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:662
+msgid "Sender Email"
+msgstr ""
 
-#: ../../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:663
+msgid "Banner/Logo"
+msgstr "Bannière/Logo"
 
-#: ../../include/conversation.php:290
-msgid "post/item"
-msgstr "publication/élément"
+#: mod/admin.php:664
+msgid "Shortcut icon"
+msgstr ""
 
-#: ../../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:665
+msgid "Touch icon"
+msgstr ""
 
-#: ../../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:666
+msgid "Additional Info"
+msgstr "Informations supplémentaires"
 
-#: ../../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:666
+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/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:667
+msgid "System language"
+msgstr "Langue du système"
 
-#: ../../include/conversation.php:665 ../../object/Item.php:316
-msgid "Categories:"
-msgstr "Catégories:"
+#: mod/admin.php:668
+msgid "System theme"
+msgstr "Thème du système"
 
-#: ../../include/conversation.php:666 ../../object/Item.php:317
-msgid "Filed under:"
-msgstr "Rangé sous:"
+#: mod/admin.php:668
+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/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:669
+msgid "Mobile system theme"
+msgstr "Thème mobile"
 
-#: ../../include/conversation.php:689 ../../mod/content.php:497
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: mod/admin.php:669
+msgid "Theme for mobile devices"
+msgstr "Thème pour les terminaux mobiles"
 
-#: ../../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:670
+msgid "SSL link policy"
+msgstr "Politique SSL pour les liens"
 
-#: ../../include/conversation.php:771
-msgid "remove"
-msgstr "enlever"
+#: mod/admin.php:670
+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/conversation.php:775
-msgid "Delete Selected Items"
-msgstr "Supprimer les éléments sélectionnés"
+#: mod/admin.php:671
+msgid "Force SSL"
+msgstr "SSL obligatoire"
 
-#: ../../include/conversation.php:874
-msgid "Follow Thread"
-msgstr "Suivre le fil"
+#: mod/admin.php:671
+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."
 
-#: ../../include/conversation.php:943
-#, php-format
-msgid "%s likes this."
-msgstr "%s aime ça."
+#: mod/admin.php:672
+msgid "Old style 'Share'"
+msgstr "Anciens style 'Partage'"
 
-#: ../../include/conversation.php:943
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s n'aime pas ça."
+#: mod/admin.php:672
+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/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:673
+msgid "Hide help entry from navigation menu"
+msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../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:673
+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/conversation.php:965
-msgid "and"
-msgstr "et"
-
-#: ../../include/conversation.php:971
-#, php-format
-msgid ", and %d other people"
-msgstr ", et %d autres personnes"
+#: mod/admin.php:674
+msgid "Single user instance"
+msgstr "Instance mono-utilisateur"
 
-#: ../../include/conversation.php:973
-#, php-format
-msgid "%s like this."
-msgstr "%s aiment ça."
+#: mod/admin.php:674
+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/conversation.php:973
-#, php-format
-msgid "%s don't like this."
-msgstr "%s n'aiment pas ça."
+#: mod/admin.php:675
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
 
-#: ../../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:675
+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/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:676
+msgid "Maximum image length"
+msgstr "Longueur maximale des images"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a video link/URL:"
-msgstr "Entrez un lien/URL video :"
+#: mod/admin.php:676
+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/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter an audio link/URL:"
-msgstr "Entrez un lien/URL audio :"
+#: mod/admin.php:677
+msgid "JPEG image quality"
+msgstr "Qualité JPEG des images"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Tag term:"
-msgstr "Terme d'étiquette:"
+#: mod/admin.php:677
+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:1005 ../../include/conversation.php:1023
-#: ../../mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Sauver dans le Dossier:"
+#: mod/admin.php:679
+msgid "Register policy"
+msgstr "Politique d'inscription"
 
-#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
-msgid "Where are you right now?"
-msgstr "Où êtes-vous présentemment?"
+#: mod/admin.php:680
+msgid "Maximum Daily Registrations"
+msgstr "Inscriptions maximum par jour"
 
-#: ../../include/conversation.php:1007
-msgid "Delete item(s)?"
-msgstr "Supprimer les élément(s) ?"
+#: mod/admin.php:680
+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:1050
-msgid "Post to Email"
-msgstr "Publier aux courriels"
+#: mod/admin.php:681
+msgid "Register text"
+msgstr "Texte d'inscription"
 
-#: ../../include/conversation.php:1055
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
+#: mod/admin.php:681
+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: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:682
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
-msgid "Share"
-msgstr "Partager"
+#: mod/admin.php:682
+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: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:683
+msgid "Allowed friend domains"
+msgstr "Domaines autorisés"
 
-#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
-msgid "upload photo"
-msgstr "envoi image"
+#: mod/admin.php:683
+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:1092 ../../mod/editpost.php:112
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: mod/admin.php:684
+msgid "Allowed email domains"
+msgstr "Domaines courriel autorisés"
 
-#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
-msgid "attach file"
-msgstr "ajout fichier"
+#: mod/admin.php:684
+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: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:685
+msgid "Block public"
+msgstr "Interdire la publication globale"
 
-#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
-msgid "web link"
-msgstr "lien web"
+#: mod/admin.php:685
+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:1096 ../../mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: mod/admin.php:686
+msgid "Force publish"
+msgstr "Forcer la publication globale"
 
-#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
-msgid "video link"
-msgstr "lien vidéo"
+#: mod/admin.php:686
+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:1098 ../../mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
+#: mod/admin.php:687
+msgid "Global directory update URL"
+msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
-msgid "audio link"
-msgstr "lien audio"
+#: mod/admin.php:687
+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:1100 ../../mod/editpost.php:120
-msgid "Set your location"
-msgstr "Définir votre localisation"
+#: mod/admin.php:688
+msgid "Allow threaded items"
+msgstr "autoriser le suivi des éléments par fil conducteur"
 
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
-msgid "set location"
-msgstr "spéc. localisation"
+#: mod/admin.php:688
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
+#: mod/admin.php:689
+msgid "Private posts by default for new users"
+msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
-msgid "clear location"
-msgstr "supp. localisation"
+#: mod/admin.php:689
+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:1105 ../../mod/editpost.php:137
-msgid "Set title"
-msgstr "Définir un titre"
+#: mod/admin.php:690
+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:1107 ../../mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
+#: mod/admin.php:690
+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:1109 ../../mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Réglages des permissions"
+#: mod/admin.php:691
+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:1110
-msgid "permissions"
-msgstr "permissions"
+#: mod/admin.php:691
+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:1118 ../../mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
+#: mod/admin.php:692
+msgid "Don't embed private images in posts"
+msgstr "Ne pas miniaturiser les images privées dans les publications"
 
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
-msgid "Public post"
-msgstr "Publication publique"
+#: mod/admin.php:692
+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:1121 ../../mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: bob@exemple.com, mary@exemple.com"
+#: mod/admin.php:693
+msgid "Allow Users to set remote_self"
+msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: ../../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:693
+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:1134
-msgid "Post to Groups"
-msgstr "Publier aux groupes"
+#: mod/admin.php:694
+msgid "Block multiple registrations"
+msgstr "Interdire les inscriptions multiples"
 
-#: ../../include/conversation.php:1135
-msgid "Post to Contacts"
-msgstr "Publier aux contacts"
+#: mod/admin.php:694
+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:1136
-msgid "Private post"
-msgstr "Message privé"
+#: mod/admin.php:695
+msgid "OpenID support"
+msgstr "Support OpenID"
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "Plus récent"
+#: mod/admin.php:695
+msgid "OpenID support for registration and logins."
+msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "Plus ancien"
+#: mod/admin.php:696
+msgid "Fullname check"
+msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "précédent"
+#: mod/admin.php:696
+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/text.php:306
-msgid "first"
-msgstr "premier"
+#: mod/admin.php:697
+msgid "UTF-8 Regular expressions"
+msgstr "Regex UTF-8"
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "dernier"
+#: mod/admin.php:697
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "suivant"
+#: mod/admin.php:698
+msgid "Community Page Style"
+msgstr ""
 
-#: ../../include/text.php:396
-msgid "Loading more entries..."
+#: mod/admin.php:698
+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/text.php:397
-msgid "The end"
+#: mod/admin.php:699
+msgid "Posts per user on community page"
 msgstr ""
 
-#: ../../include/text.php:870
-msgid "No contacts"
-msgstr "Aucun contact"
+#: mod/admin.php:699
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr ""
 
-#: ../../include/text.php:879
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacts"
+#: mod/admin.php:700
+msgid "Enable OStatus support"
+msgstr "Activer le support d'OStatus"
 
-#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
-msgid "View Contacts"
-msgstr "Voir les contacts"
+#: mod/admin.php:700
+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/text.php:971 ../../mod/editpost.php:109
-#: ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "Sauver"
+#: mod/admin.php:701
+msgid "OStatus conversation completion interval"
+msgstr "Achèvement de l'intervalle de conversation OStatus "
 
-#: ../../include/text.php:1020
-msgid "poke"
-msgstr "titiller"
-
-#: ../../include/text.php:1020
-msgid "poked"
-msgstr "a titillé"
+#: mod/admin.php:701
+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/text.php:1021
-msgid "ping"
-msgstr "attirer l'attention"
+#: mod/admin.php:702
+msgid "Enable Diaspora support"
+msgstr "Activer le support de Diaspora"
 
-#: ../../include/text.php:1021
-msgid "pinged"
-msgstr "a attiré l'attention de"
+#: mod/admin.php:702
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../include/text.php:1022
-msgid "prod"
-msgstr "aiguillonner"
+#: mod/admin.php:703
+msgid "Only allow Friendica contacts"
+msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../include/text.php:1022
-msgid "prodded"
-msgstr "a aiguillonné"
+#: mod/admin.php:703
+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/text.php:1023
-msgid "slap"
-msgstr "gifler"
+#: mod/admin.php:704
+msgid "Verify SSL"
+msgstr "Vérifier SSL"
 
-#: ../../include/text.php:1023
-msgid "slapped"
-msgstr "a giflé"
+#: mod/admin.php:704
+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/text.php:1024
-msgid "finger"
-msgstr "tripoter"
+#: mod/admin.php:705
+msgid "Proxy user"
+msgstr "Utilisateur du proxy"
 
-#: ../../include/text.php:1024
-msgid "fingered"
-msgstr "a tripoté"
+#: mod/admin.php:706
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: ../../include/text.php:1025
-msgid "rebuff"
-msgstr "rabrouer"
+#: mod/admin.php:707
+msgid "Network timeout"
+msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../include/text.php:1025
-msgid "rebuffed"
-msgstr "a rabroué"
+#: mod/admin.php:707
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: ../../include/text.php:1039
-msgid "happy"
-msgstr "heureuse"
+#: mod/admin.php:708
+msgid "Delivery interval"
+msgstr "Intervalle de transmission"
 
-#: ../../include/text.php:1040
-msgid "sad"
-msgstr "triste"
+#: mod/admin.php:708
+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/text.php:1041
-msgid "mellow"
-msgstr "suave"
+#: mod/admin.php:709
+msgid "Poll interval"
+msgstr "Intervalle de réception"
 
-#: ../../include/text.php:1042
-msgid "tired"
-msgstr "fatiguée"
+#: mod/admin.php:709
+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/text.php:1043
-msgid "perky"
-msgstr "guillerette"
+#: mod/admin.php:710
+msgid "Maximum Load Average"
+msgstr "Plafond de la charge moyenne"
 
-#: ../../include/text.php:1044
-msgid "angry"
-msgstr "colérique"
+#: mod/admin.php:710
+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:1045
-msgid "stupified"
-msgstr "stupéfaite"
+#: mod/admin.php:711
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
 
-#: ../../include/text.php:1046
-msgid "puzzled"
-msgstr "perplexe"
+#: mod/admin.php:711
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
 
-#: ../../include/text.php:1047
-msgid "interested"
-msgstr "intéressée"
+#: mod/admin.php:713
+msgid "Periodical check of global contacts"
+msgstr ""
 
-#: ../../include/text.php:1048
-msgid "bitter"
-msgstr "amère"
+#: mod/admin.php:713
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
 
-#: ../../include/text.php:1049
-msgid "cheerful"
-msgstr "entraînante"
+#: mod/admin.php:714
+msgid "Discover contacts from other servers"
+msgstr ""
 
-#: ../../include/text.php:1050
-msgid "alive"
-msgstr "vivante"
+#: mod/admin.php:714
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr ""
 
-#: ../../include/text.php:1051
-msgid "annoyed"
-msgstr "ennuyée"
+#: mod/admin.php:715
+msgid "Timeframe for fetching global contacts"
+msgstr ""
 
-#: ../../include/text.php:1052
-msgid "anxious"
-msgstr "anxieuse"
+#: mod/admin.php:715
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr ""
 
-#: ../../include/text.php:1053
-msgid "cranky"
-msgstr "excentrique"
+#: mod/admin.php:716
+msgid "Search the local directory"
+msgstr ""
 
-#: ../../include/text.php:1054
-msgid "disturbed"
-msgstr "dérangée"
+#: mod/admin.php:716
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr ""
 
-#: ../../include/text.php:1055
-msgid "frustrated"
-msgstr "frustrée"
+#: mod/admin.php:718
+msgid "Use MySQL full text engine"
+msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../include/text.php:1056
-msgid "motivated"
-msgstr "motivée"
+#: mod/admin.php:718
+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:1057
-msgid "relaxed"
-msgstr "détendue"
+#: mod/admin.php:719
+msgid "Suppress Language"
+msgstr "Supprimer un langage"
 
-#: ../../include/text.php:1058
-msgid "surprised"
-msgstr "surprise"
+#: mod/admin.php:719
+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:1228
-msgid "Monday"
-msgstr "Lundi"
+#: mod/admin.php:720
+msgid "Suppress Tags"
+msgstr ""
 
-#: ../../include/text.php:1228
-msgid "Tuesday"
-msgstr "Mardi"
+#: mod/admin.php:720
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
 
-#: ../../include/text.php:1228
-msgid "Wednesday"
-msgstr "Mercredi"
+#: mod/admin.php:721
+msgid "Path to item cache"
+msgstr "Chemin vers le cache des objets."
 
-#: ../../include/text.php:1228
-msgid "Thursday"
-msgstr "Jeudi"
+#: mod/admin.php:722
+msgid "Cache duration in seconds"
+msgstr "Durée du cache en secondes"
 
-#: ../../include/text.php:1228
-msgid "Friday"
-msgstr "Vendredi"
+#: mod/admin.php:722
+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."
 
-#: ../../include/text.php:1228
-msgid "Saturday"
-msgstr "Samedi"
+#: mod/admin.php:723
+msgid "Maximum numbers of comments per post"
+msgstr "Nombre maximum de commentaires par publication"
 
-#: ../../include/text.php:1228
-msgid "Sunday"
-msgstr "Dimanche"
+#: mod/admin.php:723
+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:1232
-msgid "January"
-msgstr "Janvier"
+#: mod/admin.php:724
+msgid "Path for lock file"
+msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../include/text.php:1232
-msgid "February"
-msgstr "Février"
+#: mod/admin.php:725
+msgid "Temp path"
+msgstr "Chemin des fichiers temporaires"
 
-#: ../../include/text.php:1232
-msgid "March"
-msgstr "Mars"
+#: mod/admin.php:726
+msgid "Base path to installation"
+msgstr "Chemin de base de l'installation"
 
-#: ../../include/text.php:1232
-msgid "April"
-msgstr "Avril"
+#: mod/admin.php:727
+msgid "Disable picture proxy"
+msgstr "Désactiver le proxy image "
 
-#: ../../include/text.php:1232
-msgid "May"
-msgstr "Mai"
+#: mod/admin.php:727
+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:1232
-msgid "June"
-msgstr "Juin"
+#: mod/admin.php:728
+msgid "Enable old style pager"
+msgstr ""
 
-#: ../../include/text.php:1232
-msgid "July"
-msgstr "Juillet"
+#: mod/admin.php:728
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr ""
 
-#: ../../include/text.php:1232
-msgid "August"
-msgstr "Août"
+#: mod/admin.php:729
+msgid "Only search in tags"
+msgstr ""
 
-#: ../../include/text.php:1232
-msgid "September"
-msgstr "Septembre"
+#: mod/admin.php:729
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
 
-#: ../../include/text.php:1232
-msgid "October"
-msgstr "Octobre"
+#: mod/admin.php:731
+msgid "New base url"
+msgstr "Nouvelle URL de base"
 
-#: ../../include/text.php:1232
-msgid "November"
-msgstr "Novembre"
+#: mod/admin.php:733
+msgid "RINO Encryption"
+msgstr ""
 
-#: ../../include/text.php:1232
-msgid "December"
-msgstr "Décembre"
+#: mod/admin.php:733
+msgid "Encryption layer between nodes."
+msgstr ""
 
-#: ../../include/text.php:1422 ../../mod/videos.php:301
-msgid "View Video"
-msgstr "Regarder la vidéo"
+#: mod/admin.php:751
+msgid "Update has been marked successful"
+msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../include/text.php:1454
-msgid "bytes"
-msgstr "octets"
+#: mod/admin.php:759
+#, 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:1478 ../../include/text.php:1490
-msgid "Click to open/close"
-msgstr "Cliquer pour ouvrir/fermer"
+#: mod/admin.php:762
+#, 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:1664 ../../include/text.php:1674
-#: ../../mod/events.php:335
-msgid "link to source"
-msgstr "lien original"
+#: mod/admin.php:774
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "L'exécution %s a échoué avec l'erreur: %s"
 
-#: ../../include/text.php:1731
-msgid "Select an alternate language"
-msgstr "Choisir une langue alternative"
+#: mod/admin.php:777
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../include/text.php:1987
-msgid "activity"
-msgstr "activité"
+#: mod/admin.php:781
+#, 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: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:783
+#, 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:1990
-msgid "post"
-msgstr "publication"
+#: mod/admin.php:802
+msgid "No failed updates."
+msgstr "Pas de mises-à-jour échouées."
 
-#: ../../include/text.php:2158
-msgid "Item filed"
-msgstr "Élément classé"
-
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Déconnecté."
+#: mod/admin.php:803
+msgid "Check database structure"
+msgstr "Vérifier la structure de la base de données"
 
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "Échec de connexion."
+#: mod/admin.php:808
+msgid "Failed Updates"
+msgstr "Mises-à-jour échouées"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: mod/admin.php:809
 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."
+"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/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Le message d'erreur était :"
+#: mod/admin.php:810
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
-#: ../../include/bbcode.php:1067
-msgid "Image/photo"
-msgstr "Image/photo"
+#: mod/admin.php:811
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../include/bbcode.php:531
+#: mod/admin.php:843
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
+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/bbcode.php:565
+#: mod/admin.php:846
 #, php-format
 msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr ""
+"\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/bbcode.php:1030 ../../include/bbcode.php:1050
-msgid "$1 wrote:"
-msgstr "$1 a écrit:"
+#: mod/admin.php:878 include/user.php:421
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails d'inscription pour %s"
 
-#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: mod/admin.php:890
+#, 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/security.php:22
-msgid "Welcome "
-msgstr "Bienvenue "
+#: mod/admin.php:897
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Merci d'illustrer votre profil d'une image."
+#: mod/admin.php:936
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bienvenue à nouveau, "
+#: mod/admin.php:944
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
 
-#: ../../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/admin.php:944
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
 
-#: ../../include/oembed.php:213
-msgid "Embedded content"
-msgstr "Contenu incorporé"
+#: mod/admin.php:1037
+msgid "Add User"
+msgstr "Ajouter l'utilisateur"
 
-#: ../../include/oembed.php:222
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
+#: mod/admin.php:1038
+msgid "select all"
+msgstr "tout sélectionner"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculin"
+#: mod/admin.php:1039
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Féminin"
+#: mod/admin.php:1040
+msgid "User waiting for permanent deletion"
+msgstr "Utilisateur en attente de suppression définitive"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Actuellement masculin"
+#: mod/admin.php:1041
+msgid "Request date"
+msgstr "Date de la demande"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Actuellement féminin"
+#: mod/admin.php:1041 mod/admin.php:1053 mod/admin.php:1054 mod/admin.php:1069
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+msgid "Email"
+msgstr "Courriel"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Principalement masculin"
+#: mod/admin.php:1042
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Principalement féminin"
+#: mod/admin.php:1044
+msgid "Deny"
+msgstr "Rejetter"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgenre"
+#: mod/admin.php:1048
+msgid "Site admin"
+msgstr "Administration du Site"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Inter-sexe"
+#: mod/admin.php:1049
+msgid "Account expired"
+msgstr "Compte expiré"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuel"
+#: mod/admin.php:1052
+msgid "New User"
+msgstr "Nouvel utilisateur"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: mod/admin.php:1053 mod/admin.php:1054
+msgid "Register date"
+msgstr "Date d'inscription"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutre"
+#: mod/admin.php:1053 mod/admin.php:1054
+msgid "Last login"
+msgstr "Dernière connexion"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-spécifique"
+#: mod/admin.php:1053 mod/admin.php:1054
+msgid "Last item"
+msgstr "Dernier élément"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Autre"
+#: mod/admin.php:1053
+msgid "Deleted since"
+msgstr "Supprimé depuis"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indécis"
+#: mod/admin.php:1054 mod/settings.php:41
+msgid "Account"
+msgstr "Compte"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Hommes"
+#: mod/admin.php:1056
+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/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmes"
+#: mod/admin.php:1057
+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/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: mod/admin.php:1067
+msgid "Name of the new user."
+msgstr "Nom du nouvel utilisateur."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: mod/admin.php:1068
+msgid "Nickname"
+msgstr "Pseudo"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sans préférence"
+#: mod/admin.php:1068
+msgid "Nickname of the new user."
+msgstr "Pseudo du nouvel utilisateur."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuel"
+#: mod/admin.php:1069
+msgid "Email address of the new user."
+msgstr "Adresse mail du nouvel utilisateur."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Auto-sexuel"
+#: mod/admin.php:1102
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extension %s désactivée."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: mod/admin.php:1106
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extension %s activée."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vierge"
+#: mod/admin.php:1116 mod/admin.php:1332
+msgid "Disable"
+msgstr "Désactiver"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Déviant"
+#: mod/admin.php:1118 mod/admin.php:1334
+msgid "Enable"
+msgstr "Activer"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fétichiste"
+#: mod/admin.php:1141 mod/admin.php:1362
+msgid "Toggle"
+msgstr "Activer/Désactiver"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: mod/admin.php:1149 mod/admin.php:1372
+msgid "Author: "
+msgstr "Auteur: "
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Non-sexuel"
+#: mod/admin.php:1150 mod/admin.php:1373
+msgid "Maintainer: "
+msgstr "Mainteneur: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Célibataire"
+#: mod/admin.php:1292
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Esseulé"
+#: mod/admin.php:1354
+msgid "Screenshot"
+msgstr "Capture d'écran"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponible"
+#: mod/admin.php:1400
+msgid "[Experimental]"
+msgstr "[Expérimental]"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Indisponible"
+#: mod/admin.php:1401
+msgid "[Unsupported]"
+msgstr "[Non supporté]"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Attiré par quelqu'un"
+#: mod/admin.php:1428
+msgid "Log settings updated."
+msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Entiché"
+#: mod/admin.php:1484
+msgid "Clear"
+msgstr "Effacer"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dans une relation"
+#: mod/admin.php:1490
+msgid "Enable Debugging"
+msgstr "Activer le déboggage"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infidèle"
+#: mod/admin.php:1491
+msgid "Log file"
+msgstr "Fichier de journaux"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Accro au sexe"
+#: mod/admin.php:1491
+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/profile_selectors.php:42 ../../include/user.php:289
-#: ../../include/user.php:293
-msgid "Friends"
-msgstr "Amis"
+#: mod/admin.php:1492
+msgid "Log level"
+msgstr "Niveau de journalisaton"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amis par intérêt"
+#: mod/admin.php:1542 include/acl_selectors.php:347
+msgid "Close"
+msgstr "Fermer"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: mod/admin.php:1548
+msgid "FTP Host"
+msgstr "Hôte FTP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Fiancé"
+#: mod/admin.php:1549
+msgid "FTP Path"
+msgstr "Chemin FTP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Marié"
+#: mod/admin.php:1550
+msgid "FTP User"
+msgstr "Utilisateur FTP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Se croit marié"
+#: mod/admin.php:1551
+msgid "FTP Password"
+msgstr "Mot de passe FTP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partenaire"
+#: mod/network.php:143
+#, php-format
+msgid "Search Results For: %s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "En cohabitation"
+#: mod/network.php:187 mod/search.php:21
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
+#: mod/network.php:196 mod/search.php:30 include/features.php:42
+msgid "Saved Searches"
+msgstr "Recherches"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Heureux"
+#: mod/network.php:197 include/group.php:277
+msgid "add"
+msgstr "ajouter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Pas intéressé"
+#: mod/network.php:358
+msgid "Commented Order"
+msgstr "Tri par commentaires"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Échangiste"
+#: mod/network.php:361
+msgid "Sort by Comment Date"
+msgstr "Trier par date de commentaire"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Trahi(e)"
+#: mod/network.php:364
+msgid "Posted Order"
+msgstr "Tri des publications"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Séparé"
+#: mod/network.php:367
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instable"
+#: mod/network.php:376
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorcé"
+#: mod/network.php:382
+msgid "New"
+msgstr "Nouveau"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Se croit divorcé"
+#: mod/network.php:385
+msgid "Activity Stream - by date"
+msgstr "Flux d'activités - par date"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Veuf/Veuve"
+#: mod/network.php:391
+msgid "Shared Links"
+msgstr "Liens partagés"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incertain"
+#: mod/network.php:394
+msgid "Interesting Links"
+msgstr "Liens intéressants"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "C'est compliqué"
+#: mod/network.php:400
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "S'en désintéresse"
+#: mod/network.php:403
+msgid "Favourite Posts"
+msgstr "Publications favorites"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Me demander"
+#: mod/network.php:460
+#, 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/user.php:40
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
+#: mod/network.php:463
+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/user.php:45
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
+#: mod/network.php:526 mod/content.php:119
+msgid "No such group"
+msgstr "Groupe inexistant"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
+#: mod/network.php:543 mod/content.php:130
+msgid "Group is empty"
+msgstr "Groupe vide"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
+#: mod/network.php:554 mod/content.php:135
+#, php-format
+msgid "Group: %s"
+msgstr ""
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
+#: mod/network.php:572
+#, php-format
+msgid "Contact: %s"
+msgstr ""
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Nom trop court."
+#: mod/network.php:576
+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/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/network.php:581
+msgid "Invalid contact."
+msgstr "Contact invalide."
 
-#: ../../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/allfriends.php:37
+#, php-format
+msgid "Friends of %s"
+msgstr "Amis de %s"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
+#: mod/allfriends.php:44
+msgid "No friends to display."
+msgstr "Pas d'amis à afficher."
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
+#: mod/events.php:71 mod/events.php:73
+msgid "Event can not end before it has started."
+msgstr ""
 
-#: ../../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/events.php:80 mod/events.php:82
+msgid "Event title and start time are required."
+msgstr "Vous devez donner un nom et un horaire de début à l'événement."
 
-#: ../../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/events.php:317
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../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/events.php:339
+msgid "Edit event"
+msgstr "Editer l'événement"
 
-#: ../../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/events.php:361 include/text.php:1679 include/text.php:1689
+msgid "link to source"
+msgstr "lien original"
 
-#: ../../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/events.php:396 include/identity.php:663 include/nav.php:80
+#: view/theme/diabook/theme.php:127
+msgid "Events"
+msgstr "Événements"
 
-#: ../../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/events.php:397
+msgid "Create New Event"
+msgstr "Créer un nouvel événement"
 
-#: ../../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/events.php:398
+msgid "Previous"
+msgstr "Précédent"
 
-#: ../../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."
+#: mod/events.php:399 mod/install.php:209
+msgid "Next"
+msgstr "Suivant"
 
-#: ../../include/user.php:413 ../../mod/admin.php:838
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails d'inscription pour %s"
+#: mod/events.php:491
+msgid "Event details"
+msgstr "Détails de l'événement"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Visible par tout le monde"
+#: mod/events.php:492
+msgid "Starting date and Title are required."
+msgstr ""
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Cette entrée à été édité"
+#: mod/events.php:493
+msgid "Event Starts:"
+msgstr "Début de l'événement :"
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1359
-#: ../../mod/content.php:620
-msgid "Private Message"
-msgstr "Message privé"
+#: mod/events.php:493 mod/events.php:505
+msgid "Required"
+msgstr "Requis"
 
-#: ../../object/Item.php:120 ../../mod/settings.php:681
-#: ../../mod/content.php:728
-msgid "Edit"
-msgstr "Éditer"
+#: mod/events.php:495
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date / heure de fin inconnue ou sans objet"
 
-#: ../../object/Item.php:133 ../../mod/content.php:763
-msgid "save to folder"
-msgstr "sauver vers dossier"
+#: mod/events.php:497
+msgid "Event Finishes:"
+msgstr "Fin de l'événement:"
 
-#: ../../object/Item.php:195 ../../mod/content.php:753
-msgid "add star"
-msgstr "mett en avant"
+#: mod/events.php:499
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster à la zone horaire du visiteur"
 
-#: ../../object/Item.php:196 ../../mod/content.php:754
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: mod/events.php:501
+msgid "Description:"
+msgstr "Description:"
 
-#: ../../object/Item.php:197 ../../mod/content.php:755
-msgid "toggle star status"
-msgstr "mettre en avant"
+#: mod/events.php:503 mod/directory.php:152 include/identity.php:268
+#: include/bb2diaspora.php:170 include/event.php:42
+msgid "Location:"
+msgstr "Localisation:"
 
-#: ../../object/Item.php:200 ../../mod/content.php:758
-msgid "starred"
-msgstr "mis en avant"
+#: mod/events.php:505
+msgid "Title:"
+msgstr "Titre :"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorer le fil"
+#: mod/events.php:507
+msgid "Share this event"
+msgstr "Partager cet événement"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Ne plus ignorer le fil"
+#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145
+#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717
+#: object/Item.php:689 include/conversation.php:1089
+msgid "Preview"
+msgstr "Aperçu"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignorer le statut"
+#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672
+#: object/Item.php:130 include/conversation.php:612
+msgid "Select"
+msgstr "Sélectionner"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignoré"
+#: mod/content.php:473 mod/content.php:854 mod/content.php:855
+#: object/Item.php:328 object/Item.php:329 include/conversation.php:653
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
 
-#: ../../object/Item.php:220 ../../mod/content.php:759
-msgid "add tag"
-msgstr "ajouter une étiquette"
+#: mod/content.php:483 mod/content.php:866 object/Item.php:342
+#: include/conversation.php:673
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
+
+#: mod/content.php:499 include/conversation.php:689
+msgid "View in context"
+msgstr "Voir dans le contexte"
+
+#: mod/content.php:605 object/Item.php:389
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
+
+#: mod/content.php:607 object/Item.php:391 object/Item.php:404
+#: include/text.php:2004
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commentaire"
+
+#: mod/content.php:608 boot.php:756 object/Item.php:392
+#: include/contact_widgets.php:205 include/items.php:5133
+msgid "show more"
+msgstr "montrer plus"
+
+#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117
+msgid "Private Message"
+msgstr "Message privé"
 
-#: ../../object/Item.php:231 ../../mod/photos.php:1542
-#: ../../mod/content.php:684
+#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232
 msgid "I like this (toggle)"
 msgstr "J'aime"
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
+#: mod/content.php:686 object/Item.php:232
 msgid "like"
 msgstr "aime"
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1543
-#: ../../mod/content.php:685
+#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233
 msgid "I don't like this (toggle)"
 msgstr "Je n'aime pas"
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
+#: mod/content.php:687 object/Item.php:233
 msgid "dislike"
 msgstr "n'aime pas"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: mod/content.php:689 object/Item.php:235
 msgid "Share this"
 msgstr "Partager"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: mod/content.php:689 object/Item.php:235
 msgid "share"
 msgstr "partager"
 
-#: ../../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
-#: ../../mod/content.php:707
+#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625
+#: mod/photos.php:1713 object/Item.php:677
 msgid "This is you"
 msgstr "C'est vous"
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
+#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627
+#: mod/photos.php:1715 boot.php:755 object/Item.php:363 object/Item.php:679
+msgid "Comment"
+msgstr "Commenter"
+
+#: mod/content.php:713 object/Item.php:681
 msgid "Bold"
 msgstr "Gras"
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
+#: mod/content.php:714 object/Item.php:682
 msgid "Italic"
 msgstr "Italique"
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
+#: mod/content.php:715 object/Item.php:683
 msgid "Underline"
 msgstr "Souligné"
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
+#: mod/content.php:716 object/Item.php:684
 msgid "Quote"
 msgstr "Citation"
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
+#: mod/content.php:717 object/Item.php:685
 msgid "Code"
 msgstr "Code"
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
+#: mod/content.php:718 object/Item.php:686
 msgid "Image"
 msgstr "Image"
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
+#: mod/content.php:719 object/Item.php:687
 msgid "Link"
 msgstr "Lien"
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
+#: mod/content.php:720 object/Item.php:688
 msgid "Video"
 msgstr "Vidéo"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: mod/content.php:730 mod/settings.php:684 object/Item.php:121
+msgid "Edit"
+msgstr "Éditer"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: mod/content.php:755 object/Item.php:196
+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:756 object/Item.php:197
+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:757 object/Item.php:198
+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:760 object/Item.php:201
+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:761 object/Item.php:221
+msgid "add tag"
+msgstr "ajouter une étiquette"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Récupération des messages infructueuse."
+#: mod/content.php:765 object/Item.php:134
+msgid "save to folder"
+msgstr "sauver vers dossier"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Message envoyé."
+#: mod/content.php:856 object/Item.php:330
+msgid "to"
+msgstr "à"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Pas de destinataire."
+#: mod/content.php:857 object/Item.php:332
+msgid "Wall-to-Wall"
+msgstr "Inter-mur"
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: mod/content.php:858 object/Item.php:333
+msgid "via Wall-To-Wall:"
+msgstr "en Inter-mur:"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: mod/removeme.php:46 mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Supprimer mon compte"
+
+#: mod/removeme.php:47
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
+"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/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "À:"
+#: mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Merci de saisir votre mot de passe pour vérification :"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Sujet:"
+#: mod/install.php:119
+msgid "Friendica Communications Server - Setup"
+msgstr "Serveur de communications Friendica - Configuration"
 
-#: ../../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:125
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groupe créé."
+#: mod/install.php:129
+msgid "Could not create table."
+msgstr "Impossible de créer une table."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: mod/install.php:135
+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:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: mod/install.php:140
+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:60
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: mod/install.php:141 mod/install.php:208 mod/install.php:530
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Référez-vous au fichier \"INSTALL.txt\"."
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Sauvegarder le groupe"
+#: mod/install.php:153
+msgid "Database already in use."
+msgstr ""
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: mod/install.php:205
+msgid "System check"
+msgstr "Vérifications système"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nom du groupe: "
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: mod/install.php:229
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: mod/install.php:230
+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:179
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: mod/install.php:231
+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:192
-msgid "Members"
-msgstr "Membres"
+#: mod/install.php:232
+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:194 ../../mod/contacts.php:586
-msgid "All Contacts"
-msgstr "Tous les contacts"
+#: mod/install.php:236
+msgid "Database Server Name"
+msgstr "Serveur de base de données"
 
-#: ../../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:237
+msgid "Database Login Name"
+msgstr "Nom d'utilisateur de la base"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Pas de délégataire potentiel."
+#: mod/install.php:238
+msgid "Database Login Password"
+msgstr "Mot de passe de la base"
 
-#: ../../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/install.php:239
+msgid "Database Name"
+msgstr "Nom de la base"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Gestionnaires existants"
+#: mod/install.php:240 mod/install.php:279
+msgid "Site administrator email address"
+msgstr "Adresse électronique de l'administrateur du site"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Délégataires existants"
+#: mod/install.php:240 mod/install.php:279
+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/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Délégataires potentiels"
+#: mod/install.php:244 mod/install.php:282
+msgid "Please select a default timezone for your website"
+msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
 
-#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: mod/install.php:269
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Ajouter"
+#: mod/install.php:323
+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:141
-msgid "No entries."
-msgstr "Aucune entrée."
+#: mod/install.php:324
+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/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: mod/install.php:328
+msgid "PHP executable path"
+msgstr "Chemin vers l'exécutable de PHP"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:215
-msgid "Discard"
-msgstr "Rejeter"
+#: mod/install.php:328
+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/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:333
+msgid "Command line PHP"
+msgstr "Version \"ligne de commande\" de PHP"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Système"
+#: mod/install.php:342
+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:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Personnel"
+#: mod/install.php:343
+msgid "Found PHP version: "
+msgstr "Version de PHP:"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: mod/install.php:345
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: mod/install.php:356
+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:149 ../../mod/notifications.php:199
-msgid "Notification type: "
-msgstr "Type de notification: "
+#: mod/install.php:357
+msgid "This is required for message delivery to work."
+msgstr "Ceci est requis pour que la livraison des messages fonctionne."
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Suggestion d'amitié/contact"
+#: mod/install.php:359
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+#: mod/install.php:380
+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:157 ../../mod/notifications.php:208
-#: ../../mod/contacts.php:525
-msgid "Hide this contact from others"
-msgstr "Cacher ce contact aux autres"
+#: mod/install.php:381
+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:158 ../../mod/notifications.php:209
-msgid "Post a new friend activity"
-msgstr "Poster une nouvelle avtivité d'ami"
+#: mod/install.php:383
+msgid "Generate encryption keys"
+msgstr "Générer les clés de chiffrement"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
-msgid "if applicable"
-msgstr "si possible"
+#: mod/install.php:390
+msgid "libCurl PHP module"
+msgstr "Module libCurl de PHP"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Approuver"
+#: mod/install.php:391
+msgid "GD graphics PHP module"
+msgstr "Module GD (graphiques) de PHP"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez: "
+#: mod/install.php:392
+msgid "OpenSSL PHP module"
+msgstr "Module OpenSSL de PHP"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "oui"
+#: mod/install.php:393
+msgid "mysqli PHP module"
+msgstr "Module Mysqli de PHP"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "non"
+#: mod/install.php:394
+msgid "mb_string PHP module"
+msgstr "Module mb_string de PHP"
+
+#: mod/install.php:399 mod/install.php:401
+msgid "Apache mod_rewrite module"
+msgstr "Module mod_rewrite Apache"
 
-#: ../../mod/notifications.php:182
+#: mod/install.php:399
 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 ""
+"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:407
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."
 
-#: ../../mod/notifications.php:185
+#: mod/install.php:411
 msgid ""
-"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 ""
+"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/notifications.php:193
-msgid "Friend"
-msgstr "Ami"
+#: mod/install.php:415
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé."
 
-#: ../../mod/notifications.php:194
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: mod/install.php:419
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé."
 
-#: ../../mod/notifications.php:194
-msgid "Fan/Admirer"
-msgstr "Fan/Admirateur"
+#: mod/install.php:423
+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:200
-msgid "Friend/Connect Request"
-msgstr "Demande de connexion/relation"
+#: mod/install.php:440
+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:200
-msgid "New Follower"
-msgstr "Nouvel abonné"
+#: mod/install.php:441
+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:221
-msgid "No introductions."
-msgstr "Aucune demande d'introduction."
+#: mod/install.php:442
+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:262 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:482
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s a aimé la publication de %s"
+#: mod/install.php:443
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+
+#: mod/install.php:446
+msgid ".htconfig.php is writable"
+msgstr "Fichier .htconfig.php accessible en écriture"
+
+#: mod/install.php:456
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+
+#: mod/install.php:457
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+
+#: mod/install.php:458
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+
+#: mod/install.php:459
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
+
+#: mod/install.php:462
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 est autorisé à l écriture"
+
+#: mod/install.php:478
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
+
+#: mod/install.php:480
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne."
+
+#: mod/install.php:489
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+
+#: mod/install.php:528
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ensuite</h1>"
+
+#: mod/install.php:529
+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:272 ../../mod/notifications.php:401
-#: ../../mod/notifications.php:492
+#: mod/wallmessage.php:42 mod/wallmessage.php:112
 #, php-format
-msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la publication de %s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
-#: ../../mod/notifications.php:507
+#: 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."
+
+#: mod/wallmessage.php:143
 #, php-format
-msgid "%s is now friends with %s"
-msgstr "%s est désormais ami(e) avec %s"
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "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:31
+msgid "Help:"
+msgstr "Aide :"
+
+#: mod/help.php:36 include/nav.php:114
+msgid "Help"
+msgstr "Aide"
+
+#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269
+msgid "Not Found"
+msgstr "Non trouvé"
+
+#: mod/help.php:45 index.php:272
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
+#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
 #, php-format
-msgid "%s created a new post"
-msgstr "%s a créé une nouvelle publication"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s accueille %2$s"
 
-#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
-#: ../../mod/notifications.php:517
+#: mod/home.php:35
 #, php-format
-msgid "%s commented on %s's post"
-msgstr "%s a commenté la publication de %s"
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
 
-#: ../../mod/notifications.php:310
-msgid "No more network notifications."
-msgstr "Aucune notification du réseau."
+#: 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/notifications.php:314
-msgid "Network Notifications"
-msgstr "Notifications du réseau"
+#: 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/notifications.php:340 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Pas plus de notifications système."
+#: mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr ""
 
-#: ../../mod/notifications.php:344 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notifications du système"
+#: mod/wall_attach.php:122 mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Le téléversement a échoué."
 
-#: ../../mod/notifications.php:439
-msgid "No more personal notifications."
-msgstr "Aucun notification personnelle."
+#: mod/match.php:13
+msgid "Profile Match"
+msgstr "Correpondance de profils"
 
-#: ../../mod/notifications.php:443
-msgid "Personal Notifications"
-msgstr "Notifications personnelles"
+#: mod/match.php:22
+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:524
-msgid "No more home notifications."
-msgstr "Aucune notification de la page d'accueil."
+#: mod/match.php:64
+msgid "is interested in:"
+msgstr "s'intéresse à :"
 
-#: ../../mod/notifications.php:528
-msgid "Home Notifications"
-msgstr "Notifications de page d'accueil"
+#: mod/share.php:38
+msgid "link"
+msgstr "lien"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Aucun profil"
+#: mod/community.php:23
+msgid "Not available."
+msgstr "Indisponible."
+
+#: mod/community.php:32 include/nav.php:129 include/nav.php:131
+#: view/theme/diabook/theme.php:129
+msgid "Community"
+msgstr "Communauté"
+
+#: mod/community.php:62 mod/community.php:71 mod/search.php:178
+msgid "No results."
+msgstr "Aucun résultat."
 
-#: ../../mod/settings.php:34 ../../mod/photos.php:80
+#: mod/settings.php:34 mod/photos.php:102
 msgid "everybody"
 msgstr "tout le monde"
 
-#: ../../mod/settings.php:41 ../../mod/admin.php:1016
-msgid "Account"
-msgstr "Compte"
-
-#: ../../mod/settings.php:46
+#: mod/settings.php:46
 msgid "Additional features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:51
+#: mod/settings.php:51
 msgid "Display"
 msgstr "Afficher"
 
-#: ../../mod/settings.php:57 ../../mod/settings.php:785
+#: mod/settings.php:57 mod/settings.php:814
 msgid "Social Networks"
 msgstr "Réseaux sociaux"
 
-#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
-#: ../../mod/admin.php:1155
-msgid "Plugins"
-msgstr "Extensions"
+#: mod/settings.php:67 include/nav.php:171
+msgid "Delegations"
+msgstr "Délégations"
 
-#: ../../mod/settings.php:72
+#: mod/settings.php:72
 msgid "Connected apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:77 ../../mod/uexport.php:85
+#: mod/settings.php:77 mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Exporter"
 
-#: ../../mod/settings.php:82
+#: mod/settings.php:82
 msgid "Remove account"
 msgstr "Supprimer le compte"
 
-#: ../../mod/settings.php:134
+#: mod/settings.php:134
 msgid "Missing some important data!"
 msgstr "Il manque certaines informations importantes!"
 
-#: ../../mod/settings.php:137 ../../mod/settings.php:645
-#: ../../mod/contacts.php:729
-msgid "Update"
-msgstr "Mises-à-jour"
-
-#: ../../mod/settings.php:243
+#: mod/settings.php:246
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Impossible de se connecter au compte courriel configuré."
 
-#: ../../mod/settings.php:248
+#: mod/settings.php:251
 msgid "Email settings updated."
 msgstr "Réglages de courriel mis-à-jour."
 
-#: ../../mod/settings.php:263
+#: mod/settings.php:266
 msgid "Features updated"
 msgstr "Fonctionnalités mises à jour"
 
-#: ../../mod/settings.php:326
+#: mod/settings.php:329
 msgid "Relocate message has been send to your contacts"
 msgstr "Un message de relocalisation a été envoyé à vos contacts."
 
-#: ../../mod/settings.php:340
+#: mod/settings.php:343 include/user.php:39
 msgid "Passwords do not match. Password unchanged."
 msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
 
-#: ../../mod/settings.php:345
+#: mod/settings.php:348
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
 
-#: ../../mod/settings.php:353
+#: mod/settings.php:356
 msgid "Wrong password."
 msgstr "Mauvais mot de passe."
 
-#: ../../mod/settings.php:364
+#: mod/settings.php:367
 msgid "Password changed."
 msgstr "Mots de passe changés."
 
-#: ../../mod/settings.php:366
+#: mod/settings.php:369
 msgid "Password update failed. Please try again."
 msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/settings.php:433
+#: mod/settings.php:436
 msgid " Please use a shorter name."
 msgstr " Merci d'utiliser un nom plus court."
 
-#: ../../mod/settings.php:435
+#: mod/settings.php:438
 msgid " Name too short."
 msgstr " Nom trop court."
 
-#: ../../mod/settings.php:444
+#: mod/settings.php:447
 msgid "Wrong Password"
 msgstr "Mauvais mot de passe"
 
-#: ../../mod/settings.php:449
+#: mod/settings.php:452
 msgid " Not valid email."
 msgstr " Email invalide."
 
-#: ../../mod/settings.php:455
+#: mod/settings.php:458
 msgid " Cannot change to that email."
 msgstr " Impossible de changer pour cet email."
 
-#: ../../mod/settings.php:511
+#: mod/settings.php:514
 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:515
+#: mod/settings.php:518
 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:545
+#: mod/settings.php:548
 msgid "Settings updated."
 msgstr "Réglages mis à jour."
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
-#: ../../mod/settings.php:680
+#: mod/settings.php:621 mod/settings.php:647 mod/settings.php:683
 msgid "Add application"
 msgstr "Ajouter une application"
 
-#: ../../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
+#: mod/settings.php:625 mod/settings.php:651
 msgid "Consumer Key"
 msgstr "Clé utilisateur"
 
-#: ../../mod/settings.php:623 ../../mod/settings.php:649
+#: mod/settings.php:626 mod/settings.php:652
 msgid "Consumer Secret"
 msgstr "Secret utilisateur"
 
-#: ../../mod/settings.php:624 ../../mod/settings.php:650
+#: mod/settings.php:627 mod/settings.php:653
 msgid "Redirect"
 msgstr "Rediriger"
 
-#: ../../mod/settings.php:625 ../../mod/settings.php:651
+#: mod/settings.php:628 mod/settings.php:654
 msgid "Icon url"
 msgstr "URL de l'icône"
 
-#: ../../mod/settings.php:636
+#: mod/settings.php:639
 msgid "You can't edit this application."
 msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/settings.php:679
+#: mod/settings.php:682
 msgid "Connected Apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:683
+#: mod/settings.php:686
 msgid "Client key starts with"
 msgstr "La clé cliente commence par"
 
-#: ../../mod/settings.php:684
+#: mod/settings.php:687
 msgid "No name"
 msgstr "Sans nom"
 
-#: ../../mod/settings.php:685
+#: mod/settings.php:688
 msgid "Remove authorization"
 msgstr "Révoquer l'autorisation"
 
-#: ../../mod/settings.php:697
+#: mod/settings.php:700
 msgid "No Plugin settings configured"
 msgstr "Pas de réglages d'extensions configurés"
 
-#: ../../mod/settings.php:705
+#: mod/settings.php:708
 msgid "Plugin Settings"
 msgstr "Extensions"
 
-#: ../../mod/settings.php:719
+#: mod/settings.php:722
 msgid "Off"
 msgstr "Éteint"
 
-#: ../../mod/settings.php:719
+#: mod/settings.php:722
 msgid "On"
 msgstr "Allumé"
 
-#: ../../mod/settings.php:727
+#: mod/settings.php:730
 msgid "Additional Features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: mod/settings.php:740 mod/settings.php:744
+msgid "General Social Media Settings"
+msgstr ""
+
+#: mod/settings.php:750
+msgid "Disable intelligent shortening"
+msgstr ""
+
+#: mod/settings.php:752
+msgid ""
+"Normally the system tries to find the best link to add to shortened posts. "
+"If this option is enabled then every shortened post will always point to the"
+" original friendica post."
+msgstr ""
+
+#: mod/settings.php:758
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr ""
+
+#: mod/settings.php:760
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
+msgstr ""
+
+#: mod/settings.php:770 mod/settings.php:771
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: mod/settings.php:770 mod/dfrn_request.php:853
+#: include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: mod/settings.php:770 mod/settings.php:771
 msgid "enabled"
 msgstr "activé"
 
-#: ../../mod/settings.php:741 ../../mod/settings.php:742
+#: mod/settings.php:770 mod/settings.php:771
 msgid "disabled"
 msgstr "désactivé"
 
-#: ../../mod/settings.php:742
-msgid "StatusNet"
-msgstr "StatusNet"
+#: mod/settings.php:771
+msgid "GNU Social (OStatus)"
+msgstr ""
 
-#: ../../mod/settings.php:778
+#: mod/settings.php:807
 msgid "Email access is disabled on this site."
 msgstr "L'accès courriel est désactivé sur ce site."
 
-#: ../../mod/settings.php:790
+#: mod/settings.php:819
 msgid "Email/Mailbox Setup"
 msgstr "Réglages de courriel/boîte à lettre"
 
-#: ../../mod/settings.php:791
+#: mod/settings.php:820
 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:792
+#: mod/settings.php:821
 msgid "Last successful email check:"
 msgstr "Dernière vérification réussie des courriels:"
 
-#: ../../mod/settings.php:794
+#: mod/settings.php:823
 msgid "IMAP server name:"
 msgstr "Nom du serveur IMAP:"
 
-#: ../../mod/settings.php:795
+#: mod/settings.php:824
 msgid "IMAP port:"
 msgstr "Port IMAP:"
 
-#: ../../mod/settings.php:796
+#: mod/settings.php:825
 msgid "Security:"
 msgstr "Sécurité:"
 
-#: ../../mod/settings.php:796 ../../mod/settings.php:801
+#: mod/settings.php:825 mod/settings.php:830
 msgid "None"
 msgstr "Aucun(e)"
 
-#: ../../mod/settings.php:797
+#: mod/settings.php:826
 msgid "Email login name:"
 msgstr "Nom de connexion:"
 
-#: ../../mod/settings.php:798
+#: mod/settings.php:827
 msgid "Email password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:799
+#: mod/settings.php:828
 msgid "Reply-to address:"
 msgstr "Adresse de réponse:"
 
-#: ../../mod/settings.php:800
+#: mod/settings.php:829
 msgid "Send public posts to all email contacts:"
 msgstr "Envoyer les publications publiques à tous les contacts courriels:"
 
-#: ../../mod/settings.php:801
+#: mod/settings.php:830
 msgid "Action after import:"
 msgstr "Action après import:"
 
-#: ../../mod/settings.php:801
+#: mod/settings.php:830
 msgid "Mark as seen"
 msgstr "Marquer comme vu"
 
-#: ../../mod/settings.php:801
+#: mod/settings.php:830
 msgid "Move to folder"
 msgstr "Déplacer vers"
 
-#: ../../mod/settings.php:802
+#: mod/settings.php:831
 msgid "Move to folder:"
 msgstr "Déplacer vers:"
 
-#: ../../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
+#: mod/settings.php:912
 msgid "Display Settings"
 msgstr "Affichage"
 
-#: ../../mod/settings.php:889 ../../mod/settings.php:904
+#: mod/settings.php:918 mod/settings.php:934
 msgid "Display Theme:"
 msgstr "Thème d'affichage:"
 
-#: ../../mod/settings.php:890
+#: mod/settings.php:919
 msgid "Mobile Theme:"
 msgstr "Thème mobile:"
 
-#: ../../mod/settings.php:891
+#: mod/settings.php:920
 msgid "Update browser every xx seconds"
 msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
 
-#: ../../mod/settings.php:891
+#: mod/settings.php:920
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Délai minimum de 10 secondes, pas de maximum"
 
-#: ../../mod/settings.php:892
+#: mod/settings.php:921
 msgid "Number of items to display per page:"
 msgstr "Nombre d’éléments par page:"
 
-#: ../../mod/settings.php:892 ../../mod/settings.php:893
+#: mod/settings.php:921 mod/settings.php:922
 msgid "Maximum of 100 items"
 msgstr "Maximum de 100 éléments"
 
-#: ../../mod/settings.php:893
+#: mod/settings.php:922
 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:894
+#: mod/settings.php:923
 msgid "Don't show emoticons"
 msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
 
-#: ../../mod/settings.php:895
+#: mod/settings.php:924
 msgid "Don't show notices"
 msgstr "Ne plus afficher les avis"
 
-#: ../../mod/settings.php:896
+#: mod/settings.php:925
 msgid "Infinite scroll"
 msgstr "Défilement infini"
 
-#: ../../mod/settings.php:897
+#: mod/settings.php:926
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: ../../mod/settings.php:974
+#: mod/settings.php:928 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:58
+#: view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
+msgstr "Réglages du thème graphique"
+
+#: mod/settings.php:1004
 msgid "User Types"
 msgstr "Types d'utilisateurs"
 
-#: ../../mod/settings.php:975
+#: mod/settings.php:1005
 msgid "Community Types"
 msgstr "Genre de communautés"
 
-#: ../../mod/settings.php:976
+#: mod/settings.php:1006
 msgid "Normal Account Page"
 msgstr "Compte normal"
 
-#: ../../mod/settings.php:977
+#: mod/settings.php:1007
 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:980
+#: mod/settings.php:1010
 msgid "Soapbox Page"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/settings.php:981
+#: mod/settings.php:1011
 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:984
+#: mod/settings.php:1014
 msgid "Community Forum/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/settings.php:985
+#: mod/settings.php:1015
 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:988
+#: mod/settings.php:1018
 msgid "Automatic Friend Page"
 msgstr "Compte d'\"amitié automatique\""
 
-#: ../../mod/settings.php:989
+#: mod/settings.php:1019
 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:992
+#: mod/settings.php:1022
 msgid "Private Forum [Experimental]"
 msgstr "Forum privé [expérimental]"
 
-#: ../../mod/settings.php:993
+#: mod/settings.php:1023
 msgid "Private forum - approved members only"
 msgstr "Forum privé - modéré en inscription"
 
-#: ../../mod/settings.php:1005
+#: mod/settings.php:1035
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1005
+#: mod/settings.php:1035
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: ../../mod/settings.php:1015
+#: mod/settings.php:1045
 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: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:1021
+#: mod/settings.php:1051
 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:1029
+#: mod/settings.php:1059
 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:1033
+#: mod/settings.php:1063 include/acl_selectors.php:330
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Cacher les détails du profil aux visiteurs inconnus?"
+
+#: mod/settings.php:1063
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr ""
 
-#: ../../mod/settings.php:1038
+#: mod/settings.php:1068
 msgid "Allow friends to post to your profile page?"
 msgstr "Autoriser vos amis à publier sur votre profil?"
 
-#: ../../mod/settings.php:1044
+#: mod/settings.php:1074
 msgid "Allow friends to tag your posts?"
 msgstr "Autoriser vos amis à étiqueter vos publications?"
 
-#: ../../mod/settings.php:1050
+#: mod/settings.php:1080
 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:1056
+#: mod/settings.php:1086
 msgid "Permit unknown people to send you private mail?"
 msgstr "Autoriser les messages privés d'inconnus?"
 
-#: ../../mod/settings.php:1064
+#: mod/settings.php:1094
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "ou"
-
-#: ../../mod/settings.php:1072
+#: mod/settings.php:1102
 msgid "Your Identity Address is"
 msgstr "L'adresse de votre identité est"
 
-#: ../../mod/settings.php:1083
+#: mod/settings.php:1111
 msgid "Automatically expire posts after this many days:"
 msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: ../../mod/settings.php:1083
+#: mod/settings.php:1111
 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:1084
+#: mod/settings.php:1112
 msgid "Advanced expiration settings"
 msgstr "Réglages avancés de l'expiration"
 
-#: ../../mod/settings.php:1085
+#: mod/settings.php:1113
 msgid "Advanced Expiration"
 msgstr "Expiration (avancé)"
 
-#: ../../mod/settings.php:1086
+#: mod/settings.php:1114
 msgid "Expire posts:"
 msgstr "Faire expirer les publications:"
 
-#: ../../mod/settings.php:1087
+#: mod/settings.php:1115
 msgid "Expire personal notes:"
 msgstr "Faire expirer les notes personnelles:"
 
-#: ../../mod/settings.php:1088
+#: mod/settings.php:1116
 msgid "Expire starred posts:"
 msgstr "Faire expirer les publications marqués:"
 
-#: ../../mod/settings.php:1089
+#: mod/settings.php:1117
 msgid "Expire photos:"
 msgstr "Faire expirer les photos:"
 
-#: ../../mod/settings.php:1090
+#: mod/settings.php:1118
 msgid "Only expire posts by others:"
 msgstr "Faire expirer seulement les publications des autres:"
 
-#: ../../mod/settings.php:1116
+#: mod/settings.php:1144
 msgid "Account Settings"
 msgstr "Compte"
 
-#: ../../mod/settings.php:1124
+#: mod/settings.php:1152
 msgid "Password Settings"
 msgstr "Réglages de mot de passe"
 
-#: ../../mod/settings.php:1125
+#: mod/settings.php:1153 mod/register.php:271
 msgid "New Password:"
 msgstr "Nouveau mot de passe:"
 
-#: ../../mod/settings.php:1126
+#: mod/settings.php:1154 mod/register.php:272
 msgid "Confirm:"
 msgstr "Confirmer:"
 
-#: ../../mod/settings.php:1126
+#: mod/settings.php:1154
 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:1127
+#: mod/settings.php:1155
 msgid "Current Password:"
 msgstr "Mot de passe actuel:"
 
-#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
+#: mod/settings.php:1155 mod/settings.php:1156
 msgid "Your current password to confirm the changes"
 msgstr "Votre mot de passe actuel pour confirmer les modifications"
 
-#: ../../mod/settings.php:1128
+#: mod/settings.php:1156
 msgid "Password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:1132
+#: mod/settings.php:1160
 msgid "Basic Settings"
 msgstr "Réglages basiques"
 
-#: ../../mod/settings.php:1134
+#: mod/settings.php:1161 include/identity.php:538
+msgid "Full Name:"
+msgstr "Nom complet:"
+
+#: mod/settings.php:1162
 msgid "Email Address:"
 msgstr "Adresse courriel:"
 
-#: ../../mod/settings.php:1135
+#: mod/settings.php:1163
 msgid "Your Timezone:"
 msgstr "Votre fuseau horaire:"
 
-#: ../../mod/settings.php:1136
+#: mod/settings.php:1164
 msgid "Default Post Location:"
 msgstr "Emplacement de publication par défaut:"
 
-#: ../../mod/settings.php:1137
+#: mod/settings.php:1165
 msgid "Use Browser Location:"
 msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: ../../mod/settings.php:1140
+#: mod/settings.php:1168
 msgid "Security and Privacy Settings"
 msgstr "Réglages de sécurité et vie privée"
 
-#: ../../mod/settings.php:1142
+#: mod/settings.php:1170
 msgid "Maximum Friend Requests/Day:"
 msgstr "Nombre maximal de requêtes d'amitié/jour:"
 
-#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
+#: mod/settings.php:1170 mod/settings.php:1200
 msgid "(to prevent spam abuse)"
 msgstr "(pour limiter l'impact du spam)"
 
-#: ../../mod/settings.php:1143
+#: mod/settings.php:1171
 msgid "Default Post Permissions"
 msgstr "Permissions de publication par défaut"
 
-#: ../../mod/settings.php:1144
+#: mod/settings.php:1172
 msgid "(click to open/close)"
 msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
-#: ../../mod/photos.php:1519
+#: mod/settings.php:1181 mod/photos.php:1166 mod/photos.php:1538
 msgid "Show to Groups"
 msgstr "Montrer aux groupes"
 
-#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
-#: ../../mod/photos.php:1520
+#: mod/settings.php:1182 mod/photos.php:1167 mod/photos.php:1539
 msgid "Show to Contacts"
 msgstr "Montrer aux Contacts"
 
-#: ../../mod/settings.php:1155
+#: mod/settings.php:1183
 msgid "Default Private Post"
 msgstr "Message privé par défaut"
 
-#: ../../mod/settings.php:1156
+#: mod/settings.php:1184
 msgid "Default Public Post"
 msgstr "Message publique par défaut"
 
-#: ../../mod/settings.php:1160
+#: mod/settings.php:1188
 msgid "Default Permissions for New Posts"
 msgstr "Permissions par défaut pour les nouvelles publications"
 
-#: ../../mod/settings.php:1172
+#: mod/settings.php:1200
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum de messages privés d'inconnus par jour:"
 
-#: ../../mod/settings.php:1175
+#: mod/settings.php:1203
 msgid "Notification Settings"
 msgstr "Réglages de notification"
 
-#: ../../mod/settings.php:1176
+#: mod/settings.php:1204
 msgid "By default post a status message when:"
 msgstr "Par défaut, poster un statut quand:"
 
-#: ../../mod/settings.php:1177
+#: mod/settings.php:1205
 msgid "accepting a friend request"
 msgstr "j'accepte un ami"
 
-#: ../../mod/settings.php:1178
+#: mod/settings.php:1206
 msgid "joining a forum/community"
 msgstr "joignant un forum/une communauté"
 
-#: ../../mod/settings.php:1179
+#: mod/settings.php:1207
 msgid "making an <em>interesting</em> profile change"
 msgstr "je fais une modification <em>intéressante</em> de mon profil"
 
-#: ../../mod/settings.php:1180
+#: mod/settings.php:1208
 msgid "Send a notification email when:"
 msgstr "Envoyer un courriel de notification quand:"
 
-#: ../../mod/settings.php:1181
+#: mod/settings.php:1209
 msgid "You receive an introduction"
 msgstr "Vous recevez une introduction"
 
-#: ../../mod/settings.php:1182
+#: mod/settings.php:1210
 msgid "Your introductions are confirmed"
 msgstr "Vos introductions sont confirmées"
 
-#: ../../mod/settings.php:1183
+#: mod/settings.php:1211
 msgid "Someone writes on your profile wall"
 msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/settings.php:1184
+#: mod/settings.php:1212
 msgid "Someone writes a followup comment"
 msgstr "Quelqu'un vous commente"
 
-#: ../../mod/settings.php:1185
+#: mod/settings.php:1213
 msgid "You receive a private message"
 msgstr "Vous recevez un message privé"
 
-#: ../../mod/settings.php:1186
+#: mod/settings.php:1214
 msgid "You receive a friend suggestion"
 msgstr "Vous avez reçu une suggestion d'ami"
 
-#: ../../mod/settings.php:1187
+#: mod/settings.php:1215
 msgid "You are tagged in a post"
 msgstr "Vous avez été étiquetté dans une publication"
 
-#: ../../mod/settings.php:1188
+#: mod/settings.php:1216
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Vous avez été sollicité dans une publication"
 
-#: ../../mod/settings.php:1190
+#: mod/settings.php:1218
+msgid "Activate desktop notifications"
+msgstr ""
+
+#: mod/settings.php:1218
+msgid "Show desktop popup on new notifications"
+msgstr ""
+
+#: mod/settings.php:1220
 msgid "Text-only notification emails"
 msgstr ""
 
-#: ../../mod/settings.php:1192
+#: mod/settings.php:1222
 msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: ../../mod/settings.php:1194
+#: mod/settings.php:1224
 msgid "Advanced Account/Page Type Settings"
 msgstr "Paramètres avancés de compte/page"
 
-#: ../../mod/settings.php:1195
+#: mod/settings.php:1225
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modifier le comportement de ce compte dans certaines situations"
 
-#: ../../mod/settings.php:1198
+#: mod/settings.php:1228
 msgid "Relocate"
 msgstr "Relocaliser"
 
-#: ../../mod/settings.php:1199
+#: mod/settings.php:1229
 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:1200
+#: mod/settings.php:1230
 msgid "Resend relocate message to contacts"
 msgstr "Renvoyer un message de relocalisation aux contacts."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amis communs"
+#: mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Cette introduction a déjà été acceptée."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Pas de contacts en commun."
+#: 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/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: 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:48
-msgid "Visible to:"
-msgstr "Visible par:"
+#: 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/contacts.php:112
+#: mod/dfrn_request.php:130 mod/dfrn_request.php:528
 #, 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:143 ../../mod/contacts.php:276
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
+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/contacts.php:157
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Phase d'introduction achevée."
 
-#: ../../mod/contacts.php:190
-msgid "Contact updated."
-msgstr "Contact mis-à-jour."
+#: mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Erreur de protocole non-récupérable."
 
-#: ../../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:242
+msgid "Profile unavailable."
+msgstr "Profil indisponible."
 
-#: ../../mod/contacts.php:291
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: 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:291
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: 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:302
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: 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:302
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
+#: mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Localisateur invalide"
 
-#: ../../mod/contacts.php:314
-msgid "Contact has been archived"
-msgstr "Contact archivé"
+#: mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Adresse courriel invalide."
 
-#: ../../mod/contacts.php:314
-msgid "Contact has been unarchived"
-msgstr "Contact désarchivé"
+#: 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: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:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
 
-#: ../../mod/contacts.php:356
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Vous vous êtes déjà présenté ici."
 
-#: ../../mod/contacts.php:394
+#: mod/dfrn_request.php:480
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+msgid "Apparently you are already friends with %s."
+msgstr "Il semblerait que vous soyez déjà ami avec %s."
 
-#: ../../mod/contacts.php:398
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+#: mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "URL de profil invalide."
 
-#: ../../mod/contacts.php:403
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+#: mod/dfrn_request.php:507 include/follow.php:70
+msgid "Disallowed profile URL."
+msgstr "URL de profil interdite."
 
-#: ../../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:597
+msgid "Your introduction has been sent."
+msgstr "Votre introduction a été envoyée."
 
-#: ../../mod/contacts.php:426 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Jamais"
+#: mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Connectez-vous pour confirmer l'introduction."
 
-#: ../../mod/contacts.php:430
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: 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 not successful)"
-msgstr "(Mise à jour échouée)"
+#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
+msgid "Confirm"
+msgstr "Confirmer"
 
-#: ../../mod/contacts.php:432
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: mod/dfrn_request.php:686
+msgid "Hide this contact"
+msgstr "Cacher ce contact"
 
-#: ../../mod/contacts.php:436
+#: mod/dfrn_request.php:689
 #, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+msgid "Welcome home %s."
+msgstr "Bienvenue chez vous, %s."
 
-#: ../../mod/contacts.php:444
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
+#: mod/dfrn_request.php:690
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
 
-#: ../../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:819
+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:449 ../../mod/contacts.php:518
-#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Bloquer"
+#: mod/dfrn_request.php:839
+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:452
-msgid "Toggle Blocked status"
-msgstr "(dés)activer l'état \"bloqué\""
+#: mod/dfrn_request.php:842
+msgid "Friend/Connection Request"
+msgstr "Requête de relation/amitié"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
-#: ../../mod/contacts.php:731
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: mod/dfrn_request.php:843
+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:458
-msgid "Toggle Ignored status"
-msgstr "(dés)activer l'état \"ignoré\""
+#: mod/dfrn_request.php:851 include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
-msgid "Unarchive"
-msgstr "Désarchiver"
+#: mod/dfrn_request.php:852
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
-msgid "Archive"
-msgstr "Archiver"
+#: mod/dfrn_request.php:854
+#, 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:465
-msgid "Toggle Archive status"
-msgstr "(dés)activer l'état \"archivé\""
+#: mod/register.php:92
+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:468
-msgid "Repair"
-msgstr "Réparer"
+#: mod/register.php:97
+#, 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:471
-msgid "Advanced Contact Settings"
-msgstr "Réglages avancés du contact"
+#: mod/register.php:107
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traitée."
 
-#: ../../mod/contacts.php:477
-msgid "Communications lost with this contact!"
-msgstr "Communications perdues avec ce contact !"
+#: mod/register.php:150
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription attend une validation du propriétaire du site."
 
-#: ../../mod/contacts.php:480
-msgid "Fetch further information for feeds"
-msgstr "Chercher plus d'informations pour les flux"
+#: mod/register.php:188 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:481
-msgid "Disabled"
-msgstr "Désactivé"
+#: mod/register.php:216
+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:481
-msgid "Fetch information"
-msgstr "Récupérer informations"
+#: mod/register.php:217
+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/contacts.php:481
-msgid "Fetch information and keywords"
-msgstr "Récupérer informations"
+#: mod/register.php:218
+msgid "Your OpenID (optional): "
+msgstr "Votre OpenID (facultatif): "
 
-#: ../../mod/contacts.php:490
-msgid "Contact Editor"
-msgstr "Éditeur de contact"
+#: mod/register.php:232
+msgid "Include your profile in member directory?"
+msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: ../../mod/contacts.php:493
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: mod/register.php:256
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../mod/contacts.php:494
-#, 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."
+#: mod/register.php:257
+msgid "Your invitation ID: "
+msgstr "Votre ID d'invitation: "
 
-#: ../../mod/contacts.php:495
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: mod/register.php:268
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Votre nom complet (p.ex. Michel Dupont): "
 
-#: ../../mod/contacts.php:496
-msgid "Edit contact notes"
-msgstr "Éditer les notes des contacts"
+#: mod/register.php:269
+msgid "Your Email Address: "
+msgstr "Votre adresse courriel: "
 
-#: ../../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:271
+msgid "Leave empty for an auto generated password."
+msgstr ""
 
-#: ../../mod/contacts.php:502
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: mod/register.php:273
+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:503
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: mod/register.php:274
+msgid "Choose a nickname: "
+msgstr "Choisir un pseudo: "
 
-#: ../../mod/contacts.php:504
-msgid "Repair URL settings"
-msgstr "Réglages de réparation des URL"
+#: mod/register.php:277 boot.php:1239 include/nav.php:109
+msgid "Register"
+msgstr "S'inscrire"
 
-#: ../../mod/contacts.php:505
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: mod/register.php:283 mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
 
-#: ../../mod/contacts.php:507
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: mod/register.php:284
+msgid "Import your profile to this friendica instance"
+msgstr "Importer votre profile dans cette instance de friendica"
 
-#: ../../mod/contacts.php:511
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
-
-#: ../../mod/contacts.php:513
-msgid "Update public posts"
-msgstr "Mettre à jour les publications publiques:"
-
-#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Mettre à jour"
-
-#: ../../mod/contacts.php:522
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
-
-#: ../../mod/contacts.php:523
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
-
-#: ../../mod/contacts.php:524
-msgid "Currently archived"
-msgstr "Actuellement archivé"
-
-#: ../../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/contacts.php:526
-msgid "Notification for new posts"
-msgstr "Notification des nouvelles publications"
-
-#: ../../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/contacts.php:529
-msgid "Blacklisted keywords"
-msgstr "Mots-clés sur la liste noire"
-
-#: ../../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/contacts.php:580
-msgid "Suggestions"
-msgstr "Suggestions"
+#: mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Système indisponible pour cause de maintenance"
 
-#: ../../mod/contacts.php:583
-msgid "Suggest potential friends"
-msgstr "Suggérer des amis potentiels"
+#: mod/search.php:99 include/text.php:977 include/nav.php:119
+msgid "Search"
+msgstr "Recherche"
 
-#: ../../mod/contacts.php:589
-msgid "Show all contacts"
-msgstr "Montrer tous les contacts"
+#: mod/search.php:184
+#, php-format
+msgid "Items tagged with: %s"
+msgstr ""
 
-#: ../../mod/contacts.php:592
-msgid "Unblocked"
-msgstr "Non-bloqués"
+#: mod/search.php:186
+#, php-format
+msgid "Search results for: %s"
+msgstr ""
 
-#: ../../mod/contacts.php:595
-msgid "Only show unblocked contacts"
-msgstr "Ne montrer que les contacts non-bloqués"
+#: mod/directory.php:53 view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Annuaire global"
 
-#: ../../mod/contacts.php:599
-msgid "Blocked"
-msgstr "Bloqués"
+#: mod/directory.php:61
+msgid "Find on this site"
+msgstr "Trouver sur ce site"
 
-#: ../../mod/contacts.php:602
-msgid "Only show blocked contacts"
-msgstr "Ne montrer que les contacts bloqués"
+#: mod/directory.php:64
+msgid "Site Directory"
+msgstr "Annuaire local"
 
-#: ../../mod/contacts.php:606
-msgid "Ignored"
-msgstr "Ignorés"
+#: mod/directory.php:129 mod/profiles.php:747
+msgid "Age: "
+msgstr "Age : "
 
-#: ../../mod/contacts.php:609
-msgid "Only show ignored contacts"
-msgstr "Ne montrer que les contacts ignorés"
+#: mod/directory.php:132
+msgid "Gender: "
+msgstr "Genre : "
 
-#: ../../mod/contacts.php:613
-msgid "Archived"
-msgstr "Archivés"
+#: mod/directory.php:154 include/identity.php:270 include/identity.php:540
+msgid "Gender:"
+msgstr "Genre:"
 
-#: ../../mod/contacts.php:616
-msgid "Only show archived contacts"
-msgstr "Ne montrer que les contacts archivés"
+#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
+msgid "Status:"
+msgstr "Statut:"
 
-#: ../../mod/contacts.php:620
-msgid "Hidden"
-msgstr "Cachés"
+#: mod/directory.php:158 include/identity.php:275 include/identity.php:571
+msgid "Homepage:"
+msgstr "Page personnelle:"
 
-#: ../../mod/contacts.php:623
-msgid "Only show hidden contacts"
-msgstr "Ne montrer que les contacts masqués"
+#: mod/directory.php:160 include/identity.php:277 include/identity.php:581
+msgid "About:"
+msgstr "À propos:"
 
-#: ../../mod/contacts.php:671
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: mod/directory.php:205
+msgid "No entries (some entries may be hidden)."
+msgstr "Aucune entrée (certaines peuvent être cachées)."
 
-#: ../../mod/contacts.php:675
-msgid "is a fan of yours"
-msgstr "Vous suit"
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Pas de délégataire potentiel."
 
-#: ../../mod/contacts.php:679
-msgid "you are a fan of"
-msgstr "Vous le/la suivez"
+#: mod/delegate.php:130 include/nav.php:171
+msgid "Delegate Page Management"
+msgstr "Déléguer la gestion de la page"
 
-#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: 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:722
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Gestionnaires existants"
 
-#: ../../mod/contacts.php:723 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Trouvé: "
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Délégataires existants"
 
-#: ../../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/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Délégataires potentiels"
 
-#: ../../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/delegate.php:140
+msgid "Add"
+msgstr "Ajouter"
 
-#: ../../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/delegate.php:141
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: mod/common.php:45
+msgid "Common Friends"
+msgstr "Amis communs"
 
-#: ../../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/common.php:82
+msgid "No contacts in common."
+msgstr "Pas de contacts en commun."
 
-#: ../../mod/uexport.php:77
+#: mod/uexport.php:77
 msgid "Export account"
 msgstr "Exporter le compte"
 
-#: ../../mod/uexport.php:77
+#: mod/uexport.php:77
 msgid ""
 "Export your account info and contacts. Use this to make a backup of your "
 "account and/or to move it to another server."
 msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
 
-#: ../../mod/uexport.php:78
+#: mod/uexport.php:78
 msgid "Export all"
 msgstr "Tout exporter"
 
-#: ../../mod/uexport.php:78
+#: mod/uexport.php:78
 msgid ""
 "Export your accout info, contacts and all your items as json. Could be a "
 "very big file, and could take a lot of time. Use this to make a full backup "
 "of your account (photos are not exported)"
 msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
 
-#: ../../mod/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/register.php:96
+#: mod/mood.php:62 include/conversation.php:226
 #, 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é."
+msgid "%1$s is currently %2$s"
+msgstr "%1$s est d'humeur %2$s"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traitée."
+#: mod/mood.php:133
+msgid "Mood"
+msgstr "Humeur"
 
-#: ../../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/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: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:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
 
-#: ../../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/suggest.php:69 include/contact_widgets.php:35
+#: view/theme/diabook/theme.php:527
+msgid "Friend Suggestions"
+msgstr "Suggestions d'amitiés/contacts"
 
-#: ../../mod/register.php:215
+#: mod/suggest.php:76
 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."
+"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/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Votre OpenID (facultatif): "
+#: mod/suggest.php:94
+msgid "Ignore/Hide"
+msgstr "Ignorer/cacher"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Inclure votre profil dans l'annuaire des membres?"
+#: mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil supprimé."
 
-#: ../../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:55 mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "Votre ID d'invitation: "
+#: mod/profiles.php:74 mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nouveau profil créé."
 
-#: ../../mod/register.php:255 ../../mod/admin.php:621
-msgid "Registration"
-msgstr "Inscription"
+#: mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Ce profil ne peut être cloné."
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Votre nom complet (p.ex. Michel Dupont): "
+#: mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Votre adresse courriel: "
+#: mod/profiles.php:336
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../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:340
+msgid "Romantic Partner"
+msgstr "Partenaire / conjoint"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Choisir un pseudo: "
+#: mod/profiles.php:344
+msgid "Likes"
+msgstr "Derniers \"J'aime\""
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importer"
+#: mod/profiles.php:348
+msgid "Dislikes"
+msgstr "Derniers \"Je n'aime pas\""
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importer votre profile dans cette instance de friendica"
+#: mod/profiles.php:352
+msgid "Work/Employment"
+msgstr "Travail / Occupation"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publication réussie."
+#: mod/profiles.php:355
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Système indisponible pour cause de maintenance"
+#: mod/profiles.php:359
+msgid "Political Views"
+msgstr "Tendance politique"
 
-#: ../../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:363
+msgid "Gender"
+msgstr "Sexe"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux venus"
+#: mod/profiles.php:367
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../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:371
+msgid "Homepage"
+msgstr "Site internet"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Pas de vidéo sélectionné"
+#: mod/profiles.php:375 mod/profiles.php:695
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../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:379
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Voir l'album"
+#: mod/profiles.php:386 mod/profiles.php:691
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vidéos récente"
+#: mod/profiles.php:469
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Téléversé une nouvelle vidéo"
+#: mod/profiles.php:565
+msgid " and "
+msgstr " et "
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
-
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "profil public"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
+#: mod/profiles.php:576
+#, 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/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "Visiter le %2$s de %1$s"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: mod/profiles.php:580
+#, 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/dirfind.php:26
-msgid "People Search"
-msgstr "Recherche de personnes"
+#: mod/profiles.php:655
+msgid "Hide contacts and friends:"
+msgstr "Cacher mes contacts et amis :"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Aucune correspondance"
+#: mod/profiles.php:660
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Inscription validée."
+#: mod/profiles.php:682
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: mod/profiles.php:684
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: mod/profiles.php:685
+msgid "View this profile"
+msgstr "Voir ce 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:686
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: ../../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:687
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
 
-#: ../../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:688
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
+#: mod/profiles.php:689
+msgid "Basic information"
+msgstr "Information de base"
 
-#: ../../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:690
+msgid "Profile picture"
+msgstr "Image de profil"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Phase d'introduction achevée."
+#: mod/profiles.php:692
+msgid "Preferences"
+msgstr "Préférences"
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: mod/profiles.php:693
+msgid "Status information"
+msgstr "Information sur le statut"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: mod/profiles.php:694
+msgid "Additional information"
+msgstr "Information additionnelle"
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
+#: mod/profiles.php:697
+msgid "Profile Name:"
+msgstr "Nom du profil :"
 
-#: ../../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:698
+msgid "Your Full Name:"
+msgstr "Votre nom complet :"
 
-#: ../../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:699
+msgid "Title/Description:"
+msgstr "Titre / Description :"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: mod/profiles.php:700
+msgid "Your Gender:"
+msgstr "Votre genre :"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Adresse courriel invalide."
+#: mod/profiles.php:701
+msgid "Birthday :"
+msgstr ""
 
-#: ../../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:702
+msgid "Street Address:"
+msgstr "Adresse postale :"
 
-#: ../../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:703
+msgid "Locality/City:"
+msgstr "Ville / Localité :"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: mod/profiles.php:704
+msgid "Postal/Zip Code:"
+msgstr "Code postal :"
 
-#: ../../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:705
+msgid "Country:"
+msgstr "Pays :"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: mod/profiles.php:706
+msgid "Region/State:"
+msgstr "Région / État :"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Votre introduction a été envoyée."
+#: mod/profiles.php:707
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Statut marital :"
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: mod/profiles.php:708
+msgid "Who: (if applicable)"
+msgstr "Qui : (si pertinent)"
 
-#: ../../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:709
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Cacher ce contact"
+#: mod/profiles.php:710
+msgid "Since [date]:"
+msgstr "Depuis [date]  :"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+#: mod/profiles.php:711 include/identity.php:569
+msgid "Sexual Preference:"
+msgstr "Préférence sexuelle:"
 
-#: ../../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:712
+msgid "Homepage URL:"
+msgstr "Page personnelle :"
 
-#: ../../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:713 include/identity.php:573
+msgid "Hometown:"
+msgstr " Ville d'origine:"
 
-#: ../../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:714 include/identity.php:577
+msgid "Political Views:"
+msgstr "Opinions politiques:"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: mod/profiles.php:715
+msgid "Religious Views:"
+msgstr "Opinions religieuses :"
 
-#: ../../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:716
+msgid "Public Keywords:"
+msgstr "Mots-clés publics :"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit:"
+#: mod/profiles.php:717
+msgid "Private Keywords:"
+msgstr "Mots-clés privés :"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: mod/profiles.php:718 include/identity.php:585
+msgid "Likes:"
+msgstr "J'aime :"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle:"
+#: mod/profiles.php:719 include/identity.php:587
+msgid "Dislikes:"
+msgstr "Je n'aime pas :"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/profiles.php:720
+msgid "Example: fishing photography software"
+msgstr "Exemple : football dessin programmation"
 
-#: ../../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:721
+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:840
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité:"
+#: mod/profiles.php:722
+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:843
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: mod/profiles.php:723
+msgid "Tell us about yourself..."
+msgstr "Parlez-nous de vous..."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Fichiers"
+#: mod/profiles.php:724
+msgid "Hobbies/Interests"
+msgstr "Passe-temps / Centres d'intérêt"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: mod/profiles.php:725
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées / Réseaux sociaux"
 
-#: ../../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:726
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: mod/profiles.php:727
+msgid "Books, literature"
+msgstr "Lectures"
 
-#: ../../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/profiles.php:728
+msgid "Television"
+msgstr "Télévision"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
+#: mod/profiles.php:729
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma / Danse / Culture / Divertissement"
 
-#: ../../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:730
+msgid "Love/romance"
+msgstr "Amour / Romance"
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: mod/profiles.php:731
+msgid "Work/employment"
+msgstr "Activité professionnelle / Occupation"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacts qui n’appartiennent à aucun groupe"
+#: mod/profiles.php:732
+msgid "School/education"
+msgstr "Études / Formation"
 
-#: ../../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:737
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
+#: mod/profiles.php:800
+msgid "Edit/Manage Profiles"
+msgstr "Editer / gérer les profils"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
+#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257
+msgid "Change profile photo"
+msgstr "Changer de photo de profil"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
-
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "lien"
-
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Aucun contact."
-
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvés."
+#: mod/profiles.php:802 include/identity.php:232
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Site"
+#: mod/profiles.php:813 include/identity.php:242
+msgid "Profile Image"
+msgstr "Image du profil"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Utilisateurs"
+#: mod/profiles.php:815 include/identity.php:245
+msgid "visible to everybody"
+msgstr "visible par tous"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Thèmes"
+#: mod/profiles.php:816 include/identity.php:246
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Mise-à-jour de la base"
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Journaux"
+#: mod/editpost.php:40
+msgid "Edit post"
+msgstr "Éditer la publication"
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr ""
+#: mod/editpost.php:111 include/conversation.php:1057
+msgid "upload photo"
+msgstr "envoi image"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr ""
+#: mod/editpost.php:112 include/conversation.php:1058
+msgid "Attach file"
+msgstr "Joindre fichier"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Propriétés des extensions"
+#: mod/editpost.php:113 include/conversation.php:1059
+msgid "attach file"
+msgstr "ajout fichier"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr ""
+#: mod/editpost.php:115 include/conversation.php:1061
+msgid "web link"
+msgstr "lien web"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente de confirmation"
+#: mod/editpost.php:116 include/conversation.php:1062
+msgid "Insert video link"
+msgstr "Insérer un lien video"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Compte normal"
+#: mod/editpost.php:117 include/conversation.php:1063
+msgid "video link"
+msgstr "lien vidéo"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Compte \"boîte à savon\""
+#: mod/editpost.php:118 include/conversation.php:1064
+msgid "Insert audio link"
+msgstr "Insérer un lien audio"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Compte de communauté/célébrité"
+#: mod/editpost.php:119 include/conversation.php:1065
+msgid "audio link"
+msgstr "lien audio"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Compte auto-amical"
+#: mod/editpost.php:120 include/conversation.php:1066
+msgid "Set your location"
+msgstr "Définir votre localisation"
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Compte de blog"
+#: mod/editpost.php:121 include/conversation.php:1067
+msgid "set location"
+msgstr "spéc. localisation"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Forum privé"
+#: mod/editpost.php:122 include/conversation.php:1068
+msgid "Clear browser location"
+msgstr "Effacer la localisation du navigateur"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Files d'attente des messages"
+#: mod/editpost.php:123 include/conversation.php:1069
+msgid "clear location"
+msgstr "supp. localisation"
 
-#: ../../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/editpost.php:125 include/conversation.php:1075
+msgid "Permission settings"
+msgstr "Réglages des permissions"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Résumé"
+#: mod/editpost.php:133 include/acl_selectors.php:343
+msgid "CC: email addresses"
+msgstr "CC: adresses de courriel"
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: mod/editpost.php:134 include/conversation.php:1084
+msgid "Public post"
+msgstr "Publication publique"
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
+#: mod/editpost.php:137 include/conversation.php:1071
+msgid "Set title"
+msgstr "Définir un titre"
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Versio"
+#: mod/editpost.php:139 include/conversation.php:1073
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Extensions activés"
+#: mod/editpost.php:140 include/acl_selectors.php:344
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
-#: ../../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/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Motorisé par Friendica version"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "Réglages du site mis-à-jour."
+#: mod/friendica.php:60
+msgid "running at web location"
+msgstr "hébergé sur"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr ""
+#: 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:563
-msgid "Public postings from users of this site"
-msgstr ""
+#: mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Pour les rapports de bugs: rendez vous sur"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
+#: mod/friendica.php:64
+msgid "the bugtracker at github"
 msgstr ""
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "A l'arrivé d'une publication"
+#: 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:579
-msgid "Multi user instance"
-msgstr "Instance multi-utilisateurs"
+#: mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/greffons/applications installées:"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Fermé"
+#: mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Extensions/greffons/applications non installées:"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Demande une apptrobation"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Ouvert"
+#: 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: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/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "Forcer tous les liens à utiliser SSL"
+#: mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
 
-#: ../../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/lockview.php:31 mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informations de confidentialité indisponibles."
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Téléversement de fichier"
+#: mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visible par:"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Politiques"
+#: mod/notes.php:44 include/identity.php:670
+msgid "Personal Notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Avancé"
+#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Performance"
+#: mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversion temporelle"
 
-#: ../../mod/admin.php:626
+#: mod/localtime.php:26
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
+"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:629
-msgid "Site name"
-msgstr "Nom du site"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Temps UTC : %s"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr "Nom de la machine hôte"
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Zone de temps courante : %s"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr ""
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Temps local converti : %s"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Bannière/Logo"
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Sélectionner votre zone :"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr ""
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Solliciter"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr ""
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "solliciter (poke/...) quelqu'un"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "Informations supplémentaires"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinataire"
 
-#: ../../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."
+#: 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:636
-msgid "System language"
-msgstr "Langue du système"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendez ce message privé"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Thème du système"
+#: mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "La limite d'invitation totale est éxédée."
 
-#: ../../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>"
+#: mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Adresse de courriel invalide."
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Thème mobile"
+#: mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Rejoignez-nous sur Friendica"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Thème pour les terminaux mobiles"
+#: 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:639
-msgid "SSL link policy"
-msgstr "Politique SSL pour les liens"
+#: mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : L'envoi du message a échoué."
 
-#: ../../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: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:640
-msgid "Force SSL"
-msgstr "SSL obligatoire"
+#: mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Vous n'avez plus d'invitations disponibles"
 
-#: ../../mod/admin.php:640
+#: mod/invite.php:120
+#, php-format
 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'"
-
-#: ../../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."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "Cacher l'aide du menu de navigation"
+#: 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:642
+#: mod/invite.php:123
+#, php-format
 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."
+"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:643
-msgid "Single user instance"
-msgstr "Instance mono-utilisateur"
+#: mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
 
-#: ../../mod/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/invite.php:132
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses email, une par ligne :"
 
-#: ../../mod/admin.php:644
+#: mod/invite.php:135
 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\"."
+"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:645
-msgid "Maximum image length"
-msgstr "Longueur maximale des images"
+#: 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:645
+#: mod/invite.php:137
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
-
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "Qualité JPEG des images"
+"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:646
+#: mod/invite.php:139
 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."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Politique d'inscription"
+#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086
+#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779
+#: mod/photos.php:1791 view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Photos du contact"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Inscriptions maximum par jour"
+#: mod/photos.php:84 include/identity.php:649
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: ../../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:85 mod/photos.php:1836
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
+msgid "Upload New Photos"
+msgstr "Téléverser de nouvelles photos"
 
-#: ../../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:166
+msgid "Contact information unavailable"
+msgstr "Informations de contact indisponibles"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: mod/photos.php:187
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: ../../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:210 mod/photos.php:222 mod/photos.php:1224
+msgid "Delete Album"
+msgstr "Effacer l'album"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Domaines autorisés"
+#: mod/photos.php:220
+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/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:300 mod/photos.php:311 mod/photos.php:1534
+msgid "Delete Photo"
+msgstr "Effacer la photo"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Domaines courriel autorisés"
+#: mod/photos.php:309
+msgid "Do you really want to delete this photo?"
+msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: ../../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:684
+#, 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:654
-msgid "Block public"
-msgstr "Interdire la publication globale"
+#: mod/photos.php:684
+msgid "a photo"
+msgstr "une 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:797
+msgid "Image file is empty."
+msgstr "Fichier image vide."
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Forcer la publication globale"
+#: mod/photos.php:952
+msgid "No photos selected"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../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:1114
+#, 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:656
-msgid "Global directory update URL"
-msgstr "URL de mise-à-jour de l'annuaire global"
+#: mod/photos.php:1149
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: ../../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:1153 mod/photos.php:1219
+msgid "New album name: "
+msgstr "Nom du nouvel album: "
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "autoriser le suivi des éléments par fil conducteur"
+#: mod/photos.php:1154
+msgid "or existing album name: "
+msgstr "ou nom d'un album existant: "
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permettre une imbrication infinie des commentaires."
+#: mod/photos.php:1155
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de notice de statut pour cet envoi"
 
-#: ../../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:1157 mod/photos.php:1529 include/acl_selectors.php:346
+msgid "Permissions"
+msgstr "Permissions"
 
-#: ../../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:1168
+msgid "Private Photo"
+msgstr "Photo privée"
 
-#: ../../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:1169
+msgid "Public Photo"
+msgstr "Photo publique"
 
-#: ../../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:1232
+msgid "Edit Album"
+msgstr "Éditer l'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:1238
+msgid "Show Newest First"
+msgstr "Plus récent d'abord"
 
-#: ../../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:1240
+msgid "Show Oldest First"
+msgstr "Plus ancien d'abord"
 
-#: ../../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:1268 mod/photos.php:1821
+msgid "View Photo"
+msgstr "Voir la photo"
 
-#: ../../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."
+#: mod/photos.php:1314
+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:662
-msgid "Allow Users to set remote_self"
-msgstr "Autoriser les utilisateurs à définir remote_self"
+#: mod/photos.php:1316
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: ../../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:1372
+msgid "View photo"
+msgstr "Voir photo"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Interdire les inscriptions multiples"
+#: mod/photos.php:1372
+msgid "Edit photo"
+msgstr "Éditer la photo"
 
-#: ../../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/photos.php:1373
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "Support OpenID"
+#: mod/photos.php:1398
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "Supporter OpenID pour les inscriptions et connexions."
+#: mod/photos.php:1477
+msgid "Tags: "
+msgstr "Étiquettes:"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "Vérification du \"Prénom Nom\""
+#: mod/photos.php:1480
+msgid "[Remove any tag]"
+msgstr "[Retirer toutes les étiquettes]"
 
-#: ../../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"
+#: mod/photos.php:1520
+msgid "New album name"
+msgstr "Nom du nouvel album"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "Regex UTF-8"
+#: mod/photos.php:1521
+msgid "Caption"
+msgstr "Titre"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
+#: mod/photos.php:1522
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
+#: mod/photos.php:1522
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
+
+#: mod/photos.php:1523
+msgid "Do not rotate"
 msgstr ""
 
-#: ../../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/photos.php:1524
+msgid "Rotate CW (right)"
+msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr ""
+#: mod/photos.php:1525
+msgid "Rotate CCW (left)"
+msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
+#: mod/photos.php:1540
+msgid "Private photo"
+msgstr "Photo privée"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "Activer le support d'OStatus"
+#: mod/photos.php:1541
+msgid "Public photo"
+msgstr "Photo publique"
 
-#: ../../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."
+#: mod/photos.php:1563 include/conversation.php:1055
+msgid "Share"
+msgstr "Partager"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "Achèvement de l'intervalle de conversation OStatus "
+#: mod/p.php:9
+msgid "Not Extended"
+msgstr ""
 
-#: ../../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."
+#: mod/regmod.php:55
+msgid "Account approved."
+msgstr "Inscription validée."
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Activer le support de Diaspora"
+#: mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fournir une compatibilité Diaspora intégrée."
+#: mod/regmod.php:104
+msgid "Please login."
+msgstr "Merci de vous connecter."
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "N'autoriser que les contacts Friendica"
+#: mod/uimport.php:66
+msgid "Move account"
+msgstr "Migrer le compte"
 
-#: ../../mod/admin.php:672
+#: 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/uimport.php:68
 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."
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "Vérifier SSL"
+#: 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:673
+#: mod/uimport.php:70
+msgid "Account file"
+msgstr "Fichier du compte"
+
+#: mod/uimport.php:70
 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é."
+"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:674
-msgid "Proxy user"
-msgstr "Utilisateur du proxy"
+#: mod/attach.php:8
+msgid "Item not available."
+msgstr "Elément non disponible."
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element introuvable."
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "Dépassement du délai d'attente du réseau"
+#: boot.php:754
+msgid "Delete this item?"
+msgstr "Effacer cet élément?"
 
-#: ../../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:757
+msgid "show fewer"
+msgstr "montrer moins"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Intervalle de transmission"
+#: boot.php:1131
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
 
-#: ../../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:1238
+msgid "Create a New Account"
+msgstr "Créer un nouveau compte"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Intervalle de réception"
+#: boot.php:1263 include/nav.php:73
+msgid "Logout"
+msgstr "Se déconnecter"
 
-#: ../../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:1266
+msgid "Nickname or Email address: "
+msgstr "Pseudo ou courriel: "
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Plafond de la charge moyenne"
+#: boot.php:1267
+msgid "Password: "
+msgstr "Mot de passe: "
 
-#: ../../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:1268
+msgid "Remember me"
+msgstr "Se souvenir de moi"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Utiliser le moteur de recherche plein texte de MySQL"
+#: boot.php:1271
+msgid "Or login using OpenID: "
+msgstr "Ou connectez-vous via OpenID: "
 
-#: ../../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:1277
+msgid "Forgot your password?"
+msgstr "Mot de passe oublié?"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "Supprimer un langage"
+#: boot.php:1280
+msgid "Website Terms of Service"
+msgstr "Conditions d'utilisation du site internet"
 
-#: ../../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:1281
+msgid "terms of service"
+msgstr "conditions d'utilisation"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr ""
+#: boot.php:1283
+msgid "Website Privacy Policy"
+msgstr "Politique de confidentialité du site internet"
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
+#: boot.php:1284
+msgid "privacy policy"
+msgstr "politique de confidentialité"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Chemin vers le cache des objets."
+#: object/Item.php:95
+msgid "This entry was edited"
+msgstr "Cette entrée à été édité"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Durée du cache en secondes"
+#: object/Item.php:209
+msgid "ignore thread"
+msgstr "ignorer le fil"
 
-#: ../../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."
+#: object/Item.php:210
+msgid "unignore thread"
+msgstr "Ne plus ignorer le fil"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "Nombre maximum de commentaires par publication"
+#: object/Item.php:211
+msgid "toggle ignore status"
+msgstr "Ignorer le statut"
 
-#: ../../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."
+#: object/Item.php:214
+msgid "ignored"
+msgstr "ignoré"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Chemin vers le ficher de verrouillage"
+#: object/Item.php:318 include/conversation.php:665
+msgid "Categories:"
+msgstr "Catégories:"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Chemin des fichiers temporaires"
+#: object/Item.php:319 include/conversation.php:666
+msgid "Filed under:"
+msgstr "Rangé sous:"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Chemin de base de l'installation"
+#: object/Item.php:331
+msgid "via"
+msgstr "via"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "Désactiver le proxy image "
+#: 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:690
+#: include/dbstructure.php:31
+#, php-format
 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."
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Le message d’erreur est\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr ""
+#: include/dbstructure.php:152
+msgid "Errors encountered creating database tables."
+msgstr "Des erreurs ont été signalées lors de la création des tables."
+
+#: include/dbstructure.php:210
+msgid "Errors encountered performing database changes."
+msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données."
+
+#: include/auth.php:38
+msgid "Logged out."
+msgstr "Déconnecté."
 
-#: ../../mod/admin.php:691
+#: include/auth.php:128 include/user.php:75
 msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+"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:692
-msgid "Only search in tags"
-msgstr ""
+#: include/auth.php:128 include/user.php:75
+msgid "The error message was:"
+msgstr "Le message d'erreur était :"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Ajouter un nouveau contact"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "Nouvelle URL de base"
+#: include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Entrez son adresse ou sa localisation web"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "Mise-à-jour validée comme 'réussie'"
+#: 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:719
+#: include/contact_widgets.php:24
 #, 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."
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation disponible"
+msgstr[1] "%d invitations disponibles"
 
-#: ../../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/contact_widgets.php:30
+msgid "Find People"
+msgstr "Trouver des personnes"
 
-#: ../../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/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Entrez un nom ou un centre d'intérêt"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Mise-à-jour %s appliquée avec succès."
+#: include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Connecter/Suivre"
 
-#: ../../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/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Robert Morgenstein, Pêche"
 
-#: ../../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:36 view/theme/diabook/theme.php:526
+msgid "Similar Interests"
+msgstr "Intérêts similaires"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Pas de mises-à-jour échouées."
+#: include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Profil au hasard"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr "Vérifier la structure de la base de données"
+#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528
+msgid "Invite Friends"
+msgstr "Inviter des amis"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Mises-à-jour échouées"
+#: include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Réseaux"
 
-#: ../../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:74
+msgid "All Networks"
+msgstr "Tous réseaux"
 
-#: ../../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:104 include/features.php:60
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter d'éxecuter cette étape automatiquement"
+#: include/contact_widgets.php:107 include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tout"
 
-#: ../../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:136
+msgid "Categories"
+msgstr "Catégories"
 
-#: ../../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/features.php:23
+msgid "General Features"
+msgstr "Fonctions générales"
 
-#: ../../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/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
 
-#: ../../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/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+#: include/features.php:30
+msgid "Post Composition Features"
+msgstr "Caractéristiques de composition de publication"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+#: include/features.php:31
+msgid "Richtext Editor"
+msgstr "Éditeur de texte enrichi"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
+#: include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Activer l'éditeur de texte enrichi"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Ajouter l'utilisateur"
+#: include/features.php:32
+msgid "Post Preview"
+msgstr "Aperçu de la publication"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "tout sélectionner"
+#: 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:1001
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions d'utilisateurs en attente de confirmation"
+#: include/features.php:33
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "Utilisateur en attente de suppression définitive"
+#: include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Date de la demande"
+#: include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets réseau pour barre latérale"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
+#: include/features.php:39
+msgid "Search by Date"
+msgstr "Rechercher par Date"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Rejetter"
+#: 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:1010
-msgid "Site admin"
-msgstr "Administration du Site"
+#: include/features.php:40
+msgid "Group Filter"
+msgstr "Filtre de groupe"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Compte expiré"
+#: 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:1014
-msgid "New User"
-msgstr "Nouvel utilisateur"
+#: include/features.php:41
+msgid "Network Filter"
+msgstr "Filtre de réseau"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Date d'inscription"
+#: 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:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Dernière connexion"
+#: include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Dernier élément"
+#: include/features.php:47
+msgid "Network Tabs"
+msgstr "Onglets Réseau"
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Supprimé depuis"
+#: include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Onglet Réseau Personnel"
 
-#: ../../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: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: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:49
+msgid "Network New Tab"
+msgstr "Nouvel onglet réseaux"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Nom du nouvel utilisateur."
+#: 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:1030
-msgid "Nickname"
-msgstr "Pseudo"
+#: include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Onglet réseau partagé"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Pseudo du nouvel utilisateur."
+#: 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:1031
-msgid "Email address of the new user."
-msgstr "Adresse mail du nouvel utilisateur."
+#: include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "outils de publication/commentaire"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+#: include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Suppression multiple"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
+#: 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:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Désactiver"
+#: include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Activer"
+#: 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:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Activer/Désactiver"
+#: include/features.php:58
+msgid "Tagging"
+msgstr "Étiquettage"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Auteur: "
+#: include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Possibilité d'étiqueter les publications existantes"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Mainteneur: "
+#: include/features.php:59
+msgid "Post Categories"
+msgstr "Catégories des publications"
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Capture d'écran"
+#: include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Possibilité d'afficher les publications sous les répertoires"
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: include/features.php:61
+msgid "Dislike Posts"
+msgstr "Publications non aimées"
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Non supporté]"
+#: include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilité de ne pas aimer les publications/commentaires"
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "Réglages des journaux mis-à-jour."
+#: include/features.php:62
+msgid "Star Posts"
+msgstr "Publications spéciales"
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "Effacer"
+#: 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:1452
-msgid "Enable Debugging"
-msgstr "Activer le déboggage"
+#: include/features.php:63
+msgid "Mute Post Notifications"
+msgstr ""
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "Fichier de journaux"
+#: include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr ""
 
-#: ../../mod/admin.php:1453
+#: include/follow.php:75
+msgid "Connect URL missing."
+msgstr "URL de connexion manquante."
+
+#: include/follow.php:102
 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."
+"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/admin.php:1454
-msgid "Log level"
-msgstr "Niveau de journalisaton"
+#: include/follow.php:103 include/follow.php:123
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Fermer"
-
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "Hôte FTP"
+#: include/follow.php:121
+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/admin.php:1511
-msgid "FTP Path"
-msgstr "Chemin FTP"
+#: include/follow.php:125
+msgid "An author or name was not found."
+msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "Utilisateur FTP"
+#: include/follow.php:127
+msgid "No browser URL could be matched to this address."
+msgstr "Aucune URL de navigation ne correspond à cette adresse."
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "Mot de passe FTP"
+#: include/follow.php:129
+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/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/follow.php:130
+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/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:136
+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/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:146
+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/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: include/follow.php:249
+msgid "Unable to retrieve contact information."
+msgstr "Impossible de récupérer les informations du contact."
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
+#: include/follow.php:302
+msgid "following"
+msgstr "following"
 
-#: ../../mod/openid.php:53
+#: include/group.php:25
 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."
+"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:142
-msgid "Search Results For:"
-msgstr "Résultats pour:"
+#: 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:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: include/group.php:226
+msgid "Everybody"
+msgstr "Tout le monde"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Tri par commentaires"
+#: include/group.php:249
+msgid "edit"
+msgstr "éditer"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Trier par date de commentaire"
+#: include/group.php:271
+msgid "Edit group"
+msgstr "Editer groupe"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Tri des publications"
+#: include/group.php:272
+msgid "Create a new group"
+msgstr "Créer un nouveau groupe"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Trier par date de publication"
+#: include/group.php:275
+msgid "Contacts not in any group"
+msgstr "Contacts n'appartenant à aucun groupe"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
+#: include/datetime.php:43 include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Divers"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nouveau"
+#: include/datetime.php:141
+msgid "YYYY-MM-DD or MM-DD"
+msgstr ""
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Flux d'activités - par date"
+#: include/datetime.php:256
+msgid "never"
+msgstr "jamais"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Liens partagés"
+#: include/datetime.php:262
+msgid "less than a second ago"
+msgstr "il y a moins d'une seconde"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Liens intéressants"
+#: include/datetime.php:272
+msgid "year"
+msgstr "an"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Mis en avant"
+#: include/datetime.php:272
+msgid "years"
+msgstr "ans"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+#: include/datetime.php:273
+msgid "month"
+msgstr "mois"
 
-#: ../../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:273
+msgid "months"
+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:274
+msgid "week"
+msgstr "semaine"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Groupe inexistant"
+#: include/datetime.php:274
+msgid "weeks"
+msgstr "semaines"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Groupe vide"
+#: include/datetime.php:275
+msgid "day"
+msgstr "jour"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Groupe: "
+#: include/datetime.php:275
+msgid "days"
+msgstr "jours"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Contact: "
+#: include/datetime.php:276
+msgid "hour"
+msgstr "heure"
 
-#: ../../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:276
+msgid "hours"
+msgstr "heures"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Contact invalide."
+#: include/datetime.php:277
+msgid "minute"
+msgstr "minute"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- choisir -"
+#: include/datetime.php:277
+msgid "minutes"
+msgstr "minutes"
 
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Motorisé par Friendica version"
+#: include/datetime.php:278
+msgid "second"
+msgstr "seconde"
 
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "hébergé sur"
+#: include/datetime.php:278
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../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:287
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s auparavant"
 
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs: rendez vous sur"
+#: include/datetime.php:459 include/items.php:2431
+#, php-format
+msgid "%s's birthday"
+msgstr "Anniversaire de %s's"
 
-#: ../../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:460 include/items.php:2432
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Joyeux anniversaire, %s !"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/greffons/applications installées:"
+#: include/identity.php:38
+msgid "Requested account is not available."
+msgstr "Le compte demandé n'est pas disponible."
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Extensions/greffons/applications non installées:"
+#: include/identity.php:121 include/identity.php:255 include/identity.php:607
+msgid "Edit profile"
+msgstr "Editer le profil"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Applications"
+#: include/identity.php:220
+msgid "Message"
+msgstr "Message"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: include/identity.php:226 include/nav.php:176
+msgid "Profiles"
+msgstr "Profils"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: include/identity.php:226
+msgid "Manage/edit profiles"
+msgstr "Gérer/éditer les profils"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: include/identity.php:341
+msgid "Network:"
+msgstr "Réseau"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album introuvable."
+#: include/identity.php:373 include/identity.php:459
+msgid "g A l F d"
+msgstr "g A | F d"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: include/identity.php:374 include/identity.php:460
+msgid "F d"
+msgstr "F d"
 
-#: ../../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/identity.php:419 include/identity.php:506
+msgid "[today]"
+msgstr "[aujourd'hui]"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: include/identity.php:431
+msgid "Birthday Reminders"
+msgstr "Rappels d'anniversaires"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Voulez-vous vraiment supprimer cette photo ?"
+#: include/identity.php:432
+msgid "Birthdays this week:"
+msgstr "Anniversaires cette semaine:"
 
-#: ../../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/identity.php:493
+msgid "[No description]"
+msgstr "[Sans description]"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "une photo"
+#: include/identity.php:517
+msgid "Event Reminders"
+msgstr "Rappels d'événements"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "L'image dépasse la taille maximale de  "
+#: include/identity.php:518
+msgid "Events this week:"
+msgstr "Evénements cette semaine :"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: include/identity.php:545
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: include/identity.php:546
+msgid "j F"
+msgstr "j F"
 
-#: ../../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/identity.php:553
+msgid "Birthday:"
+msgstr "Anniversaire:"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: include/identity.php:557
+msgid "Age:"
+msgstr "Age:"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nom du nouvel album: "
+#: include/identity.php:566
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant: "
+#: include/identity.php:575
+msgid "Tags:"
+msgstr "Étiquette:"
 
-#: ../../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/identity.php:579
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Permissions"
+#: include/identity.php:583
+msgid "Hobbies/Interests:"
+msgstr "Passe-temps/Centres d'intérêt:"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Photo privée"
+#: include/identity.php:590
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées/Réseaux sociaux:"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Photo publique"
+#: include/identity.php:592
+msgid "Musical interests:"
+msgstr "Goûts musicaux:"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: include/identity.php:594
+msgid "Books, literature:"
+msgstr "Lectures:"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Plus récent d'abord"
+#: include/identity.php:596
+msgid "Television:"
+msgstr "Télévision:"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Plus ancien d'abord"
+#: include/identity.php:598
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/Danse/Culture/Divertissement:"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Voir la photo"
+#: include/identity.php:600
+msgid "Love/Romance:"
+msgstr "Amour/Romance:"
 
-#: ../../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/identity.php:602
+msgid "Work/employment:"
+msgstr "Activité professionnelle/Occupation:"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: include/identity.php:604
+msgid "School/education:"
+msgstr "Études/Formation:"
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Voir photo"
+#: include/identity.php:632 include/nav.php:76
+msgid "Status"
+msgstr "Statut"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: include/identity.php:635
+msgid "Status Messages and Posts"
+msgstr "Messages d'état et publications"
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: include/identity.php:642
+msgid "Profile Details"
+msgstr "Détails du profil"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: include/identity.php:653 include/identity.php:656 include/nav.php:79
+msgid "Videos"
+msgstr "Vidéos"
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Étiquettes:"
+#: include/identity.php:666
+msgid "Events and Calendar"
+msgstr "Événements et agenda"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
+#: include/identity.php:673
+msgid "Only You Can See This"
+msgstr "Vous seul pouvez voir ça"
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
+#: include/acl_selectors.php:324
+msgid "Post to Email"
+msgstr "Publier aux courriels"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
+#: include/acl_selectors.php:329
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: include/acl_selectors.php:335
+msgid "Visible to everybody"
+msgstr "Visible par tout le monde"
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Titre"
+#: include/acl_selectors.php:336 view/theme/diabook/config.php:142
+#: view/theme/diabook/theme.php:621
+msgid "show"
+msgstr "montrer"
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: include/acl_selectors.php:337 view/theme/diabook/config.php:142
+#: view/theme/diabook/theme.php:621
+msgid "don't show"
+msgstr "cacher"
 
-#: ../../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/message.php:15 include/message.php:172
+msgid "[no subject]"
+msgstr "[pas de sujet]"
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Photo privée"
+#: include/Contact.php:119
+msgid "stopped following"
+msgstr "retiré de la liste de suivi"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Photo publique"
+#: include/Contact.php:232 include/conversation.php:881
+msgid "Poke"
+msgstr "Sollicitations (pokes)"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: include/Contact.php:233 include/conversation.php:875
+msgid "View Status"
+msgstr "Voir les statuts"
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr ""
+#: include/Contact.php:234 include/conversation.php:876
+msgid "View Profile"
+msgstr "Voir le profil"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact ajouté"
+#: include/Contact.php:235 include/conversation.php:877
+msgid "View Photos"
+msgstr "Voir les photos"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Migrer le compte"
+#: include/Contact.php:236 include/Contact.php:259
+#: include/conversation.php:878
+msgid "Network Posts"
+msgstr "Publications du réseau"
 
-#: ../../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/Contact.php:237 include/Contact.php:259
+#: include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Éditer le contact"
 
-#: ../../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/Contact.php:238
+msgid "Drop Contact"
+msgstr "Supprimer le contact"
 
-#: ../../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/Contact.php:239 include/Contact.php:259
+#: include/conversation.php:880
+msgid "Send PM"
+msgstr "Message privé"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Fichier du compte"
+#: include/security.php:22
+msgid "Welcome "
+msgstr "Bienvenue "
+
+#: include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Merci d'illustrer votre profil d'une image."
+
+#: include/security.php:26
+msgid "Welcome back "
+msgstr "Bienvenue à nouveau, "
 
-#: ../../mod/uimport.php:70
+#: include/security.php:375
 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\""
+"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/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "La limite d'invitation totale est éxédée."
+#: include/conversation.php:118 include/conversation.php:245
+#: include/text.php:1998 view/theme/diabook/theme.php:463
+msgid "event"
+msgstr "évènement"
 
-#: ../../mod/invite.php:49
+#: include/conversation.php:206
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+msgid "%1$s poked %2$s"
+msgstr "%1$s a sollicité %2$s"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Rejoignez-nous sur Friendica"
+#: include/conversation.php:290
+msgid "post/item"
+msgstr "publication/élément"
 
-#: ../../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/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"
+
+#: include/conversation.php:771
+msgid "remove"
+msgstr "enlever"
+
+#: include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Supprimer les éléments sélectionnés"
+
+#: include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Suivre le fil"
 
-#: ../../mod/invite.php:89
+#: include/conversation.php:943
 #, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
+msgid "%s likes this."
+msgstr "%s aime ça."
 
-#: ../../mod/invite.php:93
+#: include/conversation.php:943
 #, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+msgid "%s doesn't like this."
+msgstr "%s n'aime pas ça."
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: 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/invite.php:120
+#: include/conversation.php:951
 #, 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."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
+
+#: include/conversation.php:965
+msgid "and"
+msgstr "et"
 
-#: ../../mod/invite.php:122
+#: include/conversation.php:971
 #, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
+msgid ", and %d other people"
+msgstr ", et %d autres personnes"
 
-#: ../../mod/invite.php:123
+#: include/conversation.php:973
 #, 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."
+msgid "%s like this."
+msgstr "%s aiment ça."
 
-#: ../../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/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s n'aiment pas ça."
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: include/conversation.php:1000 include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible par <strong>tout le monde</strong>"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne :"
+#: include/conversation.php:1002 include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Entrez un lien/URL video :"
 
-#: ../../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/conversation.php:1003 include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Entrez un lien/URL audio :"
 
-#: ../../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/conversation.php:1004 include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Terme d'étiquette:"
 
-#: ../../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/conversation.php:1006 include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Où êtes-vous présentemment?"
 
-#: ../../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/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Supprimer les élément(s) ?"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accès refusé."
+#: include/conversation.php:1076
+msgid "permissions"
+msgstr "permissions"
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
+#: include/conversation.php:1099
+msgid "Post to Groups"
+msgstr "Publier aux groupes"
 
-#: ../../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/conversation.php:1100
+msgid "Post to Contacts"
+msgstr "Publier aux contacts"
 
-#: ../../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/conversation.php:1101
+msgid "Private post"
+msgstr "Message privé"
 
-#: ../../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/network.php:959
+msgid "view full size"
+msgstr "voir en pleine taille"
 
-#: ../../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:299
+msgid "newer"
+msgstr "Plus récent"
 
-#: ../../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:301
+msgid "older"
+msgstr "Plus ancien"
 
-#: ../../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:306
+msgid "prev"
+msgstr "précédent"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est "
+#: include/text.php:308
+msgid "first"
+msgstr "premier"
 
-#: ../../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:340
+msgid "last"
+msgstr "dernier"
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: include/text.php:343
+msgid "next"
+msgstr "suivant"
 
-#: ../../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:398
+msgid "Loading more entries..."
+msgstr ""
 
-#: ../../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:399
+msgid "The end"
+msgstr ""
 
-#: ../../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:878
+msgid "No contacts"
+msgstr "Aucun contact"
 
-#: ../../mod/lostpass.php:147
+#: include/text.php:887
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Votre mot de passe a été modifié à %s"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacts"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié ?"
+#: include/text.php:1027
+msgid "poke"
+msgstr "titiller"
 
-#: ../../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:1027
+msgid "poked"
+msgstr "a titillé"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Pseudo ou eMail : "
+#: include/text.php:1028
+msgid "ping"
+msgstr "attirer l'attention"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Réinitialiser"
+#: include/text.php:1028
+msgid "pinged"
+msgstr "a attiré l'attention de"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texte source (bbcode) :"
+#: include/text.php:1029
+msgid "prod"
+msgstr "aiguillonner"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texte source (Diaspora) à convertir en BBcode :"
+#: include/text.php:1029
+msgid "prodded"
+msgstr "a aiguillonné"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Source input : "
+#: include/text.php:1030
+msgid "slap"
+msgstr "gifler"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML brut)"
+#: include/text.php:1030
+msgid "slapped"
+msgstr "a giflé"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html : "
+#: include/text.php:1031
+msgid "finger"
+msgstr "tripoter"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb : "
+#: include/text.php:1031
+msgid "fingered"
+msgstr "a tripoté"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md : "
+#: include/text.php:1032
+msgid "rebuff"
+msgstr "rabrouer"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html : "
+#: include/text.php:1032
+msgid "rebuffed"
+msgstr "a rabroué"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb : "
+#: include/text.php:1046
+msgid "happy"
+msgstr "heureuse"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb : "
+#: include/text.php:1047
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Texte source (format Diaspora) :"
+#: include/text.php:1048
+msgid "mellow"
+msgstr "suave"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb :"
+#: include/text.php:1049
+msgid "tired"
+msgstr "fatiguée"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette supprimée"
+#: include/text.php:1050
+msgid "perky"
+msgstr "guillerette"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: include/text.php:1051
+msgid "angry"
+msgstr "colérique"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Sélectionner une étiquette à supprimer: "
+#: include/text.php:1052
+msgid "stupified"
+msgstr "stupéfaite"
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Supprimer mon compte"
+#: include/text.php:1053
+msgid "puzzled"
+msgstr "perplexe"
 
-#: ../../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:1054
+msgid "interested"
+msgstr "intéressée"
 
-#: ../../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:1055
+msgid "bitter"
+msgstr "amère"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: include/text.php:1056
+msgid "cheerful"
+msgstr "entraînante"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
+#: include/text.php:1057
+msgid "alive"
+msgstr "vivante"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visible par"
+#: include/text.php:1058
+msgid "annoyed"
+msgstr "ennuyée"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: include/text.php:1059
+msgid "anxious"
+msgstr "anxieuse"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: include/text.php:1060
+msgid "cranky"
+msgstr "excentrique"
 
-#: ../../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:1061
+msgid "disturbed"
+msgstr "dérangée"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "s'intéresse à :"
+#: include/text.php:1062
+msgid "frustrated"
+msgstr "frustrée"
 
-#: ../../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/text.php:1063
+msgid "motivated"
+msgstr "motivée"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: include/text.php:1064
+msgid "relaxed"
+msgstr "détendue"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: include/text.php:1065
+msgid "surprised"
+msgstr "surprise"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: include/text.php:1235
+msgid "Monday"
+msgstr "Lundi"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Précédent"
+#: include/text.php:1235
+msgid "Tuesday"
+msgstr "Mardi"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Suivant"
+#: include/text.php:1235
+msgid "Wednesday"
+msgstr "Mercredi"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "heures:minutes"
+#: include/text.php:1235
+msgid "Thursday"
+msgstr "Jeudi"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: include/text.php:1235
+msgid "Friday"
+msgstr "Vendredi"
 
-#: ../../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/text.php:1235
+msgid "Saturday"
+msgstr "Samedi"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Début de l'événement :"
+#: include/text.php:1235
+msgid "Sunday"
+msgstr "Dimanche"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Requis"
+#: include/text.php:1239
+msgid "January"
+msgstr "Janvier"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date / heure de fin inconnue ou sans objet"
+#: include/text.php:1239
+msgid "February"
+msgstr "Février"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Fin de l'événement:"
+#: include/text.php:1239
+msgid "March"
+msgstr "Mars"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: include/text.php:1239
+msgid "April"
+msgstr "Avril"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Description:"
+#: include/text.php:1239
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titre :"
+#: include/text.php:1239
+msgid "June"
+msgstr "Juin"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: include/text.php:1239
+msgid "July"
+msgstr "Juillet"
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: include/text.php:1239
+msgid "August"
+msgstr "Août"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: include/text.php:1239
+msgid "September"
+msgstr "Septembre"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: include/text.php:1239
+msgid "October"
+msgstr "Octobre"
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} a commenté la publication de %s"
+#: include/text.php:1239
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} a aimé la publication de %s"
+#: include/text.php:1239
+msgid "December"
+msgstr "Décembre"
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} n'a pas aimé la publication de %s"
+#: include/text.php:1461
+msgid "bytes"
+msgstr "octets"
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} est désormais ami(e) avec %s"
+#: include/text.php:1493 include/text.php:1505
+msgid "Click to open/close"
+msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} a publié"
+#: include/text.php:1734 include/user.php:255
+#: view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "défaut"
 
-#: ../../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/text.php:1746
+msgid "Select an alternate language"
+msgstr "Choisir une langue alternative"
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vous a mentionné dans une publication"
+#: include/text.php:2002
+msgid "activity"
+msgstr "activité"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humeur"
+#: include/text.php:2005
+msgid "post"
+msgstr "publication"
 
-#: ../../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/text.php:2173
+msgid "Item filed"
+msgstr "Élément classé"
 
-#: ../../mod/search.php:174 ../../mod/community.php:62
-#: ../../mod/community.php:71
-msgid "No results."
-msgstr "Aucun résultat."
+#: include/bbcode.php:451 include/bbcode.php:1105 include/bbcode.php:1106
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: include/bbcode.php:549
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Voulez-vous vraiment supprimer ce message ?"
+#: include/bbcode.php:583
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr ""
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: include/bbcode.php:1069 include/bbcode.php:1089
+msgid "$1 wrote:"
+msgstr "$1 a écrit:"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: include/bbcode.php:1114 include/bbcode.php:1115
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Aucun message."
+#: include/notifier.php:829 include/delivery.php:456
+msgid "(no subject)"
+msgstr "(sans titre)"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Émetteur inconnu - %s"
+#: include/notifier.php:839 include/delivery.php:467 include/enotify.php:33
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/message.php:381
+#: include/dba_pdo.php:72 include/dba.php:56
 #, php-format
-msgid "You and %s"
-msgstr "Vous et %s"
+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/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s et vous"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Inconnu | Non-classé"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquer immédiatement"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Douteux, spammeur, accro à l'auto-promotion"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Connu de moi, mais sans opinion"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Message indisponible."
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probablement inoffensif"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Effacer message"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Réputé, a toute ma confiance"
 
-#: ../../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/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Chaque semaine"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Répondre"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Chaque mois"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Indisponible."
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../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/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Ce profil ne peut être cloné."
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Statut marital"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Partenaire / conjoint"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Derniers \"J'aime\""
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Connecteur Diaspora"
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Derniers \"Je n'aime pas\""
+#: include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Travail / Occupation"
+#: include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/profiles.php:359
-msgid "Religion"
-msgstr "Religion"
+#: include/contact_selectors.php:103
+msgid "Redmatrix"
+msgstr ""
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Tendance politique"
+#: include/Scrape.php:603
+msgid " on Last.fm"
+msgstr "sur Last.fm"
 
-#: ../../mod/profiles.php:367
-msgid "Gender"
-msgstr "Sexe"
+#: include/bb2diaspora.php:154 include/event.php:22
+msgid "Starts:"
+msgstr "Débute:"
 
-#: ../../mod/profiles.php:371
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
+#: include/bb2diaspora.php:162 include/event.php:32
+msgid "Finishes:"
+msgstr "Finit:"
 
-#: ../../mod/profiles.php:375
-msgid "Homepage"
-msgstr "Site internet"
+#: include/plugin.php:455 include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
-msgid "Interests"
-msgstr "Centres d'intérêt"
+#: 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:383
-msgid "Address"
-msgstr "Adresse"
+#: 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:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Localisation"
+#: include/nav.php:73
+msgid "End this session"
+msgstr "Mettre fin à cette session"
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: 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:568
-msgid " and "
-msgstr " et "
+#: include/nav.php:77 view/theme/diabook/theme.php:124
+msgid "Your profile page"
+msgstr "Votre page de profil"
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "profil public"
+#: include/nav.php:78 view/theme/diabook/theme.php:126
+msgid "Your photos"
+msgstr "Vos photos"
 
-#: ../../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:79
+msgid "Your videos"
+msgstr "Vos vidéos"
 
-#: ../../mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "Visiter le %2$s de %1$s"
+#: include/nav.php:80 view/theme/diabook/theme.php:127
+msgid "Your events"
+msgstr "Vos événements"
 
-#: ../../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:81 view/theme/diabook/theme.php:128
+msgid "Personal notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
-msgstr "Cacher mes contacts et amis :"
+#: include/nav.php:81
+msgid "Your personal notes"
+msgstr "Vos notes personnelles"
 
-#: ../../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:92
+msgid "Sign in"
+msgstr "Se connecter"
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Page d'accueil"
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Créer un compte"
 
-#: ../../mod/profiles.php:688
-msgid "View this profile"
-msgstr "Voir ce profil"
-
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil en utilisant ces réglages"
-
-#: ../../mod/profiles.php:690
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
-
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
-
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr "Information de base"
-
-#: ../../mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Image de profil"
-
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr "Préférences"
+#: include/nav.php:114
+msgid "Help and documentation"
+msgstr "Aide et documentation"
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr "Information sur le statut"
+#: include/nav.php:117
+msgid "Apps"
+msgstr "Applications"
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr "Information additionnelle"
+#: include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Applications supplémentaires, utilitaires, jeux"
 
-#: ../../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:119
+msgid "Search site content"
+msgstr "Rechercher dans le contenu du site"
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Nom du profil :"
+#: include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversations ayant cours sur ce site"
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Votre nom complet :"
+#: include/nav.php:131
+msgid "Conversations on the network"
+msgstr ""
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Titre / Description :"
+#: include/nav.php:133
+msgid "Directory"
+msgstr "Annuaire"
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Votre genre :"
+#: include/nav.php:133
+msgid "People directory"
+msgstr "Annuaire des utilisateurs"
 
-#: ../../mod/profiles.php:704
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Anniversaire (%s) :"
+#: include/nav.php:135
+msgid "Information"
+msgstr "Information"
 
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Adresse postale :"
+#: include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Information au sujet de cette instance de friendica"
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Ville / Localité :"
+#: include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Conversations de vos amis"
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "Code postal :"
+#: include/nav.php:146
+msgid "Network Reset"
+msgstr "Réinitialiser le réseau"
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "Pays :"
+#: include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Chargement des pages du réseau sans filtre"
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Région / État :"
+#: include/nav.php:153
+msgid "Friend Requests"
+msgstr "Demande d'amitié"
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Statut marital :"
+#: include/nav.php:157
+msgid "See all notifications"
+msgstr "Voir toute notification"
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Qui : (si pertinent)"
+#: include/nav.php:158
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme 'vues'"
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
+#: include/nav.php:162
+msgid "Private mail"
+msgstr "Messages privés"
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Depuis [date]  :"
+#: include/nav.php:163
+msgid "Inbox"
+msgstr "Messages entrants"
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Page personnelle :"
+#: include/nav.php:164
+msgid "Outbox"
+msgstr "Messages sortants"
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Opinions religieuses :"
+#: include/nav.php:168
+msgid "Manage"
+msgstr "Gérer"
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Mots-clés publics :"
+#: include/nav.php:168
+msgid "Manage other pages"
+msgstr "Gérer les autres pages"
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Mots-clés privés :"
+#: include/nav.php:173
+msgid "Account settings"
+msgstr "Compte"
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Exemple : football dessin programmation"
+#: include/nav.php:176
+msgid "Manage/Edit Profiles"
+msgstr "Gérer/Éditer les profiles"
 
-#: ../../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/nav.php:178
+msgid "Manage/edit friends and contacts"
+msgstr "Gérer/éditer les amitiés et contacts"
 
-#: ../../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/nav.php:185
+msgid "Site setup and configuration"
+msgstr "Démarrage et configuration du site"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Parlez-nous de vous..."
+#: include/nav.php:189
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Passe-temps / Centres d'intérêt"
+#: include/nav.php:189
+msgid "Site map"
+msgstr "Carte du site"
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées / Réseaux sociaux"
+#: include/api.php:310 include/api.php:321 include/api.php:430
+#: include/api.php:1133 include/api.php:1135
+msgid "User not found."
+msgstr "Utilisateur non trouvé"
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: include/api.php:784
+#, 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/profiles.php:730
-msgid "Books, literature"
-msgstr "Lectures"
+#: include/api.php:803
+#, 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:731
-msgid "Television"
-msgstr "Télévision"
+#: include/api.php:822
+#, 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:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma / Danse / Culture / Divertissement"
+#: include/api.php:1342
+msgid "There is no status with this id."
+msgstr "Il n'y a pas de statut avec cet id."
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Amour / Romance"
+#: include/api.php:1416
+msgid "There is no conversation with this id."
+msgstr "Il n'y a pas de conversation avec cet id."
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Activité professionnelle / Occupation"
+#: include/api.php:1686
+msgid "Invalid request."
+msgstr "Requête invalide."
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "Études / Formation"
+#: include/api.php:1697
+msgid "Invalid item."
+msgstr "Item invalide."
 
-#: ../../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 "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
+#: include/api.php:1707
+msgid "Invalid action. "
+msgstr "Action invalide."
 
-#: ../../mod/profiles.php:750 ../../mod/directory.php:113
-msgid "Age: "
-msgstr "Age : "
+#: include/api.php:1715
+msgid "DB error"
+msgstr ""
 
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Editer / gérer les profils"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Serveur de communications Friendica - Configuration"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "L'invitation fournie n'a pu être validée."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base."
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Adresse OpenID invalide"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossible de créer une table."
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Entrez les informations requises."
 
-#: ../../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/user.php:96
+msgid "Please use a shorter name."
+msgstr "Utilisez un nom plus court."
 
-#: ../../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/user.php:98
+msgid "Name too short."
+msgstr "Nom trop court."
 
-#: ../../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/user.php:113
+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/install.php:203
-msgid "System check"
-msgstr "Vérifications système"
+#: include/user.php:118
+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/install.php:208
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr "Ceci n'est pas une adresse courriel valide."
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr "Impossible d'utiliser ce courriel."
 
-#: ../../mod/install.php:228
+#: include/user.php:140
 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."
+"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/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/user.php:146 include/user.php:244
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
 
-#: ../../mod/install.php:230
+#: include/user.php:156
 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/install.php:234
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+"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/install.php:235
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: include/user.php:172
+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/install.php:236
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: include/user.php:230
+msgid "An error occurred during registration. Please try again."
+msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nom de la base"
+#: include/user.php:265
+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/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Adresse électronique de l'administrateur du site"
+#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Amis"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: include/user.php:385
+#, php-format
 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."
+"\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/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/user.php:389
+#, 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."
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Réglages du site"
+#: include/diaspora.php:710
+msgid "Sharing notification from Diaspora network"
+msgstr "Notification de partage du réseau Diaspora"
 
-#: ../../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/diaspora.php:2544
+msgid "Attachments:"
+msgstr "Pièces jointes : "
 
-#: ../../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/items.php:4852
+msgid "Do you really want to delete this item?"
+msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Chemin vers l'exécutable de PHP"
+#: include/items.php:5127
+msgid "Archives"
+msgstr "Archives"
 
-#: ../../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:6
+msgid "Male"
+msgstr "Masculin"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Version \"ligne de commande\" de PHP"
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "Féminin"
 
-#: ../../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:6
+msgid "Currently Male"
+msgstr "Actuellement masculin"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Version de PHP:"
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Actuellement féminin"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Principalement masculin"
 
-#: ../../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:6
+msgid "Mostly Female"
+msgstr "Principalement féminin"
 
-#: ../../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:6
+msgid "Transgender"
+msgstr "Transgenre"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Inter-sexe"
 
-#: ../../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:6
+msgid "Transsexual"
+msgstr "Transsexuel"
 
-#: ../../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:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Générer les clés de chiffrement"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutre"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Module libCurl de PHP"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-spécifique"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Module GD (graphiques) de PHP"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "Autre"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Module OpenSSL de PHP"
+#: include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indécis"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Module Mysqli de PHP"
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "Hommes"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Module mb_string de PHP"
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmes"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Module mod_rewrite Apache"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../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:23
+msgid "Lesbian"
+msgstr "Lesbienne"
 
-#: ../../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:23
+msgid "No Preference"
+msgstr "Sans préférence"
 
-#: ../../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:23
+msgid "Bisexual"
+msgstr "Bisexuel"
 
-#: ../../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:23
+msgid "Autosexual"
+msgstr "Auto-sexuel"
 
-#: ../../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:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../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:23
+msgid "Virgin"
+msgstr "Vierge"
 
-#: ../../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:23
+msgid "Deviant"
+msgstr "Déviant"
 
-#: ../../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:23
+msgid "Fetish"
+msgstr "Fétichiste"
 
-#: ../../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:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../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:23
+msgid "Nonsexual"
+msgstr "Non-sexuel"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Fichier .htconfig.php accessible en écriture"
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "Célibataire"
 
-#: ../../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 "Lonely"
+msgstr "Esseulé"
 
-#: ../../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 "Available"
+msgstr "Disponible"
 
-#: ../../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 "Unavailable"
+msgstr "Indisponible"
 
-#: ../../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 "Has crush"
+msgstr "Attiré par quelqu'un"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 est autorisé à l écriture"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Entiché"
 
-#: ../../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 "Dating"
+msgstr "Dans une relation"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne."
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidèle"
 
-#: ../../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/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Accro au sexe"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Ensuite</h1>"
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amis par intérêt"
 
-#: ../../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/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/help.php:31
-msgid "Help:"
-msgstr "Aide :"
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Fiancé"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Réglages du contact appliqués."
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "Marié"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Impossible d'appliquer les réglages."
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Se croit marié"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Réglages de réparation des contacts"
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partenaire"
 
-#: ../../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/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "En cohabitation"
 
-#: ../../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/profile_selectors.php:42
+msgid "Common law"
+msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Retour à l'éditeur de contact"
+#: include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Heureux"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Pas intéressé"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Échangiste"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Trahi(e)"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Pseudo du compte"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Séparé"
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instable"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL du compte"
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorcé"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "Echec du téléversement de l'image."
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Se croit divorcé"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "Accès public refusé."
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Veuf/Veuve"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "Aucune photo sélectionnée"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incertain"
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Téléverser des photos"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "C'est compliqué"
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nouvelle photo depuis cette URL"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "S'en désintéresse"
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Me demander"
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr ""
+#: include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Notification Friendica"
 
-#: ../../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:21
+msgid "Thank You,"
+msgstr "Merci, "
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bienvenue sur Friendica"
+#: include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "L'administrateur de %s"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: include/enotify.php:64
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../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:78
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Bien démarrer"
+#: include/enotify.php:80
+#, 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/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica pas-à-pas"
+#: include/enotify.php:81
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %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:81
+msgid "a private message"
+msgstr "un message privé"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Éditer vos Réglages"
+#: include/enotify.php:82
+#, 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/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:134
+#, 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/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:141
+#, 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/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:149
+#, 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/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Éditer votre Profil"
+#: include/enotify.php:159
+#, 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/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."
+#: include/enotify.php:160
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s a commenté un élément que vous suivez."
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Mots-clés du profil"
+#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191
+#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235
+#, 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/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."
+#: include/enotify.php:170
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Connexions"
+#: include/enotify.php:172
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s a publié sur votre mur à %2$s"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "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."
+#: include/enotify.php:174
+#, 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/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."
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notification] %s vous a étiqueté"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importer courriels"
+#: include/enotify.php:186
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s vous a étiqueté sur %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 "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:187
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Consulter vos Contacts"
+#: include/enotify.php:198
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notification] %s partage une nouvelle publication"
 
-#: ../../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:199
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s a partagé une nouvelle publication sur %2$s"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Consulter l'Annuaire de votre Site"
+#: include/enotify.php:200
+#, 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: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:212
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s vous a sollicité"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Trouver de nouvelles personnes"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s vous a sollicité via %2$s"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "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:214
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grouper vos contacts"
+#: include/enotify.php:229
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notification] %s a étiqueté votre publication"
 
-#: ../../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:230
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s a étiqueté votre publication sur %2$s"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Pourquoi mes éléments ne sont pas publics ?"
+#: include/enotify.php:231
+#, 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:73
+#: include/enotify.php:242
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notification] Introduction reçue"
+
+#: include/enotify.php:243
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
+
+#: include/enotify.php:244
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
+
+#: include/enotify.php:247 include/enotify.php:289
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter son profil sur %s"
+
+#: include/enotify.php:249
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
+
+#: include/enotify.php:257
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
+
+#: include/enotify.php:258 include/enotify.php:259
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
+
+#: include/enotify.php:265
+msgid "[Friendica:Notify] You have a new follower"
+msgstr ""
+
+#: include/enotify.php:266 include/enotify.php:267
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr ""
+
+#: include/enotify.php:280
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
+
+#: include/enotify.php:281
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
+
+#: include/enotify.php:282
+#, php-format
 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."
+"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/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtenir de l'aide"
+#: include/enotify.php:287
+msgid "Name:"
+msgstr "Nom :"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Aller à la section Aide"
+#: include/enotify.php:288
+msgid "Photo:"
+msgstr "Photo :"
+
+#: include/enotify.php:291
+#, 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:82
+#: include/enotify.php:299 include/enotify.php:312
+msgid "[Friendica:Notify] Connection accepted"
+msgstr ""
+
+#: include/enotify.php:300 include/enotify.php:313
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr ""
+
+#: include/enotify.php:301 include/enotify.php:314
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr ""
+
+#: include/enotify.php:304
 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."
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr ""
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Solliciter"
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr ""
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "solliciter (poke/...) quelqu'un"
+#: include/enotify.php:317
+#, 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:194
-msgid "Recipient"
-msgstr "Destinataire"
+#: include/enotify.php:319
+#, 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:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisissez ce que vous voulez faire au destinataire"
+#: include/enotify.php:332
+msgid "[Friendica System:Notify] registration request"
+msgstr ""
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendez ce message privé"
+#: include/enotify.php:333
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "Cet élément a été enlevé."
+#: include/enotify.php:334
+#, 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/subthread.php:103
+#: include/enotify.php:337
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit les %3$s de %2$s"
+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/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: include/enotify.php:340
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s accueille %2$s"
+msgid "Please visit %s to approve or reject the request."
+msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
 
-#: ../../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:224
+msgid "Embedded content"
+msgstr "Contenu incorporé"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Réponse du site distant incomprise."
+#: include/oembed.php:233
+msgid "Embedding disabled"
+msgstr "Incorporation désactivée"
 
-#: ../../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:94
+msgid "Error decoding account file"
+msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Confirmation achevée avec succès."
+#: 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:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Alerte du site distant : "
+#: include/uimport.php:116 include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erreur! Pseudo invalide"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Échec temporaire. Merci de recommencer ultérieurement."
+#: 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:284
-msgid "Introduction failed or was revoked."
-msgstr "Introduction échouée ou annulée."
+#: include/uimport.php:153
+msgid "User creation error"
+msgstr "Erreur de création d'utilisateur"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Impossible de définir la photo du contact."
+#: include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erreur de création du profil utilisateur"
 
-#: ../../mod/dfrn_confirm.php:571
+#: include/uimport.php:220
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Pas d'utilisateur trouvé pour '%s' "
+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/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "Notre clé de chiffrement de site est apparemment corrompue."
+#: 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/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."
+#: index.php:441
+msgid "toggle mobile"
+msgstr "activ. mobile"
 
-#: ../../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: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: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: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: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:85
+msgid "Set theme width"
+msgstr "Largeur du thème"
 
-#: ../../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/cleanzero/config.php:86 view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Palette de couleurs"
 
-#: ../../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: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:797
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s a rejoint %2$s"
+#: view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication originale."
+#: view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alignement"
 
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "Publication vide rejetée."
+#: view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Gauche"
 
-#: ../../mod/item.php:839
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvée."
+#: view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centre"
 
-#: ../../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:69
+msgid "Posts font size"
+msgstr "Taille de texte des publications"
 
-#: ../../mod/item.php:967
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
+#: view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Taille de police des zones de texte"
 
-#: ../../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:153
+msgid "Set resolution for middle column"
+msgstr "Réglez la résolution de la colonne centrale"
 
-#: ../../mod/item.php:972
-#, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+#: view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../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:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Niveau de zoom"
 
-#: ../../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: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: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: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:128
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: 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:242
-msgid "Upload File:"
-msgstr "Fichier à téléverser:"
+#: 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:243
-msgid "Select a profile:"
-msgstr "Choisir un profil:"
+#: 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:245
-msgid "Upload"
-msgstr "Téléverser"
+#: 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:248
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: 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 "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: 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:262
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: 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: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:165 view/theme/diabook/theme.php:486
+#: view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Dernières photos"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: 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:299
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vos contacts"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amis de %s"
+#: view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Vos photos personnelles"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
+#: view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Annuaire local"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: 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:62
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: 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:116
-msgid "Gender: "
-msgstr "Genre : "
+#: view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "Définir le style"
 
-#: ../../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:45
+msgid "greenzero"
+msgstr ""
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+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:47
+msgid "easterbunny"
+msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr ""
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+#: view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr ""
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variations"
index 168c786811bb3828175a1a32d98e776907c7e08c..17e4de210ad3dc015f790bc6c115348521d19880 100644 (file)
@@ -5,986 +5,44 @@ function string_plural_select_fr($n){
        return ($n > 1);;
 }}
 ;
-$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["%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["Permission denied."] = "Permission refusée.";
-$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["Contact has been blocked"] = "Le contact a été bloqué";
+$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
+$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
+$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
+$a->strings["Contact has been archived"] = "Contact archivé";
+$a->strings["Contact has been unarchived"] = "Contact désarchivé";
+$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
 $a->strings["Yes"] = "Oui";
 $a->strings["Cancel"] = "Annuler";
-$a->strings["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["Contact has been removed."] = "Ce contact a été retiré.";
+$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
+$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
+$a->strings["%s is sharing with you"] = "%s partage avec vous";
+$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
+$a->strings["Never"] = "Jamais";
+$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
+$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
+$a->strings["Suggest friends"] = "Suggérer amitié/contact";
+$a->strings["Network type: %s"] = "Type de réseau %s";
 $a->strings["%d contact in common"] = array(
        0 => "%d contact en commun",
        1 => "%d contacts en commun",
 );
-$a->strings["Friendica Notification"] = "Notification Friendica";
-$a->strings["Thank You,"] = "Merci, ";
-$a->strings["%s Administrator"] = "L'administrateur de %s";
-$a->strings["noreply"] = "noreply";
-$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["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:";
-$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["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 videos"] = "Vos vidéos";
-$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"] = "";
-$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["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["%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";
-$a->strings["Currently Female"] = "Actuellement féminin";
-$a->strings["Mostly Male"] = "Principalement masculin";
-$a->strings["Mostly Female"] = "Principalement féminin";
-$a->strings["Transgender"] = "Transgenre";
-$a->strings["Intersex"] = "Inter-sexe";
-$a->strings["Transsexual"] = "Transsexuel";
-$a->strings["Hermaphrodite"] = "Hermaphrodite";
-$a->strings["Neuter"] = "Neutre";
-$a->strings["Non-specific"] = "Non-spécifique";
-$a->strings["Other"] = "Autre";
-$a->strings["Undecided"] = "Indécis";
-$a->strings["Males"] = "Hommes";
-$a->strings["Females"] = "Femmes";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbienne";
-$a->strings["No Preference"] = "Sans préférence";
-$a->strings["Bisexual"] = "Bisexuel";
-$a->strings["Autosexual"] = "Auto-sexuel";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Vierge";
-$a->strings["Deviant"] = "Déviant";
-$a->strings["Fetish"] = "Fétichiste";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Non-sexuel";
-$a->strings["Single"] = "Célibataire";
-$a->strings["Lonely"] = "Esseulé";
-$a->strings["Available"] = "Disponible";
-$a->strings["Unavailable"] = "Indisponible";
-$a->strings["Has crush"] = "Attiré par quelqu'un";
-$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é";
-$a->strings["Married"] = "Marié";
-$a->strings["Imaginarily married"] = "Se croit marié";
-$a->strings["Partners"] = "Partenaire";
-$a->strings["Cohabiting"] = "En cohabitation";
-$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)";
-$a->strings["Happy"] = "Heureux";
-$a->strings["Not looking"] = "Pas intéressé";
-$a->strings["Swinger"] = "Échangiste";
-$a->strings["Betrayed"] = "Trahi(e)";
-$a->strings["Separated"] = "Séparé";
-$a->strings["Unstable"] = "Instable";
-$a->strings["Divorced"] = "Divorcé";
-$a->strings["Imaginarily divorced"] = "Se croit divorcé";
-$a->strings["Widowed"] = "Veuf/Veuve";
-$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["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["Ignore"] = "Ignorer";
 $a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
 $a->strings["Unarchive"] = "Désarchiver";
 $a->strings["Archive"] = "Archiver";
@@ -997,6 +55,7 @@ $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["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";
@@ -1013,13 +72,16 @@ $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["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["Profile URL"] = "URL du Profil";
 $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";
@@ -1031,120 +93,318 @@ $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["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["Find"] = "Trouver";
+$a->strings["Update"] = "Mises-à-jour";
+$a->strings["Delete"] = "Supprimer";
+$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["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["System down for maintenance"] = "Système indisponible pour cause de maintenance";
+$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 %s"] = "L'image dépasse la taille limite de %s";
+$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["You already added this contact."] = "Vous avez déjà ajouté ce contact.";
+$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["No"] = "Non";
+$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
+$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
+$a->strings["Submit Request"] = "Envoyer la requête";
+$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["Public access denied."] = "Accès public refusé.";
+$a->strings["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?";
+$a->strings["Delete Video"] = "Supprimer la vidéo";
 $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["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["%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 eMail : ";
+$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["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["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: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:";
+$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: "] = "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:";
+$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["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["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"] = "Pas de miroir";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Refetch contact data"] = "";
+$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 - %s"] = "";
+$a->strings["Connect"] = "Relier";
+$a->strings["No matches"] = "Aucune correspondance";
+$a->strings["Photos"] = "Photos";
 $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["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";
@@ -1163,10 +423,21 @@ $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["Users, Global Contacts"] = "";
+$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["One month"] = "Un mois";
+$a->strings["Three months"] = "Trois mois";
+$a->strings["Half a year"] = "";
+$a->strings["One year"] = "Un an";
 $a->strings["Multi user instance"] = "Instance multi-utilisateurs";
 $a->strings["Closed"] = "Fermé";
 $a->strings["Requires approval"] = "Demande une apptrobation";
@@ -1174,9 +445,12 @@ $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["Auto Discovered Contact Directory"] = "";
 $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";
@@ -1269,6 +543,16 @@ $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["Maximum Load Average (Frontend)"] = "";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
+$a->strings["Periodical check of global contacts"] = "";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
+$a->strings["Discover contacts from other servers"] = "";
+$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "";
+$a->strings["Timeframe for fetching global contacts"] = "";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
+$a->strings["Search the local directory"] = "";
+$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
 $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";
@@ -1290,6 +574,8 @@ $a->strings["The old style pager has page numbers but slows down massively the p
 $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["RINO Encryption"] = "";
+$a->strings["Encryption layer between nodes."] = "";
 $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";
@@ -1305,6 +591,7 @@ $a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'r
 $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é",
@@ -1321,6 +608,7 @@ $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";
@@ -1330,6 +618,7 @@ $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.";
@@ -1358,14 +647,10 @@ $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["Search Results For: %s"] = "";
 $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";
@@ -1384,261 +669,83 @@ $a->strings["Warning: This group contains %s member from an insecure network."]
 $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["Group: %s"] = "";
+$a->strings["Contact: %s"] = "";
 $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["Friends of %s"] = "Amis de %s";
+$a->strings["No friends to display."] = "Pas d'amis à afficher.";
+$a->strings["Event can not end before it has started."] = "";
+$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["Event details"] = "Détails de l'événement";
+$a->strings["Starting date and Title are required."] = "";
+$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["Preview"] = "Aperçu";
+$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["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["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";
+$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["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["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["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["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["Database already in use."] = "";
 $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";
@@ -1670,137 +777,1056 @@ $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["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 %s"] = "";
+$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["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["General Social Media Settings"] = "";
+$a->strings["Disable intelligent shortening"] = "";
+$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "";
+$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
+$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["GNU Social (OStatus)"] = "";
+$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["Theme settings"] = "Réglages du thème graphique";
+$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["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["Activate desktop notifications"] = "";
+$a->strings["Show desktop popup on new notifications"] = "";
+$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["Confirm"] = "Confirmer";
+$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["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["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["Leave empty for an auto generated password."] = "";
+$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["Items tagged with: %s"] = "";
+$a->strings["Search results for: %s"] = "";
+$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 :"] = "";
+$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["the bugtracker at github"] = "";
+$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["Contact Photos"] = "Photos du contact";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Recent Photos"] = "Photos récentes";
+$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 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["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["Do not rotate"] = "";
+$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["Private photo"] = "Photo privée";
+$a->strings["Public photo"] = "Photo publique";
+$a->strings["Share"] = "Partager";
+$a->strings["Not Extended"] = "";
+$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["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["YYYY-MM-DD or MM-DD"] = "";
+$a->strings["never"] = "jamais";
+$a->strings["less than a second ago"] = "il y a moins d'une seconde";
+$a->strings["year"] = "an";
+$a->strings["years"] = "ans";
+$a->strings["month"] = "mois";
+$a->strings["months"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["weeks"] = "semaines";
+$a->strings["day"] = "jour";
+$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["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["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Anniversaire:";
+$a->strings["Age:"] = "Age:";
+$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+$a->strings["Tags:"] = "Étiquette:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
+$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
+$a->strings["Musical interests:"] = "Goûts musicaux:";
+$a->strings["Books, literature:"] = "Lectures:";
+$a->strings["Television:"] = "Télévision:";
+$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
+$a->strings["Love/Romance:"] = "Amour/Romance:";
+$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
+$a->strings["School/education:"] = "Études/Formation:";
+$a->strings["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["Post to Email"] = "Publier aux courriels";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$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["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["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["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["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["bytes"] = "octets";
+$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
+$a->strings["default"] = "défaut";
+$a->strings["Select an alternate language"] = "Choisir une langue alternative";
+$a->strings["activity"] = "activité";
+$a->strings["post"] = "publication";
+$a->strings["Item filed"] = "Élément classé";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$a->strings["$1 wrote:"] = "$1 a écrit:";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["(no subject)"] = "(sans titre)";
+$a->strings["noreply"] = "noreply";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
+$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
+$a->strings["Block immediately"] = "Bloquer immédiatement";
+$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
+$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
+$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
+$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
+$a->strings["Weekly"] = "Chaque semaine";
+$a->strings["Monthly"] = "Chaque mois";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["Redmatrix"] = "";
+$a->strings[" on Last.fm"] = "sur Last.fm";
+$a->strings["Starts:"] = "Débute:";
+$a->strings["Finishes:"] = "Finit:";
+$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["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 and documentation"] = "Aide et documentation";
+$a->strings["Apps"] = "Applications";
+$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux";
+$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"] = "";
+$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["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["Friend Requests"] = "Demande d'amitié";
+$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["Private mail"] = "Messages privés";
+$a->strings["Inbox"] = "Messages entrants";
+$a->strings["Outbox"] = "Messages sortants";
+$a->strings["Manage"] = "Gérer";
+$a->strings["Manage other pages"] = "Gérer les autres pages";
+$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["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["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["Male"] = "Masculin";
+$a->strings["Female"] = "Féminin";
+$a->strings["Currently Male"] = "Actuellement masculin";
+$a->strings["Currently Female"] = "Actuellement féminin";
+$a->strings["Mostly Male"] = "Principalement masculin";
+$a->strings["Mostly Female"] = "Principalement féminin";
+$a->strings["Transgender"] = "Transgenre";
+$a->strings["Intersex"] = "Inter-sexe";
+$a->strings["Transsexual"] = "Transsexuel";
+$a->strings["Hermaphrodite"] = "Hermaphrodite";
+$a->strings["Neuter"] = "Neutre";
+$a->strings["Non-specific"] = "Non-spécifique";
+$a->strings["Other"] = "Autre";
+$a->strings["Undecided"] = "Indécis";
+$a->strings["Males"] = "Hommes";
+$a->strings["Females"] = "Femmes";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbienne";
+$a->strings["No Preference"] = "Sans préférence";
+$a->strings["Bisexual"] = "Bisexuel";
+$a->strings["Autosexual"] = "Auto-sexuel";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Vierge";
+$a->strings["Deviant"] = "Déviant";
+$a->strings["Fetish"] = "Fétichiste";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Non-sexuel";
+$a->strings["Single"] = "Célibataire";
+$a->strings["Lonely"] = "Esseulé";
+$a->strings["Available"] = "Disponible";
+$a->strings["Unavailable"] = "Indisponible";
+$a->strings["Has crush"] = "Attiré par quelqu'un";
+$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/Benefits"] = "Amis par intérêt";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Fiancé";
+$a->strings["Married"] = "Marié";
+$a->strings["Imaginarily married"] = "Se croit marié";
+$a->strings["Partners"] = "Partenaire";
+$a->strings["Cohabiting"] = "En cohabitation";
+$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)";
+$a->strings["Happy"] = "Heureux";
+$a->strings["Not looking"] = "Pas intéressé";
+$a->strings["Swinger"] = "Échangiste";
+$a->strings["Betrayed"] = "Trahi(e)";
+$a->strings["Separated"] = "Séparé";
+$a->strings["Unstable"] = "Instable";
+$a->strings["Divorced"] = "Divorcé";
+$a->strings["Imaginarily divorced"] = "Se croit divorcé";
+$a->strings["Widowed"] = "Veuf/Veuve";
+$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"] = "[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 accepted 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["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["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"] = "Variations";
index 0033418b8695121df2e064d2b7cd487479c3b7c1..94896ea232fbacf39411e424bdd75196a53e052d 100644 (file)
@@ -180,15 +180,30 @@ span.oembed, h4 {
 
 
 /* plain text editor upload/select popup */
-\r
-.fbrowser .path a { padding: 5px; }\r
+
+.fbrowser .path a { padding: 5px; }
 .fbrowser .path a:before { content: "/"; padding-right: 5px;}
 .fbrowser .folders ul { list-style-type: none; padding-left: 10px;}
-.fbrowser .list { height: auto; overflow-y: hidden; margin: 10px 0px; }\r
-.fbrowser.image .photo-album-image-wrapper { float: left; }\r
+.fbrowser .list { height: auto; overflow-y: hidden; margin: 10px 0px; }
+.fbrowser.image .photo-album-image-wrapper { float: left; }
 .fbrowser.image a img { height: 48px; }
-.fbrowser.image a p { display: none;}\r
-.fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; }\r
-.fbrowser.file img { display: inline; }\r
+.fbrowser.image a p { display: none;}
+.fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; }
+.fbrowser.file img { display: inline; }
 .fbrowser.file p  { display: inline; white-space: nowrap; }
-.fbrowser .upload { clear: both; padding-top: 1em;}\r
+.fbrowser .upload { clear: both; padding-top: 1em;}
+
+a {
+  cursor: pointer;
+}
+
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  padding: 0;
+  margin: -1px;
+  overflow: hidden;
+  clip: rect(0,0,0,0);
+  border: 0;
+}
index c1220bc1e301a6d9645a7911c4736beb08ecbbdf..bf9470b64efa65e3165a69512654016b14d5b7f4 100644 (file)
@@ -1,7 +1,7 @@
 
 <div id="acl-wrapper">
        <input id="acl-search">
-       <a href="#" id="acl-showall">{{$showall}}</a>
+       <a id="acl-showall">{{$showall}}</a>
        <div id="acl-list">
                <div id="acl-list-content">
                </div>
@@ -11,8 +11,8 @@
 
 <div class="acl-list-item" rel="acl-template" style="display:none">
        <img data-src="{0}"><p>{1}</p>
-       <a href="#" class='acl-button-show'>{{$show}}</a>
-       <a href="#" class='acl-button-hide'>{{$hide}}</a>
+       <a class='acl-button-show'>{{$show}}</a>
+       <a class='acl-button-hide'>{{$hide}}</a>
 </div>
 
 {{if $networks}}
index 9f12709042f876de8de6476ffbc329d8258c83f2..988c1acefc794788b3aa374459e104b261947c17 100644 (file)
@@ -1,6 +1,6 @@
 
-<ul class="tabs">
+<ul role="menubar" class="tabs">
        {{foreach $tabs as $tab}}
-               <li id="{{$tab.id}}"><a href="{{$tab.url}}" class="tab button {{$tab.sel}}"{{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
+               <li role="menuitem" id="{{$tab.id}}"><a href="{{$tab.url}}" {{if $tab.accesskey}}accesskey="{{$tab.accesskey}}"{{/if}} class="tab button {{$tab.sel}}"{{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li>
        {{/foreach}}
 </ul>
index af1d8d1e3d543c1c8e5ad20436e83feebeb1ad8f..124079a1d9aeedcba7888e918fedad0d242dec4a 100644 (file)
@@ -3,9 +3,9 @@
        {{if $title}}<h3>{{$title}}</h3>{{/if}}
        {{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
        
-       <ul>
+       <ul role="menu">
                {{foreach $items as $item}}
-                       <li class="tool"><a href="{{$item.url}}" class="{{if $item.selected}}selected{{/if}}">{{$item.label}}</a></li>
+                       <li role="menuitem" class="tool"><a href="{{$item.url}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}} class="{{if $item.selected}}selected{{/if}}">{{$item.label}}</a></li>
                {{/foreach}}
        </ul>
        
index fa3a111480982731b821fafef7569f0e65d8c998..c7e1aa895e2c063a3b567aa83a0fb1eee3eb7083 100644 (file)
@@ -2,9 +2,9 @@
 <h3>{{$title}}</h3>
 
 <div id="sidebar-group-list">
-       <ul id="sidebar-group-ul">
+       <ul role="menu" id="sidebar-group-ul">
                {{foreach $groups as $group}}
-                       <li class="sidebar-group-li">
+                       <li role="menuitem" class="sidebar-group-li">
                                {{if $group.cid}}
                                        <input type="checkbox" 
                                                class="{{if $group.selected}}ticked{{else}}unticked {{/if}} action" 
@@ -13,7 +13,7 @@
                                        />
                                {{/if}}                 
                                {{if $group.edit}}
-                                       <a class="groupsideedit" href="{{$group.edit.href}}" title="{{$edittext}}"><span id="edit-sidebar-group-element-{{$group.id}}" class="group-edit-icon iconspacer small-pencil"></span></a>
+                                       <a class="groupsideedit" href="{{$group.edit.href}}" title="{{$edittext}}"><span id="edit-sidebar-group-element-{{$group.id}}" class="group-edit-icon iconspacer small-pencil"><span class="sr-only">{{$edittext}}</span></span></a>
                                {{/if}}
                                <a id="sidebar-group-element-{{$group.id}}" class="sidebar-group-element {{if $group.selected}}group-selected{{/if}}" href="{{$group.href}}">{{$group.text}}</a>
                        </li>
index 34afa256efbb43ebd9995a0be20d043f781b406a..3ee16e0b2eba32933e85da190529eed49a91f474 100644 (file)
@@ -1,10 +1,10 @@
 
 <div id="message-sidebar" class="widget">
-       <div id="message-new"><a href="{{$new.url}}" class="{{if $new.sel}}newmessage-selected{{/if}}">{{$new.label}}</a> </div>
+       <div id="message-new"><a href="{{$new.url}}" accesskey="m" class="{{if $new.sel}}newmessage-selected{{/if}}">{{$new.label}}</a> </div>
        
-       <ul class="message-ul">
+       <ul role="menu" class="message-ul">
                {{foreach $tabs as $t}}
-                       <li class="tool"><a href="{{$t.url}}" class="message-link{{if $t.sel}}message-selected{{/if}}">{{$t.label}}</a></li>
+                       <li role="menuitem" class="tool"><a href="{{$t.url}}" {{if $t.accesskey}}accesskey="$t.accesskey"{{/if}} class="message-link{{if $t.sel}}message-selected{{/if}}">{{$t.label}}</a></li>
                {{/foreach}}
        </ul>
        
index 02fe6da3b9eda6283c3ff84b66706c384a9aca35..69c55000b627dcc01c6f05205e612d524b1f7129 100644 (file)
                
        {{if $nav.apps}}<a id="nav-apps-link" class="nav-link {{$nav.apps.2}}" href="{{$nav.apps.0}}" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a>{{/if}}
 
-       <a id="nav-search-link" class="nav-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
+       <a accesskey="s" id="nav-search-link" class="nav-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
        <a id="nav-directory-link" class="nav-link {{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a>
 
-       {{if $nav.admin}}<a id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a>{{/if}}
+       {{if $nav.admin}}<a accesskey="a" id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a>{{/if}}
 
        {{if $nav.network}}
-       <a id="nav-network-link" class="nav-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
+       <a accesskey="n" id="nav-network-link" class="nav-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
        <span id="net-update" class="nav-ajax-left"></span>
        {{/if}}
        {{if $nav.home}}
-       <a id="nav-home-link" class="nav-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
+       <a accesskey="p" id="nav-home-link" class="nav-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
        <span id="home-update" class="nav-ajax-left"></span>
        {{/if}}
        {{if $nav.community}}
-       <a id="nav-community-link" class="nav-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
+       <a accesskey="c" id="nav-community-link" class="nav-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
        {{/if}}
        {{if $nav.introductions}}
        <a id="nav-notify-link" class="nav-commlink {{$nav.introductions.2}} {{$sel.introductions}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a>
@@ -46,7 +46,7 @@
 
 
                {{if $nav.notifications}}
-                       <a id="nav-notifications-linkmenu" class="nav-commlink" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a>
+                       <a accesskey="f" id="nav-notifications-linkmenu" class="nav-commlink" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a>
                                <span id="notify-update" class="nav-ajax-left"></span>
                                <ul id="nav-notifications-menu" class="menu-popup">
                                        <li id="nav-notifications-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
index 12d35edaf6ba6dfd119f2ca96738d725ee7715d6..ea28bc665c2fbf3b9e4e0c0ef1576ba8c9cd5fc8 100644 (file)
@@ -3,9 +3,9 @@
        <h3>{{$title}}</h3>
        <div id="nets-desc">{{$desc}}</div>
        <a href="{{$base}}?nets=all" class="nets-link{{if $sel_all}} nets-selected{{/if}} nets-all">{{$all}}</a>
-       <ul class="nets-ul">
+       <ul role="menu" class="nets-ul">
        {{foreach $nets as $net}}
-       <li><a href="{{$base}}?nets={{$net.ref}}" class="nets-link{{if $net.selected}} nets-selected{{/if}}">{{$net.name}}</a></li>
+       <li role="menuitem" ><a href="{{$base}}?nets={{$net.ref}}" class="nets-link{{if $net.selected}} nets-selected{{/if}}">{{$net.name}}</a></li>
        {{/foreach}}
        </ul>
 </div>
index c9e5cf5691133cfa76db019bf3e24729ee9d0b37..e4aba94aa3eac91fa45f2aeb9670d95a75ed2503 100644 (file)
@@ -3,9 +3,9 @@
        <h3 id="search">{{$title}}</h3>
        {{$searchbox}}
        
-       <ul id="saved-search-ul">
+       <ul role="menu" id="saved-search-ul">
                {{foreach $saved as $search}}
-               <li class="saved-search-li clear">
+               <li role="menuitem" class="saved-search-li clear">
                        <a title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" class="iconspacer savedsearchdrop " href="network/?f=&amp;remove=1&amp;search={{$search.encodedterm}}"></a>
                        <a id="saved-search-term-{{$search.id}}" class="savedsearchterm" href="network/?f=&amp;search={{$search.encodedterm}}">{{$search.term}}</a>
                </li>
index 8149ef374ce1a25706d5fabe6cf4b88094d96699..55e69b3155368fd0dc85f63e80111073bf2df1da 100644 (file)
                
        {{if $nav.apps}}<a id="nav-apps-link" class="nav-link {{$nav.apps.2}}" href="{{$nav.apps.0}}" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a>{{/if}}
 
-       <a id="nav-search-link" class="nav-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
+       <a accesskey="s" id="nav-search-link" class="nav-link {{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
        <a id="nav-directory-link" class="nav-link {{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a>
 
-       {{if $nav.admin}}<a id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a>{{/if}}
+       {{if $nav.admin}}<a accesskey="a" id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a>{{/if}}
 
        {{if $nav.network}}
-       <a id="nav-network-link" class="nav-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
+       <a accesskey="n" id="nav-network-link" class="nav-commlink {{$nav.network.2}} {{$sel.network}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
        <span id="net-update" class="nav-ajax-left"></span>
        {{/if}}
        {{if $nav.home}}
-       <a id="nav-home-link" class="nav-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
+       <a accesskey="p" id="nav-home-link" class="nav-commlink {{$nav.home.2}} {{$sel.home}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
        <span id="home-update" class="nav-ajax-left"></span>
        {{/if}}
        {{if $nav.community}}
-       <a id="nav-community-link" class="nav-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
+       <a accesskey="c" id="nav-community-link" class="nav-commlink {{$nav.community.2}} {{$sel.community}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
        {{/if}}
        {{if $nav.introductions}}
        <a id="nav-notify-link" class="nav-commlink {{$nav.introductions.2}} {{$sel.introductions}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a>
@@ -45,7 +45,7 @@
 
 
                {{if $nav.notifications}}
-                       <a id="nav-notifications-linkmenu" class="nav-commlink" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a>
+                       <a accesskey="f" id="nav-notifications-linkmenu" class="nav-commlink" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}">{{$nav.notifications.1}}</a>
                                <span id="notify-update" class="nav-ajax-left"></span>
                                <ul id="nav-notifications-menu" class="menu-popup">
                                        <li id="nav-notifications-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
index e10ded9f4ce7190e0fc94c19758c8daf4378caa5..6f7a082c1e5439395c3c1cd0e4ca44a65e052340 100644 (file)
@@ -2,9 +2,9 @@
        {{if $title}}<h3>{{$title}}</h3>{{/if}}
        {{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
        
-       <ul>
+       <ul role="menu">
                {{foreach $items as $item}}
-                       <li class="tool {{if $item.selected}}selected{{/if}}"><a href="{{$item.url}}" class="link">{{$item.label}}</a></li>
+                       <li role="menuitem" class="tool {{if $item.selected}}selected{{/if}}"><a href="{{$item.url}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}} class="link">{{$item.label}}</a></li>
                {{/foreach}}
        </ul>
        
index c8a372c744ba7fa431e2abe8bbc820107db17f40..084099c54816eb6b46d9ea78fb2d89ee3431fe58 100644 (file)
@@ -1,9 +1,9 @@
 <div id="message-sidebar" class="widget">
-       <div id="message-new" class="{{if $new.sel}}selected{{/if}}"><a href="{{$new.url}}">{{$new.label}}</a> </div>
+       <div id="message-new" class="{{if $new.sel}}selected{{/if}}"><a href="{{$new.url}}" accesskey="m">{{$new.label}}</a> </div>
        
-       <ul class="message-ul">
+       <ul role="menu" class="message-ul">
                {{foreach $tabs as $t}}
-                       <li class="tool {{if $t.sel}}selected{{/if}}"><a href="{{$t.url}}" class="message-link">{{$t.label}}</a></li>
+                       <li role="menuitem" class="tool {{if $t.sel}}selected{{/if}}"><a href="{{$t.url}}" {{if $t.accesskey}}accesskey="$t.accesskey"{{/if}} class="message-link">{{$t.label}}</a></li>
                {{/foreach}}
        </ul>
        
index e0c7ba8e3bd970f6215c72ab22f314c3dc6e741d..deb0cdfa4620d533640737a699afabff346ab5b0 100644 (file)
@@ -7,7 +7,7 @@
 <nav>
        <ul>
                {{if $userinfo}}
-                       <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$sitelocation}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a>
+                       <li id="nav-user-linkmenu" class="nav-menu-icon"><a accesskey="u" href="#" rel="#nav-user-menu" title="{{$sitelocation}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a>
                                <ul id="nav-user-menu" class="menu-popup">
                                        {{foreach $nav.usermenu as $usermenu}}
                                                <li><a class="{{$usermenu.2}}" href="{{$usermenu.0}}" title="{{$usermenu.3}}">{{$usermenu.1}}</a></li>
                
                {{if $nav.network}}
                        <li id="nav-network-link" class="nav-menu {{$sel.network}}">
-                               <a class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
+                               <a accesskey="n" class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
                                <span id="net-update" class="nav-notify"></span>
                        </li>
                {{/if}}
                {{if $nav.home}}
                        <li id="nav-home-link" class="nav-menu {{$sel.home}}">
-                               <a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
+                               <a accesskey="p" class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
                                <span id="home-update" class="nav-notify"></span>
                        </li>
                {{/if}}
@@ -60,7 +60,7 @@
 
                
                {{if $nav.notifications}}
-                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 notify">{{$nav.notifications.1}}</span></a>
+                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a accesskey="f" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 notify">{{$nav.notifications.1}}</span></a>
                                <span id="notify-update" class="nav-notify"></span>
                                <ul id="nav-notifications-menu" class="menu-popup">
                                        <!-- TODO: better icons! -->
@@ -75,7 +75,7 @@
                                {{if $nav.manage}}<li><a class="{{$nav.manage.2}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a></li>{{/if}}                         
 
                                {{if $nav.settings}}<li><a class="{{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a></li>{{/if}}
-                               {{if $nav.admin}}<li><a class="{{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a></li>{{/if}}
+                               {{if $nav.admin}}<li><a accesskey="a" class="{{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a></li>{{/if}}
 
                                {{if $nav.logout}}<li><a class="menu-sep {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a></li>{{/if}}
                                {{if $nav.login}}<li><a class="{{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a><li>{{/if}}
@@ -89,7 +89,7 @@
                {{/if}}
 
                <li id="nav-search-link" class="nav-menu {{$sel.search}}">
-                       <a class="{{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
+                       <a accesskey="s" class="{{$nav.search.2}}" href="{{$nav.search.0}}" title="{{$nav.search.3}}" >{{$nav.search.1}}</a>
                </li>
                <li id="nav-directory-link" class="nav-menu {{$sel.directory}}">
                        <a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a>
index 848a2a419007e9b6f9e389608c332a6e44d53151..26b0aa3626213828b8c987481b054b8262ba7b62 100644 (file)
@@ -548,6 +548,7 @@ nav a {
   color: #ccc;
   padding-bottom: 8px;
   padding-top: 8px;
+  cursor: pointer;
 }
 
 nav a:hover .icon {
@@ -1331,6 +1332,7 @@ section.minimal {
 .wall-item-container .wall-item-actions-social a {
   float: left;
   margin-right: 1em;
+  cursor: pointer;
 }
 .wall-item-container .wall-item-actions-tools {
   float: right;
@@ -1339,6 +1341,7 @@ section.minimal {
 .wall-item-container .wall-item-actions-tools a {
   float: right;
   margin-left: 10px;
+  cursor: pointer;
 }
 .wall-item-container .wall-item-actions-tools input {
   float: right;
index 26b34073a63d981bc0e85c441c5d87908f0f314c..8a40d6dd77347e297e0fec1c649901d72b1d0d67 100644 (file)
@@ -5,90 +5,90 @@
        <div id="site-location">{{$sitelocation}}</div>
        <div id="banner">{{$banner}}</div>
 </header>
-<nav>
+<nav role="menubar">
        <ul>
                {{if $nav.home}}
-                       <li id="nav-home-link" class="nav-menu {{$sel.home}}">
-                               <a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
+                       <li role="menuitem" id="nav-home-link" class="nav-menu {{$sel.home}}">
+                               <a accesskey="p" class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
                                <span id="home-update" class="nav-notify"></span>
                        </li>
                {{/if}}
                {{if $nav.network}}
-                       <li id="nav-network-link" class="nav-menu {{$sel.network}}">
-                               <a class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
+                       <li role="menuitem" id="nav-network-link" class="nav-menu {{$sel.network}}">
+                               <a accesskey="n" class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
                                <span id="net-update" class="nav-notify"></span>
                        </li>
                {{/if}}
                {{if $nav.community}}
-                       <li id="nav-community-link" class="nav-menu {{$sel.community}}">
-                               <a class="{{$nav.community.2}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
+                       <li role="menuitem" id="nav-community-link" class="nav-menu {{$sel.community}}">
+                               <a accesskey="c" class="{{$nav.community.2}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
                        </li>
                {{/if}}
                
-               <li id="nav-site-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-site-menu"><span class="icon s22 icon-question"></span></a>
+               <li role="menu" aria-haspopup="true" id="nav-site-linkmenu" class="nav-menu-icon"><a rel="#nav-site-menu"><span class="icon s22 icon-question"><span class="sr-only">{{$nav.help.3}}</span></span></a>
                        <ul id="nav-site-menu" class="menu-popup">
-                               {{if $nav.help}} <li><a class="{{$nav.help.2}}" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a></li>{{/if}}
-                               <li><a class="{{$nav.about.2}}" href="{{$nav.about.0}}" title="{{$nav.about.3}}" >{{$nav.about.1}}</a></li>
-                               <li><a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a></li>
+                               {{if $nav.help}} <li role="menuitem"><a class="{{$nav.help.2}}" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a></li>{{/if}}
+                               <li role="menuitem"><a class="{{$nav.about.2}}" href="{{$nav.about.0}}" title="{{$nav.about.3}}" >{{$nav.about.1}}</a></li>
+                               <li role="menuitem"><a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a></li>
                        </ul>
                </li>
 
                {{if $nav.notifications}}
-                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 icon-bell tilted-icon"></span></a>
+                       <li role="menu" aria-haspopup="true" id="nav-notifications-linkmenu" class="nav-menu-icon"><a accesskey="f" href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 icon-bell tilted-icon"><span class="sr-only">{{$nav.notifications.1}}</span></span></a>
                                <span id="notify-update" class="nav-notify"></span>
                                <ul id="nav-notifications-menu" class="menu-popup">
-                                       <li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">{{$nav.notifications.mark.1}}</a></li>
-                                       <li id="nav-notifications-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
-                                       <li class="empty">{{$emptynotifications}}</li>
+                                       <li role="menuitem" id="nav-notifications-mark-all"><a onclick="notifyMarkAll(); return false;">{{$nav.notifications.mark.1}}</a></li>
+                                       <li role="menuitem" id="nav-notifications-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
+                                       <li role="menuitem" class="empty">{{$emptynotifications}}</li>
                                </ul>
                        </li>
                {{/if}}
                
                {{if $userinfo}}
-                       <li id="nav-user-linklabel" class="nav-menu">
-                               <a href="#" rel="#nav-user-menu" title="{{$sitelocation}}">{{$userinfo.name}}<span id="intro-update" class="nav-notify"></span></a>
+                       <li aria-hidden="true" id="nav-user-linklabel" class="nav-menu">
+                               <a rel="#nav-user-menu" title="{{$sitelocation}}">{{$userinfo.name}}<span id="intro-update" class="nav-notify"></span></a>
                        </li>
-                       <li id="nav-user-linkmenu" class="nav-menu-icon">
-                               <a href="#" rel="#nav-user-menu" title="{{$sitelocation}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a>
+                       <li role="menu" aria-haspopup="true" id="nav-user-linkmenu" class="nav-menu-icon">
+                               <a accesskey="u" rel="#nav-user-menu" title="{{$sitelocation}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a>
                                <ul id="nav-user-menu" class="menu-popup">
-                                       {{if $nav.introductions}}<li><a class="{{$nav.introductions.2}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a><span id="intro-update-li" class="nav-notify"></span></li>{{/if}}
-                                       {{if $nav.contacts}}<li><a class="{{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a></li>{{/if}}
-                                       {{if $nav.messages}}<li><a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a><span id="mail-update" class="nav-notify"></span></a></li>{{/if}}
-                                       {{if $nav.manage}}<li><a class="{{$nav.manage.2}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a></li>{{/if}}                         
-                                       {{if $nav.usermenu.1}}<li><a class="{{$nav.usermenu.1.2}}" href="{{$nav.usermenu.1.0}}" title="{{$nav.usermenu.1.3}}">{{$nav.usermenu.1.1}}</a></li>{{/if}}
-                                       {{if $nav.settings}}<li><a class="{{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a></li>{{/if}}
-                                       {{if $nav.logout}}<li><a class="menu-sep {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a></li>{{/if}}
+                                       {{if $nav.introductions}}<li role="menuitem"><a class="{{$nav.introductions.2}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a><span id="intro-update-li" class="nav-notify"></span></li>{{/if}}
+                                       {{if $nav.contacts}}<li role="menuitem"><a class="{{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a></li>{{/if}}
+                                       {{if $nav.messages}}<li role="menuitem"><a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a><span id="mail-update" class="nav-notify"></span></a></li>{{/if}}
+                                       {{if $nav.manage}}<li role="menuitem"><a class="{{$nav.manage.2}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a></li>{{/if}}                         
+                                       {{if $nav.usermenu.1}}<li role="menuitem"><a class="{{$nav.usermenu.1.2}}" href="{{$nav.usermenu.1.0}}" title="{{$nav.usermenu.1.3}}">{{$nav.usermenu.1.1}}</a></li>{{/if}}
+                                       {{if $nav.settings}}<li role="menuitem"><a class="{{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a></li>{{/if}}
+                                       {{if $nav.logout}}<li role="menuitem"><a class="menu-sep {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a></li>{{/if}}
                                </ul>
                        </li>
                {{/if}}
 
                {{if $nav.login}}
-                       <li id="nav-login-link" class="nav-menu">
+                       <li role="menuitem" id="nav-login-link" class="nav-menu">
                                <a class="{{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a>
-                       <li>
+                       </li>
                {{/if}}
                
                {{if $nav.search}}
-                       <li id="search-box">
+                       <li role="search" id="search-box">
                                <form method="get" action="{{$nav.search.0}}">
-                                       <input id="search-text" class="nav-menu-search" type="text" value="" name="search">
+                                       <input accesskey="s" id="search-text" class="nav-menu-search" type="text" value="" name="search">
                                </form>
                        </li>
                {{/if}}
 
                {{if $nav.admin}}
-                       <li id="nav-admin-link" class="nav-menu">
+                       <li role="menuitem" id="nav-admin-link" class="nav-menu">
                                <!-- <a class="{{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a> -->
-                               <a class="{{$nav.admin.2}} icon-sliders" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" ></a>
+                               <a accesskey="a" class="{{$nav.admin.2}} icon-sliders" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" ><span class="sr-only">{{$nav.admin.3}}</span></a>
                        </li>
                {{/if}}
                
                {{if $nav.apps}}
-                       <li id="nav-apps-link" class="nav-menu {{$sel.apps}}">
-                               <a class=" {{$nav.apps.2}}" href="#" rel="#nav-apps-menu" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a>
+                       <li role="menu" aria-haspopup="true" id="nav-apps-link" class="nav-menu {{$sel.apps}}">
+                               <a class=" {{$nav.apps.2}}" rel="#nav-apps-menu" title="{{$nav.apps.3}}" >{{$nav.apps.1}}</a>
                                <ul id="nav-apps-menu" class="menu-popup">
                                        {{foreach $apps as $ap}}
-                                       <li>{{$ap}}</li>
+                                       <li role="menuitem">{{$ap}}</li>
                                        {{/foreach}}
                                </ul>
                        </li>
index 598eb4e9ee023a3eaf056bbe5c80a3ae11607294..b0e6a310f49543ec7b93a5f8bc4c73075ee73a85 100644 (file)
@@ -15,8 +15,8 @@
                                <a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}">
                                        <img src="{{$item.thumb}}" class="contact-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
                                </a>
-                               <a href="#" rel="#wall-item-photo-menu-{{$item.id}}" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-{{$item.id}}">menu</a>
-                               <ul class="wall-item-menu menu-popup" id="wall-item-photo-menu-{{$item.id}}">
+                               <a rel="#wall-item-photo-menu-{{$item.id}}" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-{{$item.id}}">menu</a>
+                               <ul role="menu" aria-haspopup="true" class="wall-item-menu menu-popup" id="wall-item-photo-menu-{{$item.id}}">
                                {{$item.item_photo_menu}}
                                </ul>
                                
index 231cdcee4cb313e92860483f939ee94efdafb1a5..ae56371912a3d9fc056b8239aeafa2d63ae69e65 100644 (file)
@@ -1,8 +1,7 @@
-
 {{$live_update}}
 
 {{foreach $threads as $thread}}
-
+<hr class="sr-only" />
 <div id="tread-wrapper-{{$thread.id}}" class="tread-wrapper {{if $thread.threaded}}threaded{{/if}}  {{$thread.toplevel}} {{$thread.network}}">
        
        
index 75d9e8783e861f1808417a3ee25c9412a26e56c3..4c5f083d7d038c5145331b43443e4306f75862e5 100644 (file)
@@ -30,7 +30,7 @@
                                <a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="contact-photo-link" id="wall-item-photo-link-{{$item.id}}">
                                        <img src="{{$item.thumb}}" class="contact-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
                                </a>
-                               <ul class="contact-menu menu-popup" id="wall-item-photo-menu-{{$item.id}}">
+                               <ul role="menu" aria-haspopup="true" class="contact-menu menu-popup" id="wall-item-photo-menu-{{$item.id}}">
                                {{$item.item_photo_menu}}
                                </ul>
                                
index 33f8c5b10a9d29c542809af870412b1ec95afb74..41c978942be268da592420f5f0d5303e6aa4f033 100644 (file)
@@ -27,7 +27,7 @@
 
 {{if $item.thread_level!=1}}<div class="children">{{/if}}
 
-<div class="wall-item-decor">
+<div aria-hidden="true" class="wall-item-decor">
        <img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
 </div>
 
                        <div class="contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}"
                                onmouseover="if (typeof t{{$item.id}} != 'undefined') clearTimeout(t{{$item.id}}); openMenu('wall-item-photo-menu-button-{{$item.id}}')" 
                                onmouseout="t{{$item.id}}=setTimeout('closeMenu(\'wall-item-photo-menu-button-{{$item.id}}\'); closeMenu(\'wall-item-photo-menu-{{$item.id}}\');',200)">
-                               <a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="contact-photo-link" id="wall-item-photo-link-{{$item.id}}">
+                               <a aria-hidden="true" href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="contact-photo-link" id="wall-item-photo-link-{{$item.id}}">
                                        <img src="{{$item.thumb}}" class="contact-photo {{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" />
                                </a>
-                               <a href="#" rel="#wall-item-photo-menu-{{$item.id}}" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-{{$item.id}}">menu</a>
-                               <ul class="contact-menu menu-popup" id="wall-item-photo-menu-{{$item.id}}">
+                               <a rel="#wall-item-photo-menu-{{$item.id}}" class="contact-photo-menu-button icon s16 menu" id="wall-item-photo-menu-button-{{$item.id}}"></a>
+                               <ul role="menu" aria-haspopup="true" class="contact-menu menu-popup" id="wall-item-photo-menu-{{$item.id}}">
                                {{$item.item_photo_menu}}
                                </ul>
                                
                        </div>
                        {{if $item.owner_url}}
-                       <div class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-{{$item.id}}" >
+                       <div aria-hidden="true" class="contact-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-{{$item.id}}" >
                                <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="contact-photo-link" id="wall-item-ownerphoto-link-{{$item.id}}">
                                        <img src="{{$item.owner_photo}}" class="contact-photo {{$item.osparkle}}" id="wall-item-ownerphoto-{{$item.id}}" alt="{{$item.owner_name}}" />
                                </a>
                        </div>
                        {{/if}}                 
                </div>
-               <div class="wall-item-actions-author">
+               <div role="heading" aria-level="{{$item.thread_level}}" class="wall-item-actions-author">
                        <a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}">{{$item.name}}</span></a>
                        {{if $item.owner_url}}{{$item.via}} <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a> <!-- {{$item.vwall}} -->{{/if}}
                        <span class="wall-item-ago">
        </div>  
        <div class="wall-item-bottom">
                <div class="wall-item-links">
-                       {{if $item.plink}}<a title="{{$item.plink.title}}" href="{{$item.plink.orig}}"><i class="icon-link icon-large"></i></a>{{/if}}
+                       {{if $item.plink}}<a role="button" title="{{$item.plink.orig_title}}" href="{{$item.plink.orig}}"><i class="icon-link icon-large"><span class="sr-only">{{$item.plink.orig_title}}</span></i></a>{{/if}}
                </div>
                <div class="wall-item-actions">
                        <div class="wall-item-actions-social">
                        {{if $item.threaded}}
                        {{/if}}
                        {{if $item.comment}}
-                               <span id="comment-{{$item.id}}" class="fakelink togglecomment" onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});" title="{{$item.switchcomment}}"><i class="icon-reply"></i></span>
+                               <a role="button" id="comment-{{$item.id}}" class="fakelink togglecomment" onclick="openClose('item-comments-{{$item.id}}'); commentExpand({{$item.id}});" title="{{$item.switchcomment}}"><i class="icon-reply"><span class="sr-only">{{$item.switchcomment}}</span></i></a>
                        {{/if}}
                        {{if $item.vote}}
                                {{if $item.vote.like}}
-                               <a href="#" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"><i class="icon-thumbs-up icon-large"></i></a>
+                               <a role="button" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"><i class="icon-thumbs-up icon-large"><span class="sr-only">{{$item.vote.like.0}}</span></i></a>
                                {{/if}}{{if $item.vote.dislike}}
-                               <a href="#" id="dislike-{{$item.id}}" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"><i class="icon-thumbs-down icon-large"></i></a>
+                               <a role="button" id="dislike-{{$item.id}}" title="{{$item.vote.dislike.0}}" onclick="dolike({{$item.id}},'dislike'); return false"><i class="icon-thumbs-down icon-large"><span class="sr-only">{{$item.vote.dislike.0}}</span></i></a>
                                {{/if}}
                            {{if $item.vote.share}}
-                                   <a href="#" id="share-{{$item.id}}" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"><i class="icon-retweet icon-large"></i></a>
+                                   <a role="button" id="share-{{$item.id}}" title="{{$item.vote.share.0}}" onclick="jotShare({{$item.id}}); return false"><i class="icon-retweet icon-large"><span class="sr-only">{{$item.vote.share.0}}</span></i></a>
                            {{/if}}
                        {{/if}}
                        {{if $item.star}}
-                               <a href="#" id="star-{{$item.id}}" onclick="dostar({{$item.id}}); return false;"  class="{{$item.star.classdo}}"  title="{{$item.star.do}}"><i class="icon-star icon-large"></i></a>
-                               <a href="#" id="unstar-{{$item.id}}" onclick="dostar({{$item.id}}); return false;"  class="{{$item.star.classundo}}"  title="{{$item.star.undo}}"><i class="icon-star-empty icon-large"></i></a>
+                               <a role="button" id="star-{{$item.id}}" onclick="dostar({{$item.id}}); return false;"  class="{{$item.star.classdo}}" title="{{$item.star.do}}"><i class="icon-star icon-large"><span class="sr-only">{{$item.star.do}}</span></i></a>
+                               <a role="button" id="unstar-{{$item.id}}" onclick="dostar({{$item.id}}); return false;"  class="{{$item.star.classundo}}"  title="{{$item.star.undo}}"><i class="icon-star-empty icon-large"><span class="sr-only">{{$item.star.undo}}</span></i></a>
                        {{/if}}
                        {{if $item.ignore}}
-                               <a href="#" id="ignore-{{$item.id}}" onclick="doignore({{$item.id}}); return false;"  class="{{$item.ignore.classdo}}"  title="{{$item.ignore.do}}"><i class="icon-bell-slash icon-large"></i></a>
-                               <a href="#" id="unignore-{{$item.id}}" onclick="doignore({{$item.id}}); return false;"  class="{{$item.ignore.classundo}}"  title="{{$item.ignore.undo}}"><i class="icon-bell-slash-o icon-large"></i></a>
+                               <a role="button" id="ignore-{{$item.id}}" onclick="doignore({{$item.id}}); return false;"  class="{{$item.ignore.classdo}}"  title="{{$item.ignore.do}}"><i class="icon-bell-slash icon-large"><span class="sr-only">{{$item.ignore.do}}</span></i></a>
+                               <a role="button" id="unignore-{{$item.id}}" onclick="doignore({{$item.id}}); return false;"  class="{{$item.ignore.classundo}}"  title="{{$item.ignore.undo}}"><i class="icon-bell-slash-o icon-large"><span class="sr-only">{{$item.ignore.undo}}</span></i></a>
                        {{/if}}
                        {{if $item.tagger}}
-                               <a href="#" id="tagger-{{$item.id}}" onclick="itemTag({{$item.id}}); return false;" class="{{$item.tagger.class}}" title="{{$item.tagger.add}}"><i class="icon-tags icon-large"></i></a>
+                               <a role="button" id="tagger-{{$item.id}}" onclick="itemTag({{$item.id}}); return false;" class="{{$item.tagger.class}}" title="{{$item.tagger.add}}"><i class="icon-tags icon-large"><span class="sr-only">{{$item.tagger.add}}</span></i></a>
                        {{/if}}
                        {{if $item.filer}}
-                                <a href="#" id="filer-{{$item.id}}" onclick="itemFiler({{$item.id}}); return false;" class="filer-item filer-icon" title="{{$item.filer}}"><i class="icon-folder-close icon-large"></i></a>
+                                <a role="button" id="filer-{{$item.id}}" onclick="itemFiler({{$item.id}}); return false;" class="filer-item filer-icon" title="{{$item.filer}}"><i class="icon-folder-close icon-large"><span class="sr-only">{{$item.filer}}</span></i></a>
                        {{/if}}
                        </div>
                        <div class="wall-item-location">{{$item.location}} {{$item.postopts}}</div>
                                        <input type="checkbox" title="{{$item.drop.select}}" name="itemselected[]" class="item-select" value="{{$item.id}}" />
                                {{/if}}
                                {{if $item.drop.dropping}}
-                                       <a href="item/drop/{{$item.id}}" onclick="return confirmDelete();" title="{{$item.drop.delete}}"><i class="icon-trash icon-large"></i></a>
+                                       <a role="button" href="item/drop/{{$item.id}}" onclick="return confirmDelete();" title="{{$item.drop.delete}}"><i class="icon-trash icon-large"><span class="sr-only">{{$item.drop.delete}}</span></i></a>
                                {{/if}}
                                {{if $item.edpost}}
-                                       <a href="{{$item.edpost.0}}" title="{{$item.edpost.1}}"><i class="icon-edit icon-large"></i></a>
+                                       <a role="button" href="{{$item.edpost.0}}" title="{{$item.edpost.1}}"><i class="icon-edit icon-large"><span class="sr-only">{{$item.edpost.1}}</span></i></a>
                                {{/if}}
                        </div>