]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1314 from annando/1501-better-diaspora-reshare
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 25 Jan 2015 07:25:02 +0000 (08:25 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 25 Jan 2015 07:25:02 +0000 (08:25 +0100)
Diaspora: Reshares are now working more reliable

13 files changed:
.gitignore
include/conversation.php
include/oembed.php
mod/admin.php
mod/bookmarklet.php [new file with mode: 0644]
mod/settings.php
util/messages.po
util/strings.php
view/de/messages.po
view/de/strings.php
view/fr/messages.po
view/fr/strings.php
view/theme/vier/theme.php

index 06dc807bd5444f7e5140655f743bb28f446a69f2..3c0570c67d2e40d25558c941d25f8ff061486bae 100644 (file)
@@ -34,7 +34,11 @@ report/
 #ignore cache folders\r
 /privacy_image_cache/\r
 /photo/\r
+/proxy/\r
 nbproject\r
 \r
 #ignore vagrant dir\r
 .vagrant/\r
+\r
+#ignore local folder\r
+/local/\r
index 558942063f9382e7e95c66b3749625b910510eb7..c97eb6e4af22dfc3061ded1606410abce307ceb6 100644 (file)
@@ -1102,16 +1102,16 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                '$shortsetloc' => t('set location'),
                '$noloc' => t('Clear browser location'),
                '$shortnoloc' => t('clear location'),
-               '$title' => "",
+               '$title' => $x['title'],
                '$placeholdertitle' => t('Set title'),
-               '$category' => "",
+               '$category' => $x['category'],
                '$placeholdercategory' => (feature_enabled(local_user(),'categories') ? t('Categories (comma-separated list)') : ''),
                '$wait' => t('Please wait'),
                '$permset' => t('Permission settings'),
                '$shortpermset' => t('permissions'),
                '$ptyp' => (($notes_cid) ? 'note' : 'wall'),
-               '$content' => '',
-               '$post_id' => '',
+               '$content' => $x['content'],
+               '$post_id' => $x['post_id'],
                '$baseurl' => $a->get_baseurl(true),
                '$defloc' => $x['default_location'],
                '$visitor' => $x['visitor'],
index 0d7e5ee84f165f8ae74cfc62eb14f94978a1d4eb..00489193f388bd02ebef83a1883f4152b396e50f 100755 (executable)
@@ -110,6 +110,8 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
                }
        }
 
+       call_hooks('oembed_fetch_url', $embedurl, $j);
+
        return $j;
 }
 
index 8bddd8ce88ae6c492a2b87bcef95c28e74169f8e..bf74d3ef3c64f67853ba54de37de80a9f06e8920 100644 (file)
@@ -1000,7 +1000,7 @@ function admin_page_users(&$a){
                '$users' => $users,
                '$newusername'  => array('new_user_name', t("Name"), '', t("Name of the new user.")),
                '$newusernickname'  => array('new_user_nickname', t("Nickname"), '', t("Nickname of the new user.")),
-               '$newuseremail'  => array('new_user_email', t("Email"), '', t("Email address of the new user.")),
+               '$newuseremail'  => array('new_user_email', t("Email"), '', t("Email address of the new user."), '', '', 'email'),
        ));
        $o .= paginate($a);
        return $o;
diff --git a/mod/bookmarklet.php b/mod/bookmarklet.php
new file mode 100644 (file)
index 0000000..96eb370
--- /dev/null
@@ -0,0 +1,46 @@
+<?php
+
+require_once('include/conversation.php');
+require_once('include/items.php');
+
+function bookmarklet_init(&$a) {
+       $_GET["mode"] = "minimal";
+}
+
+function bookmarklet_content(&$a) {
+       if(!local_user()) {
+               $o = '<h2>'.t('Login').'</h2>';
+               $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
+               return $o;
+       }
+
+       $referer = normalise_link($_SERVER["HTTP_REFERER"]);
+       $page = normalise_link($a->get_baseurl()."/bookmarklet");
+
+       if (!strstr($referer, $page)) {
+               $content = add_page_info($_REQUEST["url"]);
+
+               $x = array(
+                       'is_owner' => true,
+                       'allow_location' => $a->user['allow_location'],
+                       'default_location' => $a->user['default-location'],
+                       'nickname' => $a->user['nickname'],
+                       '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'),
+                       'default_perms' => get_acl_permissions($a->user),
+                       'acl' => populate_acl($a->user, $celeb),
+                       'bang' => '',
+                       'visitor' => 'block',
+                       'profile_uid' => local_user(),
+                       'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
+                       'title' => $_REQUEST["title"],
+                       'content' => $content
+               );
+               $o = status_editor($a,$x, 0, false);
+               $o .= "<script>window.resizeTo(800,550);</script>";
+       } else {
+               $o = '<h2>'.t('The post was created').'</h2>';
+               $o .= "<script>window.close()</script>";
+       }
+
+       return $o;
+}
index 4c64e4da63aab21439f69a7d9b2a8824d3609989..b01c4fabde7b2f3cc7714f21ce33ff2fbf26040c 100644 (file)
@@ -1126,7 +1126,7 @@ function settings_content(&$a) {
 
                '$h_basic'      => t('Basic Settings'),
                '$username' => array('username',  t('Full Name:'), $username,''),
-               '$email'        => array('email', t('Email Address:'), $email, ''),
+               '$email'        => array('email', t('Email Address:'), $email, '', '', '', 'email'),
                '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
                '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
                '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
index 1505a05ed7667668942fd9f712fe3c2e2ca37d0a..8870aa2720b36e87dfb0c8ea35f20a23cd8a3a52 100644 (file)
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: 3.3\n"
+"Project-Id-Version: 3.3.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-10-22 10:05+0200\n"
+"POT-Creation-Date: 2015-01-22 17:30+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,753 +18,721 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
+#: ../../mod/contacts.php:107
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
+msgid "Could not access contact record."
 msgstr ""
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1357
-#: ../../mod/content.php:620
-msgid "Private Message"
+#: ../../mod/contacts.php:152
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: ../../object/Item.php:120 ../../mod/settings.php:673
-#: ../../mod/content.php:728
-msgid "Edit"
+#: ../../mod/contacts.php:185
+msgid "Contact updated."
 msgstr ""
 
-#: ../../object/Item.php:129 ../../mod/photos.php:1651
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../include/conversation.php:613
-msgid "Select"
+#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
 msgstr ""
 
-#: ../../object/Item.php:130 ../../mod/admin.php:970 ../../mod/photos.php:1652
-#: ../../mod/contacts.php:709 ../../mod/settings.php:674
-#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../include/conversation.php:614
-msgid "Delete"
+#: ../../mod/contacts.php:253 ../../mod/manage.php:96
+#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
+#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
+#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
+#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/crepair.php:119
+#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
+#: ../../mod/events.php:140 ../../mod/install.php:151
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
+#: ../../mod/settings.php:596 ../../mod/settings.php:601
+#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
+#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
+#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
+#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
+msgid "Permission denied."
 msgstr ""
 
-#: ../../object/Item.php:133 ../../mod/content.php:763
-msgid "save to folder"
+#: ../../mod/contacts.php:286
+msgid "Contact has been blocked"
 msgstr ""
 
-#: ../../object/Item.php:195 ../../mod/content.php:753
-msgid "add star"
+#: ../../mod/contacts.php:286
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: ../../object/Item.php:196 ../../mod/content.php:754
-msgid "remove star"
+#: ../../mod/contacts.php:297
+msgid "Contact has been ignored"
 msgstr ""
 
-#: ../../object/Item.php:197 ../../mod/content.php:755
-msgid "toggle star status"
+#: ../../mod/contacts.php:297
+msgid "Contact has been unignored"
 msgstr ""
 
-#: ../../object/Item.php:200 ../../mod/content.php:758
-msgid "starred"
+#: ../../mod/contacts.php:309
+msgid "Contact has been archived"
 msgstr ""
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
+#: ../../mod/contacts.php:309
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
+#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
+#: ../../mod/contacts.php:336 ../../mod/message.php:209
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:233 ../../mod/suggest.php:29
+#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
+#: ../../include/items.php:4528
+msgid "Yes"
 msgstr ""
 
-#: ../../object/Item.php:213
-msgid "ignored"
+#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
+#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../include/conversation.php:1129 ../../include/items.php:4531
+msgid "Cancel"
 msgstr ""
 
-#: ../../object/Item.php:220 ../../mod/content.php:759
-msgid "add tag"
+#: ../../mod/contacts.php:351
+msgid "Contact has been removed."
 msgstr ""
 
-#: ../../object/Item.php:231 ../../mod/photos.php:1540
-#: ../../mod/content.php:684
-msgid "I like this (toggle)"
+#: ../../mod/contacts.php:389
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
-msgid "like"
+#: ../../mod/contacts.php:393
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1541
-#: ../../mod/content.php:685
-msgid "I don't like this (toggle)"
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
-msgid "dislike"
+#: ../../mod/contacts.php:415
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
-msgid "Share this"
+#: ../../mod/contacts.php:418 ../../mod/admin.php:546
+msgid "Never"
 msgstr ""
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
-msgid "share"
+#: ../../mod/contacts.php:422
+msgid "(Update was successful)"
 msgstr ""
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
+#: ../../mod/contacts.php:422
+msgid "(Update was not successful)"
 msgstr ""
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
+#: ../../mod/contacts.php:424
+msgid "Suggest friends"
 msgstr ""
 
-#: ../../object/Item.php:326 ../../object/Item.php:327
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../include/conversation.php:654
+#: ../../mod/contacts.php:428
 #, php-format
-msgid "View %s's profile @ %s"
+msgid "Network type: %s"
 msgstr ""
 
-#: ../../object/Item.php:328 ../../mod/content.php:854
-msgid "to"
-msgstr ""
+#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../object/Item.php:329
-msgid "via"
+#: ../../mod/contacts.php:436
+msgid "View all contacts"
 msgstr ""
 
-#: ../../object/Item.php:330 ../../mod/content.php:855
-msgid "Wall-to-Wall"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:981
+msgid "Unblock"
 msgstr ""
 
-#: ../../object/Item.php:331 ../../mod/content.php:856
-msgid "via Wall-To-Wall:"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:980
+msgid "Block"
 msgstr ""
 
-#: ../../object/Item.php:340 ../../mod/content.php:481
-#: ../../mod/content.php:864 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
+#: ../../mod/contacts.php:444
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../object/Item.php:361 ../../object/Item.php:677
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
-#: ../../mod/photos.php:1694 ../../mod/content.php:709 ../../boot.php:724
-msgid "Comment"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714
+msgid "Unignore"
 msgstr ""
 
-#: ../../object/Item.php:364 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../mod/editpost.php:124
-#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1543
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
 msgstr ""
 
-#: ../../object/Item.php:387 ../../mod/content.php:603
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../object/Item.php:389 ../../object/Item.php:402
-#: ../../mod/content.php:605 ../../include/text.php:1969
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/contacts.php:450
+msgid "Toggle Ignored status"
+msgstr ""
 
-#: ../../object/Item.php:390 ../../mod/content.php:606 ../../boot.php:725
-#: ../../include/contact_widgets.php:205
-msgid "show more"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Unarchive"
 msgstr ""
 
-#: ../../object/Item.php:675 ../../mod/photos.php:1560
-#: ../../mod/photos.php:1604 ../../mod/photos.php:1692
-#: ../../mod/content.php:707
-msgid "This is you"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Archive"
 msgstr ""
 
-#: ../../object/Item.php:678 ../../mod/fsuggest.php:107
-#: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/events.php:478 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1205 ../../mod/photos.php:1512
-#: ../../mod/photos.php:1563 ../../mod/photos.php:1607
-#: ../../mod/photos.php:1695 ../../mod/contacts.php:470
-#: ../../mod/invite.php:140 ../../mod/profiles.php:645
-#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/content.php:710 ../../mod/mood.php:137 ../../mod/crepair.php:181
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:52
-#: ../../view/theme/dispy/config.php:70
-#: ../../view/theme/duepuntozero/config.php:59
-#: ../../view/theme/quattro/config.php:64
-#: ../../view/theme/cleanzero/config.php:80
-msgid "Submit"
+#: ../../mod/contacts.php:457
+msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
-msgid "Bold"
+#: ../../mod/contacts.php:460
+msgid "Repair"
 msgstr ""
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
-msgid "Italic"
+#: ../../mod/contacts.php:463
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
-msgid "Underline"
+#: ../../mod/contacts.php:469
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
-msgid "Quote"
+#: ../../mod/contacts.php:472
+msgid "Contact Editor"
 msgstr ""
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
-msgid "Code"
+#: ../../mod/contacts.php:474 ../../mod/manage.php:110
+#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
+#: ../../mod/message.php:564 ../../mod/crepair.php:186
+#: ../../mod/events.php:478 ../../mod/content.php:710
+#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
+#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
+#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../object/Item.php:678
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/duepuntozero/config.php:59
+msgid "Submit"
 msgstr ""
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
-msgid "Image"
+#: ../../mod/contacts.php:475
+msgid "Profile Visibility"
 msgstr ""
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
-msgid "Link"
+#: ../../mod/contacts.php:476
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
-msgid "Video"
+#: ../../mod/contacts.php:477
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: ../../object/Item.php:687 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1564 ../../mod/photos.php:1608
-#: ../../mod/photos.php:1696 ../../mod/content.php:719
-#: ../../include/conversation.php:1126
-msgid "Preview"
+#: ../../mod/contacts.php:478
+msgid "Edit contact notes"
 msgstr ""
 
-#: ../../index.php:205 ../../mod/apps.php:7
-msgid "You must be logged in to use addons. "
+#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
+#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: ../../index.php:249 ../../mod/help.php:90
-msgid "Not Found"
+#: ../../mod/contacts.php:484
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: ../../index.php:252 ../../mod/help.php:93
-msgid "Page not found."
+#: ../../mod/contacts.php:485
+msgid "Ignore contact"
 msgstr ""
 
-#: ../../index.php:361 ../../mod/profperm.php:19 ../../mod/group.php:72
-msgid "Permission denied"
+#: ../../mod/contacts.php:486
+msgid "Repair URL settings"
 msgstr ""
 
-#: ../../index.php:362 ../../mod/fsuggest.php:78 ../../mod/files.php:170
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/editpost.php:10
-#: ../../mod/dfrn_confirm.php:55 ../../mod/events.php:140
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1050
-#: ../../mod/register.php:42 ../../mod/attach.php:33
-#: ../../mod/contacts.php:249 ../../mod/follow.php:9 ../../mod/uimport.php:23
-#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
-#: ../../mod/settings.php:102 ../../mod/settings.php:593
-#: ../../mod/settings.php:598 ../../mod/display.php:455
-#: ../../mod/profiles.php:148 ../../mod/profiles.php:577
-#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
-#: ../../mod/manage.php:96 ../../mod/delegate.php:12
-#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:110
-#: ../../mod/item.php:149 ../../mod/item.php:165 ../../mod/mood.php:114
-#: ../../mod/network.php:4 ../../mod/crepair.php:119
-#: ../../include/items.php:4575
-msgid "Permission denied."
+#: ../../mod/contacts.php:487
+msgid "View conversations"
 msgstr ""
 
-#: ../../index.php:421
-msgid "toggle mobile"
+#: ../../mod/contacts.php:489
+msgid "Delete contact"
 msgstr ""
 
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
+#: ../../mod/contacts.php:493
+msgid "Last update:"
 msgstr ""
 
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133
-msgid "Contact not found."
+#: ../../mod/contacts.php:495
+msgid "Update public posts"
 msgstr ""
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
+msgid "Update now"
 msgstr ""
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/contacts.php:504
+msgid "Currently blocked"
 msgstr ""
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: ../../mod/contacts.php:505
+msgid "Currently ignored"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
+#: ../../mod/contacts.php:506
+msgid "Currently archived"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
+#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
+#: ../../mod/contacts.php:507
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
+#: ../../mod/contacts.php:508
+msgid "Notification for new posts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/contacts.php:508
+msgid "Send a notification of every new post of this contact"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
+#: ../../mod/contacts.php:509
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
+#: ../../mod/contacts.php:510
+msgid "Disabled"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
+#: ../../mod/contacts.php:510
+msgid "Fetch information"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
+#: ../../mod/contacts.php:510
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
+#: ../../mod/contacts.php:512
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
+#: ../../mod/contacts.php:512
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
+#: ../../mod/contacts.php:563
+msgid "Suggestions"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
+#: ../../mod/contacts.php:566
+msgid "Suggest potential friends"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
+#: ../../mod/contacts.php:569 ../../mod/group.php:194
+msgid "All Contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
+#: ../../mod/contacts.php:572
+msgid "Show all contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
+#: ../../mod/contacts.php:575
+msgid "Unblocked"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: ../../mod/contacts.php:578
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
+#: ../../mod/contacts.php:582
+msgid "Blocked"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
+#: ../../mod/contacts.php:585
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:183
-msgid "Failed to update contact record."
+#: ../../mod/contacts.php:589
+msgid "Ignored"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
+#: ../../mod/contacts.php:592
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
+#: ../../mod/contacts.php:596
+msgid "Archived"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:664
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: ../../mod/contacts.php:599
+msgid "Only show archived contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:675
-msgid "Hide this contact"
+#: ../../mod/contacts.php:603
+msgid "Hidden"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:678
-#, php-format
-msgid "Welcome home %s."
+#: ../../mod/contacts.php:606
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:679
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: ../../mod/contacts.php:654
+msgid "Mutual Friendship"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:680
-msgid "Confirm"
+#: ../../mod/contacts.php:658
+msgid "is a fan of yours"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:721 ../../mod/dfrn_confirm.php:752
-#: ../../include/items.php:3881
-msgid "[Name Withheld]"
+#: ../../mod/contacts.php:662
+msgid "you are a fan of"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:766 ../../mod/photos.php:920
-#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:180
-#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
-#: ../../mod/directory.php:33
-msgid "Public access denied."
+#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
+msgid "Edit contact"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:808
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: ../../mod/contacts.php:701 ../../include/nav.php:175
+#: ../../view/theme/diabook/theme.php:125
+msgid "Contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"http://dir."
-"friendica.com/siteinfo\">follow this link to find a public Friendica site "
-"and join us today</a>."
+#: ../../mod/contacts.php:705
+msgid "Search your contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:831
-msgid "Friend/Connection Request"
+#: ../../mod/contacts.php:706 ../../mod/directory.php:61
+msgid "Finding: "
 msgstr ""
 
-#: ../../mod/dfrn_request.php:832
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: ../../mod/contacts.php:707 ../../mod/directory.php:63
+#: ../../include/contact_widgets.php:34
+msgid "Find"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:833
-msgid "Please answer the following:"
+#: ../../mod/contacts.php:712 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:834
-#, php-format
-msgid "Does %s know you?"
+#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
+#: ../../mod/content.php:438 ../../mod/content.php:741
+#: ../../mod/settings.php:677 ../../mod/photos.php:1654
+#: ../../object/Item.php:130 ../../include/conversation.php:614
+msgid "Delete"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106
-#: ../../mod/register.php:234 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1013 ../../mod/settings.php:1021
-#: ../../mod/settings.php:1025 ../../mod/settings.php:1030
-#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
-#: ../../mod/settings.php:1048 ../../mod/settings.php:1078
-#: ../../mod/settings.php:1079 ../../mod/settings.php:1080
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/profiles.php:620 ../../mod/profiles.php:624
-msgid "No"
+#: ../../mod/hcard.php:10
+msgid "No profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:834 ../../mod/message.php:209
-#: ../../mod/api.php:105 ../../mod/register.php:233 ../../mod/contacts.php:332
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1013
-#: ../../mod/settings.php:1021 ../../mod/settings.php:1025
-#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
-#: ../../mod/settings.php:1042 ../../mod/settings.php:1048
-#: ../../mod/settings.php:1078 ../../mod/settings.php:1079
-#: ../../mod/settings.php:1080 ../../mod/settings.php:1081
-#: ../../mod/settings.php:1082 ../../mod/profiles.php:620
-#: ../../mod/profiles.php:623 ../../mod/suggest.php:29
-#: ../../include/items.php:4420
-msgid "Yes"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
+#: ../../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 ""
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:733
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
+msgid "Permission denied"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
+#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
-#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
-#: ../../mod/photos.php:292 ../../mod/contacts.php:335 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/settings.php:612
-#: ../../mod/settings.php:638 ../../mod/suggest.php:32
-#: ../../include/items.php:4423 ../../include/conversation.php:1129
-msgid "Cancel"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: ../../mod/files.php:156 ../../mod/videos.php:301
-#: ../../include/text.php:1402
-msgid "View Video"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
 msgstr ""
 
-#: ../../mod/profile.php:21 ../../boot.php:1432
-msgid "Requested profile is not available."
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: ../../mod/profile.php:155 ../../mod/display.php:288
-msgid "Access to this profile has been restricted."
+#: ../../mod/display.php:70 ../../mod/display.php:260
+#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
+#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
+#: ../../include/items.php:4487
+msgid "Item not found."
 msgstr ""
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
+#: ../../mod/display.php:200 ../../mod/videos.php:115
+#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
+#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
+#: ../../mod/directory.php:33 ../../mod/photos.php:920
+msgid "Public access denied."
 msgstr ""
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/display.php:308 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
+#: ../../mod/display.php:472
+msgid "Item has been removed."
 msgstr ""
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:443
-#: ../../mod/contacts.php:497 ../../mod/contacts.php:707
-msgid "Ignore"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
 msgstr ""
 
-#: ../../mod/notifications.php:78
-msgid "System"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
 msgstr ""
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:143
-msgid "Network"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
 msgstr ""
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:365
-msgid "Personal"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
 msgstr ""
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
-#: ../../include/nav.php:105 ../../include/nav.php:146
-msgid "Home"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
 msgstr ""
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:152
-msgid "Introductions"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to "
+"join."
 msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
+#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
+#: ../../mod/admin.php:1297 ../../mod/settings.php:85
+#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648
+msgid "Settings"
 msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
 msgstr ""
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
 msgstr ""
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished "
+"directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
 msgstr ""
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+#: ../../mod/profiles.php:665
+msgid "Upload Profile Photo"
 msgstr ""
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:503
-msgid "Hide this contact from others"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make "
+"friends than people who do not."
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown "
+"visitors."
 msgstr ""
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:968
-msgid "Approve"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "yes"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "no"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
 msgstr ""
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
 msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
 msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
 msgstr ""
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:153
-msgid "Notifications"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
 msgstr ""
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
 msgstr ""
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand "
+"new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
 msgstr ""
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr ""
-
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr ""
-
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr ""
-
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr ""
-
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr ""
-
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr ""
-
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr ""
-
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
 msgstr ""
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
 msgstr ""
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with "
+"each group privately on your Network page."
 msgstr ""
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: ../../mod/like.php:149 ../../mod/tagger.php:62 ../../mod/subthread.php:87
-#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1965
-#: ../../include/diaspora.php:1919 ../../include/conversation.php:126
-#: ../../include/conversation.php:254
-msgid "photo"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to "
+"people you've added as friends. For more information, see the help section "
+"from the link above."
 msgstr ""
 
-#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/tagger.php:62
-#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-msgid "status"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
 msgstr ""
 
-#: ../../mod/like.php:166 ../../view/theme/diabook/theme.php:480
-#: ../../include/diaspora.php:1935 ../../include/conversation.php:137
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
 msgstr ""
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
 msgstr ""
 
 #: ../../mod/openid.php:24
@@ -781,2758 +749,2818 @@ msgstr ""
 msgid "Login failed."
 msgstr ""
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
+#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
+#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../view/theme/diabook/theme.php:500
+msgid "Profile Photos"
 msgstr ""
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
+#: ../../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 ""
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
 msgstr ""
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
+#, php-format
+msgid "Image exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
+#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
+#: ../../mod/photos.php:807
+msgid "Unable to process image."
 msgstr ""
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
 msgstr ""
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
 msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
 msgstr ""
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
+#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
+msgid "or"
 msgstr ""
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
 msgstr ""
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:589
-msgid "Site"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
 msgstr ""
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:961 ../../mod/admin.php:976
-msgid "Users"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1065 ../../mod/admin.php:1118
-#: ../../mod/settings.php:57
-msgid "Plugins"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
 msgstr ""
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1286 ../../mod/admin.php:1320
-msgid "Themes"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
+#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
+#: ../../mod/photos.php:834
+msgid "Image upload failed."
 msgstr ""
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1407
-msgid "Logs"
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1965 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:471
+msgid "photo"
 msgstr ""
 
-#: ../../mod/admin.php:128 ../../include/nav.php:182
-msgid "Admin"
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../mod/like.php:319 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475
+msgid "status"
 msgstr ""
 
-#: ../../mod/admin.php:129
-msgid "Plugin Features"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/admin.php:131
-msgid "User registrations waiting for confirmation"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
 msgstr ""
 
-#: ../../mod/admin.php:166 ../../mod/admin.php:1015 ../../mod/admin.php:1228
-#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240
-#: ../../mod/display.php:459 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4379
-msgid "Item not found."
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
 msgstr ""
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:915
-msgid "Normal Account"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:916
-msgid "Soapbox Account"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
 msgstr ""
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:917
-msgid "Community/Celebrity Account"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
 msgstr ""
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:918
-msgid "Automatic Friend Account"
+#: ../../mod/filer.php:30
+msgid "- select -"
 msgstr ""
 
-#: ../../mod/admin.php:194
-msgid "Blog Account"
+#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
+#: ../../include/text.php:955
+msgid "Save"
 msgstr ""
 
-#: ../../mod/admin.php:195
-msgid "Private Forum"
+#: ../../mod/follow.php:27
+msgid "Contact added"
 msgstr ""
 
-#: ../../mod/admin.php:214
-msgid "Message queues"
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
 msgstr ""
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:588 ../../mod/admin.php:960
-#: ../../mod/admin.php:1064 ../../mod/admin.php:1117 ../../mod/admin.php:1285
-#: ../../mod/admin.php:1319 ../../mod/admin.php:1406
-msgid "Administration"
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
 msgstr ""
 
-#: ../../mod/admin.php:220
-msgid "Summary"
+#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
+#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
+msgid "Wall Photos"
 msgstr ""
 
-#: ../../mod/admin.php:222
-msgid "Registered users"
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
 msgstr ""
 
-#: ../../mod/admin.php:224
-msgid "Pending registrations"
+#: ../../mod/item.php:964
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: ../../mod/admin.php:225
-msgid "Version"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: ../../mod/admin.php:229
-msgid "Active plugins"
+#: ../../mod/item.php:967
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: ../../mod/admin.php:252
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: ../../mod/item.php:971
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: ../../mod/admin.php:496
-msgid "Site settings updated."
+#: ../../mod/group.php:29
+msgid "Group created."
 msgstr ""
 
-#: ../../mod/admin.php:525 ../../mod/settings.php:825
-msgid "No special theme for mobile devices"
+#: ../../mod/group.php:35
+msgid "Could not create group."
 msgstr ""
 
-#: ../../mod/admin.php:542 ../../mod/contacts.php:414
-msgid "Never"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
 msgstr ""
 
-#: ../../mod/admin.php:543
-msgid "At post arrival"
+#: ../../mod/group.php:60
+msgid "Group name changed."
 msgstr ""
 
-#: ../../mod/admin.php:544 ../../include/contact_selectors.php:56
-msgid "Frequently"
+#: ../../mod/group.php:87
+msgid "Save Group"
 msgstr ""
 
-#: ../../mod/admin.php:545 ../../include/contact_selectors.php:57
-msgid "Hourly"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: ../../mod/admin.php:546 ../../include/contact_selectors.php:58
-msgid "Twice daily"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
 msgstr ""
 
-#: ../../mod/admin.php:547 ../../include/contact_selectors.php:59
-msgid "Daily"
+#: ../../mod/group.php:113
+msgid "Group removed."
 msgstr ""
 
-#: ../../mod/admin.php:552
-msgid "Multi user instance"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
 msgstr ""
 
-#: ../../mod/admin.php:575
-msgid "Closed"
+#: ../../mod/group.php:179
+msgid "Group Editor"
 msgstr ""
 
-#: ../../mod/admin.php:576
-msgid "Requires approval"
+#: ../../mod/group.php:192
+msgid "Members"
 msgstr ""
 
-#: ../../mod/admin.php:577
-msgid "Open"
+#: ../../mod/apps.php:7 ../../index.php:212
+msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: ../../mod/admin.php:581
-msgid "No SSL policy, links will track page SSL state"
+#: ../../mod/apps.php:11
+msgid "Applications"
 msgstr ""
 
-#: ../../mod/admin.php:582
-msgid "Force all links to use SSL"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
 msgstr ""
 
-#: ../../mod/admin.php:583
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
+#: ../../mod/profiles.php:596
+msgid "Profile not found."
 msgstr ""
 
-#: ../../mod/admin.php:590 ../../mod/admin.php:1119 ../../mod/admin.php:1321
-#: ../../mod/admin.php:1408 ../../mod/settings.php:611
-#: ../../mod/settings.php:721 ../../mod/settings.php:795
-#: ../../mod/settings.php:877 ../../mod/settings.php:1110
-msgid "Save Settings"
+#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
+#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+msgid "Contact not found."
 msgstr ""
 
-#: ../../mod/admin.php:591 ../../mod/register.php:255
-msgid "Registration"
-msgstr ""
-
-#: ../../mod/admin.php:592
-msgid "File upload"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: ../../mod/admin.php:593
-msgid "Policies"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: ../../mod/admin.php:594
-msgid "Advanced"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: ../../mod/admin.php:595
-msgid "Performance"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: ../../mod/admin.php:596
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
 msgstr ""
 
-#: ../../mod/admin.php:599
-msgid "Site name"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: ../../mod/admin.php:600
-msgid "Banner/Logo"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: ../../mod/admin.php:601
-msgid "Additional Info"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: ../../mod/admin.php:601
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
+#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
+#: ../../include/diaspora.php:620
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: ../../mod/admin.php:602
-msgid "System language"
+#: ../../mod/dfrn_confirm.php:571
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: ../../mod/admin.php:603
-msgid "System theme"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: ../../mod/admin.php:603
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: ../../mod/admin.php:604
-msgid "Mobile system theme"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: ../../mod/admin.php:604
-msgid "Theme for mobile devices"
+#: ../../mod/dfrn_confirm.php:627
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: ../../mod/admin.php:605
-msgid "SSL link policy"
+#: ../../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 ""
 
-#: ../../mod/admin.php:605
-msgid "Determines whether generated links should be forced to use SSL"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: ../../mod/admin.php:606
-msgid "Old style 'Share'"
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: ../../mod/admin.php:606
-msgid "Deactivates the bbcode element 'share' for repeating items."
+#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
+#: ../../include/items.php:3979
+msgid "[Name Withheld]"
 msgstr ""
 
-#: ../../mod/admin.php:607
-msgid "Hide help entry from navigation menu"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: ../../mod/admin.php:607
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: ../../mod/profile.php:21 ../../boot.php:1453
+msgid "Requested profile is not available."
 msgstr ""
 
-#: ../../mod/admin.php:608
-msgid "Single user instance"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
 msgstr ""
 
-#: ../../mod/admin.php:608
-msgid "Make this instance multi-user or single-user for the named user"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
 msgstr ""
 
-#: ../../mod/admin.php:609
-msgid "Maximum image size"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: ../../mod/admin.php:609
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: ../../mod/videos.php:301 ../../include/text.php:1402
+msgid "View Video"
 msgstr ""
 
-#: ../../mod/admin.php:610
-msgid "Maximum image length"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
 msgstr ""
 
-#: ../../mod/admin.php:610
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
 msgstr ""
 
-#: ../../mod/admin.php:611
-msgid "JPEG image quality"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
 msgstr ""
 
-#: ../../mod/admin.php:611
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: ../../mod/admin.php:613
-msgid "Register policy"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: ../../mod/admin.php:614
-msgid "Maximum Daily Registrations"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
 msgstr ""
 
-#: ../../mod/admin.php:614
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user "
-"registrations to accept per day.  If register is set to closed, this setting "
-"has no effect."
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: ../../mod/admin.php:615
-msgid "Register text"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
 msgstr ""
 
-#: ../../mod/admin.php:615
-msgid "Will be displayed prominently on the registration page."
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: ../../mod/admin.php:616
-msgid "Accounts abandoned after x days"
+#: ../../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 ""
 
-#: ../../mod/admin.php:616
+#: ../../mod/lostpass.php:53
+#, php-format
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+"\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 ""
 
-#: ../../mod/admin.php:617
-msgid "Allowed friend domains"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: ../../mod/admin.php:617
+#: ../../mod/lostpass.php:92
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: ../../mod/admin.php:618
-msgid "Allowed email domains"
+#: ../../mod/lostpass.php:109 ../../boot.php:1275
+msgid "Password Reset"
 msgstr ""
 
-#: ../../mod/admin.php:618
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: ../../mod/admin.php:619
-msgid "Block public"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
 msgstr ""
 
-#: ../../mod/admin.php:619
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: ../../mod/admin.php:620
-msgid "Force publish"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
 msgstr ""
 
-#: ../../mod/admin.php:620
+#: ../../mod/lostpass.php:114
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: ../../mod/admin.php:621
-msgid "Global directory update URL"
+#: ../../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 ""
 
-#: ../../mod/admin.php:621
+#: ../../mod/lostpass.php:131
+#, php-format
 msgid ""
-"URL to update the global directory. If this is not set, the global directory "
-"is completely unavailable to the application."
+"\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 ""
 
-#: ../../mod/admin.php:622
-msgid "Allow threaded items"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: ../../mod/admin.php:622
-msgid "Allow infinite level threading for items on this site."
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
 msgstr ""
 
-#: ../../mod/admin.php:623
-msgid "Private posts by default for new users"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: ../../mod/admin.php:623
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
 msgstr ""
 
-#: ../../mod/admin.php:624
-msgid "Don't include post content in email notifications"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
 msgstr ""
 
-#: ../../mod/admin.php:624
-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."
+#: ../../mod/like.php:166 ../../include/conversation.php:137
+#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/admin.php:625
-msgid "Disallow public access to addons listed in the apps menu."
+#: ../../mod/like.php:168 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/admin.php:625
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: ../../mod/admin.php:626
-msgid "Don't embed private images in posts"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
 msgstr ""
 
-#: ../../mod/admin.php:626
-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."
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
 msgstr ""
 
-#: ../../mod/admin.php:627
-msgid "Allow Users to set remote_self"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
 msgstr ""
 
-#: ../../mod/admin.php:627
-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."
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
 msgstr ""
 
-#: ../../mod/admin.php:628
-msgid "Block multiple registrations"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
 msgstr ""
 
-#: ../../mod/admin.php:628
-msgid "Disallow users to register additional accounts for use as pages."
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
 msgstr ""
 
-#: ../../mod/admin.php:629
-msgid "OpenID support"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
 msgstr ""
 
-#: ../../mod/admin.php:629
-msgid "OpenID support for registration and logins."
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
 msgstr ""
 
-#: ../../mod/admin.php:630
-msgid "Fullname check"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
 msgstr ""
 
-#: ../../mod/admin.php:630
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
 msgstr ""
 
-#: ../../mod/admin.php:631
-msgid "UTF-8 Regular expressions"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
+msgid "View Contacts"
 msgstr ""
 
-#: ../../mod/admin.php:631
-msgid "Use PHP UTF8 regular expressions"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
 msgstr ""
 
-#: ../../mod/admin.php:632
-msgid "Show Community Page"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
 msgstr ""
 
-#: ../../mod/admin.php:632
-msgid ""
-"Display a Community page showing all recent public postings on this site."
+#: ../../mod/notifications.php:78
+msgid "System"
 msgstr ""
 
-#: ../../mod/admin.php:633
-msgid "Enable OStatus support"
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
 msgstr ""
 
-#: ../../mod/admin.php:633
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
 msgstr ""
 
-#: ../../mod/admin.php:634
-msgid "OStatus conversation completion interval"
+#: ../../mod/notifications.php:93 ../../include/nav.php:105
+#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
+msgid "Home"
 msgstr ""
 
-#: ../../mod/admin.php:634
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
 msgstr ""
 
-#: ../../mod/admin.php:635
-msgid "Enable Diaspora support"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: ../../mod/admin.php:635
-msgid "Provide built-in Diaspora network compatibility."
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: ../../mod/admin.php:636
-msgid "Only allow Friendica contacts"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
 msgstr ""
 
-#: ../../mod/admin.php:636
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
 msgstr ""
 
-#: ../../mod/admin.php:637
-msgid "Verify SSL"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: ../../mod/admin.php:637
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
 msgstr ""
 
-#: ../../mod/admin.php:638
-msgid "Proxy user"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
 msgstr ""
 
-#: ../../mod/admin.php:639
-msgid "Proxy URL"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:977
+msgid "Approve"
 msgstr ""
 
-#: ../../mod/admin.php:640
-msgid "Network timeout"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: ../../mod/admin.php:640
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: ../../mod/notifications.php:181
+msgid "yes"
 msgstr ""
 
-#: ../../mod/admin.php:641
-msgid "Delivery interval"
+#: ../../mod/notifications.php:181
+msgid "no"
 msgstr ""
 
-#: ../../mod/admin.php:641
-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."
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
 msgstr ""
 
-#: ../../mod/admin.php:642
-msgid "Poll interval"
+#: ../../mod/notifications.php:189
+msgid "Friend"
 msgstr ""
 
-#: ../../mod/admin.php:642
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+#: ../../mod/notifications.php:190
+msgid "Sharer"
 msgstr ""
 
-#: ../../mod/admin.php:643
-msgid "Maximum Load Average"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
 msgstr ""
 
-#: ../../mod/admin.php:643
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: ../../mod/admin.php:645
-msgid "Use MySQL full text engine"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
 msgstr ""
 
-#: ../../mod/admin.php:645
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: ../../mod/notifications.php:217
+msgid "No introductions."
 msgstr ""
 
-#: ../../mod/admin.php:646
-msgid "Suppress Language"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
 msgstr ""
 
-#: ../../mod/admin.php:646
-msgid "Suppress language information in meta information about a posting."
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: ../../mod/admin.php:647
-msgid "Path to item cache"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: ../../mod/admin.php:648
-msgid "Cache duration in seconds"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: ../../mod/admin.php:648
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day). To disable the item cache, set the value to -1."
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: ../../mod/admin.php:649
-msgid "Maximum numbers of comments per post"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: ../../mod/admin.php:649
-msgid "How much comments should be shown for each post? Default value is 100."
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
 msgstr ""
 
-#: ../../mod/admin.php:650
-msgid "Path for lock file"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
 msgstr ""
 
-#: ../../mod/admin.php:651
-msgid "Temp path"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:75
+msgid "No more system notifications."
 msgstr ""
 
-#: ../../mod/admin.php:652
-msgid "Base path to installation"
+#: ../../mod/notifications.php:340 ../../mod/notify.php:79
+msgid "System Notifications"
 msgstr ""
 
-#: ../../mod/admin.php:653
-msgid "Disable picture proxy"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
 msgstr ""
 
-#: ../../mod/admin.php:653
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
 msgstr ""
 
-#: ../../mod/admin.php:655
-msgid "New base url"
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
 msgstr ""
 
-#: ../../mod/admin.php:657
-msgid "Disable noscrape"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
 msgstr ""
 
-#: ../../mod/admin.php:657
-msgid ""
-"The noscrape feature speeds up directory submissions by using JSON data "
-"instead of HTML scraping. Disabling it will cause higher load on your server "
-"and the directory server."
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: ../../mod/admin.php:674
-msgid "Update has been marked successful"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: ../../mod/admin.php:682
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: ../../mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: ../../mod/admin.php:685
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: ../../mod/admin.php:697
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: ../../mod/admin.php:700
-#, php-format
-msgid "Update %s was successfully applied."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:704
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: ../../mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: ../../mod/admin.php:706
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: ../../mod/admin.php:725
-msgid "No failed updates."
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:726
-msgid "Check database structure"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:731
-msgid "Failed Updates"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: ../../mod/admin.php:732
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:733
-msgid "Mark success (if update was manually applied)"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
 msgstr ""
 
-#: ../../mod/admin.php:734
-msgid "Attempt to execute this update step automatically"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
 msgstr ""
 
-#: ../../mod/admin.php:766
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
 msgstr ""
 
-#: ../../mod/admin.php:769
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default "
-"profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
 msgstr ""
 
-#: ../../mod/admin.php:801 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: ../../mod/admin.php:813
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:820
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr ""
 
-#: ../../mod/admin.php:859
-#, php-format
-msgid "User '%s' deleted"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
 msgstr ""
 
-#: ../../mod/admin.php:867
-#, php-format
-msgid "User '%s' unblocked"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
 msgstr ""
 
-#: ../../mod/admin.php:867
-#, php-format
-msgid "User '%s' blocked"
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
 msgstr ""
 
-#: ../../mod/admin.php:962
-msgid "Add User"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: ../../mod/admin.php:963
-msgid "select all"
+#: ../../mod/message.php:227
+msgid "Message deleted."
 msgstr ""
 
-#: ../../mod/admin.php:964
-msgid "User registrations waiting for confirm"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
 msgstr ""
 
-#: ../../mod/admin.php:965
-msgid "User waiting for permanent deletion"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: ../../mod/admin.php:966
-msgid "Request date"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
 msgstr ""
 
-#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979
-#: ../../mod/admin.php:992 ../../mod/settings.php:613
-#: ../../mod/settings.php:639 ../../mod/crepair.php:160
-msgid "Name"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
 msgstr ""
 
-#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979
-#: ../../mod/admin.php:994 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
 msgstr ""
 
-#: ../../mod/admin.php:967
-msgid "No registrations."
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
 msgstr ""
 
-#: ../../mod/admin.php:969
-msgid "Deny"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
 msgstr ""
 
-#: ../../mod/admin.php:971 ../../mod/contacts.php:437
-#: ../../mod/contacts.php:496 ../../mod/contacts.php:706
-msgid "Block"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
 msgstr ""
 
-#: ../../mod/admin.php:972 ../../mod/contacts.php:437
-#: ../../mod/contacts.php:496 ../../mod/contacts.php:706
-msgid "Unblock"
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
+#: ../../mod/photos.php:1545 ../../object/Item.php:364
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
 msgstr ""
 
-#: ../../mod/admin.php:973
-msgid "Site admin"
+#: ../../mod/message.php:371
+msgid "No messages."
 msgstr ""
 
-#: ../../mod/admin.php:974
-msgid "Account expired"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
 msgstr ""
 
-#: ../../mod/admin.php:977
-msgid "New User"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
 msgstr ""
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:979
-msgid "Register date"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:979
-msgid "Last login"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
 msgstr ""
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:979
-msgid "Last item"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: ../../mod/admin.php:978
-msgid "Deleted since"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/message.php:450
+msgid "Message not available."
 msgstr ""
 
-#: ../../mod/admin.php:979 ../../mod/settings.php:36
-msgid "Account"
+#: ../../mod/message.php:520
+msgid "Delete message"
 msgstr ""
 
-#: ../../mod/admin.php:981
+#: ../../mod/message.php:548
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: ../../mod/admin.php:982
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: ../../mod/message.php:552
+msgid "Send Reply"
 msgstr ""
 
-#: ../../mod/admin.php:992
-msgid "Name of the new user."
+#: ../../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 ""
 
-#: ../../mod/admin.php:993
-msgid "Nickname"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
 msgstr ""
 
-#: ../../mod/admin.php:993
-msgid "Nickname of the new user."
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
 msgstr ""
 
-#: ../../mod/admin.php:994
-msgid "Email address of the new user."
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
 msgstr ""
 
-#: ../../mod/admin.php:1027
-#, php-format
-msgid "Plugin %s disabled."
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: ../../mod/admin.php:1031
-#, php-format
-msgid "Plugin %s enabled."
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: ../../mod/admin.php:1041 ../../mod/admin.php:1257
-msgid "Disable"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
 msgstr ""
 
-#: ../../mod/admin.php:1043 ../../mod/admin.php:1259
-msgid "Enable"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
 msgstr ""
 
-#: ../../mod/admin.php:1066 ../../mod/admin.php:1287
-msgid "Toggle"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: ../../mod/admin.php:1067 ../../mod/admin.php:1288
-#: ../../mod/newmember.php:22 ../../mod/settings.php:85
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170
-msgid "Settings"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: ../../mod/admin.php:1074 ../../mod/admin.php:1297
-msgid "Author: "
+#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
+#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
+#: ../../mod/settings.php:642
+msgid "Name"
 msgstr ""
 
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1298
-msgid "Maintainer: "
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
 msgstr ""
 
-#: ../../mod/admin.php:1217
-msgid "No themes found."
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: ../../mod/admin.php:1279
-msgid "Screenshot"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
 msgstr ""
 
-#: ../../mod/admin.php:1325
-msgid "[Experimental]"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
 msgstr ""
 
-#: ../../mod/admin.php:1326
-msgid "[Unsupported]"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: ../../mod/admin.php:1353
-msgid "Log settings updated."
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: ../../mod/admin.php:1409
-msgid "Clear"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: ../../mod/admin.php:1415
-msgid "Enable Debugging"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
 msgstr ""
 
-#: ../../mod/admin.php:1416
-msgid "Log file"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
 msgstr ""
 
-#: ../../mod/admin.php:1416
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: ../../mod/admin.php:1417
-msgid "Log level"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: ../../mod/admin.php:1466 ../../mod/contacts.php:493
-msgid "Update now"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
 msgstr ""
 
-#: ../../mod/admin.php:1467
-msgid "Close"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
 msgstr ""
 
-#: ../../mod/admin.php:1473
-msgid "FTP Host"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
 msgstr ""
 
-#: ../../mod/admin.php:1474
-msgid "FTP Path"
+#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
+#: ../../view/theme/diabook/theme.php:126
+msgid "Photos"
 msgstr ""
 
-#: ../../mod/admin.php:1475
-msgid "FTP User"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
 msgstr ""
 
-#: ../../mod/admin.php:1476
-msgid "FTP Password"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
 msgstr ""
 
-#: ../../mod/message.php:9 ../../include/nav.php:162
-msgid "New Message"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
 msgstr ""
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
+#: ../../mod/admin.php:104 ../../mod/admin.php:596
+msgid "Site"
 msgstr ""
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
+#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
+msgid "Users"
 msgstr ""
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
+#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
+#: ../../mod/settings.php:57
+msgid "Plugins"
 msgstr ""
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
+#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+msgid "Themes"
 msgstr ""
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
+#: ../../mod/admin.php:108
+msgid "DB updates"
 msgstr ""
 
-#: ../../mod/message.php:182 ../../include/nav.php:159
-msgid "Messages"
+#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+msgid "Logs"
 msgstr ""
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
+#: ../../mod/admin.php:128 ../../include/nav.php:182
+msgid "Admin"
 msgstr ""
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
+#: ../../mod/admin.php:129
+msgid "Plugin Features"
 msgstr ""
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
+#: ../../mod/admin.php:131
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
+#: ../../mod/admin.php:190 ../../mod/admin.php:924
+msgid "Normal Account"
 msgstr ""
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
+#: ../../mod/admin.php:191 ../../mod/admin.php:925
+msgid "Soapbox Account"
 msgstr ""
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
+#: ../../mod/admin.php:192 ../../mod/admin.php:926
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
+#: ../../mod/admin.php:193 ../../mod/admin.php:927
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
+#: ../../mod/admin.php:194
+msgid "Blog Account"
 msgstr ""
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
+#: ../../mod/admin.php:195
+msgid "Private Forum"
 msgstr ""
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
+#: ../../mod/admin.php:214
+msgid "Message queues"
 msgstr ""
 
-#: ../../mod/message.php:371
-msgid "No messages."
+#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
+#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
+#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+msgid "Administration"
 msgstr ""
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
+#: ../../mod/admin.php:220
+msgid "Summary"
 msgstr ""
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
+#: ../../mod/admin.php:222
+msgid "Registered users"
 msgstr ""
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
+#: ../../mod/admin.php:224
+msgid "Pending registrations"
 msgstr ""
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
+#: ../../mod/admin.php:225
+msgid "Version"
 msgstr ""
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
+#: ../../mod/admin.php:229
+msgid "Active plugins"
 msgstr ""
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/message.php:450
-msgid "Message not available."
+#: ../../mod/admin.php:252
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: ../../mod/message.php:520
-msgid "Delete message"
+#: ../../mod/admin.php:500
+msgid "Site settings updated."
 msgstr ""
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: ../../mod/admin.php:529 ../../mod/settings.php:828
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
+#: ../../mod/admin.php:547
+msgid "At post arrival"
 msgstr ""
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
+#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
+msgid "Frequently"
 msgstr ""
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
+#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
+msgid "Hourly"
 msgstr ""
 
-#: ../../mod/editpost.php:109 ../../mod/filer.php:31 ../../mod/notes.php:63
-#: ../../include/text.php:955
-msgid "Save"
+#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
+msgid "Twice daily"
 msgstr ""
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
+#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
+msgid "Daily"
 msgstr ""
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
+#: ../../mod/admin.php:556
+msgid "Multi user instance"
 msgstr ""
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
+#: ../../mod/admin.php:579
+msgid "Closed"
 msgstr ""
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
+#: ../../mod/admin.php:580
+msgid "Requires approval"
 msgstr ""
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
+#: ../../mod/admin.php:581
+msgid "Open"
 msgstr ""
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
+#: ../../mod/admin.php:585
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
+#: ../../mod/admin.php:586
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
+#: ../../mod/admin.php:587
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
+#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
+#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/settings.php:724 ../../mod/settings.php:798
+#: ../../mod/settings.php:880 ../../mod/settings.php:1113
+msgid "Save Settings"
 msgstr ""
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
+#: ../../mod/admin.php:598 ../../mod/register.php:255
+msgid "Registration"
 msgstr ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
+#: ../../mod/admin.php:599
+msgid "File upload"
 msgstr ""
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
+#: ../../mod/admin.php:600
+msgid "Policies"
 msgstr ""
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
+#: ../../mod/admin.php:601
+msgid "Advanced"
 msgstr ""
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
+#: ../../mod/admin.php:602
+msgid "Performance"
 msgstr ""
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
+#: ../../mod/admin.php:603
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
+#: ../../mod/admin.php:606
+msgid "Site name"
 msgstr ""
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
+#: ../../mod/admin.php:607
+msgid "Host name"
 msgstr ""
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../mod/admin.php:608
+msgid "Banner/Logo"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
-#: ../../mod/profiles.php:589
-msgid "Profile not found."
+#: ../../mod/admin.php:609
+msgid "Additional Info"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:121
+#: ../../mod/admin.php:609
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
+#: ../../mod/admin.php:610
+msgid "System language"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
+#: ../../mod/admin.php:611
+msgid "System theme"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
+#: ../../mod/admin.php:611
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
+#: ../../mod/admin.php:612
+msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
+#: ../../mod/admin.php:612
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
+#: ../../mod/admin.php:613
+msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
+#: ../../mod/admin.php:613
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/diaspora.php:620
-#: ../../include/conversation.php:172
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: ../../mod/admin.php:614
+msgid "Force SSL"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
+#: ../../mod/admin.php:614
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
+#: ../../mod/admin.php:615
+msgid "Old style 'Share'"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: ../../mod/admin.php:615
+msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
+#: ../../mod/admin.php:616
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:627
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: ../../mod/admin.php:616
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: ../../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."
+#: ../../mod/admin.php:617
+msgid "Single user instance"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
+#: ../../mod/admin.php:617
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
+#: ../../mod/admin.php:618
+msgid "Maximum image size"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:797
-#, php-format
-msgid "%1$s has joined %2$s"
+#: ../../mod/admin.php:618
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
+#: ../../mod/admin.php:619
+msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/events.php:291
-msgid "l, F j"
+#: ../../mod/admin.php:619
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: ../../mod/events.php:313
-msgid "Edit event"
+#: ../../mod/admin.php:620
+msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/events.php:335 ../../include/text.php:1644
-#: ../../include/text.php:1654
-msgid "link to source"
+#: ../../mod/admin.php:620
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
-#: ../../boot.php:2114 ../../include/nav.php:80
-msgid "Events"
+#: ../../mod/admin.php:622
+msgid "Register policy"
 msgstr ""
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
+#: ../../mod/admin.php:623
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: ../../mod/events.php:372
-msgid "Previous"
+#: ../../mod/admin.php:623
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user "
+"registrations to accept per day.  If register is set to closed, this setting "
+"has no effect."
 msgstr ""
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
+#: ../../mod/admin.php:624
+msgid "Register text"
 msgstr ""
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
+#: ../../mod/admin.php:624
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/events.php:456
-msgid "Event details"
+#: ../../mod/admin.php:625
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
+#: ../../mod/admin.php:625
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
+#: ../../mod/admin.php:626
+msgid "Allowed friend domains"
 msgstr ""
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
+#: ../../mod/admin.php:626
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
+#: ../../mod/admin.php:627
+msgid "Allowed email domains"
 msgstr ""
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
+#: ../../mod/admin.php:627
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
 msgstr ""
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
+#: ../../mod/admin.php:628
+msgid "Block public"
 msgstr ""
 
-#: ../../mod/events.php:469
-msgid "Description:"
+#: ../../mod/admin.php:628
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1622
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:156
-msgid "Location:"
+#: ../../mod/admin.php:629
+msgid "Force publish"
 msgstr ""
 
-#: ../../mod/events.php:473
-msgid "Title:"
+#: ../../mod/admin.php:629
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/events.php:475
-msgid "Share this event"
+#: ../../mod/admin.php:630
+msgid "Global directory update URL"
 msgstr ""
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
-#: ../../boot.php:2097 ../../include/nav.php:78
-msgid "Photos"
+#: ../../mod/admin.php:630
+msgid ""
+"URL to update the global directory. If this is not set, the global directory "
+"is completely unavailable to the application."
 msgstr ""
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
+#: ../../mod/admin.php:631
+msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/admin.php:631
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: ../../mod/admin.php:632
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
+#: ../../mod/admin.php:632
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: ../../mod/admin.php:633
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
+#: ../../mod/admin.php:633
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
 msgstr ""
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
+#: ../../mod/admin.php:634
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:634
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: ../../mod/nogroup.php:40 ../../mod/contacts.php:479
-#: ../../mod/contacts.php:671 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: ../../mod/admin.php:635
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../mod/nogroup.php:41 ../../mod/contacts.php:672
-msgid "Edit contact"
+#: ../../mod/admin.php:635
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a while."
 msgstr ""
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
+#: ../../mod/admin.php:636
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
+#: ../../mod/admin.php:636
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
 msgstr ""
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
+#: ../../mod/admin.php:637
+msgid "Block multiple registrations"
 msgstr ""
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr ""
-
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr ""
-
-#: ../../mod/friendica.php:68
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: ../../mod/admin.php:637
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
+#: ../../mod/admin.php:638
+msgid "OpenID support"
 msgstr ""
 
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
+#: ../../mod/admin.php:638
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
+#: ../../mod/admin.php:639
+msgid "Fullname check"
 msgstr ""
 
-#: ../../mod/removeme.php:47
+#: ../../mod/admin.php:639
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr ""
-
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr ""
-
-#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr ""
-
-#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr ""
-
-#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178
-#: ../../mod/wall_upload.php:185 ../../mod/item.php:465
-#: ../../include/message.php:144 ../../include/Photo.php:911
-#: ../../include/Photo.php:926 ../../include/Photo.php:933
-#: ../../include/Photo.php:955
-msgid "Wall Photos"
-msgstr ""
-
-#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/admin.php:640
+msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/admin.php:640
+msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/admin.php:641
+msgid "Show Community Page"
 msgstr ""
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:641
 msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+"Display a Community page showing all recent public postings on this site."
 msgstr ""
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: ../../mod/admin.php:642
+msgid "Enable OStatus support"
 msgstr ""
 
-#: ../../mod/photos.php:52 ../../boot.php:2100
-msgid "Photo Albums"
+#: ../../mod/admin.php:642
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
 msgstr ""
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1189 ../../mod/photos.php:1212
-#: ../../mod/photos.php:1758 ../../mod/photos.php:1770
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
+#: ../../mod/admin.php:643
+msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817
-msgid "Upload New Photos"
+#: ../../mod/admin.php:643
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
 msgstr ""
 
-#: ../../mod/photos.php:80 ../../mod/settings.php:29
-msgid "everybody"
+#: ../../mod/admin.php:644
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
+#: ../../mod/admin.php:644
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189
-#: ../../mod/photos.php:1212 ../../mod/profile_photo.php:74
-#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
-#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
-#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500
-#: ../../include/user.php:335 ../../include/user.php:342
-#: ../../include/user.php:349
-msgid "Profile Photos"
+#: ../../mod/admin.php:645
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
+#: ../../mod/admin.php:645
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206
-msgid "Delete Album"
+#: ../../mod/admin.php:646
+msgid "Verify SSL"
 msgstr ""
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
+#: ../../mod/admin.php:646
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you "
+"cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513
-msgid "Delete Photo"
+#: ../../mod/admin.php:647
+msgid "Proxy user"
 msgstr ""
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
+#: ../../mod/admin.php:648
+msgid "Proxy URL"
 msgstr ""
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: ../../mod/admin.php:649
+msgid "Network timeout"
 msgstr ""
 
-#: ../../mod/photos.php:662
-msgid "a photo"
+#: ../../mod/admin.php:649
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
+#: ../../mod/admin.php:650
+msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
+#: ../../mod/admin.php:650
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
 msgstr ""
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
+#: ../../mod/admin.php:651
+msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/photos.php:1031 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
+#: ../../mod/admin.php:651
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: ../../mod/admin.php:652
+msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
+#: ../../mod/admin.php:652
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1201
-msgid "New album name: "
+#: ../../mod/admin.php:654
+msgid "Use MySQL full text engine"
 msgstr ""
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
+#: ../../mod/admin.php:654
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 msgstr ""
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
+#: ../../mod/admin.php:655
+msgid "Suppress Language"
 msgstr ""
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1508
-msgid "Permissions"
+#: ../../mod/admin.php:655
+msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: ../../mod/photos.php:1146 ../../mod/photos.php:1517
-#: ../../mod/settings.php:1145
-msgid "Show to Groups"
+#: ../../mod/admin.php:656
+msgid "Path to item cache"
 msgstr ""
 
-#: ../../mod/photos.php:1147 ../../mod/photos.php:1518
-#: ../../mod/settings.php:1146
-msgid "Show to Contacts"
+#: ../../mod/admin.php:657
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
+#: ../../mod/admin.php:657
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
+#: ../../mod/admin.php:658
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: ../../mod/photos.php:1216
-msgid "Edit Album"
+#: ../../mod/admin.php:658
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: ../../mod/photos.php:1222
-msgid "Show Newest First"
+#: ../../mod/admin.php:659
+msgid "Path for lock file"
 msgstr ""
 
-#: ../../mod/photos.php:1224
-msgid "Show Oldest First"
+#: ../../mod/admin.php:660
+msgid "Temp path"
 msgstr ""
 
-#: ../../mod/photos.php:1257 ../../mod/photos.php:1800
-msgid "View Photo"
+#: ../../mod/admin.php:661
+msgid "Base path to installation"
 msgstr ""
 
-#: ../../mod/photos.php:1292
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/admin.php:662
+msgid "Disable picture proxy"
 msgstr ""
 
-#: ../../mod/photos.php:1294
-msgid "Photo not available"
+#: ../../mod/admin.php:662
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: ../../mod/photos.php:1350
-msgid "View photo"
+#: ../../mod/admin.php:664
+msgid "New base url"
 msgstr ""
 
-#: ../../mod/photos.php:1350
-msgid "Edit photo"
+#: ../../mod/admin.php:666
+msgid "Disable noscrape"
 msgstr ""
 
-#: ../../mod/photos.php:1351
-msgid "Use as profile photo"
+#: ../../mod/admin.php:666
+msgid ""
+"The noscrape feature speeds up directory submissions by using JSON data "
+"instead of HTML scraping. Disabling it will cause higher load on your server "
+"and the directory server."
 msgstr ""
 
-#: ../../mod/photos.php:1376
-msgid "View Full Size"
+#: ../../mod/admin.php:683
+msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/photos.php:1455
-msgid "Tags: "
+#: ../../mod/admin.php:691
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/photos.php:1458
-msgid "[Remove any tag]"
+#: ../../mod/admin.php:694
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: ../../mod/photos.php:1498
-msgid "Rotate CW (right)"
+#: ../../mod/admin.php:706
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: ../../mod/photos.php:1499
-msgid "Rotate CCW (left)"
+#: ../../mod/admin.php:709
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/photos.php:1501
-msgid "New album name"
+#: ../../mod/admin.php:713
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/photos.php:1504
-msgid "Caption"
+#: ../../mod/admin.php:715
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: ../../mod/photos.php:1506
-msgid "Add a Tag"
+#: ../../mod/admin.php:734
+msgid "No failed updates."
 msgstr ""
 
-#: ../../mod/photos.php:1510
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/admin.php:735
+msgid "Check database structure"
 msgstr ""
 
-#: ../../mod/photos.php:1519
-msgid "Private photo"
+#: ../../mod/admin.php:740
+msgid "Failed Updates"
 msgstr ""
 
-#: ../../mod/photos.php:1520
-msgid "Public photo"
+#: ../../mod/admin.php:741
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/photos.php:1542 ../../include/conversation.php:1090
-msgid "Share"
+#: ../../mod/admin.php:742
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/photos.php:1806 ../../mod/videos.php:308
-msgid "View Album"
+#: ../../mod/admin.php:743
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/photos.php:1815
-msgid "Recent Photos"
+#: ../../mod/admin.php:775
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
+#: ../../mod/admin.php:778
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default "
+"profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: ../../mod/admin.php:810 ../../include/user.php:413
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: ../../mod/register.php:96
+#: ../../mod/admin.php:822
 #, 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."
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:829
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:868
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/admin.php:971
+msgid "Add User"
 msgstr ""
 
-#: ../../mod/register.php:214
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: ../../mod/admin.php:972
+msgid "select all"
 msgstr ""
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+#: ../../mod/admin.php:973
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
+#: ../../mod/admin.php:974
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
+#: ../../mod/admin.php:975
+msgid "Request date"
 msgstr ""
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
+#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
 msgstr ""
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
+#: ../../mod/admin.php:976
+msgid "No registrations."
 msgstr ""
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
+#: ../../mod/admin.php:978
+msgid "Deny"
 msgstr ""
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
+#: ../../mod/admin.php:982
+msgid "Site admin"
 msgstr ""
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@$sitename</"
-"strong>'."
+#: ../../mod/admin.php:983
+msgid "Account expired"
 msgstr ""
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
+#: ../../mod/admin.php:986
+msgid "New User"
 msgstr ""
 
-#: ../../mod/register.php:269 ../../boot.php:1215 ../../include/nav.php:109
-msgid "Register"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Register date"
 msgstr ""
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last login"
 msgstr ""
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last item"
 msgstr ""
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
+#: ../../mod/admin.php:987
+msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
+#: ../../mod/admin.php:988 ../../mod/settings.php:36
+msgid "Account"
 msgstr ""
 
-#: ../../mod/lostpass.php:42
-#, php-format
+#: ../../mod/admin.php:990
 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."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/lostpass.php:53
-#, php-format
+#: ../../mod/admin.php:991
 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"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/lostpass.php:72
+#: ../../mod/admin.php:1001
+msgid "Name of the new user."
+msgstr ""
+
+#: ../../mod/admin.php:1002
+msgid "Nickname"
+msgstr ""
+
+#: ../../mod/admin.php:1002
+msgid "Nickname of the new user."
+msgstr ""
+
+#: ../../mod/admin.php:1003
+msgid "Email address of the new user."
+msgstr ""
+
+#: ../../mod/admin.php:1036
 #, php-format
-msgid "Password reset requested at %s"
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: ../../mod/admin.php:1040
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1254
-msgid "Password Reset"
+#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+msgid "Disable"
 msgstr ""
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+msgid "Enable"
 msgstr ""
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
+#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+msgid "Toggle"
 msgstr ""
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+msgid "Author: "
 msgstr ""
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
+#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: ../../mod/admin.php:1226
+msgid "No themes found."
 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"
+#: ../../mod/admin.php:1288
+msgid "Screenshot"
 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"
+#: ../../mod/admin.php:1334
+msgid "[Experimental]"
 msgstr ""
 
-#: ../../mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
+#: ../../mod/admin.php:1335
+msgid "[Unsupported]"
 msgstr ""
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
+#: ../../mod/admin.php:1362
+msgid "Log settings updated."
 msgstr ""
 
-#: ../../mod/lostpass.php:160
+#: ../../mod/admin.php:1418
+msgid "Clear"
+msgstr ""
+
+#: ../../mod/admin.php:1424
+msgid "Enable Debugging"
+msgstr ""
+
+#: ../../mod/admin.php:1425
+msgid "Log file"
+msgstr ""
+
+#: ../../mod/admin.php:1425
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
+#: ../../mod/admin.php:1426
+msgid "Log level"
 msgstr ""
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
+#: ../../mod/admin.php:1476
+msgid "Close"
 msgstr ""
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
+#: ../../mod/admin.php:1482
+msgid "FTP Host"
 msgstr ""
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
+#: ../../mod/admin.php:1483
+msgid "FTP Path"
 msgstr ""
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
+#: ../../mod/admin.php:1484
+msgid "FTP User"
 msgstr ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
+#: ../../mod/admin.php:1485
+msgid "FTP Password"
 msgstr ""
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
+#: ../../mod/network.php:142
+msgid "Search Results For:"
 msgstr ""
 
-#: ../../mod/help.php:79
-msgid "Help:"
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
 msgstr ""
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
+#: ../../mod/network.php:194 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
 msgstr ""
 
-#: ../../mod/contacts.php:107
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr ""
+
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr ""
+
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr ""
+
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr ""
+
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: ../../mod/network.php:380
+msgid "New"
+msgstr ""
+
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr ""
+
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr ""
+
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr ""
+
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr ""
+
+#: ../../mod/network.php:463
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:267
-msgid "Could not access contact record."
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
 msgstr ""
 
-#: ../../mod/contacts.php:181
-msgid "Contact updated."
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
 msgstr ""
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been blocked"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
 msgstr ""
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been unblocked"
+#: ../../mod/network.php:554
+msgid "Contact"
 msgstr ""
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been ignored"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been unignored"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
 msgstr ""
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been archived"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
 msgstr ""
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been unarchived"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
 msgstr ""
 
-#: ../../mod/contacts.php:330 ../../mod/contacts.php:703
-msgid "Do you really want to delete this contact?"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
 msgstr ""
 
-#: ../../mod/contacts.php:347
-msgid "Contact has been removed."
+#: ../../mod/events.php:291
+msgid "l, F j"
 msgstr ""
 
-#: ../../mod/contacts.php:385
-#, php-format
-msgid "You are mutual friends with %s"
+#: ../../mod/events.php:313
+msgid "Edit event"
 msgstr ""
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are sharing with %s"
+#: ../../mod/events.php:335 ../../include/text.php:1644
+#: ../../include/text.php:1654
+msgid "link to source"
 msgstr ""
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "%s is sharing with you"
+#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
+#: ../../view/theme/diabook/theme.php:127
+msgid "Events"
 msgstr ""
 
-#: ../../mod/contacts.php:411
-msgid "Private communications are not available for this contact."
+#: ../../mod/events.php:371
+msgid "Create New Event"
 msgstr ""
 
-#: ../../mod/contacts.php:418
-msgid "(Update was successful)"
+#: ../../mod/events.php:372
+msgid "Previous"
 msgstr ""
 
-#: ../../mod/contacts.php:418
-msgid "(Update was not successful)"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
 msgstr ""
 
-#: ../../mod/contacts.php:420
-msgid "Suggest friends"
+#: ../../mod/events.php:446
+msgid "hour:minute"
 msgstr ""
 
-#: ../../mod/contacts.php:424
-#, php-format
-msgid "Network type: %s"
+#: ../../mod/events.php:456
+msgid "Event details"
 msgstr ""
 
-#: ../../mod/contacts.php:427 ../../include/contact_widgets.php:200
+#: ../../mod/events.php:457
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr ""
+
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr ""
 
-#: ../../mod/contacts.php:432
-msgid "View all contacts"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
 msgstr ""
 
-#: ../../mod/contacts.php:440
-msgid "Toggle Blocked status"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: ../../mod/contacts.php:443 ../../mod/contacts.php:497
-#: ../../mod/contacts.php:707
-msgid "Unignore"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
 msgstr ""
 
-#: ../../mod/contacts.php:446
-msgid "Toggle Ignored status"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Unarchive"
+#: ../../mod/events.php:469
+msgid "Description:"
 msgstr ""
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Archive"
+#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
+#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
+msgid "Location:"
 msgstr ""
 
-#: ../../mod/contacts.php:453
-msgid "Toggle Archive status"
+#: ../../mod/events.php:473
+msgid "Title:"
 msgstr ""
 
-#: ../../mod/contacts.php:456
-msgid "Repair"
+#: ../../mod/events.php:475
+msgid "Share this event"
 msgstr ""
 
-#: ../../mod/contacts.php:459
-msgid "Advanced Contact Settings"
+#: ../../mod/content.php:437 ../../mod/content.php:740
+#: ../../mod/photos.php:1653 ../../object/Item.php:129
+#: ../../include/conversation.php:613
+msgid "Select"
 msgstr ""
 
-#: ../../mod/contacts.php:465
-msgid "Communications lost with this contact!"
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../include/conversation.php:654
+#, php-format
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: ../../mod/contacts.php:468
-msgid "Contact Editor"
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#: ../../object/Item.php:340 ../../include/conversation.php:674
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: ../../mod/contacts.php:471
-msgid "Profile Visibility"
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
 msgstr ""
 
-#: ../../mod/contacts.php:472
+#: ../../mod/content.php:603 ../../object/Item.php:387
 #, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/content.php:605 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../include/text.php:1969
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
+#: ../../include/contact_widgets.php:205
+msgid "show more"
 msgstr ""
 
-#: ../../mod/contacts.php:473
-msgid "Contact Information / Notes"
+#: ../../mod/content.php:620 ../../mod/photos.php:1359
+#: ../../object/Item.php:116
+msgid "Private Message"
 msgstr ""
 
-#: ../../mod/contacts.php:474
-msgid "Edit contact notes"
+#: ../../mod/content.php:684 ../../mod/photos.php:1542
+#: ../../object/Item.php:231
+msgid "I like this (toggle)"
 msgstr ""
 
-#: ../../mod/contacts.php:480
-msgid "Block/Unblock contact"
+#: ../../mod/content.php:684 ../../object/Item.php:231
+msgid "like"
 msgstr ""
 
-#: ../../mod/contacts.php:481
-msgid "Ignore contact"
+#: ../../mod/content.php:685 ../../mod/photos.php:1543
+#: ../../object/Item.php:232
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: ../../mod/contacts.php:482
-msgid "Repair URL settings"
+#: ../../mod/content.php:685 ../../object/Item.php:232
+msgid "dislike"
 msgstr ""
 
-#: ../../mod/contacts.php:483
-msgid "View conversations"
+#: ../../mod/content.php:687 ../../object/Item.php:234
+msgid "Share this"
 msgstr ""
 
-#: ../../mod/contacts.php:485
-msgid "Delete contact"
+#: ../../mod/content.php:687 ../../object/Item.php:234
+msgid "share"
 msgstr ""
 
-#: ../../mod/contacts.php:489
-msgid "Last update:"
+#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
+#: ../../object/Item.php:675
+msgid "This is you"
 msgstr ""
 
-#: ../../mod/contacts.php:491
-msgid "Update public posts"
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
+#: ../../object/Item.php:361 ../../object/Item.php:677
+msgid "Comment"
 msgstr ""
 
-#: ../../mod/contacts.php:500
-msgid "Currently blocked"
+#: ../../mod/content.php:711 ../../object/Item.php:679
+msgid "Bold"
 msgstr ""
 
-#: ../../mod/contacts.php:501
-msgid "Currently ignored"
+#: ../../mod/content.php:712 ../../object/Item.php:680
+msgid "Italic"
 msgstr ""
 
-#: ../../mod/contacts.php:502
-msgid "Currently archived"
+#: ../../mod/content.php:713 ../../object/Item.php:681
+msgid "Underline"
 msgstr ""
 
-#: ../../mod/contacts.php:503
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: ../../mod/content.php:714 ../../object/Item.php:682
+msgid "Quote"
 msgstr ""
 
-#: ../../mod/contacts.php:504
-msgid "Notification for new posts"
+#: ../../mod/content.php:715 ../../object/Item.php:683
+msgid "Code"
 msgstr ""
 
-#: ../../mod/contacts.php:504
-msgid "Send a notification of every new post of this contact"
+#: ../../mod/content.php:716 ../../object/Item.php:684
+msgid "Image"
 msgstr ""
 
-#: ../../mod/contacts.php:505
-msgid "Fetch further information for feeds"
+#: ../../mod/content.php:717 ../../object/Item.php:685
+msgid "Link"
 msgstr ""
 
-#: ../../mod/contacts.php:556
-msgid "Suggestions"
+#: ../../mod/content.php:718 ../../object/Item.php:686
+msgid "Video"
 msgstr ""
 
-#: ../../mod/contacts.php:559
-msgid "Suggest potential friends"
+#: ../../mod/content.php:719 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
+#: ../../mod/photos.php:1698 ../../object/Item.php:687
+#: ../../include/conversation.php:1126
+msgid "Preview"
 msgstr ""
 
-#: ../../mod/contacts.php:562 ../../mod/group.php:194
-msgid "All Contacts"
+#: ../../mod/content.php:728 ../../mod/settings.php:676
+#: ../../object/Item.php:120
+msgid "Edit"
 msgstr ""
 
-#: ../../mod/contacts.php:565
-msgid "Show all contacts"
+#: ../../mod/content.php:753 ../../object/Item.php:195
+msgid "add star"
 msgstr ""
 
-#: ../../mod/contacts.php:568
-msgid "Unblocked"
+#: ../../mod/content.php:754 ../../object/Item.php:196
+msgid "remove star"
 msgstr ""
 
-#: ../../mod/contacts.php:571
-msgid "Only show unblocked contacts"
+#: ../../mod/content.php:755 ../../object/Item.php:197
+msgid "toggle star status"
 msgstr ""
 
-#: ../../mod/contacts.php:575
-msgid "Blocked"
+#: ../../mod/content.php:758 ../../object/Item.php:200
+msgid "starred"
 msgstr ""
 
-#: ../../mod/contacts.php:578
-msgid "Only show blocked contacts"
+#: ../../mod/content.php:759 ../../object/Item.php:220
+msgid "add tag"
 msgstr ""
 
-#: ../../mod/contacts.php:582
-msgid "Ignored"
+#: ../../mod/content.php:763 ../../object/Item.php:133
+msgid "save to folder"
 msgstr ""
 
-#: ../../mod/contacts.php:585
-msgid "Only show ignored contacts"
+#: ../../mod/content.php:854 ../../object/Item.php:328
+msgid "to"
 msgstr ""
 
-#: ../../mod/contacts.php:589
-msgid "Archived"
+#: ../../mod/content.php:855 ../../object/Item.php:330
+msgid "Wall-to-Wall"
 msgstr ""
 
-#: ../../mod/contacts.php:592
-msgid "Only show archived contacts"
+#: ../../mod/content.php:856 ../../object/Item.php:331
+msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: ../../mod/contacts.php:596
-msgid "Hidden"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
 msgstr ""
 
-#: ../../mod/contacts.php:599
-msgid "Only show hidden contacts"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: ../../mod/contacts.php:647
-msgid "Mutual Friendship"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: ../../mod/contacts.php:651
-msgid "is a fan of yours"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: ../../mod/contacts.php:655
-msgid "you are a fan of"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
 msgstr ""
 
-#: ../../mod/contacts.php:694 ../../view/theme/diabook/theme.php:125
-#: ../../include/nav.php:175
-msgid "Contacts"
+#: ../../mod/install.php:127
+msgid "Could not create table."
 msgstr ""
 
-#: ../../mod/contacts.php:698
-msgid "Search your contacts"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: ../../mod/contacts.php:699 ../../mod/directory.php:61
-msgid "Finding: "
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: ../../mod/contacts.php:700 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: ../../mod/contacts.php:705 ../../mod/settings.php:132
-#: ../../mod/settings.php:637
-msgid "Update"
+#: ../../mod/install.php:203
+msgid "System check"
 msgstr ""
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
+#: ../../mod/install.php:208
+msgid "Check again"
 msgstr ""
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
+#: ../../mod/install.php:227
+msgid "Database connection"
 msgstr ""
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
 msgstr ""
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
 msgstr ""
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
 msgstr ""
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also "
-"to inform your friends that you moved here."
+#: ../../mod/install.php:237
+msgid "Database Name"
 msgstr ""
 
-#: ../../mod/uimport.php:69
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr ""
+
+#: ../../mod/install.php:238 ../../mod/install.php:277
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: ../../mod/install.php:267
+msgid "Site settings"
 msgstr ""
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
+#: ../../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 ""
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
+#: ../../mod/install.php:326
+msgid "PHP executable path"
 msgstr ""
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
 msgstr ""
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
 msgstr ""
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
 msgstr ""
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: ../../mod/newmember.php:18
+#: ../../mod/install.php:379
 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."
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
 msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
 msgstr ""
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished "
-"directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2090
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77
-msgid "Profile"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: ../../mod/newmember.php:36 ../../mod/profiles.php:658
-#: ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
 msgstr ""
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make "
-"friends than people who do not."
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
 msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: ../../mod/newmember.php:38
+#: ../../mod/install.php:397
 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."
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/newmember.php:40
+#: ../../mod/install.php:409
 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."
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/newmember.php:49
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/install.php:438
 msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
 msgstr ""
 
-#: ../../mod/newmember.php:51
+#: ../../mod/install.php:439
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
 msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
 msgstr ""
 
-#: ../../mod/newmember.php:56
+#: ../../mod/install.php:441
 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"
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: ../../mod/newmember.php:58
+#: ../../mod/install.php:454
 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."
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
 msgstr ""
 
-#: ../../mod/newmember.php:60
+#: ../../mod/install.php:456
 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."
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
 msgstr ""
 
-#: ../../mod/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."
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
 msgstr ""
 
-#: ../../mod/newmember.php:70
+#: ../../mod/install.php:484
 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."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
 msgstr ""
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: ../../mod/newmember.php:73
+#: ../../mod/install.php:524
 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."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
 msgstr ""
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: ../../mod/search.php:21 ../../mod/network.php:179
-msgid "Remove term"
+#: ../../mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: ../../mod/search.php:30 ../../mod/network.php:188
-#: ../../include/features.php:42
-msgid "Saved Searches"
+#: ../../mod/help.php:79
+msgid "Help:"
 msgstr ""
 
-#: ../../mod/search.php:99 ../../include/text.php:952
-#: ../../include/text.php:953 ../../include/nav.php:119
-msgid "Search"
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
 msgstr ""
 
-#: ../../mod/search.php:170 ../../mod/search.php:196
-#: ../../mod/community.php:62 ../../mod/community.php:71
-msgid "No results."
+#: ../../mod/help.php:90 ../../index.php:256
+msgid "Not Found"
 msgstr ""
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
+#: ../../mod/help.php:93 ../../index.php:259
+msgid "Page not found."
 msgstr ""
 
-#: ../../mod/invite.php:49
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%s : Not a valid email address."
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
 msgstr ""
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
-
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: ../../mod/invite.php:93
+#: ../../mod/wall_attach.php:81
 #, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
+msgid "File exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many "
-"other social networks."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
 msgstr ""
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: ../../mod/match.php:12
+msgid "Profile Match"
 msgstr ""
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: ../../mod/match.php:57
+msgid "is interested in:"
 msgstr ""
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
+#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
 msgstr ""
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
+#: ../../mod/share.php:44
+msgid "link"
 msgstr ""
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+#: ../../mod/community.php:23
+msgid "Not available."
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../mod/community.php:32 ../../include/nav.php:129
+#: ../../view/theme/diabook/theme.php:129
+msgid "Community"
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: ../../mod/community.php:62 ../../mod/community.php:71
+#: ../../mod/search.php:170 ../../mod/search.php:196
+msgid "No results."
 msgstr ""
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
+msgid "everybody"
 msgstr ""
 
 #: ../../mod/settings.php:41
@@ -3543,7 +3571,7 @@ msgstr ""
 msgid "Display"
 msgstr ""
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:777
+#: ../../mod/settings.php:52 ../../mod/settings.php:780
 msgid "Social Networks"
 msgstr ""
 
@@ -3603,1606 +3631,1772 @@ msgstr ""
 msgid "Password update failed. Please try again."
 msgstr ""
 
-#: ../../mod/settings.php:426
+#: ../../mod/settings.php:428
 msgid " Please use a shorter name."
 msgstr ""
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:430
 msgid " Name too short."
 msgstr ""
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:439
 msgid "Wrong Password"
 msgstr ""
 
-#: ../../mod/settings.php:442
+#: ../../mod/settings.php:444
 msgid " Not valid email."
 msgstr ""
 
-#: ../../mod/settings.php:448
+#: ../../mod/settings.php:450
 msgid " Cannot change to that email."
 msgstr ""
 
-#: ../../mod/settings.php:503
+#: ../../mod/settings.php:506
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:507
+#: ../../mod/settings.php:510
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:537
+#: ../../mod/settings.php:540
 msgid "Settings updated."
 msgstr ""
 
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:675
 msgid "Add application"
 msgstr ""
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:617 ../../mod/settings.php:643
 msgid "Consumer Key"
 msgstr ""
 
-#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
 msgid "Consumer Secret"
 msgstr ""
 
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
+#: ../../mod/settings.php:619 ../../mod/settings.php:645
 msgid "Redirect"
 msgstr ""
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
 msgid "Icon url"
 msgstr ""
 
-#: ../../mod/settings.php:628
+#: ../../mod/settings.php:631
 msgid "You can't edit this application."
 msgstr ""
 
-#: ../../mod/settings.php:671
+#: ../../mod/settings.php:674
 msgid "Connected Apps"
 msgstr ""
 
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:678
 msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/settings.php:676
+#: ../../mod/settings.php:679
 msgid "No name"
 msgstr ""
 
-#: ../../mod/settings.php:677
+#: ../../mod/settings.php:680
 msgid "Remove authorization"
 msgstr ""
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:692
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:700
 msgid "Plugin Settings"
 msgstr ""
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "Off"
 msgstr ""
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "On"
 msgstr ""
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:722
 msgid "Additional Features"
 msgstr ""
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr ""
+
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr ""
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "disabled"
 msgstr ""
 
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:737
 msgid "StatusNet"
 msgstr ""
 
-#: ../../mod/settings.php:770
+#: ../../mod/settings.php:773
 msgid "Email access is disabled on this site."
 msgstr ""
 
-#: ../../mod/settings.php:782
+#: ../../mod/settings.php:785
 msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:786
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: ../../mod/settings.php:784
+#: ../../mod/settings.php:787
 msgid "Last successful email check:"
 msgstr ""
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:789
 msgid "IMAP server name:"
 msgstr ""
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:790
 msgid "IMAP port:"
 msgstr ""
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:791
 msgid "Security:"
 msgstr ""
 
-#: ../../mod/settings.php:788 ../../mod/settings.php:793
+#: ../../mod/settings.php:791 ../../mod/settings.php:796
 msgid "None"
 msgstr ""
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:792
 msgid "Email login name:"
 msgstr ""
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:793
 msgid "Email password:"
 msgstr ""
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:794
 msgid "Reply-to address:"
 msgstr ""
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:795
 msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Action after import:"
 msgstr ""
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Mark as seen"
 msgstr ""
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Move to folder"
 msgstr ""
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:797
 msgid "Move to folder:"
 msgstr ""
 
-#: ../../mod/settings.php:875
+#: ../../mod/settings.php:878
 msgid "Display Settings"
 msgstr ""
 
-#: ../../mod/settings.php:881 ../../mod/settings.php:896
+#: ../../mod/settings.php:884 ../../mod/settings.php:899
 msgid "Display Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:885
 msgid "Mobile Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Minimum of 10 seconds, no maximum"
 msgstr ""
 
-#: ../../mod/settings.php:884
+#: ../../mod/settings.php:887
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:885
+#: ../../mod/settings.php:887 ../../mod/settings.php:888
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:888
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:889
 msgid "Don't show emoticons"
 msgstr ""
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:890
 msgid "Don't show notices"
 msgstr ""
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:891
 msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:892
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:969
 msgid "User Types"
 msgstr ""
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Types"
 msgstr ""
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 msgid "Normal Account Page"
 msgstr ""
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:972
 msgid "This account is a normal personal profile"
 msgstr ""
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:975
 msgid "Soapbox Page"
 msgstr ""
 
-#: ../../mod/settings.php:973
+#: ../../mod/settings.php:976
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:980
 msgid "Automatically approve all connection/friend requests as read-write fans"
 msgstr ""
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:983
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:984
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:987
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:988
 msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "OpenID:"
 msgstr ""
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1010
 msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: ../../mod/settings.php:1013
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:234 ../../mod/profiles.php:627
+#: ../../mod/profiles.php:631 ../../mod/api.php:106
+msgid "No"
+msgstr ""
+
+#: ../../mod/settings.php:1016
 msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1024
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: ../../mod/settings.php:1025 ../../include/conversation.php:1057
+#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
 msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1028
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr ""
+
+#: ../../mod/settings.php:1033
 msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1039
 msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1045
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1051
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1059
 msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr ""
-
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr ""
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1079
 msgid "Advanced expiration settings"
 msgstr ""
 
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1080
 msgid "Advanced Expiration"
 msgstr ""
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1081
 msgid "Expire posts:"
 msgstr ""
 
-#: ../../mod/settings.php:1079
-msgid "Expire personal notes:"
+#: ../../mod/settings.php:1082
+msgid "Expire personal notes:"
+msgstr ""
+
+#: ../../mod/settings.php:1083
+msgid "Expire starred posts:"
+msgstr ""
+
+#: ../../mod/settings.php:1084
+msgid "Expire photos:"
+msgstr ""
+
+#: ../../mod/settings.php:1085
+msgid "Only expire posts by others:"
+msgstr ""
+
+#: ../../mod/settings.php:1111
+msgid "Account Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1119
+msgid "Password Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1120
+msgid "New Password:"
+msgstr ""
+
+#: ../../mod/settings.php:1121
+msgid "Confirm:"
+msgstr ""
+
+#: ../../mod/settings.php:1121
+msgid "Leave password fields blank unless changing"
+msgstr ""
+
+#: ../../mod/settings.php:1122
+msgid "Current Password:"
+msgstr ""
+
+#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+msgid "Your current password to confirm the changes"
+msgstr ""
+
+#: ../../mod/settings.php:1123
+msgid "Password:"
+msgstr ""
+
+#: ../../mod/settings.php:1127
+msgid "Basic Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr ""
+
+#: ../../mod/settings.php:1129
+msgid "Email Address:"
+msgstr ""
+
+#: ../../mod/settings.php:1130
+msgid "Your Timezone:"
+msgstr ""
+
+#: ../../mod/settings.php:1131
+msgid "Default Post Location:"
+msgstr ""
+
+#: ../../mod/settings.php:1132
+msgid "Use Browser Location:"
+msgstr ""
+
+#: ../../mod/settings.php:1135
+msgid "Security and Privacy Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1137
+msgid "Maximum Friend Requests/Day:"
+msgstr ""
+
+#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+msgid "(to prevent spam abuse)"
+msgstr ""
+
+#: ../../mod/settings.php:1138
+msgid "Default Post Permissions"
+msgstr ""
+
+#: ../../mod/settings.php:1139
+msgid "(click to open/close)"
+msgstr ""
+
+#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/photos.php:1519
+msgid "Show to Groups"
+msgstr ""
+
+#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/photos.php:1520
+msgid "Show to Contacts"
+msgstr ""
+
+#: ../../mod/settings.php:1150
+msgid "Default Private Post"
+msgstr ""
+
+#: ../../mod/settings.php:1151
+msgid "Default Public Post"
+msgstr ""
+
+#: ../../mod/settings.php:1155
+msgid "Default Permissions for New Posts"
+msgstr ""
+
+#: ../../mod/settings.php:1167
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: ../../mod/settings.php:1170
+msgid "Notification Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1171
+msgid "By default post a status message when:"
+msgstr ""
+
+#: ../../mod/settings.php:1172
+msgid "accepting a friend request"
+msgstr ""
+
+#: ../../mod/settings.php:1173
+msgid "joining a forum/community"
+msgstr ""
+
+#: ../../mod/settings.php:1174
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
+
+#: ../../mod/settings.php:1175
+msgid "Send a notification email when:"
+msgstr ""
+
+#: ../../mod/settings.php:1176
+msgid "You receive an introduction"
 msgstr ""
 
-#: ../../mod/settings.php:1080
-msgid "Expire starred posts:"
+#: ../../mod/settings.php:1177
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: ../../mod/settings.php:1081
-msgid "Expire photos:"
+#: ../../mod/settings.php:1178
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: ../../mod/settings.php:1082
-msgid "Only expire posts by others:"
+#: ../../mod/settings.php:1179
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: ../../mod/settings.php:1108
-msgid "Account Settings"
+#: ../../mod/settings.php:1180
+msgid "You receive a private message"
 msgstr ""
 
-#: ../../mod/settings.php:1116
-msgid "Password Settings"
+#: ../../mod/settings.php:1181
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: ../../mod/settings.php:1117
-msgid "New Password:"
+#: ../../mod/settings.php:1182
+msgid "You are tagged in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1118
-msgid "Confirm:"
+#: ../../mod/settings.php:1183
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1118
-msgid "Leave password fields blank unless changing"
+#: ../../mod/settings.php:1185
+msgid "Text-only notification emails"
 msgstr ""
 
-#: ../../mod/settings.php:1119
-msgid "Current Password:"
+#: ../../mod/settings.php:1187
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: ../../mod/settings.php:1119 ../../mod/settings.php:1120
-msgid "Your current password to confirm the changes"
+#: ../../mod/settings.php:1189
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1120
-msgid "Password:"
+#: ../../mod/settings.php:1190
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../mod/settings.php:1124
-msgid "Basic Settings"
+#: ../../mod/settings.php:1193
+msgid "Relocate"
 msgstr ""
 
-#: ../../mod/settings.php:1125 ../../include/profile_advanced.php:15
-msgid "Full Name:"
+#: ../../mod/settings.php:1194
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
 msgstr ""
 
-#: ../../mod/settings.php:1126
-msgid "Email Address:"
+#: ../../mod/settings.php:1195
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: ../../mod/settings.php:1127
-msgid "Your Timezone:"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: ../../mod/settings.php:1128
-msgid "Default Post Location:"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: ../../mod/settings.php:1129
-msgid "Use Browser Location:"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: ../../mod/settings.php:1132
-msgid "Security and Privacy Settings"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: ../../mod/settings.php:1134
-msgid "Maximum Friend Requests/Day:"
-msgstr ""
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/settings.php:1134 ../../mod/settings.php:1164
-msgid "(to prevent spam abuse)"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
 msgstr ""
 
-#: ../../mod/settings.php:1135
-msgid "Default Post Permissions"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: ../../mod/settings.php:1136
-msgid "(click to open/close)"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
 msgstr ""
 
-#: ../../mod/settings.php:1147
-msgid "Default Private Post"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: ../../mod/settings.php:1148
-msgid "Default Public Post"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: ../../mod/settings.php:1152
-msgid "Default Permissions for New Posts"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: ../../mod/settings.php:1164
-msgid "Maximum private messages per day from unknown people:"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
 msgstr ""
 
-#: ../../mod/settings.php:1167
-msgid "Notification Settings"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
 msgstr ""
 
-#: ../../mod/settings.php:1168
-msgid "By default post a status message when:"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: ../../mod/settings.php:1169
-msgid "accepting a friend request"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
 msgstr ""
 
-#: ../../mod/settings.php:1170
-msgid "joining a forum/community"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: ../../mod/settings.php:1171
-msgid "making an <em>interesting</em> profile change"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: ../../mod/settings.php:1172
-msgid "Send a notification email when:"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
 msgstr ""
 
-#: ../../mod/settings.php:1173
-msgid "You receive an introduction"
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: ../../mod/settings.php:1174
-msgid "Your introductions are confirmed"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: ../../mod/settings.php:1175
-msgid "Someone writes on your profile wall"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: ../../mod/settings.php:1176
-msgid "Someone writes a followup comment"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: ../../mod/settings.php:1177
-msgid "You receive a private message"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
 msgstr ""
 
-#: ../../mod/settings.php:1178
-msgid "You receive a friend suggestion"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: ../../mod/settings.php:1179
-msgid "You are tagged in a post"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: ../../mod/settings.php:1180
-msgid "You are poked/prodded/etc. in a post"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
 msgstr ""
 
-#: ../../mod/settings.php:1183
-msgid "Advanced Account/Page Type Settings"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: ../../mod/settings.php:1184
-msgid "Change the behaviour of this account for special situations"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"http://dir."
+"friendica.com/siteinfo\">follow this link to find a public Friendica site "
+"and join us today</a>."
 msgstr ""
 
-#: ../../mod/settings.php:1187
-msgid "Relocate"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: ../../mod/settings.php:1188
+#: ../../mod/dfrn_request.php:828
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: ../../mod/settings.php:1189
-msgid "Resend relocate message to contacts"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
 msgstr ""
 
-#: ../../mod/display.php:452
-msgid "Item has been removed."
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
 msgstr ""
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
 msgstr ""
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
 msgstr ""
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
 msgstr ""
 
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: ../../mod/profiles.php:331
-msgid "Likes"
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: ../../mod/profiles.php:342
-msgid "Religion"
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: ../../mod/profiles.php:346
-msgid "Political Views"
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: ../../mod/profiles.php:350
-msgid "Gender"
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: ../../mod/profiles.php:358
-msgid "Homepage"
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
 msgstr ""
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:657
-msgid "Interests"
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
 msgstr ""
 
-#: ../../mod/profiles.php:366
-msgid "Address"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
 msgstr ""
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:653
-msgid "Location"
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@$sitename</"
+"strong>'."
 msgstr ""
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
 msgstr ""
 
-#: ../../mod/profiles.php:527
-msgid " and "
+#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
+msgid "Register"
 msgstr ""
 
-#: ../../mod/profiles.php:535
-msgid "public profile"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
 msgstr ""
 
-#: ../../mod/profiles.php:538
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: ../../mod/profiles.php:539
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
 msgstr ""
 
-#: ../../mod/profiles.php:542
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: ../../mod/search.php:99 ../../include/text.php:952
+#: ../../include/text.php:953 ../../include/nav.php:119
+msgid "Search"
 msgstr ""
 
-#: ../../mod/profiles.php:617
-msgid "Hide contacts and friends:"
+#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
 msgstr ""
 
-#: ../../mod/profiles.php:622
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
 msgstr ""
 
-#: ../../mod/profiles.php:644
-msgid "Edit Profile Details"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
 msgstr ""
 
-#: ../../mod/profiles.php:646
-msgid "Change Profile Photo"
+#: ../../mod/directory.php:113 ../../mod/profiles.php:716
+msgid "Age: "
 msgstr ""
 
-#: ../../mod/profiles.php:647
-msgid "View this profile"
+#: ../../mod/directory.php:116
+msgid "Gender: "
 msgstr ""
 
-#: ../../mod/profiles.php:648
-msgid "Create a new profile using these settings"
+#: ../../mod/directory.php:138 ../../boot.php:1645
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
 msgstr ""
 
-#: ../../mod/profiles.php:649
-msgid "Clone this profile"
+#: ../../mod/directory.php:140 ../../boot.php:1648
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
 msgstr ""
 
-#: ../../mod/profiles.php:650
-msgid "Delete this profile"
+#: ../../mod/directory.php:142 ../../boot.php:1650
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
 msgstr ""
 
-#: ../../mod/profiles.php:651
-msgid "Basic information"
+#: ../../mod/directory.php:144 ../../boot.php:1652
+#: ../../include/profile_advanced.php:58
+msgid "About:"
 msgstr ""
 
-#: ../../mod/profiles.php:652
-msgid "Profile picture"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: ../../mod/profiles.php:654
-msgid "Preferences"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
 msgstr ""
 
-#: ../../mod/profiles.php:655
-msgid "Status information"
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
 msgstr ""
 
-#: ../../mod/profiles.php:656
-msgid "Additional information"
+#: ../../mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
 msgstr ""
 
-#: ../../mod/profiles.php:659
-msgid "Profile Name:"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
 msgstr ""
 
-#: ../../mod/profiles.php:660
-msgid "Your Full Name:"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: ../../mod/profiles.php:661
-msgid "Title/Description:"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
 msgstr ""
 
-#: ../../mod/profiles.php:662
-msgid "Your Gender:"
+#: ../../mod/delegate.php:140
+msgid "Add"
 msgstr ""
 
-#: ../../mod/profiles.php:663
-#, php-format
-msgid "Birthday (%s):"
+#: ../../mod/delegate.php:141
+msgid "No entries."
 msgstr ""
 
-#: ../../mod/profiles.php:664
-msgid "Street Address:"
+#: ../../mod/common.php:42
+msgid "Common Friends"
 msgstr ""
 
-#: ../../mod/profiles.php:665
-msgid "Locality/City:"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
 msgstr ""
 
-#: ../../mod/profiles.php:666
-msgid "Postal/Zip Code:"
+#: ../../mod/uexport.php:77
+msgid "Export account"
 msgstr ""
 
-#: ../../mod/profiles.php:667
-msgid "Country:"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
 msgstr ""
 
-#: ../../mod/profiles.php:668
-msgid "Region/State:"
+#: ../../mod/uexport.php:78
+msgid "Export all"
 msgstr ""
 
-#: ../../mod/profiles.php:669
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
 msgstr ""
 
-#: ../../mod/profiles.php:670
-msgid "Who: (if applicable)"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:671
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/mood.php:133
+msgid "Mood"
 msgstr ""
 
-#: ../../mod/profiles.php:672
-msgid "Since [date]:"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: ../../mod/profiles.php:673 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: ../../mod/profiles.php:674
-msgid "Homepage URL:"
+#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:527
+msgid "Friend Suggestions"
 msgstr ""
 
-#: ../../mod/profiles.php:675 ../../include/profile_advanced.php:50
-msgid "Hometown:"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: ../../mod/profiles.php:676 ../../include/profile_advanced.php:54
-msgid "Political Views:"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
 msgstr ""
 
-#: ../../mod/profiles.php:677
-msgid "Religious Views:"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
 msgstr ""
 
-#: ../../mod/profiles.php:678
-msgid "Public Keywords:"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
 msgstr ""
 
-#: ../../mod/profiles.php:679
-msgid "Private Keywords:"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
 msgstr ""
 
-#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:62
-msgid "Likes:"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: ../../mod/profiles.php:681 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
+#: ../../mod/profiles.php:172
+msgid "Profile Name is required."
 msgstr ""
 
-#: ../../mod/profiles.php:682
-msgid "Example: fishing photography software"
+#: ../../mod/profiles.php:323
+msgid "Marital Status"
 msgstr ""
 
-#: ../../mod/profiles.php:683
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: ../../mod/profiles.php:327
+msgid "Romantic Partner"
 msgstr ""
 
-#: ../../mod/profiles.php:684
-msgid "(Used for searching profiles, never shown to others)"
+#: ../../mod/profiles.php:331
+msgid "Likes"
 msgstr ""
 
-#: ../../mod/profiles.php:685
-msgid "Tell us about yourself..."
+#: ../../mod/profiles.php:335
+msgid "Dislikes"
 msgstr ""
 
-#: ../../mod/profiles.php:686
-msgid "Hobbies/Interests"
+#: ../../mod/profiles.php:339
+msgid "Work/Employment"
 msgstr ""
 
-#: ../../mod/profiles.php:687
-msgid "Contact information and Social Networks"
+#: ../../mod/profiles.php:342
+msgid "Religion"
 msgstr ""
 
-#: ../../mod/profiles.php:688
-msgid "Musical interests"
+#: ../../mod/profiles.php:346
+msgid "Political Views"
 msgstr ""
 
-#: ../../mod/profiles.php:689
-msgid "Books, literature"
+#: ../../mod/profiles.php:350
+msgid "Gender"
 msgstr ""
 
-#: ../../mod/profiles.php:690
-msgid "Television"
+#: ../../mod/profiles.php:354
+msgid "Sexual Preference"
 msgstr ""
 
-#: ../../mod/profiles.php:691
-msgid "Film/dance/culture/entertainment"
+#: ../../mod/profiles.php:358
+msgid "Homepage"
 msgstr ""
 
-#: ../../mod/profiles.php:692
-msgid "Love/romance"
+#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
+msgid "Interests"
 msgstr ""
 
-#: ../../mod/profiles.php:693
-msgid "Work/employment"
+#: ../../mod/profiles.php:366
+msgid "Address"
 msgstr ""
 
-#: ../../mod/profiles.php:694
-msgid "School/education"
+#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
+msgid "Location"
 msgstr ""
 
-#: ../../mod/profiles.php:699
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: ../../mod/profiles.php:456
+msgid "Profile updated."
 msgstr ""
 
-#: ../../mod/profiles.php:709 ../../mod/directory.php:113
-msgid "Age: "
+#: ../../mod/profiles.php:534
+msgid " and "
 msgstr ""
 
-#: ../../mod/profiles.php:762
-msgid "Edit/Manage Profiles"
+#: ../../mod/profiles.php:542
+msgid "public profile"
 msgstr ""
 
-#: ../../mod/profiles.php:763 ../../boot.php:1585 ../../boot.php:1611
-msgid "Change profile photo"
+#: ../../mod/profiles.php:545
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/profiles.php:764 ../../boot.php:1586
-msgid "Create New Profile"
+#: ../../mod/profiles.php:546
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:775 ../../boot.php:1596
-msgid "Profile Image"
+#: ../../mod/profiles.php:549
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: ../../mod/profiles.php:777 ../../boot.php:1599
-msgid "visible to everybody"
+#: ../../mod/profiles.php:624
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: ../../mod/profiles.php:778 ../../boot.php:1600
-msgid "Edit visibility"
+#: ../../mod/profiles.php:629
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: ../../mod/share.php:44
-msgid "link"
+#: ../../mod/profiles.php:651
+msgid "Edit Profile Details"
 msgstr ""
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
+#: ../../mod/profiles.php:653
+msgid "Change Profile Photo"
 msgstr ""
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: ../../mod/profiles.php:654
+msgid "View this profile"
 msgstr ""
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
+#: ../../mod/profiles.php:655
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: ../../mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: ../../mod/profiles.php:656
+msgid "Clone this profile"
 msgstr ""
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
+#: ../../mod/profiles.php:657
+msgid "Delete this profile"
 msgstr ""
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
+#: ../../mod/profiles.php:658
+msgid "Basic information"
 msgstr ""
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
+#: ../../mod/profiles.php:659
+msgid "Profile picture"
 msgstr ""
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
+#: ../../mod/profiles.php:661
+msgid "Preferences"
 msgstr ""
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
+#: ../../mod/profiles.php:662
+msgid "Status information"
 msgstr ""
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
+#: ../../mod/profiles.php:663
+msgid "Additional information"
 msgstr ""
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
+#: ../../mod/profiles.php:666
+msgid "Profile Name:"
 msgstr ""
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
+#: ../../mod/profiles.php:667
+msgid "Your Full Name:"
 msgstr ""
 
-#: ../../mod/ping.php:281
-#, php-format
-msgid "{0} tagged %s's post with #%s"
+#: ../../mod/profiles.php:668
+msgid "Title/Description:"
 msgstr ""
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
+#: ../../mod/profiles.php:669
+msgid "Your Gender:"
 msgstr ""
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
+#: ../../mod/profiles.php:670
+#, php-format
+msgid "Birthday (%s):"
 msgstr ""
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
+#: ../../mod/profiles.php:671
+msgid "Street Address:"
 msgstr ""
 
-#: ../../mod/community.php:23
-msgid "Not available."
+#: ../../mod/profiles.php:672
+msgid "Locality/City:"
 msgstr ""
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
-#: ../../include/nav.php:129
-msgid "Community"
+#: ../../mod/profiles.php:673
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
+#: ../../mod/profiles.php:674
+msgid "Country:"
 msgstr ""
 
-#: ../../mod/filer.php:30
-msgid "- select -"
+#: ../../mod/profiles.php:675
+msgid "Region/State:"
 msgstr ""
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: ../../mod/profiles.php:676
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
+#: ../../mod/profiles.php:677
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
+#: ../../mod/profiles.php:678
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
+#: ../../mod/profiles.php:679
+msgid "Since [date]:"
 msgstr ""
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
+#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
 msgstr ""
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
+#: ../../mod/profiles.php:681
+msgid "Homepage URL:"
 msgstr ""
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
+#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
+msgid "Hometown:"
 msgstr ""
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
+#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
+msgid "Political Views:"
 msgstr ""
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
+#: ../../mod/profiles.php:684
+msgid "Religious Views:"
 msgstr ""
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: ../../mod/profiles.php:685
+msgid "Public Keywords:"
 msgstr ""
 
-#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
-#: ../../include/contact_widgets.php:35
-msgid "Friend Suggestions"
+#: ../../mod/profiles.php:686
+msgid "Private Keywords:"
 msgstr ""
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
+msgid "Likes:"
 msgstr ""
 
-#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1542
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
+#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
+#: ../../mod/profiles.php:689
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
+#: ../../mod/profiles.php:690
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: ../../mod/profiles.php:691
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
+#: ../../mod/profiles.php:692
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+#: ../../mod/profiles.php:693
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
+#: ../../mod/profiles.php:694
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
+#: ../../mod/profiles.php:695
+msgid "Musical interests"
 msgstr ""
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:168
-msgid "Delegate Page Management"
+#: ../../mod/profiles.php:696
+msgid "Books, literature"
 msgstr ""
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: ../../mod/profiles.php:697
+msgid "Television"
 msgstr ""
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
+#: ../../mod/profiles.php:698
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
+#: ../../mod/profiles.php:699
+msgid "Love/romance"
 msgstr ""
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
+#: ../../mod/profiles.php:700
+msgid "Work/employment"
 msgstr ""
 
-#: ../../mod/delegate.php:140
-msgid "Add"
+#: ../../mod/profiles.php:701
+msgid "School/education"
 msgstr ""
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
+#: ../../mod/profiles.php:706
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
+#: ../../mod/profiles.php:769
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
-msgid "View Contacts"
+#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
+msgid "Change profile photo"
 msgstr ""
 
-#: ../../mod/notes.php:44 ../../boot.php:2121
-msgid "Personal Notes"
+#: ../../mod/profiles.php:771 ../../boot.php:1607
+msgid "Create New Profile"
 msgstr ""
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
+#: ../../mod/profiles.php:782 ../../boot.php:1617
+msgid "Profile Image"
 msgstr ""
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: ../../mod/profiles.php:784 ../../boot.php:1620
+msgid "visible to everybody"
 msgstr ""
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
+#: ../../mod/profiles.php:785 ../../boot.php:1621
+msgid "Edit visibility"
 msgstr ""
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
 msgstr ""
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
 msgstr ""
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
 msgstr ""
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
 msgstr ""
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
 msgstr ""
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
 msgstr ""
 
-#: ../../mod/directory.php:138 ../../boot.php:1624
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
 msgstr ""
 
-#: ../../mod/directory.php:140 ../../boot.php:1627
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
 msgstr ""
 
-#: ../../mod/directory.php:142 ../../boot.php:1629
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
 msgstr ""
 
-#: ../../mod/directory.php:144 ../../include/profile_advanced.php:58
-msgid "About:"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
 msgstr ""
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
 msgstr ""
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:134
-msgid "l F d, Y \\@ g:i A"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
 msgstr ""
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
 msgstr ""
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
 msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
 msgstr ""
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr ""
+
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
 msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
 msgstr ""
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
 msgstr ""
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: ../../mod/friendica.php:63
+msgid "running at web location"
 msgstr ""
 
-#: ../../mod/profile_photo.php:118
+#: ../../mod/friendica.php:65
 msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr ""
-
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
+#: ../../mod/friendica.php:82
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
 msgstr ""
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../mod/api.php:89
+msgid "Please login to continue."
 msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
 msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
 msgstr ""
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
+#: ../../mod/notes.php:44 ../../boot.php:2145
+msgid "Personal Notes"
 msgstr ""
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
+#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
+#: ../../include/event.php:11
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
 msgstr ""
 
-#: ../../mod/install.php:138
+#: ../../mod/localtime.php:26
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: ../../mod/install.php:203
-msgid "System check"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: ../../mod/install.php:208
-msgid "Check again"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: ../../mod/install.php:227
-msgid "Database connection"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
 msgstr ""
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
 msgstr ""
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: ../../mod/install.php:237
-msgid "Database Name"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
 msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
 msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
 msgstr ""
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr ""
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
 msgstr ""
 
-#: ../../mod/install.php:322
+#: ../../mod/invite.php:120
+#, php-format
 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 ""
-
-#: ../../mod/install.php:326
-msgid "PHP executable path"
+"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 ""
 
-#: ../../mod/install.php:326
+#: ../../mod/invite.php:122
+#, php-format
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 msgstr ""
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
+#: ../../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 ""
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
 msgstr ""
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
+#: ../../mod/invite.php:132
+msgid "Send invitations"
 msgstr ""
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: ../../mod/install.php:354
+#: ../../mod/invite.php:135
 msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr ""
-
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 msgstr ""
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: ../../mod/install.php:378
+#: ../../mod/invite.php:137
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+"Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: ../../mod/install.php:379
+#: ../../mod/invite.php:139
 msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
 msgstr ""
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
+#: ../../mod/photos.php:52 ../../boot.php:2124
+msgid "Photo Albums"
 msgstr ""
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
 msgstr ""
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr ""
+
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
 msgstr ""
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
+#: ../../mod/photos.php:165
+msgid "Album not found."
 msgstr ""
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
 msgstr ""
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
 msgstr ""
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: ../../mod/photos.php:662
+msgid "a photo"
 msgstr ""
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
 msgstr ""
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
 msgstr ""
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../mod/photos.php:930
+msgid "No photos selected"
 msgstr ""
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
 msgstr ""
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
 msgstr ""
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
 msgstr ""
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
 msgstr ""
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
 msgstr ""
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
 msgstr ""
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
 msgstr ""
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
 msgstr ""
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
 msgstr ""
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
 msgstr ""
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
 msgstr ""
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/photos.php:1352
+msgid "View photo"
 msgstr ""
 
-#: ../../mod/group.php:29
-msgid "Group created."
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
 msgstr ""
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
 msgstr ""
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
 msgstr ""
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
+#: ../../mod/photos.php:1457
+msgid "Tags: "
 msgstr ""
 
-#: ../../mod/group.php:87
-msgid "Save Group"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
 msgstr ""
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: ../../mod/group.php:113
-msgid "Group removed."
+#: ../../mod/photos.php:1503
+msgid "New album name"
 msgstr ""
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
+#: ../../mod/photos.php:1506
+msgid "Caption"
 msgstr ""
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
 msgstr ""
 
-#: ../../mod/group.php:192
-msgid "Members"
+#: ../../mod/photos.php:1512
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: ../../mod/content.php:119 ../../mod/network.php:514
-msgid "No such group"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
 msgstr ""
 
-#: ../../mod/content.php:130 ../../mod/network.php:531
-msgid "Group is empty"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
 msgstr ""
 
-#: ../../mod/content.php:134 ../../mod/network.php:538
-msgid "Group: "
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
 msgstr ""
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
 msgstr ""
 
 #: ../../mod/regmod.php:55
@@ -5218,865 +5412,860 @@ msgstr ""
 msgid "Please login."
 msgstr ""
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr ""
-
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr ""
-
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr ""
-
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
+#: ../../mod/uimport.php:66
+msgid "Move account"
 msgstr ""
 
-#: ../../mod/item.php:326
-msgid "Empty post discarded."
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: ../../mod/item.php:919
-msgid "System error. Post not saved."
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
-#: ../../mod/item.php:945
-#, php-format
+#: ../../mod/uimport.php:69
 msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
 msgstr ""
 
-#: ../../mod/item.php:947
-#, php-format
-msgid "You may visit them online at %s"
+#: ../../mod/uimport.php:70
+msgid "Account file"
 msgstr ""
 
-#: ../../mod/item.php:948
+#: ../../mod/uimport.php:70
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: ../../mod/item.php:952
-#, php-format
-msgid "%s posted an update."
+#: ../../mod/attach.php:8
+msgid "Item not available."
 msgstr ""
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
 msgstr ""
 
-#: ../../mod/mood.php:133
-msgid "Mood"
+#: ../../boot.php:744
+msgid "Delete this item?"
 msgstr ""
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
+#: ../../boot.php:747
+msgid "show fewer"
 msgstr ""
 
-#: ../../mod/network.php:136
-msgid "Search Results For:"
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: ../../mod/network.php:189 ../../include/group.php:275
-msgid "add"
+#: ../../boot.php:1235
+msgid "Create a New Account"
 msgstr ""
 
-#: ../../mod/network.php:350
-msgid "Commented Order"
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
 msgstr ""
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
+#: ../../boot.php:1261 ../../include/nav.php:92
+msgid "Login"
 msgstr ""
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
 msgstr ""
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
+#: ../../boot.php:1264
+msgid "Password: "
 msgstr ""
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
+#: ../../boot.php:1265
+msgid "Remember me"
 msgstr ""
 
-#: ../../mod/network.php:374
-msgid "New"
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
 msgstr ""
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
+#: ../../boot.php:1274
+msgid "Forgot your password?"
 msgstr ""
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
 msgstr ""
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
+#: ../../boot.php:1278
+msgid "terms of service"
 msgstr ""
 
-#: ../../mod/network.php:392
-msgid "Starred"
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
 msgstr ""
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
+#: ../../boot.php:1281
+msgid "privacy policy"
 msgstr ""
 
-#: ../../mod/network.php:457
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../boot.php:1414
+msgid "Requested account is not available."
+msgstr ""
 
-#: ../../mod/network.php:460
-msgid "Private messages to this group are at risk of public disclosure."
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
 msgstr ""
 
-#: ../../mod/network.php:548
-msgid "Contact: "
+#: ../../boot.php:1595
+msgid "Message"
 msgstr ""
 
-#: ../../mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
 msgstr ""
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
+#: ../../boot.php:1701
+msgid "Network:"
 msgstr ""
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
 msgstr ""
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "F d"
 msgstr ""
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
 msgstr ""
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
 msgstr ""
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
 msgstr ""
 
-#: ../../mod/crepair.php:161
-msgid "Account Nickname"
+#: ../../boot.php:1851
+msgid "[No description]"
 msgstr ""
 
-#: ../../mod/crepair.php:162
-msgid "@Tagname - overrides Name/Nickname"
+#: ../../boot.php:1869
+msgid "Event Reminders"
 msgstr ""
 
-#: ../../mod/crepair.php:163
-msgid "Account URL"
+#: ../../boot.php:1870
+msgid "Events this week:"
 msgstr ""
 
-#: ../../mod/crepair.php:164
-msgid "Friend Request URL"
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
 msgstr ""
 
-#: ../../mod/crepair.php:165
-msgid "Friend Confirm URL"
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../mod/crepair.php:166
-msgid "Notification Endpoint URL"
+#: ../../boot.php:2117
+msgid "Profile Details"
 msgstr ""
 
-#: ../../mod/crepair.php:167
-msgid "Poll/Feed URL"
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
 msgstr ""
 
-#: ../../mod/crepair.php:168
-msgid "New photo from this URL"
+#: ../../boot.php:2141
+msgid "Events and Calendar"
 msgstr ""
 
-#: ../../mod/crepair.php:169
-msgid "Remote Self"
+#: ../../boot.php:2148
+msgid "Only You Can See This"
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid "Mirror postings from this contact"
+#: ../../object/Item.php:94
+msgid "This entry was edited"
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: ../../object/Item.php:208
+msgid "ignore thread"
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid "No mirroring"
+#: ../../object/Item.php:209
+msgid "unignore thread"
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid "Mirror as forwarded posting"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid "Mirror as my own posting"
+#: ../../object/Item.php:213
+msgid "ignored"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:146
-msgid "Your posts and conversations"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
+#: ../../object/Item.php:329
+msgid "via"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
+#: ../../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 ""
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
-msgid "Your events"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
-msgid "Personal notes"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-#: ../../view/theme/diabook/config.php:158
-msgid "Community Pages"
+#: ../../include/auth.php:38
+msgid "Logged out."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1963
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-msgid "event"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
-msgid "Similar Interests"
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
-msgid "Invite Friends"
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
+#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
+msgid "Similar Interests"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
+#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
+msgid "Invite Friends"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
-msgid "don't show"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
-msgid "show"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
+#: ../../include/features.php:23
+msgid "General Features"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:54
-#: ../../view/theme/dispy/config.php:72
-#: ../../view/theme/duepuntozero/config.php:61
-#: ../../view/theme/quattro/config.php:66
-#: ../../view/theme/cleanzero/config.php:82
-msgid "Theme settings"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:151
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/cleanzero/config.php:84
-msgid "Set font-size for posts and comments"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
+#: ../../include/features.php:32
+msgid "Post Preview"
 msgstr ""
 
-#: ../../view/theme/vier/config.php:55
-msgid "Set style"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1699
-#: ../../include/user.php:247
-msgid "default"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
+#: ../../include/features.php:39
+msgid "Search by Date"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
+#: ../../include/features.php:40
+msgid "Group Filter"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
+#: ../../include/features.php:41
+msgid "Network Filter"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
+#: ../../include/features.php:47
+msgid "Network Tabs"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:68
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
+#: ../../include/features.php:49
+msgid "Network New Tab"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: ../../boot.php:723
-msgid "Delete this item?"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: ../../boot.php:726
-msgid "show fewer"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
 msgstr ""
 
-#: ../../boot.php:1096
-#, php-format
-msgid "Update %s failed. See error logs."
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: ../../boot.php:1214
-msgid "Create a New Account"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: ../../boot.php:1239 ../../include/nav.php:73
-msgid "Logout"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: ../../boot.php:1240 ../../include/nav.php:92
-msgid "Login"
+#: ../../include/features.php:58
+msgid "Tagging"
 msgstr ""
 
-#: ../../boot.php:1242
-msgid "Nickname or Email address: "
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: ../../boot.php:1243
-msgid "Password: "
+#: ../../include/features.php:59
+msgid "Post Categories"
 msgstr ""
 
-#: ../../boot.php:1244
-msgid "Remember me"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
 msgstr ""
 
-#: ../../boot.php:1247
-msgid "Or login using OpenID: "
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: ../../boot.php:1253
-msgid "Forgot your password?"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
 msgstr ""
 
-#: ../../boot.php:1256
-msgid "Website Terms of Service"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: ../../boot.php:1257
-msgid "terms of service"
+#: ../../include/features.php:62
+msgid "Star Posts"
 msgstr ""
 
-#: ../../boot.php:1259
-msgid "Website Privacy Policy"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: ../../boot.php:1260
-msgid "privacy policy"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: ../../boot.php:1393
-msgid "Requested account is not available."
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: ../../boot.php:1475 ../../boot.php:1609
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
 msgstr ""
 
-#: ../../boot.php:1574
-msgid "Message"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: ../../boot.php:1580 ../../include/nav.php:173
-msgid "Profiles"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: ../../boot.php:1580
-msgid "Manage/edit profiles"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: ../../boot.php:1677
-msgid "Network:"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
 msgstr ""
 
-#: ../../boot.php:1707 ../../boot.php:1793
-msgid "g A l F d"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: ../../boot.php:1708 ../../boot.php:1794
-msgid "F d"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: ../../boot.php:1753 ../../boot.php:1834
-msgid "[today]"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: ../../boot.php:1765
-msgid "Birthday Reminders"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: ../../boot.php:1766
-msgid "Birthdays this week:"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: ../../boot.php:1827
-msgid "[No description]"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: ../../boot.php:1845
-msgid "Event Reminders"
+#: ../../include/follow.php:258
+msgid "following"
 msgstr ""
 
-#: ../../boot.php:1846
-msgid "Events this week:"
+#: ../../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 ""
 
-#: ../../boot.php:2083 ../../include/nav.php:76
-msgid "Status"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../boot.php:2086
-msgid "Status Messages and Posts"
+#: ../../include/group.php:226
+msgid "Everybody"
 msgstr ""
 
-#: ../../boot.php:2093
-msgid "Profile Details"
+#: ../../include/group.php:249
+msgid "edit"
 msgstr ""
 
-#: ../../boot.php:2104 ../../boot.php:2107 ../../include/nav.php:79
-msgid "Videos"
+#: ../../include/group.php:271
+msgid "Edit group"
 msgstr ""
 
-#: ../../boot.php:2117
-msgid "Events and Calendar"
+#: ../../include/group.php:272
+msgid "Create a new group"
 msgstr ""
 
-#: ../../boot.php:2124
-msgid "Only You Can See This"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/features.php:23
-msgid "General Features"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
 msgstr ""
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
 msgstr ""
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
 msgstr ""
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
 msgstr ""
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
+#: ../../include/datetime.php:276
+msgid "never"
 msgstr ""
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
 msgstr ""
 
-#: ../../include/features.php:32
-msgid "Post Preview"
+#: ../../include/datetime.php:290
+msgid "years"
 msgstr ""
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
+#: ../../include/datetime.php:291
+msgid "months"
 msgstr ""
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
+#: ../../include/datetime.php:292
+msgid "week"
 msgstr ""
 
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
+#: ../../include/datetime.php:292
+msgid "weeks"
 msgstr ""
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
+#: ../../include/datetime.php:293
+msgid "days"
 msgstr ""
 
-#: ../../include/features.php:39
-msgid "Search by Date"
+#: ../../include/datetime.php:294
+msgid "hour"
 msgstr ""
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
+#: ../../include/datetime.php:294
+msgid "hours"
 msgstr ""
 
-#: ../../include/features.php:40
-msgid "Group Filter"
+#: ../../include/datetime.php:295
+msgid "minute"
 msgstr ""
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
+#: ../../include/datetime.php:295
+msgid "minutes"
 msgstr ""
 
-#: ../../include/features.php:41
-msgid "Network Filter"
+#: ../../include/datetime.php:296
+msgid "second"
 msgstr ""
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
+#: ../../include/datetime.php:296
+msgid "seconds"
 msgstr ""
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
+#: ../../include/datetime.php:477 ../../include/items.php:2195
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
+#: ../../include/datetime.php:478 ../../include/items.php:2196
+#, php-format
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
 msgstr ""
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "show"
 msgstr ""
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "don't show"
 msgstr ""
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr ""
+
+#: ../../include/Contact.php:115
+msgid "stopped following"
 msgstr ""
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
+#: ../../include/Contact.php:228 ../../include/conversation.php:882
+msgid "Poke"
 msgstr ""
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
+#: ../../include/Contact.php:229 ../../include/conversation.php:876
+msgid "View Status"
 msgstr ""
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
+#: ../../include/Contact.php:230 ../../include/conversation.php:877
+msgid "View Profile"
 msgstr ""
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
+#: ../../include/Contact.php:231 ../../include/conversation.php:878
+msgid "View Photos"
 msgstr ""
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
+#: ../../include/Contact.php:232 ../../include/Contact.php:255
+#: ../../include/conversation.php:879
+msgid "Network Posts"
 msgstr ""
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
+#: ../../include/Contact.php:233 ../../include/Contact.php:255
+#: ../../include/conversation.php:880
+msgid "Edit Contact"
 msgstr ""
 
-#: ../../include/features.php:58
-msgid "Tagging"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
 msgstr ""
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
+#: ../../include/Contact.php:235 ../../include/Contact.php:255
+#: ../../include/conversation.php:881
+msgid "Send PM"
 msgstr ""
 
-#: ../../include/features.php:59
-msgid "Post Categories"
+#: ../../include/security.php:22
+msgid "Welcome "
 msgstr ""
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
 msgstr ""
 
-#: ../../include/features.php:60 ../../include/contact_widgets.php:104
-msgid "Saved Folders"
+#: ../../include/security.php:26
+msgid "Welcome back "
 msgstr ""
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
+msgid "event"
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: ../../include/features.php:62
-msgid "Star Posts"
+#: ../../include/conversation.php:211 ../../include/text.php:1004
+msgid "poked"
 msgstr ""
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/conversation.php:291
+msgid "post/item"
 msgstr ""
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
+#: ../../include/conversation.php:772
+msgid "remove"
 msgstr ""
 
-#: ../../include/auth.php:38
-msgid "Logged out."
+#: ../../include/conversation.php:776
+msgid "Delete Selected Items"
 msgstr ""
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: ../../include/conversation.php:875
+msgid "Follow Thread"
 msgstr ""
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
+#: ../../include/conversation.php:944
+#, php-format
+msgid "%s likes this."
 msgstr ""
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:140
-msgid "Starts:"
+#: ../../include/conversation.php:944
+#, php-format
+msgid "%s doesn't like this."
 msgstr ""
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:148
-msgid "Finishes:"
+#: ../../include/conversation.php:949
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
+#: ../../include/conversation.php:952
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
+#: ../../include/conversation.php:966
+msgid "and"
 msgstr ""
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
+#: ../../include/conversation.php:972
+#, php-format
+msgid ", and %d other people"
 msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
+#: ../../include/conversation.php:974
+#, php-format
+msgid "%s like this."
 msgstr ""
 
-#: ../../include/profile_advanced.php:43
+#: ../../include/conversation.php:974
 #, php-format
-msgid "for %1$d %2$s"
+msgid "%s don't like this."
 msgstr ""
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Tag term:"
 msgstr ""
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
+#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
+msgid "Where are you right now?"
 msgstr ""
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
+#: ../../include/conversation.php:1008
+msgid "Delete item(s)?"
 msgstr ""
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
+#: ../../include/conversation.php:1051
+msgid "Post to Email"
 msgstr ""
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
+#: ../../include/conversation.php:1056
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
+#: ../../include/conversation.php:1111
+msgid "permissions"
 msgstr ""
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
+#: ../../include/conversation.php:1135
+msgid "Post to Groups"
 msgstr ""
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
+#: ../../include/conversation.php:1136
+msgid "Post to Contacts"
 msgstr ""
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
+#: ../../include/conversation.php:1137
+msgid "Private post"
 msgstr ""
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
+#: ../../include/network.php:895
+msgid "view full size"
 msgstr ""
 
 #: ../../include/text.php:296
@@ -6118,10 +6307,6 @@ msgstr[1] ""
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:1004 ../../include/conversation.php:211
-msgid "poked"
-msgstr ""
-
 #: ../../include/text.php:1005
 msgid "ping"
 msgstr ""
@@ -6326,6 +6511,11 @@ msgstr ""
 msgid "Click to open/close"
 msgstr ""
 
+#: ../../include/text.php:1699 ../../include/user.php:247
+#: ../../view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr ""
+
 #: ../../include/text.php:1711
 msgid "Select an alternate language"
 msgstr ""
@@ -6342,820 +6532,767 @@ msgstr ""
 msgid "Item filed"
 msgstr ""
 
-#: ../../include/api.php:278 ../../include/api.php:289
-#: ../../include/api.php:390 ../../include/api.php:975
-#: ../../include/api.php:977
-msgid "User not found."
-msgstr ""
-
-#: ../../include/api.php:1184
-msgid "There is no status with this id."
-msgstr ""
-
-#: ../../include/api.php:1254
-msgid "There is no conversation with this id."
-msgstr ""
-
-#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
+#: ../../include/bbcode.php:1028
+msgid "Image/photo"
 msgstr ""
 
-#: ../../include/items.php:2112 ../../include/datetime.php:472
+#: ../../include/bbcode.php:528
 #, php-format
-msgid "%s's birthday"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: ../../include/items.php:2113 ../../include/datetime.php:473
+#: ../../include/bbcode.php:562
 #, php-format
-msgid "Happy Birthday %s"
-msgstr ""
-
-#: ../../include/items.php:4418
-msgid "Do you really want to delete this item?"
-msgstr ""
-
-#: ../../include/items.php:4641
-msgid "Archives"
-msgstr ""
-
-#: ../../include/delivery.php:456 ../../include/notifier.php:774
-msgid "(no subject)"
-msgstr ""
-
-#: ../../include/delivery.php:467 ../../include/notifier.php:784
-#: ../../include/enotify.php:30
-msgid "noreply"
-msgstr ""
-
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: ../../include/diaspora.php:2312
-msgid "Attachments:"
-msgstr ""
-
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
-
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr ""
-
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: ../../include/follow.php:86
 msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
+"\"%s\" target=\"_blank\">post</a>"
 msgstr ""
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
+msgid "$1 wrote:"
 msgstr ""
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
+msgid "Encrypted content"
 msgstr ""
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
 msgstr ""
 
-#: ../../include/follow.php:259
-msgid "following"
+#: ../../include/notifier.php:796 ../../include/delivery.php:467
+#: ../../include/enotify.php:31
+msgid "noreply"
 msgstr ""
 
-#: ../../include/security.php:22
-msgid "Welcome "
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
 msgstr ""
 
-#: ../../include/security.php:26
-msgid "Welcome back "
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
 msgstr ""
 
-#: ../../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."
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
+#: ../../include/Scrape.php:593
+msgid " on Last.fm"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
+#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
+msgid "Starts:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
+#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
+msgid "Finishes:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:289
-#: ../../include/user.php:293
-msgid "Friends"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
+#: ../../include/nav.php:73
+msgid "End this session"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
+#: ../../include/nav.php:76 ../../include/nav.php:146
+#: ../../view/theme/diabook/theme.php:123
+msgid "Your posts and conversations"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Your profile page"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
+msgid "Your photos"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
+#: ../../include/nav.php:79
+msgid "Your videos"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
+msgid "Your events"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
+#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
+msgid "Personal notes"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
+#: ../../include/nav.php:81
+msgid "Your personal notes"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
+#: ../../include/nav.php:92
+msgid "Sign in"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
+#: ../../include/nav.php:105
+msgid "Home Page"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
+#: ../../include/nav.php:109
+msgid "Create an account"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
+#: ../../include/nav.php:117
+msgid "Apps"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
+#: ../../include/nav.php:119
+msgid "Search site content"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
+#: ../../include/nav.php:131
+msgid "Directory"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
+#: ../../include/nav.php:131
+msgid "People directory"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
+#: ../../include/nav.php:133
+msgid "Information"
 msgstr ""
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
+#: ../../include/nav.php:133
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: ../../include/nav.php:143
+msgid "Conversations from your friends"
 msgstr ""
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
+#: ../../include/nav.php:144
+msgid "Network Reset"
 msgstr ""
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: ../../include/nav.php:144
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
+#: ../../include/nav.php:152
+msgid "Friend Requests"
 msgstr ""
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
+#: ../../include/nav.php:154
+msgid "See all notifications"
 msgstr ""
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
+#: ../../include/nav.php:155
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
+#: ../../include/nav.php:159
+msgid "Private mail"
 msgstr ""
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
+#: ../../include/nav.php:160
+msgid "Inbox"
 msgstr ""
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
+#: ../../include/nav.php:161
+msgid "Outbox"
 msgstr ""
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../include/nav.php:165
+msgid "Manage"
 msgstr ""
 
-#: ../../include/conversation.php:291
-msgid "post/item"
+#: ../../include/nav.php:165
+msgid "Manage other pages"
 msgstr ""
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+#: ../../include/nav.php:170
+msgid "Account settings"
 msgstr ""
 
-#: ../../include/conversation.php:772
-msgid "remove"
+#: ../../include/nav.php:173
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
+#: ../../include/nav.php:175
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
+#: ../../include/nav.php:182
+msgid "Site setup and configuration"
 msgstr ""
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:229
-msgid "View Status"
+#: ../../include/nav.php:186
+msgid "Navigation"
 msgstr ""
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:230
-msgid "View Profile"
+#: ../../include/nav.php:186
+msgid "Site map"
 msgstr ""
 
-#: ../../include/conversation.php:878 ../../include/Contact.php:231
-msgid "View Photos"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1062
+#: ../../include/api.php:1064
+msgid "User not found."
 msgstr ""
 
-#: ../../include/conversation.php:879 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/conversation.php:880 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/conversation.php:881 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/conversation.php:882 ../../include/Contact.php:228
-msgid "Poke"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
 msgstr ""
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
 msgstr ""
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
+#: ../../include/api.php:1613
+msgid "Invalid request."
 msgstr ""
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: ../../include/api.php:1624
+msgid "Invalid item."
 msgstr ""
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
 msgstr ""
 
-#: ../../include/conversation.php:966
-msgid "and"
+#: ../../include/api.php:1642
+msgid "DB error"
 msgstr ""
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
+#: ../../include/user.php:40
+msgid "An invitation is required."
 msgstr ""
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
 msgstr ""
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
 msgstr ""
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
 msgstr ""
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
 msgstr ""
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
+#: ../../include/user.php:90
+msgid "Name too short."
 msgstr ""
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
 msgstr ""
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
 msgstr ""
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
 msgstr ""
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
 msgstr ""
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
 msgstr ""
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: ../../include/user.php:377
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
 msgstr ""
 
-#: ../../include/contact_widgets.php:24
+#: ../../include/user.php:381
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr ""
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
+#: ../../include/diaspora.php:2332
+msgid "Attachments:"
 msgstr ""
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
+#: ../../include/items.php:4526
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
+#: ../../include/items.php:4749
+msgid "Archives"
 msgstr ""
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
 msgstr ""
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
 msgstr ""
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
 msgstr ""
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
 msgstr ""
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
 msgstr ""
 
-#: ../../include/nav.php:73
-msgid "End this session"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
 msgstr ""
 
-#: ../../include/nav.php:79
-msgid "Your videos"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
 msgstr ""
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
 msgstr ""
 
-#: ../../include/nav.php:92
-msgid "Sign in"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
 msgstr ""
 
-#: ../../include/nav.php:105
-msgid "Home Page"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
 msgstr ""
 
-#: ../../include/nav.php:109
-msgid "Create an account"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
 msgstr ""
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
 msgstr ""
 
-#: ../../include/nav.php:117
-msgid "Apps"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
 msgstr ""
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
 msgstr ""
 
-#: ../../include/nav.php:119
-msgid "Search site content"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
 msgstr ""
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
 msgstr ""
 
-#: ../../include/nav.php:131
-msgid "Directory"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
 msgstr ""
 
-#: ../../include/nav.php:131
-msgid "People directory"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
 msgstr ""
 
-#: ../../include/nav.php:133
-msgid "Information"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
 msgstr ""
 
-#: ../../include/nav.php:133
-msgid "Information about this friendica instance"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
 msgstr ""
 
-#: ../../include/nav.php:143
-msgid "Conversations from your friends"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
 msgstr ""
 
-#: ../../include/nav.php:144
-msgid "Network Reset"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
 msgstr ""
 
-#: ../../include/nav.php:144
-msgid "Load Network page with no filters"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
 msgstr ""
 
-#: ../../include/nav.php:152
-msgid "Friend Requests"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
 msgstr ""
 
-#: ../../include/nav.php:154
-msgid "See all notifications"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
 msgstr ""
 
-#: ../../include/nav.php:155
-msgid "Mark all system notifications seen"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
 msgstr ""
 
-#: ../../include/nav.php:159
-msgid "Private mail"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
 msgstr ""
 
-#: ../../include/nav.php:160
-msgid "Inbox"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
 msgstr ""
 
-#: ../../include/nav.php:161
-msgid "Outbox"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
 msgstr ""
 
-#: ../../include/nav.php:165
-msgid "Manage"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
 msgstr ""
 
-#: ../../include/nav.php:165
-msgid "Manage other pages"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
 msgstr ""
 
-#: ../../include/nav.php:170
-msgid "Account settings"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
 msgstr ""
 
-#: ../../include/nav.php:173
-msgid "Manage/Edit Profiles"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
 msgstr ""
 
-#: ../../include/nav.php:175
-msgid "Manage/edit friends and contacts"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
 msgstr ""
 
-#: ../../include/nav.php:182
-msgid "Site setup and configuration"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
 msgstr ""
 
-#: ../../include/nav.php:186
-msgid "Navigation"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
 msgstr ""
 
-#: ../../include/nav.php:186
-msgid "Site map"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
 msgstr ""
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
 msgstr ""
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
 msgstr ""
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
 msgstr ""
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
 msgstr ""
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
 msgstr ""
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
 msgstr ""
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
 msgstr ""
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
 msgstr ""
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
 msgstr ""
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
 msgstr ""
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
 msgstr ""
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
 msgstr ""
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
 msgstr ""
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
 msgstr ""
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
 msgstr ""
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
 msgstr ""
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
 msgstr ""
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
 msgstr ""
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
 msgstr ""
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
 msgstr ""
 
 #: ../../include/enotify.php:18
@@ -7171,238 +7308,238 @@ msgstr ""
 msgid "%s Administrator"
 msgstr ""
 
-#: ../../include/enotify.php:55
+#: ../../include/enotify.php:61
 #, php-format
 msgid "%s <!item_type!>"
 msgstr ""
 
-#: ../../include/enotify.php:59
+#: ../../include/enotify.php:65
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: ../../include/enotify.php:61
+#: ../../include/enotify.php:67
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:62
+#: ../../include/enotify.php:68
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:62
+#: ../../include/enotify.php:68
 msgid "a private message"
 msgstr ""
 
-#: ../../include/enotify.php:63
+#: ../../include/enotify.php:69
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: ../../include/enotify.php:115
+#: ../../include/enotify.php:121
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:122
+#: ../../include/enotify.php:128
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:130
+#: ../../include/enotify.php:136
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:140
+#: ../../include/enotify.php:146
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:141
+#: ../../include/enotify.php:147
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: ../../include/enotify.php:144 ../../include/enotify.php:159
-#: ../../include/enotify.php:172 ../../include/enotify.php:185
-#: ../../include/enotify.php:203 ../../include/enotify.php:216
+#: ../../include/enotify.php:150 ../../include/enotify.php:165
+#: ../../include/enotify.php:178 ../../include/enotify.php:191
+#: ../../include/enotify.php:209 ../../include/enotify.php:222
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: ../../include/enotify.php:151
+#: ../../include/enotify.php:157
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: ../../include/enotify.php:153
+#: ../../include/enotify.php:159
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:155
+#: ../../include/enotify.php:161
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:166
+#: ../../include/enotify.php:172
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: ../../include/enotify.php:167
+#: ../../include/enotify.php:173
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:168
+#: ../../include/enotify.php:174
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:179
+#: ../../include/enotify.php:185
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: ../../include/enotify.php:180
+#: ../../include/enotify.php:186
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:181
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:193
+#: ../../include/enotify.php:199
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: ../../include/enotify.php:194
+#: ../../include/enotify.php:200
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:195
+#: ../../include/enotify.php:201
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:210
+#: ../../include/enotify.php:216
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: ../../include/enotify.php:211
+#: ../../include/enotify.php:217
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:212
+#: ../../include/enotify.php:218
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: ../../include/enotify.php:223
+#: ../../include/enotify.php:229
 msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: ../../include/enotify.php:224
+#: ../../include/enotify.php:230
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:225
+#: ../../include/enotify.php:231
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:228 ../../include/enotify.php:270
+#: ../../include/enotify.php:234 ../../include/enotify.php:276
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr ""
 
-#: ../../include/enotify.php:230
+#: ../../include/enotify.php:236
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: ../../include/enotify.php:238
+#: ../../include/enotify.php:244
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: ../../include/enotify.php:239 ../../include/enotify.php:240
+#: ../../include/enotify.php:245 ../../include/enotify.php:246
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:246
+#: ../../include/enotify.php:252
 msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: ../../include/enotify.php:247 ../../include/enotify.php:248
+#: ../../include/enotify.php:253 ../../include/enotify.php:254
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: ../../include/enotify.php:261
+#: ../../include/enotify.php:267
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: ../../include/enotify.php:262
+#: ../../include/enotify.php:268
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:263
+#: ../../include/enotify.php:269
 #, php-format
 msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: ../../include/enotify.php:268
+#: ../../include/enotify.php:274
 msgid "Name:"
 msgstr ""
 
-#: ../../include/enotify.php:269
+#: ../../include/enotify.php:275
 msgid "Photo:"
 msgstr ""
 
-#: ../../include/enotify.php:272
+#: ../../include/enotify.php:278
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: ../../include/enotify.php:280 ../../include/enotify.php:293
+#: ../../include/enotify.php:286 ../../include/enotify.php:299
 msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: ../../include/enotify.php:281 ../../include/enotify.php:294
+#: ../../include/enotify.php:287 ../../include/enotify.php:300
 #, php-format
 msgid "'%1$s' has acepted your connection request at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:282 ../../include/enotify.php:295
+#: ../../include/enotify.php:288 ../../include/enotify.php:301
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:285
+#: ../../include/enotify.php:291
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and "
 "email\n"
 "\twithout restriction."
 msgstr ""
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:302
+#: ../../include/enotify.php:294 ../../include/enotify.php:308
 #, php-format
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: ../../include/enotify.php:298
+#: ../../include/enotify.php:304
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -7411,324 +7548,265 @@ msgid ""
 "automatically."
 msgstr ""
 
-#: ../../include/enotify.php:300
+#: ../../include/enotify.php:306
 #, php-format
 msgid ""
 "'%1$s' may choose to extend this into a two-way or more permissive "
 "relationship in the future. "
 msgstr ""
 
-#: ../../include/enotify.php:313
+#: ../../include/enotify.php:319
 msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: ../../include/enotify.php:314
+#: ../../include/enotify.php:320
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:315
+#: ../../include/enotify.php:321
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:318
+#: ../../include/enotify.php:324
 #, php-format
 msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: ../../include/enotify.php:321
+#: ../../include/enotify.php:327
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr ""
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr ""
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr ""
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr ""
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr ""
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr ""
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr ""
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr ""
-
-#: ../../include/user.php:126
-msgid "Cannot use that email."
+#: ../../include/oembed.php:210
+msgid "Embedded content"
 msgstr ""
-
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
+
+#: ../../include/oembed.php:219
+msgid "Embedding disabled"
 msgstr ""
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
 msgstr ""
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
 msgstr ""
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
+#: ../../include/uimport.php:153
+msgid "User creation error"
 msgstr ""
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
 msgstr ""
 
-#: ../../include/user.php:381
+#: ../../include/uimport.php:220
 #, 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."
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
+#: ../../index.php:428
+msgid "toggle mobile"
 msgstr ""
 
-#: ../../include/bbcode.php:449 ../../include/bbcode.php:1054
-#: ../../include/bbcode.php:1055
-msgid "Image/photo"
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
+#: ../../view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
 msgstr ""
 
-#: ../../include/bbcode.php:549
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
-#: ../../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>"
+#: ../../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 ""
 
-#: ../../include/bbcode.php:1018 ../../include/bbcode.php:1038
-msgid "$1 wrote:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
 msgstr ""
 
-#: ../../include/bbcode.php:1063 ../../include/bbcode.php:1064
-msgid "Encrypted content"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
 msgstr ""
 
-#: ../../include/oembed.php:205
-msgid "Embedded content"
+#: ../../view/theme/dispy/config.php:74
+#: ../../view/theme/diabook/config.php:152
+msgid "Set line-height for posts and comments"
 msgstr ""
 
-#: ../../include/oembed.php:214
-msgid "Embedding disabled"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
 msgstr ""
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
 msgstr ""
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
 msgstr ""
 
-#: ../../include/group.php:226
-msgid "Everybody"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
 msgstr ""
 
-#: ../../include/group.php:249
-msgid "edit"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
 msgstr ""
 
-#: ../../include/group.php:271
-msgid "Edit group"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
 msgstr ""
 
-#: ../../include/group.php:272
-msgid "Create a new group"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
 msgstr ""
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
 msgstr ""
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
 msgstr ""
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
 msgstr ""
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
+#: ../../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 ""
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
 msgstr ""
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
 msgstr ""
 
-#: ../../include/datetime.php:276
-msgid "never"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
 msgstr ""
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
 msgstr ""
 
-#: ../../include/datetime.php:285
-msgid "years"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
 msgstr ""
 
-#: ../../include/datetime.php:286
-msgid "months"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
 msgstr ""
 
-#: ../../include/datetime.php:287
-msgid "week"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
 msgstr ""
 
-#: ../../include/datetime.php:287
-msgid "weeks"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
 msgstr ""
 
-#: ../../include/datetime.php:288
-msgid "days"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
 msgstr ""
 
-#: ../../include/datetime.php:289
-msgid "hour"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
 msgstr ""
 
-#: ../../include/datetime.php:289
-msgid "hours"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
 msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "minute"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "minutes"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "second"
+#: ../../view/theme/vier/config.php:56
+msgid "Set style"
 msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "seconds"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
 msgstr ""
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
 msgstr ""
 
-#: ../../include/network.php:895
-msgid "view full size"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
 msgstr ""
 
-#: ../../include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database "
-"might be invalid."
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
 msgstr ""
 
-#: ../../include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
 msgstr ""
 
-#: ../../include/dbstructure.php:163
-msgid "Errors encountered creating database tables."
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
 msgstr ""
 
-#: ../../include/dbstructure.php:221
-msgid "Errors encountered performing database changes."
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
 msgstr ""
index d2c5a0afbc452dc6284373d5284c9e93829e20ba..db8bd55dd5a8dd6c6875490b6d82130f9efcc0ba 100644 (file)
 <?php
 
 ;
-$a->strings["This entry was edited"] = "";
-$a->strings["Private Message"] = "";
-$a->strings["Edit"] = "";
-$a->strings["Select"] = "";
-$a->strings["Delete"] = "";
-$a->strings["save to folder"] = "";
-$a->strings["add star"] = "";
-$a->strings["remove star"] = "";
-$a->strings["toggle star status"] = "";
-$a->strings["starred"] = "";
-$a->strings["add tag"] = "";
-$a->strings["I like this (toggle)"] = "";
-$a->strings["like"] = "";
-$a->strings["I don't like this (toggle)"] = "";
-$a->strings["dislike"] = "";
-$a->strings["Share this"] = "";
-$a->strings["share"] = "";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
-$a->strings["View %s's profile @ %s"] = "";
-$a->strings["to"] = "";
-$a->strings["via"] = "";
-$a->strings["Wall-to-Wall"] = "";
-$a->strings["via Wall-To-Wall:"] = "";
-$a->strings["%s from %s"] = "";
-$a->strings["Comment"] = "";
-$a->strings["Please wait"] = "";
-$a->strings["%d comment"] = array(
+$a->strings["%d contact edited."] = array(
        0 => "",
        1 => "",
 );
-$a->strings["comment"] = array(
+$a->strings["Could not access contact record."] = "";
+$a->strings["Could not locate selected profile."] = "";
+$a->strings["Contact updated."] = "";
+$a->strings["Failed to update contact record."] = "";
+$a->strings["Permission denied."] = "";
+$a->strings["Contact has been blocked"] = "";
+$a->strings["Contact has been unblocked"] = "";
+$a->strings["Contact has been ignored"] = "";
+$a->strings["Contact has been unignored"] = "";
+$a->strings["Contact has been archived"] = "";
+$a->strings["Contact has been unarchived"] = "";
+$a->strings["Do you really want to delete this contact?"] = "";
+$a->strings["Yes"] = "";
+$a->strings["Cancel"] = "";
+$a->strings["Contact has been removed."] = "";
+$a->strings["You are mutual friends with %s"] = "";
+$a->strings["You are sharing with %s"] = "";
+$a->strings["%s is sharing with you"] = "";
+$a->strings["Private communications are not available for this contact."] = "";
+$a->strings["Never"] = "";
+$a->strings["(Update was successful)"] = "";
+$a->strings["(Update was not successful)"] = "";
+$a->strings["Suggest friends"] = "";
+$a->strings["Network type: %s"] = "";
+$a->strings["%d contact in common"] = array(
        0 => "",
        1 => "",
 );
-$a->strings["show more"] = "";
-$a->strings["This is you"] = "";
+$a->strings["View all contacts"] = "";
+$a->strings["Unblock"] = "";
+$a->strings["Block"] = "";
+$a->strings["Toggle Blocked status"] = "";
+$a->strings["Unignore"] = "";
+$a->strings["Ignore"] = "";
+$a->strings["Toggle Ignored status"] = "";
+$a->strings["Unarchive"] = "";
+$a->strings["Archive"] = "";
+$a->strings["Toggle Archive status"] = "";
+$a->strings["Repair"] = "";
+$a->strings["Advanced Contact Settings"] = "";
+$a->strings["Communications lost with this contact!"] = "";
+$a->strings["Contact Editor"] = "";
 $a->strings["Submit"] = "";
-$a->strings["Bold"] = "";
-$a->strings["Italic"] = "";
-$a->strings["Underline"] = "";
-$a->strings["Quote"] = "";
-$a->strings["Code"] = "";
-$a->strings["Image"] = "";
-$a->strings["Link"] = "";
-$a->strings["Video"] = "";
-$a->strings["Preview"] = "";
-$a->strings["You must be logged in to use addons. "] = "";
-$a->strings["Not Found"] = "";
-$a->strings["Page not found."] = "";
+$a->strings["Profile Visibility"] = "";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
+$a->strings["Contact Information / Notes"] = "";
+$a->strings["Edit contact notes"] = "";
+$a->strings["Visit %s's profile [%s]"] = "";
+$a->strings["Block/Unblock contact"] = "";
+$a->strings["Ignore contact"] = "";
+$a->strings["Repair URL settings"] = "";
+$a->strings["View conversations"] = "";
+$a->strings["Delete contact"] = "";
+$a->strings["Last update:"] = "";
+$a->strings["Update public posts"] = "";
+$a->strings["Update now"] = "";
+$a->strings["Currently blocked"] = "";
+$a->strings["Currently ignored"] = "";
+$a->strings["Currently archived"] = "";
+$a->strings["Hide this contact from others"] = "";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
+$a->strings["Notification for new posts"] = "";
+$a->strings["Send a notification of every new post of this contact"] = "";
+$a->strings["Fetch further information for feeds"] = "";
+$a->strings["Disabled"] = "";
+$a->strings["Fetch information"] = "";
+$a->strings["Fetch information and keywords"] = "";
+$a->strings["Blacklisted keywords"] = "";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
+$a->strings["Suggestions"] = "";
+$a->strings["Suggest potential friends"] = "";
+$a->strings["All Contacts"] = "";
+$a->strings["Show all contacts"] = "";
+$a->strings["Unblocked"] = "";
+$a->strings["Only show unblocked contacts"] = "";
+$a->strings["Blocked"] = "";
+$a->strings["Only show blocked contacts"] = "";
+$a->strings["Ignored"] = "";
+$a->strings["Only show ignored contacts"] = "";
+$a->strings["Archived"] = "";
+$a->strings["Only show archived contacts"] = "";
+$a->strings["Hidden"] = "";
+$a->strings["Only show hidden contacts"] = "";
+$a->strings["Mutual Friendship"] = "";
+$a->strings["is a fan of yours"] = "";
+$a->strings["you are a fan of"] = "";
+$a->strings["Edit contact"] = "";
+$a->strings["Contacts"] = "";
+$a->strings["Search your contacts"] = "";
+$a->strings["Finding: "] = "";
+$a->strings["Find"] = "";
+$a->strings["Update"] = "";
+$a->strings["Delete"] = "";
+$a->strings["No profile"] = "";
+$a->strings["Manage Identities and/or Pages"] = "";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
+$a->strings["Select an identity to manage: "] = "";
+$a->strings["Post successful."] = "";
 $a->strings["Permission denied"] = "";
-$a->strings["Permission denied."] = "";
-$a->strings["toggle mobile"] = "";
-$a->strings["Home"] = "";
-$a->strings["Your posts and conversations"] = "";
+$a->strings["Invalid profile identifier."] = "";
+$a->strings["Profile Visibility Editor"] = "";
 $a->strings["Profile"] = "";
-$a->strings["Your profile page"] = "";
-$a->strings["Photos"] = "";
-$a->strings["Your photos"] = "";
-$a->strings["Events"] = "";
-$a->strings["Your events"] = "";
-$a->strings["Personal notes"] = "";
-$a->strings["Your personal photos"] = "";
-$a->strings["Community"] = "";
-$a->strings["don't show"] = "";
-$a->strings["show"] = "";
-$a->strings["Theme settings"] = "";
-$a->strings["Set font-size for posts and comments"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Contacts"] = "";
-$a->strings["Your contacts"] = "";
-$a->strings["Community Pages"] = "";
-$a->strings["Community Profiles"] = "";
-$a->strings["Last users"] = "";
-$a->strings["Last likes"] = "";
-$a->strings["event"] = "";
-$a->strings["status"] = "";
-$a->strings["photo"] = "";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
-$a->strings["Last photos"] = "";
-$a->strings["Contact Photos"] = "";
-$a->strings["Profile Photos"] = "";
-$a->strings["Find Friends"] = "";
-$a->strings["Local Directory"] = "";
-$a->strings["Global Directory"] = "";
-$a->strings["Similar Interests"] = "";
-$a->strings["Friend Suggestions"] = "";
-$a->strings["Invite Friends"] = "";
-$a->strings["Settings"] = "";
-$a->strings["Earth Layers"] = "";
-$a->strings["Set zoomfactor for Earth Layers"] = "";
-$a->strings["Set longitude (X) for Earth Layers"] = "";
-$a->strings["Set latitude (Y) for Earth Layers"] = "";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["Connect Services"] = "";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set color scheme"] = "";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Alignment"] = "";
-$a->strings["Left"] = "";
-$a->strings["Center"] = "";
-$a->strings["Color scheme"] = "";
-$a->strings["Posts font size"] = "";
-$a->strings["Textareas font size"] = "";
-$a->strings["Set colour scheme"] = "";
-$a->strings["default"] = "";
-$a->strings["Background Image"] = "";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "";
-$a->strings["Background Color"] = "";
-$a->strings["HEX value for the background color. Don't include the #"] = "";
-$a->strings["font size"] = "";
-$a->strings["base font size for your interface"] = "";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
-$a->strings["Set theme width"] = "";
-$a->strings["Delete this item?"] = "";
-$a->strings["show fewer"] = "";
-$a->strings["Update %s failed. See error logs."] = "";
-$a->strings["Update Error at %s"] = "";
-$a->strings["Create a New Account"] = "";
-$a->strings["Register"] = "";
-$a->strings["Logout"] = "";
-$a->strings["Login"] = "";
-$a->strings["Nickname or Email address: "] = "";
-$a->strings["Password: "] = "";
-$a->strings["Remember me"] = "";
-$a->strings["Or login using OpenID: "] = "";
-$a->strings["Forgot your password?"] = "";
-$a->strings["Password Reset"] = "";
-$a->strings["Website Terms of Service"] = "";
-$a->strings["terms of service"] = "";
-$a->strings["Website Privacy Policy"] = "";
-$a->strings["privacy policy"] = "";
-$a->strings["Requested account is not available."] = "";
-$a->strings["Requested profile is not available."] = "";
-$a->strings["Edit profile"] = "";
-$a->strings["Connect"] = "";
-$a->strings["Message"] = "";
-$a->strings["Profiles"] = "";
-$a->strings["Manage/edit profiles"] = "";
-$a->strings["Change profile photo"] = "";
-$a->strings["Create New Profile"] = "";
-$a->strings["Profile Image"] = "";
-$a->strings["visible to everybody"] = "";
-$a->strings["Edit visibility"] = "";
-$a->strings["Location:"] = "";
-$a->strings["Gender:"] = "";
-$a->strings["Status:"] = "";
-$a->strings["Homepage:"] = "";
-$a->strings["g A l F d"] = "";
-$a->strings["F d"] = "";
-$a->strings["[today]"] = "";
-$a->strings["Birthday Reminders"] = "";
-$a->strings["Birthdays this week:"] = "";
-$a->strings["[No description]"] = "";
-$a->strings["Event Reminders"] = "";
-$a->strings["Events this week:"] = "";
-$a->strings["Status"] = "";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Photo Albums"] = "";
-$a->strings["Videos"] = "";
-$a->strings["Events and Calendar"] = "";
-$a->strings["Personal Notes"] = "";
-$a->strings["Only You Can See This"] = "";
-$a->strings["%1\$s is currently %2\$s"] = "";
-$a->strings["Mood"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$a->strings["Public access denied."] = "";
+$a->strings["Click on a contact to add or remove."] = "";
+$a->strings["Visible To"] = "";
+$a->strings["All Contacts (with secure profile access)"] = "";
 $a->strings["Item not found."] = "";
+$a->strings["Public access denied."] = "";
 $a->strings["Access to this profile has been restricted."] = "";
 $a->strings["Item has been removed."] = "";
-$a->strings["Access denied."] = "";
-$a->strings["This is Friendica, version"] = "";
-$a->strings["running at web location"] = "";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
-$a->strings["Bug reports and issues: please visit"] = "";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "";
-$a->strings["%1\$s welcomes %2\$s"] = "";
-$a->strings["Registration details for %s"] = "";
-$a->strings["Registration successful. Please check your email for further instructions."] = "";
-$a->strings["Failed to send email message. Here is the message that failed."] = "";
-$a->strings["Your registration can not be processed."] = "";
-$a->strings["Registration request at %s"] = "";
-$a->strings["Your registration is pending approval by the site owner."] = "";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "";
-$a->strings["Your OpenID (optional): "] = "";
-$a->strings["Include your profile in member directory?"] = "";
-$a->strings["Yes"] = "";
-$a->strings["No"] = "";
-$a->strings["Membership on this site is by invitation only."] = "";
-$a->strings["Your invitation ID: "] = "";
-$a->strings["Registration"] = "";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "";
-$a->strings["Your Email Address: "] = "";
-$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>'."] = "";
-$a->strings["Choose a nickname: "] = "";
-$a->strings["Import"] = "";
-$a->strings["Import your profile to this friendica instance"] = "";
+$a->strings["Welcome to Friendica"] = "";
+$a->strings["New Member Checklist"] = "";
+$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."] = "";
+$a->strings["Getting Started"] = "";
+$a->strings["Friendica Walk-Through"] = "";
+$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."] = "";
+$a->strings["Settings"] = "";
+$a->strings["Go to Your Settings"] = "";
+$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."] = "";
+$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."] = "";
+$a->strings["Upload Profile Photo"] = "";
+$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."] = "";
+$a->strings["Edit Your Profile"] = "";
+$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."] = "";
+$a->strings["Profile Keywords"] = "";
+$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."] = "";
+$a->strings["Connecting"] = "";
+$a->strings["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."] = "";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
+$a->strings["Importing Emails"] = "";
+$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"] = "";
+$a->strings["Go to Your Contacts Page"] = "";
+$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."] = "";
+$a->strings["Go to Your Site's Directory"] = "";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "";
+$a->strings["Finding New People"] = "";
+$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."] = "";
+$a->strings["Groups"] = "";
+$a->strings["Group Your 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."] = "";
+$a->strings["Why Aren't My Posts Public?"] = "";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
+$a->strings["Getting Help"] = "";
+$a->strings["Go to the Help Section"] = "";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
+$a->strings["OpenID protocol error. No ID returned."] = "";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
+$a->strings["Login failed."] = "";
+$a->strings["Image uploaded but image cropping failed."] = "";
+$a->strings["Profile Photos"] = "";
+$a->strings["Image size reduction [%s] failed."] = "";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+$a->strings["Unable to process image"] = "";
+$a->strings["Image exceeds size limit of %d"] = "";
+$a->strings["Unable to process image."] = "";
+$a->strings["Upload File:"] = "";
+$a->strings["Select a profile:"] = "";
+$a->strings["Upload"] = "";
+$a->strings["or"] = "";
+$a->strings["skip this step"] = "";
+$a->strings["select a photo from your photo albums"] = "";
+$a->strings["Crop Image"] = "";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "";
+$a->strings["Done Editing"] = "";
+$a->strings["Image uploaded successfully."] = "";
+$a->strings["Image upload failed."] = "";
+$a->strings["photo"] = "";
+$a->strings["status"] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
+$a->strings["Tag removed"] = "";
+$a->strings["Remove Item Tag"] = "";
+$a->strings["Select a tag to remove: "] = "";
+$a->strings["Remove"] = "";
+$a->strings["Save to Folder:"] = "";
+$a->strings["- select -"] = "";
+$a->strings["Save"] = "";
+$a->strings["Contact added"] = "";
+$a->strings["Unable to locate original post."] = "";
+$a->strings["Empty post discarded."] = "";
+$a->strings["Wall Photos"] = "";
+$a->strings["System error. Post not saved."] = "";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
+$a->strings["You may visit them online at %s"] = "";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
+$a->strings["%s posted an update."] = "";
+$a->strings["Group created."] = "";
+$a->strings["Could not create group."] = "";
+$a->strings["Group not found."] = "";
+$a->strings["Group name changed."] = "";
+$a->strings["Save Group"] = "";
+$a->strings["Create a group of contacts/friends."] = "";
+$a->strings["Group Name: "] = "";
+$a->strings["Group removed."] = "";
+$a->strings["Unable to remove group."] = "";
+$a->strings["Group Editor"] = "";
+$a->strings["Members"] = "";
+$a->strings["You must be logged in to use addons. "] = "";
+$a->strings["Applications"] = "";
+$a->strings["No installed applications."] = "";
 $a->strings["Profile not found."] = "";
 $a->strings["Contact not found."] = "";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
@@ -223,170 +223,166 @@ $a->strings["Site public key not available in contact record for URL %s."] = "";
 $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
 $a->strings["Unable to set your contact credentials on our system."] = "";
 $a->strings["Unable to update your contact profile details on our system"] = "";
-$a->strings["Connection accepted at %s"] = "";
+$a->strings["[Name Withheld]"] = "";
 $a->strings["%1\$s has joined %2\$s"] = "";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+$a->strings["Requested profile is not available."] = "";
+$a->strings["Tips for New Members"] = "";
+$a->strings["No videos selected"] = "";
+$a->strings["Access to this item is restricted."] = "";
+$a->strings["View Video"] = "";
+$a->strings["View Album"] = "";
+$a->strings["Recent Videos"] = "";
+$a->strings["Upload New Videos"] = "";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
+$a->strings["Friend suggestion sent."] = "";
+$a->strings["Suggest Friends"] = "";
+$a->strings["Suggest a friend for %s"] = "";
 $a->strings["No valid account found."] = "";
 $a->strings["Password reset request issued. Check your email."] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
 $a->strings["Password reset requested at %s"] = "";
 $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
+$a->strings["Password Reset"] = "";
 $a->strings["Your password has been reset as requested."] = "";
 $a->strings["Your new password is"] = "";
 $a->strings["Save or copy your new password - and then"] = "";
 $a->strings["click here to login"] = "";
 $a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
 $a->strings["Your password has been changed at %s"] = "";
 $a->strings["Forgot your Password?"] = "";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
 $a->strings["Nickname or Email: "] = "";
 $a->strings["Reset"] = "";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
+$a->strings["{0} wants to be your friend"] = "";
+$a->strings["{0} sent you a message"] = "";
+$a->strings["{0} requested registration"] = "";
+$a->strings["{0} commented %s's post"] = "";
+$a->strings["{0} liked %s's post"] = "";
+$a->strings["{0} disliked %s's post"] = "";
+$a->strings["{0} is now friends with %s"] = "";
+$a->strings["{0} posted"] = "";
+$a->strings["{0} tagged %s's post with #%s"] = "";
+$a->strings["{0} mentioned you in a post"] = "";
+$a->strings["No contacts."] = "";
+$a->strings["View Contacts"] = "";
+$a->strings["Invalid request identifier."] = "";
+$a->strings["Discard"] = "";
+$a->strings["System"] = "";
+$a->strings["Network"] = "";
+$a->strings["Personal"] = "";
+$a->strings["Home"] = "";
+$a->strings["Introductions"] = "";
+$a->strings["Show Ignored Requests"] = "";
+$a->strings["Hide Ignored Requests"] = "";
+$a->strings["Notification type: "] = "";
+$a->strings["Friend Suggestion"] = "";
+$a->strings["suggested by %s"] = "";
+$a->strings["Post a new friend activity"] = "";
+$a->strings["if applicable"] = "";
+$a->strings["Approve"] = "";
+$a->strings["Claims to be known to you: "] = "";
+$a->strings["yes"] = "";
+$a->strings["no"] = "";
+$a->strings["Approve as: "] = "";
+$a->strings["Friend"] = "";
+$a->strings["Sharer"] = "";
+$a->strings["Fan/Admirer"] = "";
+$a->strings["Friend/Connect Request"] = "";
+$a->strings["New Follower"] = "";
+$a->strings["No introductions."] = "";
+$a->strings["Notifications"] = "";
+$a->strings["%s liked %s's post"] = "";
+$a->strings["%s disliked %s's post"] = "";
+$a->strings["%s is now friends with %s"] = "";
+$a->strings["%s created a new post"] = "";
+$a->strings["%s commented on %s's post"] = "";
+$a->strings["No more network notifications."] = "";
+$a->strings["Network Notifications"] = "";
+$a->strings["No more system notifications."] = "";
+$a->strings["System Notifications"] = "";
+$a->strings["No more personal notifications."] = "";
+$a->strings["Personal Notifications"] = "";
+$a->strings["No more home notifications."] = "";
+$a->strings["Home Notifications"] = "";
+$a->strings["Source (bbcode) text:"] = "";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
+$a->strings["Source input: "] = "";
+$a->strings["bb2html (raw HTML): "] = "";
+$a->strings["bb2html: "] = "";
+$a->strings["bb2html2bb: "] = "";
+$a->strings["bb2md: "] = "";
+$a->strings["bb2md2html: "] = "";
+$a->strings["bb2dia2bb: "] = "";
+$a->strings["bb2md2html2bb: "] = "";
+$a->strings["Source input (Diaspora format): "] = "";
+$a->strings["diaspora2bb: "] = "";
+$a->strings["Nothing new here"] = "";
+$a->strings["Clear notifications"] = "";
+$a->strings["New Message"] = "";
 $a->strings["No recipient selected."] = "";
-$a->strings["Unable to check your home location."] = "";
+$a->strings["Unable to locate contact information."] = "";
 $a->strings["Message could not be sent."] = "";
 $a->strings["Message collection failure."] = "";
 $a->strings["Message sent."] = "";
-$a->strings["No recipient."] = "";
+$a->strings["Messages"] = "";
+$a->strings["Do you really want to delete this message?"] = "";
+$a->strings["Message deleted."] = "";
+$a->strings["Conversation removed."] = "";
 $a->strings["Please enter a link URL:"] = "";
 $a->strings["Send Private Message"] = "";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
 $a->strings["To:"] = "";
 $a->strings["Subject:"] = "";
 $a->strings["Your message:"] = "";
 $a->strings["Upload photo"] = "";
 $a->strings["Insert web link"] = "";
-$a->strings["Welcome to Friendica"] = "";
-$a->strings["New Member Checklist"] = "";
-$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."] = "";
-$a->strings["Getting Started"] = "";
-$a->strings["Friendica Walk-Through"] = "";
-$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."] = "";
-$a->strings["Go to Your Settings"] = "";
-$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."] = "";
-$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."] = "";
-$a->strings["Upload Profile Photo"] = "";
-$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."] = "";
-$a->strings["Edit Your Profile"] = "";
-$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."] = "";
-$a->strings["Profile Keywords"] = "";
-$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."] = "";
-$a->strings["Connecting"] = "";
-$a->strings["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."] = "";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
-$a->strings["Importing Emails"] = "";
-$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"] = "";
-$a->strings["Go to Your Contacts Page"] = "";
-$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."] = "";
-$a->strings["Go to Your Site's Directory"] = "";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "";
-$a->strings["Finding New People"] = "";
-$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."] = "";
-$a->strings["Groups"] = "";
-$a->strings["Group Your 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."] = "";
-$a->strings["Why Aren't My Posts Public?"] = "";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
-$a->strings["Getting Help"] = "";
-$a->strings["Go to the Help Section"] = "";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
-$a->strings["Do you really want to delete this suggestion?"] = "";
-$a->strings["Cancel"] = "";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Ignore/Hide"] = "";
-$a->strings["Search Results For:"] = "";
-$a->strings["Remove term"] = "";
-$a->strings["Saved Searches"] = "";
-$a->strings["add"] = "";
-$a->strings["Commented Order"] = "";
-$a->strings["Sort by Comment Date"] = "";
-$a->strings["Posted Order"] = "";
-$a->strings["Sort by Post Date"] = "";
-$a->strings["Personal"] = "";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Shared Links"] = "";
-$a->strings["Interesting Links"] = "";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+$a->strings["Please wait"] = "";
+$a->strings["No messages."] = "";
+$a->strings["Unknown sender - %s"] = "";
+$a->strings["You and %s"] = "";
+$a->strings["%s and You"] = "";
+$a->strings["Delete conversation"] = "";
+$a->strings["D, d M Y - g:i A"] = "";
+$a->strings["%d message"] = array(
        0 => "",
        1 => "",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "";
-$a->strings["No such group"] = "";
-$a->strings["Group is empty"] = "";
-$a->strings["Group: "] = "";
-$a->strings["Contact: "] = "";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "";
-$a->strings["Invalid contact."] = "";
-$a->strings["Friendica Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "";
-$a->strings["Could not create table."] = "";
-$a->strings["Your Friendica site database has been installed."] = "";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "";
-$a->strings["System check"] = "";
-$a->strings["Next"] = "";
-$a->strings["Check again"] = "";
-$a->strings["Database connection"] = "";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
-$a->strings["Database Server Name"] = "";
-$a->strings["Database Login Name"] = "";
-$a->strings["Database Login Password"] = "";
-$a->strings["Database Name"] = "";
-$a->strings["Site administrator email address"] = "";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
-$a->strings["Please select a default timezone for your website"] = "";
-$a->strings["Site settings"] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
-$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>"] = "";
-$a->strings["PHP executable path"] = "";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
-$a->strings["Command line PHP"] = "";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "";
-$a->strings["PHP cli binary"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
-$a->strings["This is required for message delivery to work."] = "";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "";
-$a->strings["GD graphics PHP module"] = "";
-$a->strings["OpenSSL PHP module"] = "";
-$a->strings["mysqli PHP module"] = "";
-$a->strings["mb_string PHP module"] = "";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
-$a->strings["Error: libCURL PHP module required but not installed."] = "";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
-$a->strings["Error: openssl PHP module required but not installed."] = "";
-$a->strings["Error: mysqli PHP module required but not installed."] = "";
-$a->strings["Error: mb_string PHP module required but not installed."] = "";
-$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."] = "";
-$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."] = "";
-$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->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = "";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$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."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$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."] = "";
-$a->strings["view/smarty3 is writable"] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$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."] = "";
-$a->strings["Errors encountered creating database tables."] = "";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+$a->strings["Message not available."] = "";
+$a->strings["Delete message"] = "";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+$a->strings["Send Reply"] = "";
+$a->strings["[Embedded content - reload page to view]"] = "";
+$a->strings["Contact settings applied."] = "";
+$a->strings["Contact update failed."] = "";
+$a->strings["Repair Contact Settings"] = "";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "";
+$a->strings["Return to contact editor"] = "";
+$a->strings["No mirroring"] = "";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Name"] = "";
+$a->strings["Account Nickname"] = "";
+$a->strings["@Tagname - overrides Name/Nickname"] = "";
+$a->strings["Account URL"] = "";
+$a->strings["Friend Request URL"] = "";
+$a->strings["Friend Confirm URL"] = "";
+$a->strings["Notification Endpoint URL"] = "";
+$a->strings["Poll/Feed URL"] = "";
+$a->strings["New photo from this URL"] = "";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Access denied."] = "";
+$a->strings["People Search"] = "";
+$a->strings["No matches"] = "";
+$a->strings["Photos"] = "";
+$a->strings["Files"] = "";
+$a->strings["Contacts who are not members of a group"] = "";
 $a->strings["Theme settings updated."] = "";
 $a->strings["Site"] = "";
 $a->strings["Users"] = "";
@@ -413,7 +409,7 @@ $a->strings["Active plugins"] = "";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
 $a->strings["Site settings updated."] = "";
 $a->strings["No special theme for mobile devices"] = "";
-$a->strings["Never"] = "";
+$a->strings["At post arrival"] = "";
 $a->strings["Frequently"] = "";
 $a->strings["Hourly"] = "";
 $a->strings["Twice daily"] = "";
@@ -426,12 +422,14 @@ $a->strings["No SSL policy, links will track page SSL state"] = "";
 $a->strings["Force all links to use SSL"] = "";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
 $a->strings["Save Settings"] = "";
+$a->strings["Registration"] = "";
 $a->strings["File upload"] = "";
 $a->strings["Policies"] = "";
 $a->strings["Advanced"] = "";
 $a->strings["Performance"] = "";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
 $a->strings["Site name"] = "";
+$a->strings["Host name"] = "";
 $a->strings["Banner/Logo"] = "";
 $a->strings["Additional Info"] = "";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "";
@@ -442,6 +440,8 @@ $a->strings["Mobile system theme"] = "";
 $a->strings["Theme for mobile devices"] = "";
 $a->strings["SSL link policy"] = "";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "";
+$a->strings["Force SSL"] = "";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
 $a->strings["Old style 'Share'"] = "";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "";
 $a->strings["Hide help entry from navigation menu"] = "";
@@ -481,6 +481,8 @@ $a->strings["Disallow public access to addons listed in the apps menu."] = "";
 $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
 $a->strings["Don't embed private images in posts"] = "";
 $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "";
+$a->strings["Allow Users to set remote_self"] = "";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "";
 $a->strings["Block multiple registrations"] = "";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "";
 $a->strings["OpenID support"] = "";
@@ -492,7 +494,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "";
 $a->strings["Show Community Page"] = "";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "";
 $a->strings["Enable OStatus support"] = "";
-$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
 $a->strings["OStatus conversation completion interval"] = "";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
 $a->strings["Enable Diaspora support"] = "";
@@ -517,22 +519,33 @@ $a->strings["Suppress Language"] = "";
 $a->strings["Suppress language information in meta information about a posting."] = "";
 $a->strings["Path to item cache"] = "";
 $a->strings["Cache duration in seconds"] = "";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
+$a->strings["Maximum numbers of comments per post"] = "";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
 $a->strings["Path for lock file"] = "";
 $a->strings["Temp path"] = "";
 $a->strings["Base path to installation"] = "";
+$a->strings["Disable picture proxy"] = "";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
 $a->strings["New base url"] = "";
+$a->strings["Disable noscrape"] = "";
+$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "";
 $a->strings["Update has been marked successful"] = "";
-$a->strings["Executing %s failed. Check system logs."] = "";
+$a->strings["Database structure update %s was successfully applied."] = "";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "";
+$a->strings["Executing %s failed with error: %s"] = "";
 $a->strings["Update %s was successfully applied."] = "";
 $a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["Update function %s could not be found."] = "";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
 $a->strings["No failed updates."] = "";
+$a->strings["Check database structure"] = "";
 $a->strings["Failed Updates"] = "";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
 $a->strings["Mark success (if update was manually applied)"] = "";
 $a->strings["Attempt to execute this update step automatically"] = "";
-$a->strings["Registration successful. Email send to user"] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["Registration details for %s"] = "";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "",
        1 => "",
@@ -549,13 +562,9 @@ $a->strings["select all"] = "";
 $a->strings["User registrations waiting for confirm"] = "";
 $a->strings["User waiting for permanent deletion"] = "";
 $a->strings["Request date"] = "";
-$a->strings["Name"] = "";
 $a->strings["Email"] = "";
 $a->strings["No registrations."] = "";
-$a->strings["Approve"] = "";
 $a->strings["Deny"] = "";
-$a->strings["Block"] = "";
-$a->strings["Unblock"] = "";
 $a->strings["Site admin"] = "";
 $a->strings["Account expired"] = "";
 $a->strings["New User"] = "";
@@ -587,205 +596,195 @@ $a->strings["Enable Debugging"] = "";
 $a->strings["Log file"] = "";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
 $a->strings["Log level"] = "";
-$a->strings["Update now"] = "";
 $a->strings["Close"] = "";
 $a->strings["FTP Host"] = "";
 $a->strings["FTP Path"] = "";
 $a->strings["FTP User"] = "";
 $a->strings["FTP Password"] = "";
-$a->strings["Search"] = "";
-$a->strings["No results."] = "";
-$a->strings["Tips for New Members"] = "";
-$a->strings["link"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
-$a->strings["Item not found"] = "";
-$a->strings["Edit post"] = "";
-$a->strings["upload photo"] = "";
-$a->strings["Attach file"] = "";
-$a->strings["attach file"] = "";
-$a->strings["web link"] = "";
-$a->strings["Insert video link"] = "";
-$a->strings["video link"] = "";
-$a->strings["Insert audio link"] = "";
-$a->strings["audio link"] = "";
-$a->strings["Set your location"] = "";
-$a->strings["set location"] = "";
-$a->strings["Clear browser location"] = "";
-$a->strings["clear location"] = "";
-$a->strings["Permission settings"] = "";
-$a->strings["CC: email addresses"] = "";
-$a->strings["Public post"] = "";
-$a->strings["Set title"] = "";
-$a->strings["Categories (comma-separated list)"] = "";
-$a->strings["Example: bob@example.com, mary@example.com"] = "";
-$a->strings["Item not available."] = "";
-$a->strings["Item was not found."] = "";
-$a->strings["Account approved."] = "";
-$a->strings["Registration revoked for %s"] = "";
-$a->strings["Please login."] = "";
-$a->strings["Find on this site"] = "";
-$a->strings["Finding: "] = "";
-$a->strings["Site Directory"] = "";
-$a->strings["Find"] = "";
-$a->strings["Age: "] = "";
-$a->strings["Gender: "] = "";
-$a->strings["About:"] = "";
-$a->strings["No entries (some entries may be hidden)."] = "";
-$a->strings["Contact settings applied."] = "";
-$a->strings["Contact update failed."] = "";
-$a->strings["Repair Contact Settings"] = "";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "";
-$a->strings["Return to contact editor"] = "";
-$a->strings["Account Nickname"] = "";
-$a->strings["@Tagname - overrides Name/Nickname"] = "";
-$a->strings["Account URL"] = "";
-$a->strings["Friend Request URL"] = "";
-$a->strings["Friend Confirm URL"] = "";
-$a->strings["Notification Endpoint URL"] = "";
-$a->strings["Poll/Feed URL"] = "";
-$a->strings["New photo from this URL"] = "";
-$a->strings["Move account"] = "";
-$a->strings["You can import an account from another Friendica server."] = "";
-$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."] = "";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
-$a->strings["Account file"] = "";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
-$a->strings["Remote privacy information not available."] = "";
-$a->strings["Visible to:"] = "";
-$a->strings["Save"] = "";
-$a->strings["Help:"] = "";
-$a->strings["Help"] = "";
-$a->strings["No profile"] = "";
-$a->strings["This introduction has already been accepted."] = "";
-$a->strings["Profile location is not valid or does not contain profile information."] = "";
-$a->strings["Warning: profile location has no identifiable owner name."] = "";
-$a->strings["Warning: profile location has no profile photo."] = "";
-$a->strings["%d required parameter was not found at the given location"] = array(
+$a->strings["Search Results For:"] = "";
+$a->strings["Remove term"] = "";
+$a->strings["Saved Searches"] = "";
+$a->strings["add"] = "";
+$a->strings["Commented Order"] = "";
+$a->strings["Sort by Comment Date"] = "";
+$a->strings["Posted Order"] = "";
+$a->strings["Sort by Post Date"] = "";
+$a->strings["Posts that mention or involve you"] = "";
+$a->strings["New"] = "";
+$a->strings["Activity Stream - by date"] = "";
+$a->strings["Shared Links"] = "";
+$a->strings["Interesting Links"] = "";
+$a->strings["Starred"] = "";
+$a->strings["Favourite Posts"] = "";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
        0 => "",
        1 => "",
 );
-$a->strings["Introduction complete."] = "";
-$a->strings["Unrecoverable protocol error."] = "";
-$a->strings["Profile unavailable."] = "";
-$a->strings["%s has received too many connection requests today."] = "";
-$a->strings["Spam protection measures have been invoked."] = "";
-$a->strings["Friends are advised to please try again in 24 hours."] = "";
-$a->strings["Invalid locator"] = "";
-$a->strings["Invalid email address."] = "";
-$a->strings["This account has not been configured for email. Request failed."] = "";
-$a->strings["Unable to resolve your name at the provided location."] = "";
-$a->strings["You have already introduced yourself here."] = "";
-$a->strings["Apparently you are already friends with %s."] = "";
-$a->strings["Invalid profile URL."] = "";
-$a->strings["Disallowed profile URL."] = "";
-$a->strings["Failed to update contact record."] = "";
-$a->strings["Your introduction has been sent."] = "";
-$a->strings["Please login to confirm introduction."] = "";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "";
-$a->strings["Hide this contact"] = "";
-$a->strings["Welcome home %s."] = "";
-$a->strings["Please confirm your introduction/connection request to %s."] = "";
-$a->strings["Confirm"] = "";
-$a->strings["[Name Withheld]"] = "";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$a->strings["Friend/Connection Request"] = "";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "";
-$a->strings["Please answer the following:"] = "";
-$a->strings["Does %s know you?"] = "";
-$a->strings["Add a personal note:"] = "";
-$a->strings["Friendica"] = "";
-$a->strings["StatusNet/Federated Social Web"] = "";
-$a->strings["Diaspora"] = "";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
-$a->strings["Your Identity Address:"] = "";
-$a->strings["Submit Request"] = "";
-$a->strings["[Embedded content - reload page to view]"] = "";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "";
+$a->strings["No such group"] = "";
+$a->strings["Group is empty"] = "";
+$a->strings["Group: "] = "";
+$a->strings["Contact: "] = "";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "";
+$a->strings["Invalid contact."] = "";
+$a->strings["Friends of %s"] = "";
+$a->strings["No friends to display."] = "";
+$a->strings["Event title and start time are required."] = "";
+$a->strings["l, F j"] = "";
+$a->strings["Edit event"] = "";
+$a->strings["link to source"] = "";
+$a->strings["Events"] = "";
+$a->strings["Create New Event"] = "";
+$a->strings["Previous"] = "";
+$a->strings["Next"] = "";
+$a->strings["hour:minute"] = "";
+$a->strings["Event details"] = "";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "";
+$a->strings["Event Starts:"] = "";
+$a->strings["Required"] = "";
+$a->strings["Finish date/time is not known or not relevant"] = "";
+$a->strings["Event Finishes:"] = "";
+$a->strings["Adjust for viewer timezone"] = "";
+$a->strings["Description:"] = "";
+$a->strings["Location:"] = "";
+$a->strings["Title:"] = "";
+$a->strings["Share this event"] = "";
+$a->strings["Select"] = "";
+$a->strings["View %s's profile @ %s"] = "";
+$a->strings["%s from %s"] = "";
 $a->strings["View in context"] = "";
-$a->strings["Could not access contact record."] = "";
-$a->strings["Could not locate selected profile."] = "";
-$a->strings["Contact updated."] = "";
-$a->strings["Contact has been blocked"] = "";
-$a->strings["Contact has been unblocked"] = "";
-$a->strings["Contact has been ignored"] = "";
-$a->strings["Contact has been unignored"] = "";
-$a->strings["Contact has been archived"] = "";
-$a->strings["Contact has been unarchived"] = "";
-$a->strings["Do you really want to delete this contact?"] = "";
-$a->strings["Contact has been removed."] = "";
-$a->strings["You are mutual friends with %s"] = "";
-$a->strings["You are sharing with %s"] = "";
-$a->strings["%s is sharing with you"] = "";
-$a->strings["Private communications are not available for this contact."] = "";
-$a->strings["(Update was successful)"] = "";
-$a->strings["(Update was not successful)"] = "";
-$a->strings["Suggest friends"] = "";
-$a->strings["Network type: %s"] = "";
-$a->strings["%d contact in common"] = array(
+$a->strings["%d comment"] = array(
        0 => "",
        1 => "",
 );
-$a->strings["View all contacts"] = "";
-$a->strings["Toggle Blocked status"] = "";
-$a->strings["Unignore"] = "";
-$a->strings["Ignore"] = "";
-$a->strings["Toggle Ignored status"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Toggle Archive status"] = "";
-$a->strings["Repair"] = "";
-$a->strings["Advanced Contact Settings"] = "";
-$a->strings["Communications lost with this contact!"] = "";
-$a->strings["Contact Editor"] = "";
-$a->strings["Profile Visibility"] = "";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
-$a->strings["Contact Information / Notes"] = "";
-$a->strings["Edit contact notes"] = "";
-$a->strings["Visit %s's profile [%s]"] = "";
-$a->strings["Block/Unblock contact"] = "";
-$a->strings["Ignore contact"] = "";
-$a->strings["Repair URL settings"] = "";
-$a->strings["View conversations"] = "";
-$a->strings["Delete contact"] = "";
-$a->strings["Last update:"] = "";
-$a->strings["Update public posts"] = "";
-$a->strings["Currently blocked"] = "";
-$a->strings["Currently ignored"] = "";
-$a->strings["Currently archived"] = "";
-$a->strings["Hide this contact from others"] = "";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
-$a->strings["Suggestions"] = "";
-$a->strings["Suggest potential friends"] = "";
-$a->strings["All Contacts"] = "";
-$a->strings["Show all contacts"] = "";
-$a->strings["Unblocked"] = "";
-$a->strings["Only show unblocked contacts"] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Only show blocked contacts"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Only show ignored contacts"] = "";
-$a->strings["Archived"] = "";
-$a->strings["Only show archived contacts"] = "";
-$a->strings["Hidden"] = "";
-$a->strings["Only show hidden contacts"] = "";
-$a->strings["Mutual Friendship"] = "";
-$a->strings["is a fan of yours"] = "";
-$a->strings["you are a fan of"] = "";
-$a->strings["Edit contact"] = "";
-$a->strings["Search your contacts"] = "";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["show more"] = "";
+$a->strings["Private Message"] = "";
+$a->strings["I like this (toggle)"] = "";
+$a->strings["like"] = "";
+$a->strings["I don't like this (toggle)"] = "";
+$a->strings["dislike"] = "";
+$a->strings["Share this"] = "";
+$a->strings["share"] = "";
+$a->strings["This is you"] = "";
+$a->strings["Comment"] = "";
+$a->strings["Bold"] = "";
+$a->strings["Italic"] = "";
+$a->strings["Underline"] = "";
+$a->strings["Quote"] = "";
+$a->strings["Code"] = "";
+$a->strings["Image"] = "";
+$a->strings["Link"] = "";
+$a->strings["Video"] = "";
+$a->strings["Preview"] = "";
+$a->strings["Edit"] = "";
+$a->strings["add star"] = "";
+$a->strings["remove star"] = "";
+$a->strings["toggle star status"] = "";
+$a->strings["starred"] = "";
+$a->strings["add tag"] = "";
+$a->strings["save to folder"] = "";
+$a->strings["to"] = "";
+$a->strings["Wall-to-Wall"] = "";
+$a->strings["via Wall-To-Wall:"] = "";
+$a->strings["Remove My Account"] = "";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "";
+$a->strings["Please enter your password for verification:"] = "";
+$a->strings["Friendica Communications Server - Setup"] = "";
+$a->strings["Could not connect to database."] = "";
+$a->strings["Could not create table."] = "";
+$a->strings["Your Friendica site database has been installed."] = "";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "";
+$a->strings["System check"] = "";
+$a->strings["Check again"] = "";
+$a->strings["Database connection"] = "";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
+$a->strings["Database Server Name"] = "";
+$a->strings["Database Login Name"] = "";
+$a->strings["Database Login Password"] = "";
+$a->strings["Database Name"] = "";
+$a->strings["Site administrator email address"] = "";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
+$a->strings["Please select a default timezone for your website"] = "";
+$a->strings["Site settings"] = "";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
+$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>"] = "";
+$a->strings["PHP executable path"] = "";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
+$a->strings["Command line PHP"] = "";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "";
+$a->strings["PHP cli binary"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
+$a->strings["This is required for message delivery to work."] = "";
+$a->strings["PHP register_argc_argv"] = "";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
+$a->strings["Generate encryption keys"] = "";
+$a->strings["libCurl PHP module"] = "";
+$a->strings["GD graphics PHP module"] = "";
+$a->strings["OpenSSL PHP module"] = "";
+$a->strings["mysqli PHP module"] = "";
+$a->strings["mb_string PHP module"] = "";
+$a->strings["Apache mod_rewrite module"] = "";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
+$a->strings["Error: libCURL PHP module required but not installed."] = "";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
+$a->strings["Error: openssl PHP module required but not installed."] = "";
+$a->strings["Error: mysqli PHP module required but not installed."] = "";
+$a->strings["Error: mb_string PHP module required but not installed."] = "";
+$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."] = "";
+$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."] = "";
+$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->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = "";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$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."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$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."] = "";
+$a->strings["view/smarty3 is writable"] = "";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$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."] = "";
+$a->strings["<h1>What next</h1>"] = "";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["Unable to check your home location."] = "";
+$a->strings["No recipient."] = "";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
+$a->strings["Help:"] = "";
+$a->strings["Help"] = "";
+$a->strings["Not Found"] = "";
+$a->strings["Page not found."] = "";
+$a->strings["%1\$s welcomes %2\$s"] = "";
+$a->strings["Welcome to %s"] = "";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
+$a->strings["Or - did you try to upload an empty file?"] = "";
+$a->strings["File exceeds size limit of %d"] = "";
+$a->strings["File upload failed."] = "";
+$a->strings["Profile Match"] = "";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
+$a->strings["is interested in:"] = "";
+$a->strings["Connect"] = "";
+$a->strings["link"] = "";
+$a->strings["Not available."] = "";
+$a->strings["Community"] = "";
+$a->strings["No results."] = "";
 $a->strings["everybody"] = "";
-$a->strings["Account settings"] = "";
 $a->strings["Additional features"] = "";
-$a->strings["Display settings"] = "";
-$a->strings["Connector settings"] = "";
-$a->strings["Plugin settings"] = "";
+$a->strings["Display"] = "";
+$a->strings["Social Networks"] = "";
+$a->strings["Delegations"] = "";
 $a->strings["Connected apps"] = "";
 $a->strings["Export personal data"] = "";
 $a->strings["Remove account"] = "";
 $a->strings["Missing some important data!"] = "";
-$a->strings["Update"] = "";
 $a->strings["Failed to connect with email account using the settings provided."] = "";
 $a->strings["Email settings updated."] = "";
 $a->strings["Features updated"] = "";
@@ -819,11 +818,11 @@ $a->strings["Off"] = "";
 $a->strings["On"] = "";
 $a->strings["Additional Features"] = "";
 $a->strings["Built-in support for %s connectivity is %s"] = "";
+$a->strings["Diaspora"] = "";
 $a->strings["enabled"] = "";
 $a->strings["disabled"] = "";
 $a->strings["StatusNet"] = "";
 $a->strings["Email access is disabled on this site."] = "";
-$a->strings["Connector Settings"] = "";
 $a->strings["Email/Mailbox Setup"] = "";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "";
 $a->strings["Last successful email check:"] = "";
@@ -848,7 +847,11 @@ $a->strings["Number of items to display per page:"] = "";
 $a->strings["Maximum of 100 items"] = "";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "";
 $a->strings["Don't show emoticons"] = "";
+$a->strings["Don't show notices"] = "";
 $a->strings["Infinite scroll"] = "";
+$a->strings["Automatic updates only at the top of the network page"] = "";
+$a->strings["User Types"] = "";
+$a->strings["Community Types"] = "";
 $a->strings["Normal Account Page"] = "";
 $a->strings["This account is a normal personal profile"] = "";
 $a->strings["Soapbox Page"] = "";
@@ -862,15 +865,16 @@ $a->strings["Private forum - approved members only"] = "";
 $a->strings["OpenID:"] = "";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "";
 $a->strings["Publish your default profile in your local site directory?"] = "";
+$a->strings["No"] = "";
 $a->strings["Publish your default profile in the global social directory?"] = "";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "";
 $a->strings["Hide your profile details from unknown viewers?"] = "";
+$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?"] = "";
 $a->strings["Allow friends to tag your posts?"] = "";
 $a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
 $a->strings["Permit unknown people to send you private mail?"] = "";
 $a->strings["Profile is <strong>not published</strong>."] = "";
-$a->strings["or"] = "";
 $a->strings["Your Identity Address is"] = "";
 $a->strings["Automatically expire posts after this many days:"] = "";
 $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "";
@@ -920,11 +924,105 @@ $a->strings["You receive a private message"] = "";
 $a->strings["You receive a friend suggestion"] = "";
 $a->strings["You are tagged in a post"] = "";
 $a->strings["You are poked/prodded/etc. in a post"] = "";
+$a->strings["Text-only notification emails"] = "";
+$a->strings["Send text only notification emails, without the html part"] = "";
 $a->strings["Advanced Account/Page Type Settings"] = "";
 $a->strings["Change the behaviour of this account for special situations"] = "";
 $a->strings["Relocate"] = "";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
 $a->strings["Resend relocate message to contacts"] = "";
+$a->strings["This introduction has already been accepted."] = "";
+$a->strings["Profile location is not valid or does not contain profile information."] = "";
+$a->strings["Warning: profile location has no identifiable owner name."] = "";
+$a->strings["Warning: profile location has no profile photo."] = "";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["Introduction complete."] = "";
+$a->strings["Unrecoverable protocol error."] = "";
+$a->strings["Profile unavailable."] = "";
+$a->strings["%s has received too many connection requests today."] = "";
+$a->strings["Spam protection measures have been invoked."] = "";
+$a->strings["Friends are advised to please try again in 24 hours."] = "";
+$a->strings["Invalid locator"] = "";
+$a->strings["Invalid email address."] = "";
+$a->strings["This account has not been configured for email. Request failed."] = "";
+$a->strings["Unable to resolve your name at the provided location."] = "";
+$a->strings["You have already introduced yourself here."] = "";
+$a->strings["Apparently you are already friends with %s."] = "";
+$a->strings["Invalid profile URL."] = "";
+$a->strings["Disallowed profile URL."] = "";
+$a->strings["Your introduction has been sent."] = "";
+$a->strings["Please login to confirm introduction."] = "";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "";
+$a->strings["Hide this contact"] = "";
+$a->strings["Welcome home %s."] = "";
+$a->strings["Please confirm your introduction/connection request to %s."] = "";
+$a->strings["Confirm"] = "";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "";
+$a->strings["Please answer the following:"] = "";
+$a->strings["Does %s know you?"] = "";
+$a->strings["Add a personal note:"] = "";
+$a->strings["Friendica"] = "";
+$a->strings["StatusNet/Federated Social Web"] = "";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
+$a->strings["Your Identity Address:"] = "";
+$a->strings["Submit Request"] = "";
+$a->strings["Registration successful. Please check your email for further instructions."] = "";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
+$a->strings["Your registration can not be processed."] = "";
+$a->strings["Your registration is pending approval by the site owner."] = "";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "";
+$a->strings["Your OpenID (optional): "] = "";
+$a->strings["Include your profile in member directory?"] = "";
+$a->strings["Membership on this site is by invitation only."] = "";
+$a->strings["Your invitation ID: "] = "";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "";
+$a->strings["Your Email Address: "] = "";
+$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>'."] = "";
+$a->strings["Choose a nickname: "] = "";
+$a->strings["Register"] = "";
+$a->strings["Import"] = "";
+$a->strings["Import your profile to this friendica instance"] = "";
+$a->strings["System down for maintenance"] = "";
+$a->strings["Search"] = "";
+$a->strings["Global Directory"] = "";
+$a->strings["Find on this site"] = "";
+$a->strings["Site Directory"] = "";
+$a->strings["Age: "] = "";
+$a->strings["Gender: "] = "";
+$a->strings["Gender:"] = "";
+$a->strings["Status:"] = "";
+$a->strings["Homepage:"] = "";
+$a->strings["About:"] = "";
+$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["No potential page delegates located."] = "";
+$a->strings["Delegate Page Management"] = "";
+$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."] = "";
+$a->strings["Existing Page Managers"] = "";
+$a->strings["Existing Page Delegates"] = "";
+$a->strings["Potential Delegates"] = "";
+$a->strings["Add"] = "";
+$a->strings["No entries."] = "";
+$a->strings["Common Friends"] = "";
+$a->strings["No contacts in common."] = "";
+$a->strings["Export account"] = "";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
+$a->strings["Export all"] = "";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
+$a->strings["%1\$s is currently %2\$s"] = "";
+$a->strings["Mood"] = "";
+$a->strings["Set your current mood and tell your friends"] = "";
+$a->strings["Do you really want to delete this suggestion?"] = "";
+$a->strings["Friend Suggestions"] = "";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
+$a->strings["Ignore/Hide"] = "";
 $a->strings["Profile deleted."] = "";
 $a->strings["Profile-"] = "";
 $a->strings["New profile created."] = "";
@@ -949,6 +1047,7 @@ $a->strings["public profile"] = "";
 $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
 $a->strings[" - Visit %1\$s's %2\$s"] = "";
 $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+$a->strings["Hide contacts and friends:"] = "";
 $a->strings["Hide your contact/friend list from viewers of this profile?"] = "";
 $a->strings["Edit Profile Details"] = "";
 $a->strings["Change Profile Photo"] = "";
@@ -956,6 +1055,11 @@ $a->strings["View this profile"] = "";
 $a->strings["Create a new profile using these settings"] = "";
 $a->strings["Clone this profile"] = "";
 $a->strings["Delete this profile"] = "";
+$a->strings["Basic information"] = "";
+$a->strings["Profile picture"] = "";
+$a->strings["Preferences"] = "";
+$a->strings["Status information"] = "";
+$a->strings["Additional information"] = "";
 $a->strings["Profile Name:"] = "";
 $a->strings["Your Full Name:"] = "";
 $a->strings["Title/Description:"] = "";
@@ -979,71 +1083,60 @@ $a->strings["Public Keywords:"] = "";
 $a->strings["Private Keywords:"] = "";
 $a->strings["Likes:"] = "";
 $a->strings["Dislikes:"] = "";
-$a->strings["Example: fishing photography software"] = "";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "";
-$a->strings["(Used for searching profiles, never shown to others)"] = "";
-$a->strings["Tell us about yourself..."] = "";
-$a->strings["Hobbies/Interests"] = "";
-$a->strings["Contact information and Social Networks"] = "";
-$a->strings["Musical interests"] = "";
-$a->strings["Books, literature"] = "";
-$a->strings["Television"] = "";
-$a->strings["Film/dance/culture/entertainment"] = "";
-$a->strings["Love/romance"] = "";
-$a->strings["Work/employment"] = "";
-$a->strings["School/education"] = "";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
-$a->strings["Edit/Manage Profiles"] = "";
-$a->strings["Group created."] = "";
-$a->strings["Could not create group."] = "";
-$a->strings["Group not found."] = "";
-$a->strings["Group name changed."] = "";
-$a->strings["Save Group"] = "";
-$a->strings["Create a group of contacts/friends."] = "";
-$a->strings["Group Name: "] = "";
-$a->strings["Group removed."] = "";
-$a->strings["Unable to remove group."] = "";
-$a->strings["Group Editor"] = "";
-$a->strings["Members"] = "";
-$a->strings["Click on a contact to add or remove."] = "";
-$a->strings["Source (bbcode) text:"] = "";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
-$a->strings["Source input: "] = "";
-$a->strings["bb2html (raw HTML): "] = "";
-$a->strings["bb2html: "] = "";
-$a->strings["bb2html2bb: "] = "";
-$a->strings["bb2md: "] = "";
-$a->strings["bb2md2html: "] = "";
-$a->strings["bb2dia2bb: "] = "";
-$a->strings["bb2md2html2bb: "] = "";
-$a->strings["Source input (Diaspora format): "] = "";
-$a->strings["diaspora2bb: "] = "";
-$a->strings["Not available."] = "";
-$a->strings["Contact added"] = "";
-$a->strings["No more system notifications."] = "";
-$a->strings["System Notifications"] = "";
-$a->strings["New Message"] = "";
-$a->strings["Unable to locate contact information."] = "";
-$a->strings["Messages"] = "";
-$a->strings["Do you really want to delete this message?"] = "";
-$a->strings["Message deleted."] = "";
-$a->strings["Conversation removed."] = "";
-$a->strings["No messages."] = "";
-$a->strings["Unknown sender - %s"] = "";
-$a->strings["You and %s"] = "";
-$a->strings["%s and You"] = "";
-$a->strings["Delete conversation"] = "";
-$a->strings["D, d M Y - g:i A"] = "";
-$a->strings["%d message"] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["Message not available."] = "";
-$a->strings["Delete message"] = "";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
-$a->strings["Post successful."] = "";
+$a->strings["Example: fishing photography software"] = "";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "";
+$a->strings["(Used for searching profiles, never shown to others)"] = "";
+$a->strings["Tell us about yourself..."] = "";
+$a->strings["Hobbies/Interests"] = "";
+$a->strings["Contact information and Social Networks"] = "";
+$a->strings["Musical interests"] = "";
+$a->strings["Books, literature"] = "";
+$a->strings["Television"] = "";
+$a->strings["Film/dance/culture/entertainment"] = "";
+$a->strings["Love/romance"] = "";
+$a->strings["Work/employment"] = "";
+$a->strings["School/education"] = "";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
+$a->strings["Edit/Manage Profiles"] = "";
+$a->strings["Change profile photo"] = "";
+$a->strings["Create New Profile"] = "";
+$a->strings["Profile Image"] = "";
+$a->strings["visible to everybody"] = "";
+$a->strings["Edit visibility"] = "";
+$a->strings["Item not found"] = "";
+$a->strings["Edit post"] = "";
+$a->strings["upload photo"] = "";
+$a->strings["Attach file"] = "";
+$a->strings["attach file"] = "";
+$a->strings["web link"] = "";
+$a->strings["Insert video link"] = "";
+$a->strings["video link"] = "";
+$a->strings["Insert audio link"] = "";
+$a->strings["audio link"] = "";
+$a->strings["Set your location"] = "";
+$a->strings["set location"] = "";
+$a->strings["Clear browser location"] = "";
+$a->strings["clear location"] = "";
+$a->strings["Permission settings"] = "";
+$a->strings["CC: email addresses"] = "";
+$a->strings["Public post"] = "";
+$a->strings["Set title"] = "";
+$a->strings["Categories (comma-separated list)"] = "";
+$a->strings["Example: bob@example.com, mary@example.com"] = "";
+$a->strings["This is Friendica, version"] = "";
+$a->strings["running at web location"] = "";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
+$a->strings["Bug reports and issues: please visit"] = "";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
+$a->strings["Installed plugins/addons/apps:"] = "";
+$a->strings["No installed plugins/addons/apps"] = "";
+$a->strings["Authorize application connection"] = "";
+$a->strings["Return to your app and insert this Securty Code:"] = "";
+$a->strings["Please login to continue."] = "";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+$a->strings["Remote privacy information not available."] = "";
+$a->strings["Visible to:"] = "";
+$a->strings["Personal Notes"] = "";
 $a->strings["l F d, Y \\@ g:i A"] = "";
 $a->strings["Time Conversion"] = "";
 $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
@@ -1051,16 +1144,33 @@ $a->strings["UTC time: %s"] = "";
 $a->strings["Current timezone: %s"] = "";
 $a->strings["Converted localtime: %s"] = "";
 $a->strings["Please select your timezone:"] = "";
-$a->strings["Save to Folder:"] = "";
-$a->strings["- select -"] = "";
-$a->strings["Invalid profile identifier."] = "";
-$a->strings["Profile Visibility Editor"] = "";
-$a->strings["Visible To"] = "";
-$a->strings["All Contacts (with secure profile access)"] = "";
-$a->strings["No contacts."] = "";
-$a->strings["View Contacts"] = "";
-$a->strings["People Search"] = "";
-$a->strings["No matches"] = "";
+$a->strings["Poke/Prod"] = "";
+$a->strings["poke, prod or do other things to somebody"] = "";
+$a->strings["Recipient"] = "";
+$a->strings["Choose what you wish to do to recipient"] = "";
+$a->strings["Make this post private"] = "";
+$a->strings["Total invitation limit exceeded."] = "";
+$a->strings["%s : Not a valid email address."] = "";
+$a->strings["Please join us on Friendica"] = "";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
+$a->strings["%s : Message delivery failed."] = "";
+$a->strings["%d message sent."] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["You have no more invitations available"] = "";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
+$a->strings["Send invitations"] = "";
+$a->strings["Enter email addresses, one per line:"] = "";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
+$a->strings["Photo Albums"] = "";
+$a->strings["Contact Photos"] = "";
 $a->strings["Upload New Photos"] = "";
 $a->strings["Contact information unavailable"] = "";
 $a->strings["Album not found."] = "";
@@ -1072,10 +1182,7 @@ $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
 $a->strings["a photo"] = "";
 $a->strings["Image exceeds size limit of "] = "";
 $a->strings["Image file is empty."] = "";
-$a->strings["Unable to process image."] = "";
-$a->strings["Image upload failed."] = "";
 $a->strings["No photos selected"] = "";
-$a->strings["Access to this item is restricted."] = "";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
 $a->strings["Upload Photos"] = "";
 $a->strings["New album name: "] = "";
@@ -1103,168 +1210,70 @@ $a->strings["Caption"] = "";
 $a->strings["Add a Tag"] = "";
 $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "";
 $a->strings["Private photo"] = "";
-$a->strings["Public photo"] = "";
-$a->strings["Share"] = "";
-$a->strings["View Album"] = "";
-$a->strings["Recent Photos"] = "";
-$a->strings["File exceeds size limit of %d"] = "";
-$a->strings["File upload failed."] = "";
-$a->strings["No videos selected"] = "";
-$a->strings["View Video"] = "";
-$a->strings["Recent Videos"] = "";
-$a->strings["Upload New Videos"] = "";
-$a->strings["Poke/Prod"] = "";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "";
-$a->strings["Choose what you wish to do to recipient"] = "";
-$a->strings["Make this post private"] = "";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["Export account"] = "";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
-$a->strings["Export all"] = "";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
-$a->strings["Common Friends"] = "";
-$a->strings["No contacts in common."] = "";
-$a->strings["Image exceeds size limit of %d"] = "";
-$a->strings["Wall Photos"] = "";
-$a->strings["Image uploaded but image cropping failed."] = "";
-$a->strings["Image size reduction [%s] failed."] = "";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
-$a->strings["Unable to process image"] = "";
-$a->strings["Upload File:"] = "";
-$a->strings["Select a profile:"] = "";
-$a->strings["Upload"] = "";
-$a->strings["skip this step"] = "";
-$a->strings["select a photo from your photo albums"] = "";
-$a->strings["Crop Image"] = "";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "";
-$a->strings["Done Editing"] = "";
-$a->strings["Image uploaded successfully."] = "";
-$a->strings["Applications"] = "";
-$a->strings["No installed applications."] = "";
-$a->strings["Nothing new here"] = "";
-$a->strings["Clear notifications"] = "";
-$a->strings["Profile Match"] = "";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
-$a->strings["is interested in:"] = "";
-$a->strings["Tag removed"] = "";
-$a->strings["Remove Item Tag"] = "";
-$a->strings["Select a tag to remove: "] = "";
-$a->strings["Remove"] = "";
-$a->strings["Event title and start time are required."] = "";
-$a->strings["l, F j"] = "";
-$a->strings["Edit event"] = "";
-$a->strings["link to source"] = "";
-$a->strings["Create New Event"] = "";
-$a->strings["Previous"] = "";
-$a->strings["hour:minute"] = "";
-$a->strings["Event details"] = "";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "";
-$a->strings["Event Starts:"] = "";
-$a->strings["Required"] = "";
-$a->strings["Finish date/time is not known or not relevant"] = "";
-$a->strings["Event Finishes:"] = "";
-$a->strings["Adjust for viewer timezone"] = "";
-$a->strings["Description:"] = "";
-$a->strings["Title:"] = "";
-$a->strings["Share this event"] = "";
-$a->strings["No potential page delegates located."] = "";
-$a->strings["Delegate Page Management"] = "";
-$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."] = "";
-$a->strings["Existing Page Managers"] = "";
-$a->strings["Existing Page Delegates"] = "";
-$a->strings["Potential Delegates"] = "";
-$a->strings["Add"] = "";
-$a->strings["No entries."] = "";
-$a->strings["Contacts who are not members of a group"] = "";
-$a->strings["Files"] = "";
-$a->strings["System down for maintenance"] = "";
-$a->strings["Remove My Account"] = "";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "";
-$a->strings["Please enter your password for verification:"] = "";
-$a->strings["Friend suggestion sent."] = "";
-$a->strings["Suggest Friends"] = "";
-$a->strings["Suggest a friend for %s"] = "";
-$a->strings["Unable to locate original post."] = "";
-$a->strings["Empty post discarded."] = "";
-$a->strings["System error. Post not saved."] = "";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
-$a->strings["You may visit them online at %s"] = "";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
-$a->strings["%s posted an update."] = "";
-$a->strings["{0} wants to be your friend"] = "";
-$a->strings["{0} sent you a message"] = "";
-$a->strings["{0} requested registration"] = "";
-$a->strings["{0} commented %s's post"] = "";
-$a->strings["{0} liked %s's post"] = "";
-$a->strings["{0} disliked %s's post"] = "";
-$a->strings["{0} is now friends with %s"] = "";
-$a->strings["{0} posted"] = "";
-$a->strings["{0} tagged %s's post with #%s"] = "";
-$a->strings["{0} mentioned you in a post"] = "";
-$a->strings["OpenID protocol error. No ID returned."] = "";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
-$a->strings["Login failed."] = "";
-$a->strings["Invalid request identifier."] = "";
-$a->strings["Discard"] = "";
-$a->strings["System"] = "";
-$a->strings["Network"] = "";
-$a->strings["Introductions"] = "";
-$a->strings["Show Ignored Requests"] = "";
-$a->strings["Hide Ignored Requests"] = "";
-$a->strings["Notification type: "] = "";
-$a->strings["Friend Suggestion"] = "";
-$a->strings["suggested by %s"] = "";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "";
-$a->strings["Claims to be known to you: "] = "";
-$a->strings["yes"] = "";
-$a->strings["no"] = "";
-$a->strings["Approve as: "] = "";
-$a->strings["Friend"] = "";
-$a->strings["Sharer"] = "";
-$a->strings["Fan/Admirer"] = "";
-$a->strings["Friend/Connect Request"] = "";
-$a->strings["New Follower"] = "";
-$a->strings["No introductions."] = "";
-$a->strings["Notifications"] = "";
-$a->strings["%s liked %s's post"] = "";
-$a->strings["%s disliked %s's post"] = "";
-$a->strings["%s is now friends with %s"] = "";
-$a->strings["%s created a new post"] = "";
-$a->strings["%s commented on %s's post"] = "";
-$a->strings["No more network notifications."] = "";
-$a->strings["Network Notifications"] = "";
-$a->strings["No more personal notifications."] = "";
-$a->strings["Personal Notifications"] = "";
-$a->strings["No more home notifications."] = "";
-$a->strings["Home Notifications"] = "";
-$a->strings["Total invitation limit exceeded."] = "";
-$a->strings["%s : Not a valid email address."] = "";
-$a->strings["Please join us on Friendica"] = "";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
-$a->strings["%s : Message delivery failed."] = "";
-$a->strings["%d message sent."] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["You have no more invitations available"] = "";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
-$a->strings["Send invitations"] = "";
-$a->strings["Enter email addresses, one per line:"] = "";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
-$a->strings["Manage Identities and/or Pages"] = "";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
-$a->strings["Select an identity to manage: "] = "";
-$a->strings["Welcome to %s"] = "";
-$a->strings["Friends of %s"] = "";
-$a->strings["No friends to display."] = "";
+$a->strings["Public photo"] = "";
+$a->strings["Share"] = "";
+$a->strings["Recent Photos"] = "";
+$a->strings["Account approved."] = "";
+$a->strings["Registration revoked for %s"] = "";
+$a->strings["Please login."] = "";
+$a->strings["Move account"] = "";
+$a->strings["You can import an account from another Friendica server."] = "";
+$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."] = "";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
+$a->strings["Account file"] = "";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
+$a->strings["Item not available."] = "";
+$a->strings["Item was not found."] = "";
+$a->strings["Delete this item?"] = "";
+$a->strings["show fewer"] = "";
+$a->strings["Update %s failed. See error logs."] = "";
+$a->strings["Create a New Account"] = "";
+$a->strings["Logout"] = "";
+$a->strings["Login"] = "";
+$a->strings["Nickname or Email address: "] = "";
+$a->strings["Password: "] = "";
+$a->strings["Remember me"] = "";
+$a->strings["Or login using OpenID: "] = "";
+$a->strings["Forgot your password?"] = "";
+$a->strings["Website Terms of Service"] = "";
+$a->strings["terms of service"] = "";
+$a->strings["Website Privacy Policy"] = "";
+$a->strings["privacy policy"] = "";
+$a->strings["Requested account is not available."] = "";
+$a->strings["Edit profile"] = "";
+$a->strings["Message"] = "";
+$a->strings["Profiles"] = "";
+$a->strings["Manage/edit profiles"] = "";
+$a->strings["Network:"] = "";
+$a->strings["g A l F d"] = "";
+$a->strings["F d"] = "";
+$a->strings["[today]"] = "";
+$a->strings["Birthday Reminders"] = "";
+$a->strings["Birthdays this week:"] = "";
+$a->strings["[No description]"] = "";
+$a->strings["Event Reminders"] = "";
+$a->strings["Events this week:"] = "";
+$a->strings["Status"] = "";
+$a->strings["Status Messages and Posts"] = "";
+$a->strings["Profile Details"] = "";
+$a->strings["Videos"] = "";
+$a->strings["Events and Calendar"] = "";
+$a->strings["Only You Can See This"] = "";
+$a->strings["This entry was edited"] = "";
+$a->strings["ignore thread"] = "";
+$a->strings["unignore thread"] = "";
+$a->strings["toggle ignore status"] = "";
+$a->strings["ignored"] = "";
+$a->strings["Categories:"] = "";
+$a->strings["Filed under:"] = "";
+$a->strings["via"] = "";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "";
+$a->strings["Errors encountered creating database tables."] = "";
+$a->strings["Errors encountered performing database changes."] = "";
+$a->strings["Logged out."] = "";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+$a->strings["The error message was:"] = "";
 $a->strings["Add New Contact"] = "";
 $a->strings["Enter address or web location"] = "";
 $a->strings["Example: bob@example.com, http://example.com/barbara"] = "";
@@ -1276,39 +1285,112 @@ $a->strings["Find People"] = "";
 $a->strings["Enter name or interest"] = "";
 $a->strings["Connect/Follow"] = "";
 $a->strings["Examples: Robert Morgenstein, Fishing"] = "";
+$a->strings["Similar Interests"] = "";
 $a->strings["Random Profile"] = "";
+$a->strings["Invite Friends"] = "";
 $a->strings["Networks"] = "";
 $a->strings["All Networks"] = "";
 $a->strings["Saved Folders"] = "";
 $a->strings["Everything"] = "";
 $a->strings["Categories"] = "";
-$a->strings["Click here to upgrade."] = "";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "";
-$a->strings["This action is not available under your subscription plan."] = "";
-$a->strings["view full size"] = "";
-$a->strings["Starts:"] = "";
-$a->strings["Finishes:"] = "";
-$a->strings["(no subject)"] = "";
-$a->strings["noreply"] = "";
-$a->strings["An invitation is required."] = "";
-$a->strings["Invitation could not be verified."] = "";
-$a->strings["Invalid OpenID url"] = "";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "";
-$a->strings["Please enter the required information."] = "";
-$a->strings["Please use a shorter name."] = "";
-$a->strings["Name too short."] = "";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "";
-$a->strings["Your email domain is not among those allowed on this site."] = "";
-$a->strings["Not a valid email address."] = "";
-$a->strings["Cannot use that email."] = "";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "";
-$a->strings["Nickname is already registered. Please choose another."] = "";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "";
-$a->strings["An error occurred during registration. Please try again."] = "";
-$a->strings["An error occurred creating your default profile. Please try again."] = "";
-$a->strings["Friends"] = "";
+$a->strings["General Features"] = "";
+$a->strings["Multiple Profiles"] = "";
+$a->strings["Ability to create multiple profiles"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Richtext Editor"] = "";
+$a->strings["Enable richtext editor"] = "";
+$a->strings["Post Preview"] = "";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["Group Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Tabs"] = "";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "";
+$a->strings["Edit Sent Posts"] = "";
+$a->strings["Edit and correct posts and comments after sending"] = "";
+$a->strings["Tagging"] = "";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "";
+$a->strings["Add categories to your posts"] = "";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Mute Post Notifications"] = "";
+$a->strings["Ability to mute notifications for a thread"] = "";
+$a->strings["Connect URL missing."] = "";
+$a->strings["This site is not configured to allow communications with other networks."] = "";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "";
+$a->strings["The profile address specified does not provide adequate information."] = "";
+$a->strings["An author or name was not found."] = "";
+$a->strings["No browser URL could be matched to this address."] = "";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
+$a->strings["Use mailto: in front of address to force email check."] = "";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
+$a->strings["Unable to retrieve contact information."] = "";
+$a->strings["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."] = "";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["Everybody"] = "";
+$a->strings["edit"] = "";
+$a->strings["Edit group"] = "";
+$a->strings["Create a new group"] = "";
+$a->strings["Contacts not in any group"] = "";
+$a->strings["Miscellaneous"] = "";
+$a->strings["year"] = "";
+$a->strings["month"] = "";
+$a->strings["day"] = "";
+$a->strings["never"] = "";
+$a->strings["less than a second ago"] = "";
+$a->strings["years"] = "";
+$a->strings["months"] = "";
+$a->strings["week"] = "";
+$a->strings["weeks"] = "";
+$a->strings["days"] = "";
+$a->strings["hour"] = "";
+$a->strings["hours"] = "";
+$a->strings["minute"] = "";
+$a->strings["minutes"] = "";
+$a->strings["second"] = "";
+$a->strings["seconds"] = "";
+$a->strings["%1\$d %2\$s ago"] = "";
+$a->strings["%s's birthday"] = "";
+$a->strings["Happy Birthday %s"] = "";
+$a->strings["Visible to everybody"] = "";
+$a->strings["show"] = "";
+$a->strings["don't show"] = "";
+$a->strings["[no subject]"] = "";
+$a->strings["stopped following"] = "";
+$a->strings["Poke"] = "";
+$a->strings["View Status"] = "";
+$a->strings["View Profile"] = "";
+$a->strings["View Photos"] = "";
+$a->strings["Network Posts"] = "";
+$a->strings["Edit Contact"] = "";
+$a->strings["Drop Contact"] = "";
+$a->strings["Send PM"] = "";
+$a->strings["Welcome "] = "";
+$a->strings["Please upload a profile photo."] = "";
+$a->strings["Welcome back "] = "";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
+$a->strings["event"] = "";
 $a->strings["%1\$s poked %2\$s"] = "";
 $a->strings["poked"] = "";
 $a->strings["post/item"] = "";
@@ -1316,13 +1398,6 @@ $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
 $a->strings["remove"] = "";
 $a->strings["Delete Selected Items"] = "";
 $a->strings["Follow Thread"] = "";
-$a->strings["View Status"] = "";
-$a->strings["View Profile"] = "";
-$a->strings["View Photos"] = "";
-$a->strings["Network Posts"] = "";
-$a->strings["Edit Contact"] = "";
-$a->strings["Send PM"] = "";
-$a->strings["Poke"] = "";
 $a->strings["%s likes this."] = "";
 $a->strings["%s doesn't like this."] = "";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "";
@@ -1338,22 +1413,12 @@ $a->strings["Tag term:"] = "";
 $a->strings["Where are you right now?"] = "";
 $a->strings["Delete item(s)?"] = "";
 $a->strings["Post to Email"] = "";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
 $a->strings["permissions"] = "";
 $a->strings["Post to Groups"] = "";
 $a->strings["Post to Contacts"] = "";
 $a->strings["Private post"] = "";
-$a->strings["Logged out."] = "";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! Cannot check nickname"] = "";
-$a->strings["User '%s' already exists on this server!"] = "";
-$a->strings["User creation error"] = "";
-$a->strings["User profile creation error"] = "";
-$a->strings["%d contact not imported"] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["Done. You can now login with your username and password"] = "";
+$a->strings["view full size"] = "";
 $a->strings["newer"] = "";
 $a->strings["older"] = "";
 $a->strings["prev"] = "";
@@ -1417,70 +1482,69 @@ $a->strings["November"] = "";
 $a->strings["December"] = "";
 $a->strings["bytes"] = "";
 $a->strings["Click to open/close"] = "";
+$a->strings["default"] = "";
 $a->strings["Select an alternate language"] = "";
 $a->strings["activity"] = "";
 $a->strings["post"] = "";
 $a->strings["Item filed"] = "";
-$a->strings["Friendica Notification"] = "";
-$a->strings["Thank You,"] = "";
-$a->strings["%s Administrator"] = "";
-$a->strings["%s <!item_type!>"] = "";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
-$a->strings["%1\$s sent you %2\$s."] = "";
-$a->strings["a private message"] = "";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%s commented on an item/conversation you have been following."] = "";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
-$a->strings["[Friendica:Notify] %s tagged you"] = "";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s poked you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
-$a->strings["[Friendica:Notify] Introduction received"] = "";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "";
-$a->strings["Please visit %s to approve or reject the introduction."] = "";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "";
-$a->strings["Photo:"] = "";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
+$a->strings["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:"] = "";
+$a->strings["Encrypted content"] = "";
+$a->strings["(no subject)"] = "";
+$a->strings["noreply"] = "";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "";
+$a->strings["Unknown | Not categorised"] = "";
+$a->strings["Block immediately"] = "";
+$a->strings["Shady, spammer, self-marketer"] = "";
+$a->strings["Known to me, but no opinion"] = "";
+$a->strings["OK, probably harmless"] = "";
+$a->strings["Reputable, has my trust"] = "";
+$a->strings["Weekly"] = "";
+$a->strings["Monthly"] = "";
+$a->strings["OStatus"] = "";
+$a->strings["RSS/Atom"] = "";
+$a->strings["Zot!"] = "";
+$a->strings["LinkedIn"] = "";
+$a->strings["XMPP/IM"] = "";
+$a->strings["MySpace"] = "";
+$a->strings["Google+"] = "";
+$a->strings["pump.io"] = "";
+$a->strings["Twitter"] = "";
+$a->strings["Diaspora Connector"] = "";
+$a->strings["Statusnet"] = "";
+$a->strings["App.net"] = "";
 $a->strings[" on Last.fm"] = "";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["Everybody"] = "";
-$a->strings["edit"] = "";
-$a->strings["Edit group"] = "";
-$a->strings["Create a new group"] = "";
-$a->strings["Contacts not in any group"] = "";
-$a->strings["Connect URL missing."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "";
-$a->strings["The profile address specified does not provide adequate information."] = "";
-$a->strings["An author or name was not found."] = "";
-$a->strings["No browser URL could be matched to this address."] = "";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
-$a->strings["Use mailto: in front of address to force email check."] = "";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
-$a->strings["Unable to retrieve contact information."] = "";
-$a->strings["following"] = "";
-$a->strings["[no subject]"] = "";
+$a->strings["Starts:"] = "";
+$a->strings["Finishes:"] = "";
+$a->strings["j F, Y"] = "";
+$a->strings["j F"] = "";
+$a->strings["Birthday:"] = "";
+$a->strings["Age:"] = "";
+$a->strings["for %1\$d %2\$s"] = "";
+$a->strings["Tags:"] = "";
+$a->strings["Religion:"] = "";
+$a->strings["Hobbies/Interests:"] = "";
+$a->strings["Contact information and Social Networks:"] = "";
+$a->strings["Musical interests:"] = "";
+$a->strings["Books, literature:"] = "";
+$a->strings["Television:"] = "";
+$a->strings["Film/dance/culture/entertainment:"] = "";
+$a->strings["Love/Romance:"] = "";
+$a->strings["Work/employment:"] = "";
+$a->strings["School/education:"] = "";
+$a->strings["Click here to upgrade."] = "";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "";
+$a->strings["This action is not available under your subscription plan."] = "";
 $a->strings["End this session"] = "";
+$a->strings["Your posts and conversations"] = "";
+$a->strings["Your profile page"] = "";
+$a->strings["Your photos"] = "";
+$a->strings["Your videos"] = "";
+$a->strings["Your events"] = "";
+$a->strings["Personal notes"] = "";
+$a->strings["Your personal notes"] = "";
 $a->strings["Sign in"] = "";
 $a->strings["Home Page"] = "";
 $a->strings["Create an account"] = "";
@@ -1491,6 +1555,8 @@ $a->strings["Search site content"] = "";
 $a->strings["Conversations on this site"] = "";
 $a->strings["Directory"] = "";
 $a->strings["People directory"] = "";
+$a->strings["Information"] = "";
+$a->strings["Information about this friendica instance"] = "";
 $a->strings["Conversations from your friends"] = "";
 $a->strings["Network Reset"] = "";
 $a->strings["Load Network page with no filters"] = "";
@@ -1502,119 +1568,45 @@ $a->strings["Inbox"] = "";
 $a->strings["Outbox"] = "";
 $a->strings["Manage"] = "";
 $a->strings["Manage other pages"] = "";
-$a->strings["Delegations"] = "";
+$a->strings["Account settings"] = "";
 $a->strings["Manage/Edit Profiles"] = "";
 $a->strings["Manage/edit friends and contacts"] = "";
 $a->strings["Site setup and configuration"] = "";
 $a->strings["Navigation"] = "";
 $a->strings["Site map"] = "";
-$a->strings["j F, Y"] = "";
-$a->strings["j F"] = "";
-$a->strings["Birthday:"] = "";
-$a->strings["Age:"] = "";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Tags:"] = "";
-$a->strings["Religion:"] = "";
-$a->strings["Hobbies/Interests:"] = "";
-$a->strings["Contact information and Social Networks:"] = "";
-$a->strings["Musical interests:"] = "";
-$a->strings["Books, literature:"] = "";
-$a->strings["Television:"] = "";
-$a->strings["Film/dance/culture/entertainment:"] = "";
-$a->strings["Love/Romance:"] = "";
-$a->strings["Work/employment:"] = "";
-$a->strings["School/education:"] = "";
-$a->strings["Image/photo"] = "";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
-$a->strings["$1 wrote:"] = "";
-$a->strings["Encrypted content"] = "";
-$a->strings["Unknown | Not categorised"] = "";
-$a->strings["Block immediately"] = "";
-$a->strings["Shady, spammer, self-marketer"] = "";
-$a->strings["Known to me, but no opinion"] = "";
-$a->strings["OK, probably harmless"] = "";
-$a->strings["Reputable, has my trust"] = "";
-$a->strings["Weekly"] = "";
-$a->strings["Monthly"] = "";
-$a->strings["OStatus"] = "";
-$a->strings["RSS/Atom"] = "";
-$a->strings["Zot!"] = "";
-$a->strings["LinkedIn"] = "";
-$a->strings["XMPP/IM"] = "";
-$a->strings["MySpace"] = "";
-$a->strings["Google+"] = "";
-$a->strings["pump.io"] = "";
-$a->strings["Twitter"] = "";
-$a->strings["Miscellaneous"] = "";
-$a->strings["year"] = "";
-$a->strings["month"] = "";
-$a->strings["day"] = "";
-$a->strings["never"] = "";
-$a->strings["less than a second ago"] = "";
-$a->strings["years"] = "";
-$a->strings["months"] = "";
-$a->strings["week"] = "";
-$a->strings["weeks"] = "";
-$a->strings["days"] = "";
-$a->strings["hour"] = "";
-$a->strings["hours"] = "";
-$a->strings["minute"] = "";
-$a->strings["minutes"] = "";
-$a->strings["second"] = "";
-$a->strings["seconds"] = "";
-$a->strings["%1\$d %2\$s ago"] = "";
-$a->strings["%s's birthday"] = "";
-$a->strings["Happy Birthday %s"] = "";
-$a->strings["General Features"] = "";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$a->strings["Post Composition Features"] = "";
-$a->strings["Richtext Editor"] = "";
-$a->strings["Enable richtext editor"] = "";
-$a->strings["Post Preview"] = "";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Network Sidebar Widgets"] = "";
-$a->strings["Search by Date"] = "";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["Group Filter"] = "";
-$a->strings["Enable widget to display Network posts only from selected group"] = "";
-$a->strings["Network Filter"] = "";
-$a->strings["Enable widget to display Network posts only from selected network"] = "";
-$a->strings["Save search terms for re-use"] = "";
-$a->strings["Network Tabs"] = "";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
-$a->strings["Network New Tab"] = "";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "";
-$a->strings["Multiple Deletion"] = "";
-$a->strings["Select and delete multiple posts/comments at once"] = "";
-$a->strings["Edit Sent Posts"] = "";
-$a->strings["Edit and correct posts and comments after sending"] = "";
-$a->strings["Tagging"] = "";
-$a->strings["Ability to tag existing posts"] = "";
-$a->strings["Post Categories"] = "";
-$a->strings["Add categories to your posts"] = "";
-$a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
-$a->strings["Star Posts"] = "";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["User not found."] = "";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
+$a->strings["There is no status with this id."] = "";
+$a->strings["There is no conversation with this id."] = "";
+$a->strings["Invalid request."] = "";
+$a->strings["Invalid item."] = "";
+$a->strings["Invalid action. "] = "";
+$a->strings["DB error"] = "";
+$a->strings["An invitation is required."] = "";
+$a->strings["Invitation could not be verified."] = "";
+$a->strings["Invalid OpenID url"] = "";
+$a->strings["Please enter the required information."] = "";
+$a->strings["Please use a shorter name."] = "";
+$a->strings["Name too short."] = "";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "";
+$a->strings["Your email domain is not among those allowed on this site."] = "";
+$a->strings["Not a valid email address."] = "";
+$a->strings["Cannot use that email."] = "";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "";
+$a->strings["Nickname is already registered. Please choose another."] = "";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "";
+$a->strings["An error occurred during registration. Please try again."] = "";
+$a->strings["An error occurred creating your default profile. Please try again."] = "";
+$a->strings["Friends"] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
 $a->strings["Sharing notification from Diaspora network"] = "";
 $a->strings["Attachments:"] = "";
-$a->strings["Visible to everybody"] = "";
-$a->strings["A new person is sharing with you at "] = "";
-$a->strings["You have a new follower at "] = "";
 $a->strings["Do you really want to delete this item?"] = "";
 $a->strings["Archives"] = "";
-$a->strings["Embedded content"] = "";
-$a->strings["Embedding disabled"] = "";
-$a->strings["Welcome "] = "";
-$a->strings["Please upload a profile photo."] = "";
-$a->strings["Welcome back "] = "";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
 $a->strings["Male"] = "";
 $a->strings["Female"] = "";
 $a->strings["Currently Male"] = "";
@@ -1672,6 +1664,113 @@ $a->strings["Uncertain"] = "";
 $a->strings["It's complicated"] = "";
 $a->strings["Don't care"] = "";
 $a->strings["Ask me"] = "";
-$a->strings["stopped following"] = "";
-$a->strings["Drop Contact"] = "";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
+$a->strings["Friendica Notification"] = "";
+$a->strings["Thank You,"] = "";
+$a->strings["%s Administrator"] = "";
+$a->strings["%s <!item_type!>"] = "";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
+$a->strings["%1\$s sent you %2\$s."] = "";
+$a->strings["a private message"] = "";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+$a->strings["%s commented on an item/conversation you have been following."] = "";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
+$a->strings["[Friendica:Notify] %s tagged you"] = "";
+$a->strings["%1\$s tagged you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
+$a->strings["%1\$s poked you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "";
+$a->strings["%1\$s tagged your post at %2\$s"] = "";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
+$a->strings["[Friendica:Notify] Introduction received"] = "";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
+$a->strings["You may visit their profile at %s"] = "";
+$a->strings["Please visit %s to approve or reject the introduction."] = "";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "";
+$a->strings["[Friendica:Notify] You have a new follower"] = "";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["Name:"] = "";
+$a->strings["Photo:"] = "";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "";
+$a->strings["[Friendica:Notify] Connection accepted"] = "";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
+$a->strings["[Friendica System:Notify] registration request"] = "";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
+$a->strings["Please visit %s to approve or reject the request."] = "";
+$a->strings["Embedded content"] = "";
+$a->strings["Embedding disabled"] = "";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["Done. You can now login with your username and password"] = "";
+$a->strings["toggle mobile"] = "";
+$a->strings["Theme settings"] = "";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
+$a->strings["Set font-size for posts and comments"] = "";
+$a->strings["Set theme width"] = "";
+$a->strings["Color scheme"] = "";
+$a->strings["Set line-height for posts and comments"] = "";
+$a->strings["Set colour scheme"] = "";
+$a->strings["Alignment"] = "";
+$a->strings["Left"] = "";
+$a->strings["Center"] = "";
+$a->strings["Posts font size"] = "";
+$a->strings["Textareas font size"] = "";
+$a->strings["Set resolution for middle column"] = "";
+$a->strings["Set color scheme"] = "";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Set longitude (X) for Earth Layers"] = "";
+$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Community Pages"] = "";
+$a->strings["Earth Layers"] = "";
+$a->strings["Community Profiles"] = "";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "";
+$a->strings["Find Friends"] = "";
+$a->strings["Last users"] = "";
+$a->strings["Last photos"] = "";
+$a->strings["Last likes"] = "";
+$a->strings["Your contacts"] = "";
+$a->strings["Your personal photos"] = "";
+$a->strings["Local Directory"] = "";
+$a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Set style"] = "";
+$a->strings["greenzero"] = "";
+$a->strings["purplezero"] = "";
+$a->strings["easterbunny"] = "";
+$a->strings["darkzero"] = "";
+$a->strings["comix"] = "";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "";
index 249af61464b9434956e3777fd27c55427a4166da..ef96bb95c5ff047f808ebde35e2e9358dbd37b93 100644 (file)
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
+# Abrax <webmaster@a-zwenkau.de>, 2015
 # bavatar <tobias.diekershoff@gmx.net>, 2011
 # Erkan Yilmaz <erkan77@gmail.com>, 2011
 # Fabian Dost <friends@dostmusik.de>, 2012
@@ -11,6 +12,7 @@
 # greeneyedred <greeneyedred@googlemail.com>, 2012
 # Hauke Zühl <hzuehl@phone-talk.de>, 2012
 # Hauke Zühl <hzuehl@phone-talk.de>, 2011-2012
+# Johannes Schwab <johannes_schwab@gmx.de>, 2015
 # leberwurscht <leberwurscht@hoegners.de>, 2012
 # marmor <marmor69@web.de>, 2012
 # Martin Schmitt <mas@scsy.de>, 2012
@@ -26,9 +28,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-07 14:32+0200\n"
-"PO-Revision-Date: 2014-09-28 10:34+0000\n"
-"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
+"POT-Creation-Date: 2015-01-22 17:30+0100\n"
+"PO-Revision-Date: 2015-01-23 14:42+0000\n"
+"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -36,3399 +38,3575 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:678 ../../mod/contacts.php:470
-#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107
-#: ../../mod/photos.php:1084 ../../mod/photos.php:1205
-#: ../../mod/photos.php:1512 ../../mod/photos.php:1563
-#: ../../mod/photos.php:1607 ../../mod/photos.php:1695
-#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137
-#: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/profiles.php:645 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/crepair.php:179
-#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
-msgid "Submit"
-msgstr "Senden"
+#: ../../mod/contacts.php:107
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
+#: ../../mod/contacts.php:152
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:151
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
+#: ../../mod/contacts.php:185
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
+#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Farbschema"
+#: ../../mod/contacts.php:253 ../../mod/manage.php:96
+#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
+#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
+#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
+#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/crepair.php:119
+#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
+#: ../../mod/events.php:140 ../../mod/install.php:151
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
+#: ../../mod/settings.php:596 ../../mod/settings.php:601
+#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
+#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
+#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
+#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: ../../view/theme/vier/config.php:55
-msgid "Set style"
-msgstr "Stil auswählen"
+#: ../../mod/contacts.php:286
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328
-msgid "don't show"
-msgstr "nicht zeigen"
+#: ../../mod/contacts.php:286
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327
-msgid "show"
-msgstr "zeigen"
+#: ../../mod/contacts.php:297
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: ../../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:297
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
+#: ../../mod/contacts.php:309
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
+#: ../../mod/contacts.php:309
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest du wirklich diesen Kontakt löschen?"
 
-#: ../../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:336 ../../mod/message.php:209
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:233 ../../mod/suggest.php:29
+#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
+#: ../../include/items.php:4528
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../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:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
+#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../include/conversation.php:1129 ../../include/items.php:4531
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: ../../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:351
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../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:389
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: ../../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:393
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: ../../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:398
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: ../../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:415
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Freunde finden"
+#: ../../mod/contacts.php:418 ../../mod/admin.php:546
+msgid "Never"
+msgstr "Niemals"
 
-#: ../../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:422
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: ../../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:422
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: ../../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:424
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
-#: ../../include/nav.php:146 ../../mod/notifications.php:93
-msgid "Home"
-msgstr "Pinnwand"
+#: ../../mod/contacts.php:428
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:146
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../mod/profperm.php:103
-#: ../../mod/newmember.php:32
-msgid "Profile"
-msgstr "Profil"
+#: ../../mod/contacts.php:436
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:981
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175
-#: ../../mod/contacts.php:694
-msgid "Contacts"
-msgstr "Kontakte"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:980
+msgid "Block"
+msgstr "Sperren"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Deine Kontakte"
+#: ../../mod/contacts.php:444
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Bilder"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094
-#: ../../include/nav.php:80 ../../mod/events.php:370
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../mod/contacts.php:450
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
+#: ../../mod/contacts.php:457
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
-#: ../../mod/community.php:32
-msgid "Community"
-msgstr "Gemeinschaft"
+#: ../../mod/contacts.php:460
+msgid "Repair"
+msgstr "Reparieren"
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1964
-msgid "event"
-msgstr "Veranstaltung"
+#: ../../mod/contacts.php:463
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62
-msgid "status"
-msgstr "Status"
+#: ../../mod/contacts.php:469
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1966 ../../mod/like.php:149
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62
-msgid "photo"
-msgstr "Foto"
+#: ../../mod/contacts.php:472
+msgid "Contact Editor"
+msgstr "Kontakt Editor"
 
-#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935
-#: ../../include/conversation.php:137 ../../mod/like.php:166
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+#: ../../mod/contacts.php:474 ../../mod/manage.php:110
+#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
+#: ../../mod/message.php:564 ../../mod/crepair.php:186
+#: ../../mod/events.php:478 ../../mod/content.php:710
+#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
+#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
+#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../object/Item.php:678
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/duepuntozero/config.php:59
+msgid "Submit"
+msgstr "Senden"
 
-#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
-#: ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1189 ../../mod/photos.php:1212
-#: ../../mod/photos.php:1758 ../../mod/photos.php:1770
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: ../../mod/contacts.php:475
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189
-#: ../../mod/photos.php:1212 ../../mod/profile_photo.php:74
-#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
-#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
-#: ../../mod/profile_photo.php:305
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../mod/contacts.php:476
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: ../../mod/contacts.php:477
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: ../../mod/contacts.php:478
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
+#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
-#: ../../mod/suggest.php:66
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/contacts.php:484
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: ../../mod/contacts.php:485
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170
-#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286
-#: ../../mod/newmember.php:22
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../mod/contacts.php:486
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../mod/contacts.php:487
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../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:489
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: ../../mod/contacts.php:493
+msgid "Last update:"
+msgstr "letzte Aktualisierung:"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../mod/contacts.php:495
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
+#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: ../../mod/contacts.php:504
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: ../../mod/contacts.php:505
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
+#: ../../mod/contacts.php:506
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: ../../index.php:203 ../../mod/apps.php:7
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Verberge diesen Kontakt vor anderen"
 
-#: ../../index.php:247 ../../mod/help.php:90
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../mod/contacts.php:507
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: ../../index.php:250 ../../mod/help.php:93
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/contacts.php:508
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: ../../mod/contacts.php:508
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/group.php:19 ../../mod/delegate.php:6
-#: ../../mod/notifications.php:66 ../../mod/settings.php:102
-#: ../../mod/settings.php:593 ../../mod/settings.php:598
-#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55
-#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10
-#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66
-#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140
-#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/profiles.php:148 ../../mod/profiles.php:577
-#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135
-#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55
-#: ../../mod/item.php:148 ../../mod/item.php:164
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/allfriends.php:9
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: ../../mod/contacts.php:509
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: ../../index.php:419
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+#: ../../mod/contacts.php:510
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: ../../boot.php:719
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: ../../mod/contacts.php:510
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
-#: ../../mod/photos.php:1694 ../../mod/content.php:709
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../mod/contacts.php:510
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: ../../boot.php:721 ../../include/contact_widgets.php:205
-#: ../../object/Item.php:390 ../../mod/content.php:606
-msgid "show more"
-msgstr "mehr anzeigen"
+#: ../../mod/contacts.php:512
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: ../../boot.php:722
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: ../../mod/contacts.php:512
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: ../../boot.php:1042 ../../boot.php:1073
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: ../../mod/contacts.php:563
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../boot.php:1194
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: ../../mod/contacts.php:566
+msgid "Suggest potential friends"
+msgstr "Freunde vorschlagen"
 
-#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266
-msgid "Register"
-msgstr "Registrieren"
+#: ../../mod/contacts.php:569 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: ../../boot.php:1219 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../mod/contacts.php:572
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../boot.php:1220 ../../include/nav.php:92
-msgid "Login"
-msgstr "Anmeldung"
+#: ../../mod/contacts.php:575
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: ../../boot.php:1222
-msgid "Nickname or Email address: "
-msgstr "Spitzname oder E-Mail-Adresse: "
+#: ../../mod/contacts.php:578
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: ../../boot.php:1223
-msgid "Password: "
-msgstr "Passwort: "
+#: ../../mod/contacts.php:582
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: ../../boot.php:1224
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: ../../mod/contacts.php:585
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: ../../boot.php:1227
-msgid "Or login using OpenID: "
-msgstr "Oder melde dich mit deiner OpenID an: "
+#: ../../mod/contacts.php:589
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: ../../boot.php:1233
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: ../../mod/contacts.php:592
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: ../../boot.php:1234 ../../mod/lostpass.php:109
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: ../../mod/contacts.php:596
+msgid "Archived"
+msgstr "Archiviert"
 
-#: ../../boot.php:1236
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: ../../mod/contacts.php:599
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: ../../boot.php:1237
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: ../../mod/contacts.php:603
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: ../../boot.php:1239
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: ../../mod/contacts.php:606
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: ../../boot.php:1240
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
+#: ../../mod/contacts.php:654
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: ../../boot.php:1373
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../mod/contacts.php:658
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: ../../boot.php:1412 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../mod/contacts.php:662
+msgid "you are a fan of"
+msgstr "du bist Fan von"
 
-#: ../../boot.php:1455 ../../boot.php:1589
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../boot.php:1522 ../../include/contact_widgets.php:10
-#: ../../mod/suggest.php:88 ../../mod/match.php:58
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/contacts.php:701 ../../include/nav.php:175
+#: ../../view/theme/diabook/theme.php:125
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: ../../boot.php:1554
-msgid "Message"
-msgstr "Nachricht"
+#: ../../mod/contacts.php:705
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: ../../boot.php:1560 ../../include/nav.php:173
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/contacts.php:706 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Funde: "
 
-#: ../../boot.php:1560
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: ../../mod/contacts.php:707 ../../mod/directory.php:63
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Finde"
 
-#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: ../../mod/contacts.php:712 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: ../../boot.php:1566 ../../mod/profiles.php:764
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
+#: ../../mod/content.php:438 ../../mod/content.php:741
+#: ../../mod/settings.php:677 ../../mod/photos.php:1654
+#: ../../object/Item.php:130 ../../include/conversation.php:614
+msgid "Delete"
+msgstr "Löschen"
 
-#: ../../boot.php:1576 ../../mod/profiles.php:775
-msgid "Profile Image"
-msgstr "Profilbild"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: ../../boot.php:1579 ../../mod/profiles.php:777
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: ../../boot.php:1580 ../../mod/profiles.php:778
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
 
-#: ../../boot.php:1602 ../../include/event.php:40
-#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471
-#: ../../mod/directory.php:136
-msgid "Location:"
-msgstr "Ort:"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: ../../boot.php:1604 ../../include/profile_advanced.php:17
-#: ../../mod/directory.php:138
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: ../../boot.php:1607 ../../include/profile_advanced.php:37
-#: ../../mod/directory.php:140
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: ../../boot.php:1609 ../../include/profile_advanced.php:48
-#: ../../mod/directory.php:142
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: ../../boot.php:1657
-msgid "Network:"
-msgstr "Netzwerk"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: ../../boot.php:1687 ../../boot.php:1773
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../boot.php:1688 ../../boot.php:1774
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: ../../boot.php:1733 ../../boot.php:1814
-msgid "[today]"
-msgstr "[heute]"
-
-#: ../../boot.php:1745
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
-
-#: ../../boot.php:1746
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../boot.php:1807
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: ../../boot.php:1825
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: ../../mod/display.php:70 ../../mod/display.php:260
+#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
+#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
+#: ../../include/items.php:4487
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: ../../boot.php:1826
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: ../../mod/display.php:200 ../../mod/videos.php:115
+#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
+#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
+#: ../../mod/directory.php:33 ../../mod/photos.php:920
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: ../../boot.php:2063 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/display.php:308 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: ../../boot.php:2066
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../mod/display.php:472
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: ../../boot.php:2073
-msgid "Profile Details"
-msgstr "Profildetails"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: ../../boot.php:2080 ../../mod/photos.php:52
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Videos"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: ../../boot.php:2097
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: ../../boot.php:2101 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: ../../boot.php:2104
-msgid "Only You Can See This"
-msgstr "Nur du kannst das sehen"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
+#: ../../mod/admin.php:1297 ../../mod/settings.php:85
+#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Web-Editor"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+#: ../../mod/profiles.php:665
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: ../../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/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: ../../include/features.php:33
+#: ../../mod/newmember.php:40
 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."
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Archiv"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: ../../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."
 
-#: ../../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/newmember.php:56
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
 
-#: ../../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/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: ../../include/features.php:42 ../../mod/network.php:188
-#: ../../mod/search.php:30
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: ../../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/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Gruppen"
 
-#: ../../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/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: ../../include/features.php: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/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: ../../include/features.php: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/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Tagging"
+#: ../../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."
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
+#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
+#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../view/theme/diabook/theme.php:500
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: ../../include/features.php:60 ../../include/contact_widgets.php:104
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Bildgröße überschreitet das Limit von %d"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
+#: ../../mod/photos.php:807
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Hochladen"
 
-#: ../../include/items.php:2090 ../../include/datetime.php:472
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
+msgid "or"
+msgstr "oder"
 
-#: ../../include/items.php:2091 ../../include/datetime.php:473
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721
-#: ../../mod/dfrn_confirm.php:752
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: ../../include/items.php:4354 ../../mod/admin.php:166
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15
-#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240
-#: ../../mod/display.php:459
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: ../../include/items.php:4393
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest du wirklich dieses Item löschen?"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: ../../include/items.php:4395 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1013 ../../mod/settings.php:1021
-#: ../../mod/settings.php:1025 ../../mod/settings.php:1030
-#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
-#: ../../mod/settings.php:1048 ../../mod/settings.php:1078
-#: ../../mod/settings.php:1079 ../../mod/settings.php:1080
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/contacts.php:332 ../../mod/register.php:230
-#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-#: ../../mod/profiles.php:620 ../../mod/profiles.php:623
-msgid "Yes"
-msgstr "Ja"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: ../../include/items.php:4398 ../../include/conversation.php:1129
-#: ../../mod/settings.php:612 ../../mod/settings.php:638
-#: ../../mod/contacts.php:335 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32
-#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/message.php:212
-msgid "Cancel"
-msgstr "Abbrechen"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: ../../include/items.php:4616
-msgid "Archives"
-msgstr "Archiv"
+#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
+#: ../../mod/photos.php:834
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1965 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:471
+msgid "photo"
+msgstr "Foto"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../mod/like.php:319 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475
+msgid "status"
+msgstr "Status"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "bearbeiten"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: ../../include/group.php:270 ../../mod/newmember.php:66
-msgid "Groups"
-msgstr "Gruppen"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
+msgstr "Entfernen"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: ../../include/group.php:275 ../../mod/network.php:189
-msgid "add"
-msgstr "hinzufügen"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
+
+#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
+#: ../../include/text.php:955
+msgid "Save"
+msgstr "Speichern"
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
+
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
+
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926
-#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955
-#: ../../include/Photo.php:911 ../../include/Photo.php:926
-#: ../../include/Photo.php:933 ../../include/Photo.php:955
-#: ../../include/message.php:144 ../../mod/wall_upload.php:169
+#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../mod/item.php:463
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Pinnwand-Bilder"
 
-#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: ../../mod/item.php:964
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: ../../mod/item.php:967
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
 
-#: ../../include/contact_widgets.php:24
+#: ../../mod/item.php:971
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Leute finden"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700
-#: ../../mod/directory.php:63
-msgid "Find"
-msgstr "Finde"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Netzwerke"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Alles"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Kategorien"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: ../../mod/apps.php:7 ../../index.php:212
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Danke,"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: ../../include/enotify.php:30 ../../include/delivery.php:467
-#: ../../include/notifier.php:784
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
+#: ../../mod/profiles.php:596
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: ../../include/enotify.php:55
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
+#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
 
-#: ../../include/enotify.php:59
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: ../../include/enotify.php:61
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: ../../include/enotify.php:62
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte dir %2$s."
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: ../../include/enotify.php:62
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: ../../include/enotify.php:63
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: ../../include/enotify.php:122
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: ../../include/enotify.php:140
+#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
+#: ../../include/diaspora.php:620
 #, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: ../../include/enotify.php:141
+#: ../../mod/dfrn_confirm.php:571
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: ../../include/enotify.php:144 ../../include/enotify.php:159
-#: ../../include/enotify.php:172 ../../include/enotify.php:185
-#: ../../include/enotify.php:203 ../../include/enotify.php:216
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: ../../include/enotify.php:151
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: ../../include/enotify.php:153
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: ../../include/enotify.php:155
+#: ../../mod/dfrn_confirm.php:627
 #, 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"
+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."
 
-#: ../../include/enotify.php:166
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat dich erwähnt"
+#: ../../mod/dfrn_confirm.php:647
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: ../../include/enotify.php:167
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte dich auf %2$s"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: ../../include/enotify.php:168
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
 
-#: ../../include/enotify.php:179
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
+#: ../../include/items.php:3979
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: ../../include/enotify.php:180
+#: ../../mod/dfrn_confirm.php:797
 #, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: ../../include/enotify.php:181
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: ../../mod/profile.php:21 ../../boot.php:1453
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../include/enotify.php:193
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: ../../include/enotify.php:194
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat dich auf %2$s angestupst"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: ../../include/enotify.php:195
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
+#: ../../mod/videos.php:301 ../../include/text.php:1402
+msgid "View Video"
+msgstr "Video ansehen"
 
-#: ../../include/enotify.php:211
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: ../../include/enotify.php:212
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: ../../include/enotify.php:223
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: ../../include/enotify.php:224
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
 
-#: ../../include/enotify.php:225
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: ../../include/enotify.php:228 ../../include/enotify.php:270
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst du das Profil betrachten: %s"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../include/enotify.php:230
+#: ../../mod/fsuggest.php:99
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
-
-#: ../../include/enotify.php:238
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit dir"
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../include/enotify.php:239 ../../include/enotify.php:240
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit dir auf %2$s"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../include/enotify.php:246
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
 
-#: ../../include/enotify.php:247 ../../include/enotify.php:248
+#: ../../mod/lostpass.php:42
 #, 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/enotify.php:261
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+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 gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast."
 
-#: ../../include/enotify.php:262
+#: ../../mod/lostpass.php:53
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
+msgid ""
+"\n"
+"\t\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 Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
 
-#: ../../include/enotify.php:263
+#: ../../mod/lostpass.php:72
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: ../../include/enotify.php:268
-msgid "Name:"
-msgstr "Name:"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: ../../include/enotify.php:269
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../mod/lostpass.php:109 ../../boot.php:1275
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: ../../include/enotify.php:272
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: ../../include/enotify.php:280 ../../include/enotify.php:293
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../include/enotify.php:281 ../../include/enotify.php:294
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' hat deine Kontaktanfrage auf  %2$s bestätigt"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere dein neues Passwort - und dann"
 
-#: ../../include/enotify.php:282 ../../include/enotify.php:295
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hat deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "hier klicken, um dich anzumelden"
 
-#: ../../include/enotify.php:285
+#: ../../mod/lostpass.php:114
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:302
+#: ../../mod/lostpass.php:125
 #, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."
+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 zu etwas, das du dir leicht merken kannst)."
 
-#: ../../include/enotify.php:298
+#: ../../mod/lostpass.php:131
 #, php-format
 msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%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."
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden."
 
-#: ../../include/enotify.php:300
+#: ../../mod/lostpass.php:147
 #, 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. "
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde dein Passwort geändert"
 
-#: ../../include/enotify.php:313
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Hast du dein Passwort vergessen?"
 
-#: ../../include/enotify.php:314
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
 
-#: ../../include/enotify.php:315
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: ../../include/enotify.php:318
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: ../../include/enotify.php:321
+#: ../../mod/like.php:166 ../../include/conversation.php:137
+#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
-
-#: ../../include/api.php:262 ../../include/api.php:273
-#: ../../include/api.php:374 ../../include/api.php:958
-#: ../../include/api.php:960
-msgid "User not found."
-msgstr "Nutzer nicht gefunden."
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: ../../include/api.php:1167
-msgid "There is no status with this id."
-msgstr "Es gibt keinen Status mit dieser ID."
+#: ../../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"
 
-#: ../../include/api.php:1237
-msgid "There is no conversation with this id."
-msgstr "Es existiert keine Unterhaltung mit dieser ID."
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit dir in Kontakt treten"
 
-#: ../../include/network.php:892
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} schickte dir eine Nachricht"
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
-msgstr " bei Last.fm"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} kommentierte einen Beitrag von %s"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} mag %ss Beitrag"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} mag %ss Beitrag nicht"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ist jetzt mit %s befreundet"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alter:"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} hat etwas veröffentlicht"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/ping.php:281
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} hat dich in einem Beitrag erwähnt"
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tags"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144
-msgid "About:"
-msgstr "Über:"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
+msgstr "Netzwerk"
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680
-msgid "Likes:"
-msgstr "Likes:"
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: ../../mod/notifications.php:93 ../../include/nav.php:105
+#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
+msgid "Home"
+msgstr "Pinnwand"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Fernsehen:"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:977
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Behauptet dich zu kennen: "
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Deine Videos"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nein"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Genehmigen als: "
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Anmelden"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Freund"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: ../../include/nav.php:114 ../../mod/help.php:84
-msgid "Help"
-msgstr "Hilfe"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Apps"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../include/nav.php:119 ../../include/text.php:952
-#: ../../include/text.php:953 ../../mod/search.php:99
-msgid "Search"
-msgstr "Suche"
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: ../../include/nav.php:131
-msgid "Directory"
-msgstr "Verzeichnis"
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: ../../include/nav.php:131
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: ../../include/nav.php:133
-msgid "Information"
-msgstr "Information"
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
+msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
 
-#: ../../include/nav.php:133
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: ../../include/nav.php:143 ../../mod/notifications.php:83
-msgid "Network"
-msgstr "Netzwerk"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: ../../include/nav.php:143
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen deiner Kontakte"
+#: ../../mod/notifications.php:340 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: ../../include/nav.php:144
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
+msgstr "Keine weiteren persönlichen Benachrichtigungen"
 
-#: ../../include/nav.php:144
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: ../../include/nav.php:152 ../../mod/notifications.php:98
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
+msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
 
-#: ../../include/nav.php:152
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: ../../include/nav.php:153 ../../mod/notifications.php:220
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: ../../include/nav.php:154
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: ../../include/nav.php:155
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: ../../include/nav.php:159 ../../mod/notifications.php:103
-#: ../../mod/message.php:182
-msgid "Messages"
-msgstr "Nachrichten"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: ../../include/nav.php:159
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../include/nav.php:160
-msgid "Inbox"
-msgstr "Eingang"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/nav.php:161
-msgid "Outbox"
-msgstr "Ausgang"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/nav.php:162 ../../mod/message.php:9
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/nav.php:165
-msgid "Manage"
-msgstr "Verwalten"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/nav.php:165
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/nav.php:168 ../../mod/settings.php:62
-msgid "Delegations"
-msgstr "Delegationen"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: ../../include/nav.php:168 ../../mod/delegate.php:124
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/nav.php:170
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: ../../include/nav.php:173
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: ../../include/nav.php:175
-msgid "Manage/edit friends and contacts"
-msgstr "Freunde und Kontakte verwalten/editieren"
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: ../../include/nav.php:182 ../../mod/admin.php:128
-msgid "Admin"
-msgstr "Administration"
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: ../../include/nav.php:182
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: ../../include/nav.php:186
-msgid "Navigation"
-msgstr "Navigation"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: ../../include/nav.php:186
-msgid "Site map"
-msgstr "Sitemap"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest du wirklich diese Nachricht löschen?"
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: ../../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."
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "An:"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
+#: ../../mod/photos.php:1545 ../../object/Item.php:364
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "folgen"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s und du"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#: ../../mod/message.php:411
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: ../../include/event.php:11 ../../include/bb2diaspora.php:134
-#: ../../mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
+#: ../../mod/update_network.php:25
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:140
-msgid "Starts:"
-msgstr "Beginnt:"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:148
-msgid "Finishes:"
-msgstr "Endet:"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Kontakteinstellungen reparieren"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
+#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
+#: ../../mod/settings.php:642
+msgid "Name"
+msgstr "Name"
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: ../../include/dbstructure.php:23
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\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/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: ../../include/dbstructure.php:28
-#, php-format
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "Konto-URL"
+
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL für Freundschaftsanfragen"
+
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
+
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
+
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
+
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Entfernte Konten"
+
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
+
+#: ../../mod/crepair.php:176
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."
 
-#: ../../include/dbstructure.php:181
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: ../../include/dbstructure.php:239
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personensuche"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "Jahr"
+#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
+#: ../../view/theme/diabook/theme.php:126
+msgid "Photos"
+msgstr "Bilder"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "Monat"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "Tag"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nie"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: ../../mod/admin.php:104 ../../mod/admin.php:596
+msgid "Site"
+msgstr "Seite"
 
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "Jahre"
+#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
+msgid "Users"
+msgstr "Nutzer"
 
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "Monate"
+#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "Woche"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+msgid "Themes"
+msgstr "Themen"
 
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "Wochen"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "Tage"
+#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "Stunde"
+#: ../../mod/admin.php:128 ../../include/nav.php:182
+msgid "Admin"
+msgstr "Administration"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "Stunden"
+#: ../../mod/admin.php:129
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "Minute"
+#: ../../mod/admin.php:131
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "Minuten"
+#: ../../mod/admin.php:190 ../../mod/admin.php:924
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "Sekunde"
+#: ../../mod/admin.php:191 ../../mod/admin.php:925
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "Sekunden"
+#: ../../mod/admin.php:192 ../../mod/admin.php:926
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: ../../mod/admin.php:193 ../../mod/admin.php:927
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: ../../mod/admin.php:194
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: ../../include/delivery.php:456 ../../include/notifier.php:774
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: ../../mod/admin.php:195
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: ../../mod/admin.php:214
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
+#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
+#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: ../../mod/admin.php:220
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: ../../mod/admin.php:222
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: ../../mod/admin.php:224
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: ../../mod/admin.php:225
+msgid "Version"
+msgstr "Version"
+
+#: ../../mod/admin.php:229
+msgid "Active plugins"
+msgstr "Aktive Plugins"
+
+#: ../../mod/admin.php:252
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
+
+#: ../../mod/admin.php:500
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
+
+#: ../../mod/admin.php:529 ../../mod/settings.php:828
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+
+#: ../../mod/admin.php:547
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542
+#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "immer wieder"
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543
+#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Stündlich"
 
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544
+#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Zweimal täglich"
 
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545
+#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Täglich"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
-
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: ../../mod/admin.php:556
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/admin.php:579
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/admin.php:580
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/admin.php:581
+msgid "Open"
+msgstr "Offen"
 
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964
-#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992
-msgid "Email"
-msgstr "E-Mail"
+#: ../../mod/admin.php:585
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733
-#: ../../mod/dfrn_request.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/admin.php:586
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
-#: ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:587
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
+#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/settings.php:724 ../../mod/settings.php:798
+#: ../../mod/settings.php:880 ../../mod/settings.php:1113
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/admin.php:598 ../../mod/register.php:255
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: ../../mod/admin.php:599
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/admin.php:600
+msgid "Policies"
+msgstr "Regeln"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/admin.php:601
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/admin.php:602
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/admin.php:603
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: ../../mod/admin.php:606
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "StatusNet"
+#: ../../mod/admin.php:607
+msgid "Host name"
+msgstr "Host Name"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../mod/admin.php:608
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../include/diaspora.php:620 ../../include/conversation.php:172
-#: ../../mod/dfrn_confirm.php:486
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: ../../mod/admin.php:609
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: ../../mod/admin.php:609
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden."
 
-#: ../../include/diaspora.php:2312
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: ../../mod/admin.php:610
+msgid "System language"
+msgstr "Systemsprache"
 
-#: ../../include/conversation.php:140 ../../mod/like.php:168
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+#: ../../mod/admin.php:611
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../mod/admin.php:611
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1004
-msgid "poked"
-msgstr "stupste"
+#: ../../mod/admin.php:612
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: ../../include/conversation.php:227 ../../mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: ../../mod/admin.php:612
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: ../../include/conversation.php:266 ../../mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+#: ../../mod/admin.php:613
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: ../../mod/admin.php:613
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+#: ../../mod/admin.php:614
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: ../../include/conversation.php:613 ../../object/Item.php:129
-#: ../../mod/photos.php:1651 ../../mod/content.php:437
-#: ../../mod/content.php:740
-msgid "Select"
-msgstr "Auswählen"
+#: ../../mod/admin.php:614
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: ../../include/conversation.php:614 ../../object/Item.php:130
-#: ../../mod/group.php:171 ../../mod/settings.php:674
-#: ../../mod/contacts.php:709 ../../mod/admin.php:968
-#: ../../mod/photos.php:1652 ../../mod/content.php:438
-#: ../../mod/content.php:741
-msgid "Delete"
-msgstr "Löschen"
+#: ../../mod/admin.php:615
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
 
-#: ../../include/conversation.php:654 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../mod/content.php:471
-#: ../../mod/content.php:852 ../../mod/content.php:853
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: ../../mod/admin.php:615
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: ../../include/conversation.php:666 ../../object/Item.php:316
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../mod/admin.php:616
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: ../../include/conversation.php:667 ../../object/Item.php:317
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: ../../mod/admin.php:616
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: ../../include/conversation.php:674 ../../object/Item.php:340
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: ../../mod/admin.php:617
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: ../../include/conversation.php:690 ../../mod/content.php:497
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: ../../mod/admin.php:617
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
-#: ../../mod/editpost.php:124 ../../mod/photos.php:1543
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../mod/admin.php:618
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "löschen"
+#: ../../mod/admin.php:618
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: ../../mod/admin.php:619
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: ../../mod/admin.php:619
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: ../../mod/admin.php:620
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: ../../mod/admin.php:620
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: ../../mod/admin.php:622
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+#: ../../mod/admin.php:623
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "und"
+#: ../../mod/admin.php:623
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag.   Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
-
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: ../../mod/admin.php:624
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen das nicht."
+#: ../../mod/admin.php:624
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: ../../mod/admin.php:625
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: ../../mod/admin.php:625
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: ../../mod/admin.php:626
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: ../../mod/admin.php:626
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../mod/admin.php:627
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
-#: ../../mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: ../../mod/admin.php:627
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Wo hältst du dich jetzt gerade auf?"
+#: ../../mod/admin.php:628
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: ../../mod/admin.php:628
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: ../../mod/admin.php:629
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+#: ../../mod/admin.php:629
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: ../../include/conversation.php:1057 ../../mod/settings.php:1025
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: ../../mod/admin.php:630
+msgid "Global directory update URL"
+msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: ../../include/conversation.php:1090 ../../mod/photos.php:1542
-msgid "Share"
-msgstr "Teilen"
+#: ../../mod/admin.php:630
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
 
-#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154
-#: ../../mod/editpost.php:110 ../../mod/message.php:332
-#: ../../mod/message.php:562
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: ../../mod/admin.php:631
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: ../../include/conversation.php:1092 ../../mod/editpost.php:111
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: ../../mod/admin.php:631
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: ../../include/conversation.php:1093 ../../mod/editpost.php:112
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: ../../mod/admin.php:632
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: ../../include/conversation.php:1094 ../../mod/editpost.php:113
-msgid "attach file"
-msgstr "Datei anhängen"
+#: ../../mod/admin.php:632
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155
-#: ../../mod/editpost.php:114 ../../mod/message.php:333
-#: ../../mod/message.php:563
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: ../../mod/admin.php:633
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: ../../include/conversation.php:1096 ../../mod/editpost.php:115
-msgid "web link"
-msgstr "Weblink"
+#: ../../mod/admin.php:633
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: ../../include/conversation.php:1097 ../../mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: ../../mod/admin.php:634
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: ../../include/conversation.php:1098 ../../mod/editpost.php:117
-msgid "video link"
-msgstr "Video-Link"
+#: ../../mod/admin.php:634
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: ../../include/conversation.php:1099 ../../mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: ../../mod/admin.php:635
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: ../../include/conversation.php:1100 ../../mod/editpost.php:119
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../mod/admin.php:635
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:120
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: ../../mod/admin.php:636
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: ../../include/conversation.php:1102 ../../mod/editpost.php:121
-msgid "set location"
-msgstr "Ort setzen"
+#: ../../mod/admin.php:636
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
 
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: ../../mod/admin.php:637
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: ../../include/conversation.php:1104 ../../mod/editpost.php:123
-msgid "clear location"
-msgstr "Ort löschen"
+#: ../../mod/admin.php:637
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: ../../include/conversation.php:1106 ../../mod/editpost.php:137
-msgid "Set title"
-msgstr "Titel setzen"
+#: ../../mod/admin.php:638
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: ../../include/conversation.php:1108 ../../mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: ../../mod/admin.php:638
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: ../../include/conversation.php:1110 ../../mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: ../../mod/admin.php:639
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: ../../mod/admin.php:639
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: ../../mod/admin.php:640
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: ../../include/conversation.php:1120 ../../mod/editpost.php:134
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../mod/admin.php:640
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: ../../include/conversation.php:1122 ../../mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: ../../mod/admin.php:641
+msgid "Show Community Page"
+msgstr "Gemeinschaftsseite anzeigen"
 
-#: ../../include/conversation.php:1126 ../../object/Item.php:687
-#: ../../mod/editpost.php:145 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696
-#: ../../mod/content.php:719
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../mod/admin.php:641
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: ../../mod/admin.php:642
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: ../../mod/admin.php:642
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: ../../mod/admin.php:643
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: ../../include/text.php:296
-msgid "newer"
-msgstr "neuer"
+#: ../../mod/admin.php:643
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
 
-#: ../../include/text.php:298
-msgid "older"
-msgstr "älter"
+#: ../../mod/admin.php:644
+msgid "Enable Diaspora support"
+msgstr "Diaspora-Support aktivieren"
 
-#: ../../include/text.php:303
-msgid "prev"
-msgstr "vorige"
+#: ../../mod/admin.php:644
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: ../../include/text.php:305
-msgid "first"
-msgstr "erste"
+#: ../../mod/admin.php:645
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: ../../include/text.php:337
-msgid "last"
-msgstr "letzte"
+#: ../../mod/admin.php:645
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: ../../include/text.php:340
-msgid "next"
-msgstr "nächste"
+#: ../../mod/admin.php:646
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: ../../include/text.php:854
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: ../../mod/admin.php:646
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: ../../include/text.php:863
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+#: ../../mod/admin.php:647
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: ../../include/text.php:875 ../../mod/viewcontacts.php:76
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: ../../mod/admin.php:648
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../include/text.php:955 ../../mod/editpost.php:109
-#: ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "Speichern"
+#: ../../mod/admin.php:649
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: ../../include/text.php:1004
-msgid "poke"
-msgstr "anstupsen"
+#: ../../mod/admin.php:649
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../include/text.php:1005
-msgid "ping"
-msgstr "anpingen"
+#: ../../mod/admin.php:650
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: ../../include/text.php:1005
-msgid "pinged"
-msgstr "pingte"
+#: ../../mod/admin.php:650
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../include/text.php:1006
-msgid "prod"
-msgstr "knuffen"
+#: ../../mod/admin.php:651
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../include/text.php:1006
-msgid "prodded"
-msgstr "knuffte"
+#: ../../mod/admin.php:651
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: ../../include/text.php:1007
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../mod/admin.php:652
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: ../../include/text.php:1007
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../mod/admin.php:652
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../include/text.php:1008
-msgid "finger"
-msgstr "befummeln"
+#: ../../mod/admin.php:654
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: ../../include/text.php:1008
-msgid "fingered"
-msgstr "befummelte"
+#: ../../mod/admin.php:654
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
 
-#: ../../include/text.php:1009
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../mod/admin.php:655
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
 
-#: ../../include/text.php:1009
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../mod/admin.php:655
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: ../../include/text.php:1023
-msgid "happy"
-msgstr "glücklich"
+#: ../../mod/admin.php:656
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: ../../include/text.php:1024
-msgid "sad"
-msgstr "traurig"
+#: ../../mod/admin.php:657
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: ../../include/text.php:1025
-msgid "mellow"
-msgstr "sanft"
+#: ../../mod/admin.php:657
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
 
-#: ../../include/text.php:1026
-msgid "tired"
-msgstr "müde"
+#: ../../mod/admin.php:658
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: ../../include/text.php:1027
-msgid "perky"
-msgstr "frech"
+#: ../../mod/admin.php:658
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
 
-#: ../../include/text.php:1028
-msgid "angry"
-msgstr "sauer"
+#: ../../mod/admin.php:659
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: ../../include/text.php:1029
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../mod/admin.php:660
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: ../../include/text.php:1030
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../mod/admin.php:661
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: ../../include/text.php:1031
-msgid "interested"
-msgstr "interessiert"
+#: ../../mod/admin.php:662
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: ../../include/text.php:1032
-msgid "bitter"
-msgstr "verbittert"
+#: ../../mod/admin.php:662
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: ../../include/text.php:1033
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../mod/admin.php:664
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: ../../include/text.php:1034
-msgid "alive"
-msgstr "lebendig"
+#: ../../mod/admin.php:666
+msgid "Disable noscrape"
+msgstr "Noscrape deaktivieren"
 
-#: ../../include/text.php:1035
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../mod/admin.php:666
+msgid ""
+"The noscrape feature speeds up directory submissions by using JSON data "
+"instead of HTML scraping. Disabling it will cause higher load on your server"
+" and the directory server."
+msgstr "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur. Wird es deaktiviert, wird mehr Last auf deinem Server und den Verzichnis Servern verursacht."
 
-#: ../../include/text.php:1036
-msgid "anxious"
-msgstr "unruhig"
+#: ../../mod/admin.php:683
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../include/text.php:1037
-msgid "cranky"
-msgstr "schrullig"
+#: ../../mod/admin.php:691
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: ../../include/text.php:1038
-msgid "disturbed"
-msgstr "verstört"
+#: ../../mod/admin.php:694
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
 
-#: ../../include/text.php:1039
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../mod/admin.php:706
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: ../../include/text.php:1040
-msgid "motivated"
-msgstr "motiviert"
+#: ../../mod/admin.php:709
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: ../../include/text.php:1041
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../mod/admin.php:713
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: ../../include/text.php:1042
-msgid "surprised"
-msgstr "überrascht"
+#: ../../mod/admin.php:715
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
 
-#: ../../include/text.php:1210
-msgid "Monday"
-msgstr "Montag"
+#: ../../mod/admin.php:734
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: ../../include/text.php:1210
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../mod/admin.php:735
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: ../../include/text.php:1210
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../mod/admin.php:740
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: ../../include/text.php:1210
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../mod/admin.php:741
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
 
-#: ../../include/text.php:1210
-msgid "Friday"
-msgstr "Freitag"
+#: ../../mod/admin.php:742
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: ../../include/text.php:1210
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../mod/admin.php:743
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: ../../include/text.php:1210
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../mod/admin.php:775
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für dich angelegt."
 
-#: ../../include/text.php:1214
-msgid "January"
-msgstr "Januar"
+#: ../../mod/admin.php:778
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1$s\n\tBenutzernamename:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4$s."
 
-#: ../../include/text.php:1214
-msgid "February"
-msgstr "Februar"
+#: ../../mod/admin.php:810 ../../include/user.php:413
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: ../../include/text.php:1214
-msgid "March"
-msgstr "März"
+#: ../../mod/admin.php:822
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Benutzer geblockt/freigegeben"
+msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: ../../include/text.php:1214
-msgid "April"
-msgstr "April"
+#: ../../mod/admin.php:829
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../include/text.php:1214
-msgid "May"
-msgstr "Mai"
+#: ../../mod/admin.php:868
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: ../../include/text.php:1214
-msgid "June"
-msgstr "Juni"
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: ../../include/text.php:1214
-msgid "July"
-msgstr "Juli"
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: ../../include/text.php:1214
-msgid "August"
-msgstr "August"
+#: ../../mod/admin.php:971
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: ../../include/text.php:1214
-msgid "September"
-msgstr "September"
+#: ../../mod/admin.php:972
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../include/text.php:1214
-msgid "October"
-msgstr "Oktober"
+#: ../../mod/admin.php:973
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../include/text.php:1214
-msgid "November"
-msgstr "November"
+#: ../../mod/admin.php:974
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: ../../include/text.php:1214
-msgid "December"
-msgstr "Dezember"
+#: ../../mod/admin.php:975
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: ../../include/text.php:1403 ../../mod/videos.php:301
-msgid "View Video"
-msgstr "Video ansehen"
+#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-Mail"
 
-#: ../../include/text.php:1435
-msgid "bytes"
-msgstr "Byte"
+#: ../../mod/admin.php:976
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: ../../include/text.php:1459 ../../include/text.php:1471
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: ../../mod/admin.php:978
+msgid "Deny"
+msgstr "Verwehren"
 
-#: ../../include/text.php:1645 ../../include/text.php:1655
-#: ../../mod/events.php:335
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../mod/admin.php:982
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: ../../include/text.php:1700 ../../include/user.php:247
-msgid "default"
-msgstr "Standard"
+#: ../../mod/admin.php:983
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: ../../include/text.php:1712
-msgid "Select an alternate language"
-msgstr "Alternative Sprache auswählen"
+#: ../../mod/admin.php:986
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: ../../include/text.php:1968
-msgid "activity"
-msgstr "Aktivität"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: ../../include/text.php:1970 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../mod/content.php:605
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../include/text.php:1971
-msgid "post"
-msgstr "Beitrag"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: ../../include/text.php:2139
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: ../../mod/admin.php:987
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: ../../mod/admin.php:988 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: ../../mod/admin.php:990
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/admin.php:991
 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 user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: ../../mod/admin.php:1001
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050
-#: ../../include/bbcode.php:1051
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../mod/admin.php:1002
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: ../../include/bbcode.php:545
+#: ../../mod/admin.php:1002
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
+
+#: ../../mod/admin.php:1003
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
+
+#: ../../mod/admin.php:1036
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: ../../include/bbcode.php:579
+#: ../../mod/admin.php:1040
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+msgid "Enable"
+msgstr "Einschalten"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+msgid "Author: "
+msgstr "Autor:"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+#: ../../mod/admin.php:1226
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: ../../include/oembed.php:205
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../mod/admin.php:1288
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../include/oembed.php:214
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: ../../mod/admin.php:1334
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../mod/admin.php:1335
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../mod/admin.php:1362
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../mod/admin.php:1418
+msgid "Clear"
+msgstr "löschen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../mod/admin.php:1424
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: ../../mod/admin.php:1425
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: ../../mod/admin.php:1425
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/admin.php:1426
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/admin.php:1476
+msgid "Close"
+msgstr "Schließen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../mod/admin.php:1482
+msgid "FTP Host"
+msgstr "FTP Host"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: ../../mod/admin.php:1483
+msgid "FTP Path"
+msgstr "FTP Pfad"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: ../../mod/admin.php:1484
+msgid "FTP User"
+msgstr "FTP Nutzername"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: ../../mod/admin.php:1485
+msgid "FTP Password"
+msgstr "FTP Passwort"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../mod/network.php:194 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr "hinzufügen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Neue"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Markierte"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Gruppe: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Freunde von %s"
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:289
-#: ../../include/user.php:293
-msgid "Friends"
-msgstr "Freunde"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Keine Freunde zum Anzeigen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../mod/events.php:335 ../../include/text.php:1644
+#: ../../include/text.php:1654
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
+#: ../../view/theme/diabook/theme.php:127
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorherige"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Nächste"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "Stunde:Minute"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
-
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
-
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
-
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
-
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
-
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
-
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
-
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
-
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
-
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
-
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Benötigt"
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
+#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
+msgid "Location:"
+msgstr "Ort:"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../mod/content.php:437 ../../mod/content.php:740
+#: ../../mod/photos.php:1653 ../../object/Item.php:129
+#: ../../include/conversation.php:613
+msgid "Select"
+msgstr "Auswählen"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../include/conversation.php:654
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: ../../include/user.php:377
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#: ../../object/Item.php:340 ../../include/conversation.php:674
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: ../../include/user.php:381
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\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\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ötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s."
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: ../../include/user.php:413 ../../mod/admin.php:799
+#: ../../mod/content.php:603 ../../object/Item.php:387
 #, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: ../../mod/content.php:605 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../include/text.php:1969
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
+#: ../../include/contact_widgets.php:205
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1357
-#: ../../mod/content.php:620
+#: ../../mod/content.php:620 ../../mod/photos.php:1359
+#: ../../object/Item.php:116
 msgid "Private Message"
 msgstr "Private Nachricht"
 
-#: ../../object/Item.php:120 ../../mod/settings.php:673
-#: ../../mod/content.php:728
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: ../../object/Item.php:133 ../../mod/content.php:763
-msgid "save to folder"
-msgstr "In Ordner speichern"
-
-#: ../../object/Item.php:195 ../../mod/content.php:753
-msgid "add star"
-msgstr "markieren"
-
-#: ../../object/Item.php:196 ../../mod/content.php:754
-msgid "remove star"
-msgstr "Markierung entfernen"
-
-#: ../../object/Item.php:197 ../../mod/content.php:755
-msgid "toggle star status"
-msgstr "Markierung umschalten"
-
-#: ../../object/Item.php:200 ../../mod/content.php:758
-msgid "starred"
-msgstr "markiert"
-
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "Thread ignorieren"
-
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
-
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
-
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "Ignoriert"
-
-#: ../../object/Item.php:220 ../../mod/content.php:759
-msgid "add tag"
-msgstr "Tag hinzufügen"
-
-#: ../../object/Item.php:231 ../../mod/photos.php:1540
-#: ../../mod/content.php:684
+#: ../../mod/content.php:684 ../../mod/photos.php:1542
+#: ../../object/Item.php:231
 msgid "I like this (toggle)"
 msgstr "Ich mag das (toggle)"
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../mod/content.php:684 ../../object/Item.php:231
 msgid "like"
 msgstr "mag ich"
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1541
-#: ../../mod/content.php:685
+#: ../../mod/content.php:685 ../../mod/photos.php:1543
+#: ../../object/Item.php:232
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (toggle)"
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../mod/content.php:685 ../../object/Item.php:232
 msgid "dislike"
 msgstr "mag ich nicht"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../mod/content.php:687 ../../object/Item.php:234
 msgid "Share this"
 msgstr "Weitersagen"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../mod/content.php:687 ../../object/Item.php:234
 msgid "share"
 msgstr "Teilen"
 
-#: ../../object/Item.php:328 ../../mod/content.php:854
-msgid "to"
-msgstr "zu"
-
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
-
-#: ../../object/Item.php:330 ../../mod/content.php:855
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
-
-#: ../../object/Item.php:331 ../../mod/content.php:856
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
-
-#: ../../object/Item.php:387 ../../mod/content.php:603
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
-
-#: ../../object/Item.php:675 ../../mod/photos.php:1560
-#: ../../mod/photos.php:1604 ../../mod/photos.php:1692
-#: ../../mod/content.php:707
+#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
+#: ../../object/Item.php:675
 msgid "This is you"
 msgstr "Das bist du"
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
+#: ../../object/Item.php:361 ../../object/Item.php:677
+msgid "Comment"
+msgstr "Kommentar"
+
+#: ../../mod/content.php:711 ../../object/Item.php:679
 msgid "Bold"
 msgstr "Fett"
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
+#: ../../mod/content.php:712 ../../object/Item.php:680
 msgid "Italic"
 msgstr "Kursiv"
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
+#: ../../mod/content.php:713 ../../object/Item.php:681
 msgid "Underline"
 msgstr "Unterstrichen"
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
+#: ../../mod/content.php:714 ../../object/Item.php:682
 msgid "Quote"
 msgstr "Zitat"
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
+#: ../../mod/content.php:715 ../../object/Item.php:683
 msgid "Code"
 msgstr "Code"
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
+#: ../../mod/content.php:716 ../../object/Item.php:684
 msgid "Image"
 msgstr "Bild"
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
+#: ../../mod/content.php:717 ../../object/Item.php:685
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
+#: ../../mod/content.php:718 ../../object/Item.php:686
 msgid "Video"
 msgstr "Video"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
-
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: ../../mod/content.php:719 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
+#: ../../mod/photos.php:1698 ../../object/Item.php:687
+#: ../../include/conversation.php:1126
+msgid "Preview"
+msgstr "Vorschau"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: ../../mod/content.php:728 ../../mod/settings.php:676
+#: ../../object/Item.php:120
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
-
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte deinen Heimatort nicht bestimmen."
-
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: ../../mod/content.php:753 ../../object/Item.php:195
+msgid "add star"
+msgstr "markieren"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: ../../mod/content.php:754 ../../object/Item.php:196
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: ../../mod/content.php:755 ../../object/Item.php:197
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: ../../mod/content.php:758 ../../object/Item.php:200
+msgid "starred"
+msgstr "markiert"
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: ../../mod/content.php:759 ../../object/Item.php:220
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: ../../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/content.php:763 ../../object/Item.php:133
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "An:"
+#: ../../mod/content.php:854 ../../object/Item.php:328
+msgid "to"
+msgstr "zu"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Betreff:"
+#: ../../mod/content.php:855 ../../object/Item.php:330
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-#: ../../mod/message.php:329 ../../mod/message.php:558
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: ../../mod/content.php:856 ../../object/Item.php:331
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: ../../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/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib dein Passwort zur Verifikation ein:"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systemtest"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: ../../mod/group.php:194 ../../mod/contacts.php:562
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
 
-#: ../../mod/delegate.php:126
+#: ../../mod/install.php:230
 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!"
+"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/delegate.php:127
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: ../../mod/delegate.php:129
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: ../../mod/delegate.php:131
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: ../../mod/delegate.php:133 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Entfernen"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/delegate.php:134
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: ../../mod/delegate.php:135
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerfen"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:443
-#: ../../mod/contacts.php:497 ../../mod/contacts.php:707
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:365
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:503
-msgid "Hide this contact from others"
-msgstr "Verberge diesen Kontakt vor anderen"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:966
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Behauptet dich zu kennen: "
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "nein"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Genehmigen als: "
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Freund"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Teilenden"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Keine weiteren persönlichen Benachrichtigungen"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "jeder"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: ../../mod/settings.php:36 ../../mod/admin.php:977
-msgid "Account"
-msgstr "Nutzerkonto"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: ../../mod/settings.php:46
-msgid "Display"
-msgstr "Anzeige"
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:777
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063
-#: ../../mod/admin.php:1116
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: ../../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/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte deinen Heimatort nicht bestimmen."
 
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "Konto löschen"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: ../../mod/settings.php:129
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: ../../mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: ../../mod/settings.php:132 ../../mod/settings.php:637
-#: ../../mod/contacts.php:705
-msgid "Update"
-msgstr "Aktualisierungen"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Hilfe:"
+
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../mod/help.php:90 ../../index.php:256
+msgid "Not Found"
+msgstr "Nicht gefunden"
+
+#: ../../mod/help.php:93 ../../index.php:259
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
+
+#: ../../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/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
+
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
+
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
+
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "ist interessiert an:"
+
+#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
+msgstr "Verbinden"
+
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "Link"
+
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
+
+#: ../../mod/community.php:32 ../../include/nav.php:129
+#: ../../view/theme/diabook/theme.php:129
+msgid "Community"
+msgstr "Gemeinschaft"
+
+#: ../../mod/community.php:62 ../../mod/community.php:71
+#: ../../mod/search.php:170 ../../mod/search.php:196
+msgid "No results."
+msgstr "Keine Ergebnisse."
+
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "jeder"
+
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Zusätzliche Features"
+
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Anzeige"
+
+#: ../../mod/settings.php:52 ../../mod/settings.php:780
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
+
+#: ../../mod/settings.php:62 ../../include/nav.php:168
+msgid "Delegations"
+msgstr "Delegationen"
+
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Verbundene Programme"
+
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
+
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Konto löschen"
+
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
 #: ../../mod/settings.php:238
 msgid "Failed to connect with email account using the settings provided."
@@ -3466,918 +3644,926 @@ msgstr "Passwort geändert."
 msgid "Password update failed. Please try again."
 msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: ../../mod/settings.php:426
+#: ../../mod/settings.php:428
 msgid " Please use a shorter name."
 msgstr " Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:430
 msgid " Name too short."
 msgstr " Name ist zu kurz."
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:439
 msgid "Wrong Password"
 msgstr "Falsches Passwort"
 
-#: ../../mod/settings.php:442
+#: ../../mod/settings.php:444
 msgid " Not valid email."
 msgstr " Keine gültige E-Mail."
 
-#: ../../mod/settings.php:448
+#: ../../mod/settings.php:450
 msgid " Cannot change to that email."
 msgstr "Ändern der E-Mail nicht möglich. "
 
-#: ../../mod/settings.php:503
+#: ../../mod/settings.php:506
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
 
-#: ../../mod/settings.php:507
+#: ../../mod/settings.php:510
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
 
-#: ../../mod/settings.php:537
+#: ../../mod/settings.php:540
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:675
 msgid "Add application"
 msgstr "Programm hinzufügen"
 
-#: ../../mod/settings.php:611 ../../mod/settings.php:721
-#: ../../mod/settings.php:795 ../../mod/settings.php:877
-#: ../../mod/settings.php:1110 ../../mod/admin.php:588
-#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
-
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977
-#: ../../mod/admin.php:990 ../../mod/crepair.php:158
-msgid "Name"
-msgstr "Name"
-
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:617 ../../mod/settings.php:643
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
+#: ../../mod/settings.php:619 ../../mod/settings.php:645
 msgid "Redirect"
 msgstr "Umleiten"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: ../../mod/settings.php:628
+#: ../../mod/settings.php:631
 msgid "You can't edit this application."
 msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: ../../mod/settings.php:671
+#: ../../mod/settings.php:674
 msgid "Connected Apps"
 msgstr "Verbundene Programme"
 
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:678
 msgid "Client key starts with"
 msgstr "Anwenderschlüssel beginnt mit"
 
-#: ../../mod/settings.php:676
+#: ../../mod/settings.php:679
 msgid "No name"
 msgstr "Kein Name"
 
-#: ../../mod/settings.php:677
+#: ../../mod/settings.php:680
 msgid "Remove authorization"
 msgstr "Autorisierung entziehen"
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:692
 msgid "No Plugin settings configured"
 msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:700
 msgid "Plugin Settings"
 msgstr "Plugin-Einstellungen"
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "Off"
 msgstr "Aus"
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "On"
 msgstr "An"
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:722
 msgid "Additional Features"
 msgstr "Zusätzliche Features"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr "eingeschaltet"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "disabled"
 msgstr "ausgeschaltet"
 
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:737
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:770
+#: ../../mod/settings.php:773
 msgid "Email access is disabled on this site."
 msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: ../../mod/settings.php:782
+#: ../../mod/settings.php:785
 msgid "Email/Mailbox Setup"
 msgstr "E-Mail/Postfach-Einstellungen"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:786
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
 
-#: ../../mod/settings.php:784
+#: ../../mod/settings.php:787
 msgid "Last successful email check:"
 msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:789
 msgid "IMAP server name:"
 msgstr "IMAP-Server-Name:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:790
 msgid "IMAP port:"
 msgstr "IMAP-Port:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:791
 msgid "Security:"
 msgstr "Sicherheit:"
 
-#: ../../mod/settings.php:788 ../../mod/settings.php:793
+#: ../../mod/settings.php:791 ../../mod/settings.php:796
 msgid "None"
 msgstr "Keine"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:792
 msgid "Email login name:"
 msgstr "E-Mail-Login-Name:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:793
 msgid "Email password:"
 msgstr "E-Mail-Passwort:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:794
 msgid "Reply-to address:"
 msgstr "Reply-to Adresse:"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:795
 msgid "Send public posts to all email contacts:"
 msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Action after import:"
 msgstr "Aktion nach Import:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Mark as seen"
 msgstr "Als gelesen markieren"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Move to folder"
 msgstr "In einen Ordner verschieben"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:797
 msgid "Move to folder:"
 msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/settings.php:825 ../../mod/admin.php:523
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
-
-#: ../../mod/settings.php:875
+#: ../../mod/settings.php:878
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/settings.php:881 ../../mod/settings.php:896
+#: ../../mod/settings.php:884 ../../mod/settings.php:899
 msgid "Display Theme:"
 msgstr "Theme:"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:885
 msgid "Mobile Theme:"
 msgstr "Mobiles Theme"
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: ../../mod/settings.php:884
+#: ../../mod/settings.php:887
 msgid "Number of items to display per page:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:885
+#: ../../mod/settings.php:887 ../../mod/settings.php:888
 msgid "Maximum of 100 items"
 msgstr "Maximal 100 Beiträge"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:888
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:889
 msgid "Don't show emoticons"
 msgstr "Keine Smilies anzeigen"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:890
 msgid "Don't show notices"
 msgstr "Info-Popups nicht anzeigen"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:891
 msgid "Infinite scroll"
 msgstr "Endloses Scrollen"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:892
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist."
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:969
 msgid "User Types"
 msgstr "Nutzer Art"
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Types"
 msgstr "Gemeinschafts Art"
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 msgid "Normal Account Page"
 msgstr "Normales Konto"
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:972
 msgid "This account is a normal personal profile"
 msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:975
 msgid "Soapbox Page"
 msgstr "Marktschreier-Konto"
 
-#: ../../mod/settings.php:973
+#: ../../mod/settings.php:976
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Community Forum/Celebrity Account"
 msgstr "Forum/Promi-Konto"
 
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:980
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:983
 msgid "Automatic Friend Page"
 msgstr "Automatische Freunde Seite"
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:984
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:987
 msgid "Private Forum [Experimental]"
 msgstr "Privates Forum [Versuchsstadium]"
 
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:988
 msgid "Private forum - approved members only"
 msgstr "Privates Forum, nur für Mitglieder"
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1010
 msgid "Publish your default profile in your local site directory?"
 msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1013
-#: ../../mod/settings.php:1021 ../../mod/settings.php:1025
-#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
-#: ../../mod/settings.php:1042 ../../mod/settings.php:1048
-#: ../../mod/settings.php:1078 ../../mod/settings.php:1079
-#: ../../mod/settings.php:1080 ../../mod/settings.php:1081
-#: ../../mod/settings.php:1082 ../../mod/register.php:231
-#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106
-#: ../../mod/profiles.php:620 ../../mod/profiles.php:624
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:234 ../../mod/profiles.php:627
+#: ../../mod/profiles.php:631 ../../mod/api.php:106
 msgid "No"
 msgstr "Nein"
 
-#: ../../mod/settings.php:1013
+#: ../../mod/settings.php:1016
 msgid "Publish your default profile in the global social directory?"
 msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1024
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+
+#: ../../mod/settings.php:1028
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
+
+#: ../../mod/settings.php:1033
 msgid "Allow friends to post to your profile page?"
 msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1039
 msgid "Allow friends to tag your posts?"
 msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
 
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1045
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1051
 msgid "Permit unknown people to send you private mail?"
 msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1059
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "oder"
-
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr "Die Adresse deines Profils lautet:"
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 msgid "Automatically expire posts after this many days:"
 msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
 
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1079
 msgid "Advanced expiration settings"
 msgstr "Erweiterte Verfallseinstellungen"
 
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1080
 msgid "Advanced Expiration"
 msgstr "Erweitertes Verfallen"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1081
 msgid "Expire posts:"
 msgstr "Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1082
 msgid "Expire personal notes:"
 msgstr "Persönliche Notizen verfallen lassen:"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1083
 msgid "Expire starred posts:"
 msgstr "Markierte Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1084
 msgid "Expire photos:"
 msgstr "Fotos verfallen lassen:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1085
 msgid "Only expire posts by others:"
 msgstr "Nur Beiträge anderer verfallen:"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "Account Settings"
 msgstr "Kontoeinstellungen"
 
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1119
 msgid "Password Settings"
 msgstr "Passwort-Einstellungen"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "New Password:"
 msgstr "Neues Passwort:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Confirm:"
 msgstr "Bestätigen:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Leave password fields blank unless changing"
 msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1122
 msgid "Current Password:"
 msgstr "Aktuelles Passwort:"
 
-#: ../../mod/settings.php:1119 ../../mod/settings.php:1120
+#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
 msgid "Your current password to confirm the changes"
 msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Password:"
 msgstr "Passwort:"
 
-#: ../../mod/settings.php:1124
+#: ../../mod/settings.php:1127
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Kompletter Name:"
+
+#: ../../mod/settings.php:1129
 msgid "Email Address:"
 msgstr "E-Mail-Adresse:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "Your Timezone:"
 msgstr "Deine Zeitzone:"
 
-#: ../../mod/settings.php:1128
+#: ../../mod/settings.php:1131
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1132
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1135
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: ../../mod/settings.php:1134
+#: ../../mod/settings.php:1137
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: ../../mod/settings.php:1134 ../../mod/settings.php:1164
+#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
 msgid "(to prevent spam abuse)"
 msgstr "(um SPAM zu vermeiden)"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1138
 msgid "Default Post Permissions"
 msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: ../../mod/settings.php:1136
+#: ../../mod/settings.php:1139
 msgid "(click to open/close)"
 msgstr "(klicke zum öffnen/schließen)"
 
-#: ../../mod/settings.php:1145 ../../mod/photos.php:1146
-#: ../../mod/photos.php:1517
+#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Zeige den Gruppen"
 
-#: ../../mod/settings.php:1146 ../../mod/photos.php:1147
-#: ../../mod/photos.php:1518
+#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Zeige den Kontakten"
 
-#: ../../mod/settings.php:1147
+#: ../../mod/settings.php:1150
 msgid "Default Private Post"
 msgstr "Privater Standardbeitrag"
 
-#: ../../mod/settings.php:1148
+#: ../../mod/settings.php:1151
 msgid "Default Public Post"
 msgstr "Öffentlicher Standardbeitrag"
 
-#: ../../mod/settings.php:1152
+#: ../../mod/settings.php:1155
 msgid "Default Permissions for New Posts"
 msgstr "Standardberechtigungen für neue Beiträge"
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1170
 msgid "Notification Settings"
 msgstr "Benachrichtigungseinstellungen"
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "By default post a status message when:"
 msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "accepting a friend request"
 msgstr "– du eine Kontaktanfrage akzeptierst"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "joining a forum/community"
 msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "making an <em>interesting</em> profile change"
 msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1175
 msgid "Send a notification email when:"
 msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1176
 msgid "You receive an introduction"
 msgstr "– du eine Kontaktanfrage erhältst"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Your introductions are confirmed"
 msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1178
 msgid "Someone writes on your profile wall"
 msgstr "– jemand etwas auf deine Pinnwand schreibt"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1179
 msgid "Someone writes a followup comment"
 msgstr "– jemand auch einen Kommentar verfasst"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1180
 msgid "You receive a private message"
 msgstr "– du eine private Nachricht erhältst"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1181
 msgid "You receive a friend suggestion"
 msgstr "– du eine Empfehlung erhältst"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1182
 msgid "You are tagged in a post"
 msgstr "– du in einem Beitrag erwähnt wirst"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1183
 msgid "You are poked/prodded/etc. in a post"
 msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1185
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
+
+#: ../../mod/settings.php:1187
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+
+#: ../../mod/settings.php:1189
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: ../../mod/settings.php:1184
+#: ../../mod/settings.php:1190
 msgid "Change the behaviour of this account for special situations"
 msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1193
 msgid "Relocate"
 msgstr "Umziehen"
 
-#: ../../mod/settings.php:1188
+#: ../../mod/settings.php:1194
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
 msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button."
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1195
 msgid "Resend relocate message to contacts"
 msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gemeinsame Freunde"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: ../../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/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../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/contacts.php:107
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet"
-
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:267
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+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/contacts.php:152
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: ../../mod/contacts.php:181
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: ../../mod/contacts.php:330 ../../mod/contacts.php:703
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest du wirklich diesen Kontakt löschen?"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
 
-#: ../../mod/contacts.php:347
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Du hast dich hier bereits vorgestellt."
 
-#: ../../mod/contacts.php:385
+#: ../../mod/dfrn_request.php:480
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: ../../mod/contacts.php:411
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: ../../mod/contacts.php:414 ../../mod/admin.php:540
-msgid "Never"
-msgstr "Niemals"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
 
-#: ../../mod/contacts.php:418
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: ../../mod/contacts.php:418
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: ../../mod/contacts.php:420
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: ../../mod/contacts.php:424
+#: ../../mod/dfrn_request.php:675
 #, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
 
-#: ../../mod/contacts.php:432
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:496
-#: ../../mod/contacts.php:706 ../../mod/admin.php:970
-msgid "Unblock"
-msgstr "Entsperren"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:496
-#: ../../mod/contacts.php:706 ../../mod/admin.php:969
-msgid "Block"
-msgstr "Sperren"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: ../../mod/contacts.php:440
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
 
-#: ../../mod/contacts.php:443 ../../mod/contacts.php:497
-#: ../../mod/contacts.php:707
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/contacts.php:446
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s dich?"
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: ../../mod/contacts.php:453
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/contacts.php:456
-msgid "Repair"
-msgstr "Reparieren"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/contacts.php:459
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
 
-#: ../../mod/contacts.php:465
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Adresse deines Profils:"
 
-#: ../../mod/contacts.php:468
-msgid "Contact Editor"
-msgstr "Kontakt Editor"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: ../../mod/contacts.php:471
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
 
-#: ../../mod/contacts.php:472
+#: ../../mod/register.php:96
 #, php-format
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
-
-#: ../../mod/contacts.php:473
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
-
-#: ../../mod/contacts.php:474
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
 
-#: ../../mod/contacts.php:479 ../../mod/contacts.php:671
-#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: ../../mod/contacts.php:480
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: ../../mod/contacts.php:481
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
 
-#: ../../mod/contacts.php:482
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
 
-#: ../../mod/contacts.php:483
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
 
-#: ../../mod/contacts.php:485
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: ../../mod/contacts.php:489
-msgid "Last update:"
-msgstr "letzte Aktualisierung:"
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: ../../mod/contacts.php:491
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: ../../mod/contacts.php:493 ../../mod/admin.php:1464
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "ID deiner Einladung: "
 
-#: ../../mod/contacts.php:500
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vollständiger Name (z.B. Max Mustermann): "
 
-#: ../../mod/contacts.php:501
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: ../../mod/contacts.php:502
-msgid "Currently archived"
-msgstr "Momentan archiviert"
-
-#: ../../mod/contacts.php:503
+#: ../../mod/register.php:265
 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/contacts.php:504
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
 
-#: ../../mod/contacts.php:504
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: ../../mod/contacts.php:505
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../mod/contacts.php:556
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../mod/contacts.php:559
-msgid "Suggest potential friends"
-msgstr "Freunde vorschlagen"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere dein Profil auf diese Friendica Instanz"
 
-#: ../../mod/contacts.php:565
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: ../../mod/contacts.php:568
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: ../../mod/search.php:99 ../../include/text.php:952
+#: ../../include/text.php:953 ../../include/nav.php:119
+msgid "Search"
+msgstr "Suche"
 
-#: ../../mod/contacts.php:571
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: ../../mod/contacts.php:575
-msgid "Blocked"
-msgstr "Geblockt"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: ../../mod/contacts.php:578
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: ../../mod/contacts.php:582
-msgid "Ignored"
-msgstr "Ignoriert"
+#: ../../mod/directory.php:113 ../../mod/profiles.php:716
+msgid "Age: "
+msgstr "Alter: "
 
-#: ../../mod/contacts.php:585
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../mod/contacts.php:589
-msgid "Archived"
-msgstr "Archiviert"
+#: ../../mod/directory.php:138 ../../boot.php:1645
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: ../../mod/contacts.php:592
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: ../../mod/directory.php:140 ../../boot.php:1648
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/contacts.php:596
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../mod/directory.php:142 ../../boot.php:1650
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../mod/contacts.php:599
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: ../../mod/directory.php:144 ../../boot.php:1652
+#: ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Über:"
 
-#: ../../mod/contacts.php:647
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: ../../mod/contacts.php:651
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/contacts.php:655
-msgid "you are a fan of"
-msgstr "du bist Fan von"
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: ../../mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
 
-#: ../../mod/contacts.php:698
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/contacts.php:699 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Funde: "
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../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/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../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/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gemeinsame Freunde"
 
-#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
-#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22
-#: ../../mod/update_profile.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
 #: ../../mod/uexport.php:77
 msgid "Export account"
@@ -4400,3318 +4586,3236 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."
 
-#: ../../mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: ../../mod/register.php:97
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
 
-#: ../../mod/register.php:102
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
 
-#: ../../mod/register.php:145
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest du wirklich diese Empfehlung löschen?"
 
-#: ../../mod/register.php:183 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:527
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/register.php:211
+#: ../../mod/suggest.php:74
 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."
+"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/register.php:212
-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/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: ../../mod/register.php:213
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: ../../mod/register.php:227
-msgid "Include your profile in member directory?"
-msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/register.php:248
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: ../../mod/register.php:249
-msgid "Your invitation ID: "
-msgstr "ID deiner Einladung: "
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: ../../mod/register.php:252 ../../mod/admin.php:589
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../mod/profiles.php:172
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: ../../mod/register.php:260
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vollständiger Name (z.B. Max Mustermann): "
+#: ../../mod/profiles.php:323
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: ../../mod/register.php:261
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: ../../mod/profiles.php:327
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: ../../mod/register.php:262
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+#: ../../mod/profiles.php:331
+msgid "Likes"
+msgstr "Likes"
 
-#: ../../mod/register.php:263
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: ../../mod/profiles.php:335
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: ../../mod/register.php:272 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/profiles.php:339
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: ../../mod/register.php:273
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere dein Profil auf diese Friendica Instanz"
+#: ../../mod/profiles.php:342
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: ../../mod/profiles.php:346
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: ../../mod/profiles.php:350
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: ../../mod/profile.php:155 ../../mod/display.php:288
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: ../../mod/profiles.php:354
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: ../../mod/profiles.php:358
+msgid "Homepage"
+msgstr "Webseite"
 
-#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766
-#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920
-#: ../../mod/search.php:89 ../../mod/community.php:18
-#: ../../mod/display.php:180 ../../mod/directory.php:33
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
+msgid "Interests"
+msgstr "Interessen"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: ../../mod/profiles.php:366
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
+msgid "Location"
+msgstr "Wohnort"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1806
-msgid "View Album"
-msgstr "Album betrachten"
+#: ../../mod/profiles.php:456
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: ../../mod/profiles.php:534
+msgid " and "
+msgstr " und "
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: ../../mod/profiles.php:542
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: ../../mod/profiles.php:545
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
+#: ../../mod/profiles.php:546
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: ../../mod/profiles.php:549
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: ../../mod/profiles.php:624
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: ../../mod/profiles.php:629
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personensuche"
+#: ../../mod/profiles.php:651
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../mod/profiles.php:653
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/regmod.php:54
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: ../../mod/profiles.php:654
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: ../../mod/regmod.php:91
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: ../../mod/profiles.php:655
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: ../../mod/regmod.php:103
-msgid "Please login."
-msgstr "Bitte melde dich an."
+#: ../../mod/profiles.php:656
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: ../../mod/profiles.php:657
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: ../../mod/profiles.php:658
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: ../../mod/profiles.php:659
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: ../../mod/profiles.php:661
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+#: ../../mod/profiles.php:662
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: ../../mod/profiles.php:663
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: ../../mod/profiles.php:666
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: ../../mod/profiles.php:667
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: ../../mod/dfrn_request.php:267
+#: ../../mod/profiles.php:668
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
+
+#: ../../mod/profiles.php:669
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
+
+#: ../../mod/profiles.php:670
 #, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+msgid "Birthday (%s):"
+msgstr "Geburtstag (%s):"
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: ../../mod/profiles.php:671
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: ../../mod/profiles.php:672
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: ../../mod/profiles.php:673
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: ../../mod/profiles.php:674
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: ../../mod/profiles.php:675
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
+#: ../../mod/profiles.php:676
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Du hast dich hier bereits vorgestellt."
+#: ../../mod/profiles.php:677
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
+#: ../../mod/profiles.php:678
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: ../../mod/profiles.php:679
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
+#: ../../mod/profiles.php:681
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: ../../mod/dfrn_request.php:664
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: ../../mod/dfrn_request.php:678
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: ../../mod/profiles.php:684
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: ../../mod/dfrn_request.php:679
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
+#: ../../mod/profiles.php:685
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: ../../mod/dfrn_request.php:680
-msgid "Confirm"
-msgstr "Bestätigen"
+#: ../../mod/profiles.php:686
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: ../../mod/dfrn_request.php:808
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
+#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Likes:"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: ../../mod/dfrn_request.php:831
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
+#: ../../mod/profiles.php:689
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: ../../mod/dfrn_request.php:832
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/profiles.php:690
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
 
-#: ../../mod/dfrn_request.php:833
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: ../../mod/profiles.php:691
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: ../../mod/dfrn_request.php:834
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s dich?"
+#: ../../mod/profiles.php:692
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von dir …"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: ../../mod/profiles.php:693
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/profiles.php:694
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
+#: ../../mod/profiles.php:695
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Adresse deines Profils:"
+#: ../../mod/profiles.php:696
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: ../../mod/profiles.php:697
+msgid "Television"
+msgstr "Fernsehen"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Dateien"
+#: ../../mod/profiles.php:698
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: ../../mod/profiles.php:699
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: ../../mod/profiles.php:700
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde dich an um fortzufahren."
+#: ../../mod/profiles.php:701
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: ../../mod/api.php:104
+#: ../../mod/profiles.php:706
 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?"
+"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/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest du wirklich diese Empfehlung löschen?"
+#: ../../mod/profiles.php:769
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: ../../mod/profiles.php:771 ../../boot.php:1607
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: ../../mod/profiles.php:782 ../../boot.php:1617
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: ../../mod/profiles.php:784 ../../boot.php:1620
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
+#: ../../mod/profiles.php:785 ../../boot.php:1621
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "Link"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:587
-msgid "Site"
-msgstr "Seite"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
+msgstr "Weblink"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974
-msgid "Users"
-msgstr "Nutzer"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318
-msgid "Themes"
-msgstr "Themen"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "DB Updates"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../mod/admin.php:129
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: ../../mod/admin.php:131
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
+msgstr "Ort setzen"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:913
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:914
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:915
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:916
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: ../../mod/admin.php:194
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../mod/admin.php:195
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: ../../mod/admin.php:214
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958
-#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283
-#: ../../mod/admin.php:1317 ../../mod/admin.php:1404
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: ../../mod/admin.php:220
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: ../../mod/admin.php:222
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: ../../mod/friendica.php:63
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: ../../mod/admin.php:224
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: ../../mod/friendica.php:65
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
 
-#: ../../mod/admin.php:225
-msgid "Version"
-msgstr "Version"
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../mod/admin.php:227
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
 
-#: ../../mod/admin.php:250
-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/friendica.php:82
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps"
 
-#: ../../mod/admin.php:494
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: ../../mod/admin.php:541
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: ../../mod/admin.php:550
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: ../../mod/admin.php:573
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde dich an um fortzufahren."
 
-#: ../../mod/admin.php:574
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
 
-#: ../../mod/admin.php:575
-msgid "Open"
-msgstr "Offen"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: ../../mod/admin.php:579
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../mod/admin.php:580
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: ../../mod/notes.php:44 ../../boot.php:2145
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/admin.php:581
-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/localtime.php:12 ../../include/bb2diaspora.php:148
+#: ../../include/event.php:11
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: ../../mod/admin.php:590
-msgid "File upload"
-msgstr "Datei hochladen"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: ../../mod/admin.php:591
-msgid "Policies"
-msgstr "Regeln"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: ../../mod/admin.php:592
-msgid "Advanced"
-msgstr "Erweitert"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: ../../mod/admin.php:593
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: ../../mod/admin.php:594
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: ../../mod/admin.php:597
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle deine Zeitzone:"
 
-#: ../../mod/admin.php:598
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: ../../mod/admin.php:599
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: ../../mod/admin.php:599
-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/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: ../../mod/admin.php:600
-msgid "System language"
-msgstr "Systemsprache"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst du mit dem Empfänger machen:"
 
-#: ../../mod/admin.php:601
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: ../../mod/admin.php:601
-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/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: ../../mod/admin.php:602
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: ../../mod/admin.php:602
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: ../../mod/admin.php:603
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: ../../mod/admin.php:603
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: ../../mod/admin.php:604
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: ../../mod/admin.php:604
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: ../../mod/admin.php:605
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: ../../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/admin.php:605
+#: ../../mod/invite.php:122
+#, php-format
 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."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: ../../mod/admin.php:606
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: ../../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/admin.php:606
-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/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: ../../mod/admin.php:607
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: ../../mod/admin.php:607
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+
+#: ../../mod/invite.php:135
 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."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: ../../mod/admin.php:608
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: ../../mod/admin.php:608
+#: ../../mod/invite.php:137
 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:609
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+"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/admin.php:609
+#: ../../mod/invite.php:139
 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."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
-#: ../../mod/admin.php:611
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: ../../mod/photos.php:52 ../../boot.php:2124
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../mod/admin.php:612
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: ../../mod/admin.php:612
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag.   Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: ../../mod/admin.php:613
-msgid "Register text"
-msgstr "Registrierungstext"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: ../../mod/admin.php:613
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
-
-#: ../../mod/admin.php:614
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../mod/admin.php:614
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../mod/admin.php:615
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: ../../mod/admin.php:615
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: ../../mod/admin.php:616
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest du wirklich dieses Foto löschen?"
 
-#: ../../mod/admin.php:616
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: ../../mod/admin.php:617
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "einem Foto"
 
-#: ../../mod/admin.php:617
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "Die Bildgröße übersteigt das Limit von "
 
-#: ../../mod/admin.php:618
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../mod/admin.php:618
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: ../../mod/admin.php:619
-msgid "Global directory update URL"
-msgstr "URL für Updates beim weltweiten Verzeichnis"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: ../../mod/admin.php:619
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: ../../mod/admin.php:620
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: ../../mod/admin.php:620
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: ../../mod/admin.php:621
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: ../../mod/admin.php:621
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: ../../mod/admin.php:622
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: ../../mod/admin.php:622
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: ../../mod/admin.php:623
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: ../../mod/admin.php:623
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: ../../mod/admin.php:624
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: ../../mod/admin.php:624
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: ../../mod/admin.php:625
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: ../../mod/admin.php:625
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: ../../mod/admin.php:626
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: ../../mod/admin.php:626
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: ../../mod/admin.php:627
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: ../../mod/admin.php:627
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: ../../mod/admin.php:628
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Tags: "
 
-#: ../../mod/admin.php:628
-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/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: ../../mod/admin.php:629
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: ../../mod/admin.php:629
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: ../../mod/admin.php:630
-msgid "Show Community Page"
-msgstr "Gemeinschaftsseite anzeigen"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: ../../mod/admin.php:630
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: ../../mod/admin.php:631
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: ../../mod/admin.php:631
+#: ../../mod/photos.php:1512
 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."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/admin.php:632
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: ../../mod/admin.php:632
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "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/photos.php:1522
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: ../../mod/admin.php:633
-msgid "Enable Diaspora support"
-msgstr "Diaspora-Support aktivieren"
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../mod/admin.php:633
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: ../../mod/admin.php:634
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: ../../mod/admin.php:634
-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/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: ../../mod/admin.php:635
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Bitte melde dich an."
 
-#: ../../mod/admin.php:635
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Account umziehen"
+
+#: ../../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/uimport.php:68
 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."
+"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/admin.php:636
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: ../../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/admin.php:637
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Account Datei"
 
-#: ../../mod/admin.php:638
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: ../../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/admin.php:638
-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/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: ../../mod/admin.php:639
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: ../../mod/admin.php:639
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
+#: ../../boot.php:744
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: ../../mod/admin.php:640
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../boot.php:747
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: ../../mod/admin.php:641
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../boot.php:1235
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: ../../mod/admin.php:641
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../mod/admin.php:643
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: ../../boot.php:1261 ../../include/nav.php:92
+msgid "Login"
+msgstr "Anmeldung"
 
-#: ../../mod/admin.php:643
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
+msgstr "Spitzname oder E-Mail-Adresse: "
 
-#: ../../mod/admin.php:644
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: ../../boot.php:1264
+msgid "Password: "
+msgstr "Passwort: "
 
-#: ../../mod/admin.php:644
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: ../../boot.php:1265
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: ../../mod/admin.php:645
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
+msgstr "Oder melde dich mit deiner OpenID an: "
 
-#: ../../mod/admin.php:646
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: ../../boot.php:1274
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: ../../mod/admin.php:646
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: ../../mod/admin.php:647
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: ../../boot.php:1278
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: ../../mod/admin.php:647
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: ../../mod/admin.php:648
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: ../../boot.php:1281
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: ../../mod/admin.php:649
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: ../../boot.php:1414
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/admin.php:650
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/admin.php:651
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: ../../boot.php:1595
+msgid "Message"
+msgstr "Nachricht"
 
-#: ../../mod/admin.php:651
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../mod/admin.php:653
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: ../../mod/admin.php:655
-msgid "Enable noscrape"
-msgstr "Noscrape aktivieren"
+#: ../../boot.php:1701
+msgid "Network:"
+msgstr "Netzwerk"
 
-#: ../../mod/admin.php:655
-msgid ""
-"The noscrape feature speeds up directory submissions by using JSON data "
-"instead of HTML scraping."
-msgstr "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur."
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../mod/admin.php:672
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/admin.php:680
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
+msgstr "[heute]"
 
-#: ../../mod/admin.php:683
-#, 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"
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: ../../mod/admin.php:695
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: ../../mod/admin.php:698
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: ../../boot.php:1851
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: ../../mod/admin.php:702
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
+#: ../../boot.php:1869
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: ../../mod/admin.php:704
-#, 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."
+#: ../../boot.php:1870
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: ../../mod/admin.php:723
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/admin.php:724
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../mod/admin.php:729
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: ../../boot.php:2117
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: ../../mod/admin.php:730
-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."
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Videos"
 
-#: ../../mod/admin.php:731
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: ../../boot.php:2141
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: ../../mod/admin.php:732
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: ../../boot.php:2148
+msgid "Only You Can See This"
+msgstr "Nur du kannst das sehen"
 
-#: ../../mod/admin.php:764
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für dich angelegt."
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: ../../mod/admin.php:767
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1$s\n\tBenutzernamename:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite)\n\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ötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4$s."
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: ../../mod/admin.php:811
-#, 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"
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: ../../mod/admin.php:818
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: ../../mod/admin.php:865
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../mod/admin.php:865
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: ../../mod/admin.php:960
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
 
-#: ../../mod/admin.php:961
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../include/dbstructure.php:26
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
 
-#: ../../mod/admin.php:962
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:963
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: ../../mod/admin.php:964
-msgid "Request date"
-msgstr "Anfragedatum"
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
-#: ../../mod/admin.php:965
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: ../../mod/admin.php:967
-msgid "Deny"
-msgstr "Verwehren"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
 
-#: ../../mod/admin.php:971
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: ../../mod/admin.php:972
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: ../../mod/admin.php:975
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: ../../mod/admin.php:976 ../../mod/admin.php:977
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/admin.php:976 ../../mod/admin.php:977
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../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/admin.php:976 ../../mod/admin.php:977
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Leute finden"
 
-#: ../../mod/admin.php:976
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../mod/admin.php:979
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../mod/admin.php:980
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: ../../mod/admin.php:990
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: ../../mod/admin.php:991
-msgid "Nickname"
-msgstr "Spitzname"
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: ../../mod/admin.php:991
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: ../../mod/admin.php:992
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: ../../mod/admin.php:1025
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: ../../mod/admin.php:1029
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1255
-msgid "Disable"
-msgstr "Ausschalten"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../mod/admin.php:1041 ../../mod/admin.php:1257
-msgid "Enable"
-msgstr "Einschalten"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../mod/admin.php:1064 ../../mod/admin.php:1285
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: ../../mod/admin.php:1072 ../../mod/admin.php:1295
-msgid "Author: "
-msgstr "Autor:"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: ../../mod/admin.php:1073 ../../mod/admin.php:1296
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: ../../mod/admin.php:1215
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: ../../mod/admin.php:1277
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: ../../mod/admin.php:1323
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: ../../mod/admin.php:1324
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: ../../mod/admin.php:1351
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: ../../mod/admin.php:1407
-msgid "Clear"
-msgstr "löschen"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: ../../mod/admin.php:1413
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: ../../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/admin.php:1414
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: ../../mod/admin.php:1414
-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:1415
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: ../../mod/admin.php:1465
-msgid "Close"
-msgstr "Schließen"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: ../../mod/admin.php:1471
-msgid "FTP Host"
-msgstr "FTP Host"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: ../../mod/admin.php:1472
-msgid "FTP Path"
-msgstr "FTP Pfad"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: ../../mod/admin.php:1473
-msgid "FTP User"
-msgstr "FTP Nutzername"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: ../../mod/admin.php:1474
-msgid "FTP Password"
-msgstr "FTP Passwort"
+#: ../../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/wall_upload.php:122 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildgröße überschreitet das Limit von %d"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %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"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: ../../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."
+#: ../../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/network.php:136
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: ../../mod/network.php:179 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: ../../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/network.php:350
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../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/network.php:374
-msgid "New"
-msgstr "Neue"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Tagging"
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: ../../mod/network.php:392
-msgid "Starred"
-msgstr "Markierte"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: ../../mod/network.php:457
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: ../../mod/network.php:460
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: ../../mod/network.php:514 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: ../../mod/network.php:531 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: ../../mod/network.php:538 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppe: "
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: ../../mod/network.php:548
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: ../../mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: ../../include/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."
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: ../../mod/friendica.php:65
+#: ../../include/follow.php:86
 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."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: ../../mod/friendica.php:68
+#: ../../include/follow.php:93
 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"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
 
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "folgen"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
-
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
-
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "bearbeiten"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest du wirklich dieses Foto löschen?"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "einem Foto"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "Die Bildgröße übersteigt das Limit von "
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "Jahr"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "Monat"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "Tag"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nie"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1201
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "Jahre"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "Monate"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "Woche"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1508
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "Wochen"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "Tage"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "Stunde"
 
-#: ../../mod/photos.php:1216
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "Stunden"
 
-#: ../../mod/photos.php:1222
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "Minute"
 
-#: ../../mod/photos.php:1224
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "Minuten"
 
-#: ../../mod/photos.php:1257 ../../mod/photos.php:1800
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "Sekunde"
 
-#: ../../mod/photos.php:1292
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "Sekunden"
 
-#: ../../mod/photos.php:1294
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: ../../mod/photos.php:1350
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: ../../include/datetime.php:477 ../../include/items.php:2195
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: ../../mod/photos.php:1350
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../include/datetime.php:478 ../../include/items.php:2196
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: ../../mod/photos.php:1351
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: ../../mod/photos.php:1376
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "show"
+msgstr "zeigen"
 
-#: ../../mod/photos.php:1455
-msgid "Tags: "
-msgstr "Tags: "
+#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: ../../mod/photos.php:1458
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: ../../mod/photos.php:1498
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: ../../mod/photos.php:1499
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: ../../include/Contact.php:228 ../../include/conversation.php:882
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../mod/photos.php:1501
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: ../../include/Contact.php:229 ../../include/conversation.php:876
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: ../../mod/photos.php:1504
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: ../../include/Contact.php:230 ../../include/conversation.php:877
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: ../../mod/photos.php:1506
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: ../../include/Contact.php:231 ../../include/conversation.php:878
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: ../../mod/photos.php:1510
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../include/Contact.php:232 ../../include/Contact.php:255
+#: ../../include/conversation.php:879
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: ../../mod/photos.php:1519
-msgid "Private photo"
-msgstr "Privates Foto"
+#: ../../include/Contact.php:233 ../../include/Contact.php:255
+#: ../../include/conversation.php:880
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../mod/photos.php:1520
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: ../../mod/photos.php:1815
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../include/Contact.php:235 ../../include/Contact.php:255
+#: ../../include/conversation.php:881
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Account umziehen"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: ../../mod/uimport.php:68
+#: ../../include/security.php:366
 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."
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
+msgid "event"
+msgstr "Veranstaltung"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Account Datei"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+#: ../../include/conversation.php:211 ../../include/text.php:1004
+msgid "poked"
+msgstr "stupste"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: ../../mod/invite.php:49
+#: ../../include/conversation.php:292
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: ../../include/conversation.php:772
+msgid "remove"
+msgstr "löschen"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: ../../include/conversation.php:776
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: ../../mod/invite.php:89
+#: ../../include/conversation.php:875
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
+
+#: ../../include/conversation.php:944
 #, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: ../../mod/invite.php:93
+#: ../../include/conversation.php:944
 #, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: ../../include/conversation.php:949
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: ../../mod/invite.php:120
+#: ../../include/conversation.php:952
 #, 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 "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
 
-#: ../../mod/invite.php:122
+#: ../../include/conversation.php:966
+msgid "and"
+msgstr "und"
+
+#: ../../include/conversation.php:972
 #, 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 ", and %d other people"
+msgstr " und %d andere"
 
-#: ../../mod/invite.php:123
+#: ../../include/conversation.php:974
 #, 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 like this."
+msgstr "%s mögen das."
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: ../../include/conversation.php:974
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen das nicht."
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
+msgid "Where are you right now?"
+msgstr "Wo hältst du dich jetzt gerade auf?"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+#: ../../include/conversation.php:1008
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: ../../include/conversation.php:1051
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../include/conversation.php:1056
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
+#: ../../include/conversation.php:1111
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: ../../mod/lostpass.php:42
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast."
+#: ../../include/conversation.php:1135
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: ../../mod/lostpass.php:53
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
+#: ../../include/conversation.php:1136
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: ../../mod/lostpass.php:72
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: ../../include/conversation.php:1137
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
+#: ../../include/network.php:895
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "neuer"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "älter"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere dein neues Passwort - und dann"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "vorige"
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "hier klicken, um dich anzumelden"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "erste"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
+#: ../../include/text.php:337
+msgid "last"
+msgstr "letzte"
 
-#: ../../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 zu etwas, das du dir leicht merken kannst)."
+#: ../../include/text.php:340
+msgid "next"
+msgstr "nächste"
 
-#: ../../mod/lostpass.php:131
+#: ../../include/text.php:854
+msgid "No contacts"
+msgstr "Keine Kontakte"
+
+#: ../../include/text.php:863
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden."
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
+
+#: ../../include/text.php:1004
+msgid "poke"
+msgstr "anstupsen"
+
+#: ../../include/text.php:1005
+msgid "ping"
+msgstr "anpingen"
+
+#: ../../include/text.php:1005
+msgid "pinged"
+msgstr "pingte"
+
+#: ../../include/text.php:1006
+msgid "prod"
+msgstr "knuffen"
+
+#: ../../include/text.php:1006
+msgid "prodded"
+msgstr "knuffte"
+
+#: ../../include/text.php:1007
+msgid "slap"
+msgstr "ohrfeigen"
+
+#: ../../include/text.php:1007
+msgid "slapped"
+msgstr "ohrfeigte"
+
+#: ../../include/text.php:1008
+msgid "finger"
+msgstr "befummeln"
+
+#: ../../include/text.php:1008
+msgid "fingered"
+msgstr "befummelte"
+
+#: ../../include/text.php:1009
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
+
+#: ../../include/text.php:1009
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
+
+#: ../../include/text.php:1023
+msgid "happy"
+msgstr "glücklich"
+
+#: ../../include/text.php:1024
+msgid "sad"
+msgstr "traurig"
+
+#: ../../include/text.php:1025
+msgid "mellow"
+msgstr "sanft"
+
+#: ../../include/text.php:1026
+msgid "tired"
+msgstr "müde"
 
-#: ../../mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde dein Passwort geändert"
+#: ../../include/text.php:1027
+msgid "perky"
+msgstr "frech"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Hast du dein Passwort vergessen?"
+#: ../../include/text.php:1028
+msgid "angry"
+msgstr "sauer"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
+#: ../../include/text.php:1029
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: ../../include/text.php:1030
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../include/text.php:1031
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: ../../include/text.php:1032
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: ../../include/text.php:1033
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: ../../include/text.php:1034
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: ../../include/text.php:1035
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../include/text.php:1036
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../include/text.php:1037
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../include/text.php:1038
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../include/text.php:1039
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../include/text.php:1040
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../include/text.php:1041
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: ../../include/text.php:1042
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/text.php:1210
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: ../../include/text.php:1210
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: ../../include/text.php:1210
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: ../../include/text.php:1210
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: ../../include/text.php:1210
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+#: ../../include/text.php:1210
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib dein Passwort zur Verifikation ein:"
+#: ../../include/text.php:1210
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: ../../include/text.php:1214
+msgid "January"
+msgstr "Januar"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: ../../include/text.php:1214
+msgid "February"
+msgstr "Februar"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../include/text.php:1214
+msgid "March"
+msgstr "März"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: ../../include/text.php:1214
+msgid "April"
+msgstr "April"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: ../../include/text.php:1214
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
+#: ../../include/text.php:1214
+msgid "June"
+msgstr "Juni"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: ../../include/text.php:1214
+msgid "July"
+msgstr "Juli"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: ../../include/text.php:1214
+msgid "August"
+msgstr "August"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/text.php:1214
+msgid "September"
+msgstr "September"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: ../../include/text.php:1214
+msgid "October"
+msgstr "Oktober"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: ../../include/text.php:1214
+msgid "November"
+msgstr "November"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorherige"
+#: ../../include/text.php:1214
+msgid "December"
+msgstr "Dezember"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Nächste"
+#: ../../include/text.php:1434
+msgid "bytes"
+msgstr "Byte"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "Stunde:Minute"
+#: ../../include/text.php:1458 ../../include/text.php:1470
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: ../../include/text.php:1699 ../../include/user.php:247
+#: ../../view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "Standard"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
+#: ../../include/text.php:1711
+msgid "Select an alternate language"
+msgstr "Alternative Sprache auswählen"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: ../../include/text.php:1967
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Benötigt"
+#: ../../include/text.php:1970
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: ../../include/text.php:2138
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
+
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
+#: ../../include/bbcode.php:1028
+msgid "Image/photo"
+msgstr "Bild/Foto"
+
+#: ../../include/bbcode.php:528
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: ../../include/bbcode.php:562
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschreibung"
+#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: ../../include/notifier.php:796 ../../include/delivery.php:467
+#: ../../include/enotify.php:31
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit dir in Kontakt treten"
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} schickte dir eine Nachricht"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommentierte einen Beitrag von %s"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} mag %ss Beitrag"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} mag %ss Beitrag nicht"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ist jetzt mit %s befreundet"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} hat etwas veröffentlicht"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: ../../mod/ping.php:281
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} hat dich in einem Beitrag erwähnt"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: ../../mod/search.php:170 ../../mod/search.php:196
-#: ../../mod/community.php:62 ../../mod/community.php:71
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest du wirklich diese Nachricht löschen?"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "StatusNet"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s und du"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../include/Scrape.php:593
+msgid " on Last.fm"
+msgstr " bei Last.fm"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:162 ../../mod/profiles.php:589
-#: ../../mod/dfrn_confirm.php:64
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tags"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
-msgstr "Familienstand"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: ../../mod/profiles.php:331
-msgid "Likes"
-msgstr "Likes"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
-msgstr "Dislikes"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../mod/profiles.php:342
-msgid "Religion"
-msgstr "Religion"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: ../../mod/profiles.php:346
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
 
-#: ../../mod/profiles.php:350
-msgid "Gender"
-msgstr "Geschlecht"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
 
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: ../../mod/profiles.php:358
-msgid "Homepage"
-msgstr "Webseite"
+#: ../../include/nav.php:76 ../../include/nav.php:146
+#: ../../view/theme/diabook/theme.php:123
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:657
-msgid "Interests"
-msgstr "Interessen"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: ../../mod/profiles.php:366
-msgid "Address"
-msgstr "Adresse"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:653
-msgid "Location"
-msgstr "Wohnort"
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: ../../mod/profiles.php:527
-msgid " and "
-msgstr " und "
+#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/profiles.php:535
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: ../../mod/profiles.php:538
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: ../../mod/profiles.php:539
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Homepage"
 
-#: ../../mod/profiles.php:542
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: ../../mod/profiles.php:617
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: ../../mod/profiles.php:622
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Apps"
 
-#: ../../mod/profiles.php:644
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: ../../mod/profiles.php:646
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: ../../mod/profiles.php:647
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: ../../mod/profiles.php:648
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: ../../include/nav.php:131
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: ../../mod/profiles.php:649
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: ../../include/nav.php:131
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: ../../mod/profiles.php:650
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: ../../include/nav.php:133
+msgid "Information"
+msgstr "Information"
 
-#: ../../mod/profiles.php:651
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: ../../include/nav.php:133
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: ../../mod/profiles.php:652
-msgid "Profile picture"
-msgstr "Profilbild"
+#: ../../include/nav.php:143
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen deiner Kontakte"
 
-#: ../../mod/profiles.php:654
-msgid "Preferences"
-msgstr "Vorlieben"
+#: ../../include/nav.php:144
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: ../../mod/profiles.php:655
-msgid "Status information"
-msgstr "Status Informationen"
+#: ../../include/nav.php:144
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: ../../mod/profiles.php:656
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: ../../include/nav.php:152
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: ../../mod/profiles.php:658 ../../mod/newmember.php:36
-#: ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: ../../include/nav.php:154
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: ../../mod/profiles.php:659
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: ../../include/nav.php:155
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: ../../mod/profiles.php:660
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: ../../include/nav.php:159
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: ../../mod/profiles.php:661
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: ../../include/nav.php:160
+msgid "Inbox"
+msgstr "Eingang"
 
-#: ../../mod/profiles.php:662
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: ../../include/nav.php:161
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: ../../mod/profiles.php:663
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geburtstag (%s):"
+#: ../../include/nav.php:165
+msgid "Manage"
+msgstr "Verwalten"
 
-#: ../../mod/profiles.php:664
-msgid "Street Address:"
-msgstr "Adresse:"
+#: ../../include/nav.php:165
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: ../../mod/profiles.php:665
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: ../../include/nav.php:170
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: ../../mod/profiles.php:666
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: ../../include/nav.php:173
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: ../../mod/profiles.php:667
-msgid "Country:"
-msgstr "Land:"
+#: ../../include/nav.php:175
+msgid "Manage/edit friends and contacts"
+msgstr "Freunde und Kontakte verwalten/editieren"
 
-#: ../../mod/profiles.php:668
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: ../../include/nav.php:182
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: ../../mod/profiles.php:669
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: ../../include/nav.php:186
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../mod/profiles.php:670
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: ../../include/nav.php:186
+msgid "Site map"
+msgstr "Sitemap"
 
-#: ../../mod/profiles.php:671
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1062
+#: ../../include/api.php:1064
+msgid "User not found."
+msgstr "Nutzer nicht gefunden."
 
-#: ../../mod/profiles.php:672
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: ../../mod/profiles.php:674
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: ../../mod/profiles.php:677
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Es gibt keinen Status mit dieser ID."
 
-#: ../../mod/profiles.php:678
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Es existiert keine Unterhaltung mit dieser ID."
 
-#: ../../mod/profiles.php:679
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: ../../mod/profiles.php:682
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr "Ungültiges Objekt"
 
-#: ../../mod/profiles.php:683
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr "Ungültige Aktion"
 
-#: ../../mod/profiles.php:684
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr "DB Error"
 
-#: ../../mod/profiles.php:685
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von dir …"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: ../../mod/profiles.php:686
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: ../../mod/profiles.php:687
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: ../../mod/profiles.php:688
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: ../../mod/profiles.php:689
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/profiles.php:690
-msgid "Television"
-msgstr "Fernsehen"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: ../../mod/profiles.php:691
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: ../../mod/profiles.php:692
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: ../../mod/profiles.php:693
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: ../../mod/profiles.php:694
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: ../../mod/profiles.php:699
+#: ../../include/user.php:132
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
 
-#: ../../mod/profiles.php:709 ../../mod/directory.php:113
-msgid "Age: "
-msgstr "Alter: "
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: ../../mod/profiles.php:762
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../mod/install.php:138
+#: ../../include/user.php:377
+#, php-format
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systemtest"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: ../../include/diaspora.php:2332
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: ../../include/items.php:4526
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest du wirklich dieses Item löschen?"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."
+#: ../../include/items.php:4749
+msgid "Archives"
+msgstr "Archiv"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Kontakteinstellungen reparieren"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: ../../mod/crepair.php:139
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: ../../mod/crepair.php:140
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: ../../mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
+#: ../../include/enotify.php:61
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
+#: ../../include/enotify.php:65
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: ../../mod/crepair.php:161
-msgid "Account URL"
-msgstr "Konto-URL"
+#: ../../include/enotify.php:67
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
 
-#: ../../mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL für Freundschaftsanfragen"
+#: ../../include/enotify.php:68
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte dir %2$s."
 
-#: ../../mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+#: ../../include/enotify.php:68
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: ../../include/enotify.php:69
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: ../../mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: ../../include/enotify.php:121
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: ../../mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: ../../mod/crepair.php:167
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: ../../include/enotify.php:136
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
 
-#: ../../mod/crepair.php:169
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: ../../include/enotify.php:146
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: ../../mod/crepair.php:169
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."
+#: ../../include/enotify.php:147
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
 
-#: ../../mod/crepair.php:169
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: ../../include/enotify.php:150 ../../include/enotify.php:165
+#: ../../include/enotify.php:178 ../../include/enotify.php:191
+#: ../../include/enotify.php:209 ../../include/enotify.php:222
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: ../../mod/crepair.php:169
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
 
-#: ../../mod/crepair.php:169
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
+#: ../../include/enotify.php:159
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: ../../include/enotify.php:161
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat dich erwähnt"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte dich auf %2$s"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: ../../include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
+#: ../../include/enotify.php:186
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
+#: ../../include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat dich auf %2$s angestupst"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
+#: ../../include/enotify.php:201
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: ../../include/enotify.php:216
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
+#: ../../include/enotify.php:217
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: ../../include/enotify.php:218
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
+#: ../../include/enotify.php:229
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: ../../include/enotify.php:230
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
+#: ../../include/enotify.php:231
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: ../../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."
+#: ../../include/enotify.php:234 ../../include/enotify.php:276
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst du das Profil betrachten: %s"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: ../../include/enotify.php:236
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
+#: ../../include/enotify.php:244
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit dir"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: ../../include/enotify.php:245 ../../include/enotify.php:246
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit dir auf %2$s"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+#: ../../include/enotify.php:252
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
+#: ../../include/enotify.php:253 ../../include/enotify.php:254
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
+#: ../../include/enotify.php:267
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: ../../include/enotify.php:268
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: ../../mod/newmember.php:62
+#: ../../include/enotify.php:269
+#, php-format
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "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."
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: ../../include/enotify.php:274
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+#: ../../include/enotify.php:275
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: ../../include/enotify.php:278
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+#: ../../include/enotify.php:286 ../../include/enotify.php:299
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: ../../include/enotify.php:287 ../../include/enotify.php:300
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' hat deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: ../../include/enotify.php:288 ../../include/enotify.php:301
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hat deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: ../../mod/newmember.php:82
+#: ../../include/enotify.php:291
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
-
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: ../../include/enotify.php:294 ../../include/enotify.php:308
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: ../../include/enotify.php:304
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst du mit dem Empfänger machen:"
+#: ../../include/enotify.php:306
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: ../../include/enotify.php:319
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: ../../mod/prove.php:93
-msgid ""
-"\n"
-"\t\tDear $[username],\n"
-"\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\tinformation for your records (or change your password immediately to\n"
-"\t\tsomething that you will remember).\n"
-"\t"
-msgstr "\nHallo $[username],\n\ndein Passwort wurde wie angefordert geändert. Bitte bewahre diese Informationen auf (oder ändere dein Passwort augenblicklich in etwas an das du dir merken kannst)."
+#: ../../include/enotify.php:320
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: ../../mod/display.php:452
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: ../../include/enotify.php:321
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: ../../mod/subthread.php:103
+#: ../../include/enotify.php:324
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../include/enotify.php:327
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
+#: ../../include/oembed.php:210
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: ../../include/oembed.php:219
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: ../../mod/dfrn_confirm.php:571
+#: ../../include/uimport.php:220
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: ../../index.php:428
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
+#: ../../view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: ../../mod/dfrn_confirm.php:627
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
 
-#: ../../mod/dfrn_confirm.php:647
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/diabook/config.php:151
+msgid "Set font-size for posts and comments"
+msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Theme Breite festlegen"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: ../../mod/dfrn_confirm.php:797
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: ../../view/theme/dispy/config.php:74
+#: ../../view/theme/diabook/config.php:152
+msgid "Set line-height for posts and comments"
+msgstr "Liniengröße für Beiträge und Kommantare festlegen"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Farbschema wählen"
 
-#: ../../mod/item.php:324
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: ../../mod/item.php:915
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/item.php:941
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Mitte"
 
-#: ../../mod/item.php:943
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: ../../mod/item.php:944
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: ../../mod/item.php:948
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Auflösung für die Mittelspalte setzen"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Wähle Farbschema"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitude (X) der Earth Layer"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitude (Y) der Earth Layer"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: ../../view/theme/diabook/config.php:158
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Foren"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Hochladen"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Freunde finden"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Letzte Fotos"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: ../../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/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Deine Kontakte"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Deine privaten Fotos"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: ../../view/theme/vier/config.php:56
+msgid "Set style"
+msgstr "Stil auswählen"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle deine Zeitzone:"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
+
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variationen"
index e511aa27d06a25fdbb307b6dc36728d4cb74fc29..cb21bc55fec6b6dbebdeba551aa5b0517da79fdc 100644 (file)
@@ -5,742 +5,287 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Submit"] = "Senden";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
-$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
-$a->strings["Set theme width"] = "Theme Breite festlegen";
-$a->strings["Color scheme"] = "Farbschema";
-$a->strings["Set style"] = "Stil auswählen";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["show"] = "zeigen";
-$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
-$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
-$a->strings["Set color scheme"] = "Wähle Farbschema";
-$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
-$a->strings["Community Pages"] = "Foren";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Find Friends"] = "Freunde finden";
-$a->strings["Last users"] = "Letzte Nutzer";
-$a->strings["Last photos"] = "Letzte Fotos";
-$a->strings["Last likes"] = "Zuletzt gemocht";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["event"] = "Veranstaltung";
-$a->strings["status"] = "Status";
-$a->strings["photo"] = "Foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
-$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Mitte";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Set colour scheme"] = "Farbschema wählen";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["%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["Permission denied."] = "Zugriff verweigert.";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
-$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["show fewer"] = "weniger anzeigen";
-$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
-$a->strings["terms of service"] = "Nutzungsbedingungen";
-$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
-$a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["Message"] = "Nachricht";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Location:"] = "Ort:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["Network:"] = "Netzwerk";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
-$a->strings["[No description]"] = "[keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
-$a->strings["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
-$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
+$a->strings["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["Archives"] = "Archiv";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
-);
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Find"] = "Finde";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
+$a->strings["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["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$a->strings["noreply"] = "noreply";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
-$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit dir";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat deine Kontaktanfrage auf  %2\$s bestätigt";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst.";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
-$a->strings["User not found."] = "Nutzer nicht gefunden.";
-$a->strings["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["view full size"] = "Volle Größe anzeigen";
-$a->strings[" on Last.fm"] = " bei Last.fm";
-$a->strings["Full Name:"] = "Kompletter Name:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
-$a->strings["Hometown:"] = "Heimatort:";
-$a->strings["Tags:"] = "Tags";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["About:"] = "Über:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search"] = "Suche";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Delegations"] = "Delegationen";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
-$a->strings["Admin"] = "Administration";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$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["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
-);
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["Edit Contact"] = "Kontakt bearbeiten";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
-$a->strings["Miscellaneous"] = "Verschiedenes";
-$a->strings["year"] = "Jahr";
-$a->strings["month"] = "Monat";
-$a->strings["day"] = "Tag";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["years"] = "Jahre";
-$a->strings["months"] = "Monate";
-$a->strings["week"] = "Woche";
-$a->strings["weeks"] = "Wochen";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Frequently"] = "immer wieder";
-$a->strings["Hourly"] = "Stündlich";
-$a->strings["Twice daily"] = "Zweimal täglich";
-$a->strings["Daily"] = "Täglich";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "E-Mail";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora";
-$a->strings["Statusnet"] = "StatusNet";
-$a->strings["App.net"] = "App.net";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["poked"] = "stupste";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
-$a->strings["post/item"] = "Nachricht/Beitrag";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
-$a->strings["Select"] = "Auswählen";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Repair"] = "Reparieren";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Contact Editor"] = "Kontakt Editor";
+$a->strings["Submit"] = "Senden";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["Last update:"] = "letzte Aktualisierung:";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Disabled"] = "Deaktiviert";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
+$a->strings["All Contacts"] = "Alle Kontakte";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "du bist Fan von";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Contacts"] = "Kontakte";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Finding: "] = "Funde: ";
+$a->strings["Find"] = "Finde";
+$a->strings["Update"] = "Aktualisierungen";
 $a->strings["Delete"] = "Löschen";
-$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
-$a->strings["Categories:"] = "Kategorien:";
-$a->strings["Filed under:"] = "Abgelegt unter:";
-$a->strings["%s from %s"] = "%s von %s";
-$a->strings["View in context"] = "Im Zusammenhang betrachten";
-$a->strings["Please wait"] = "Bitte warten";
-$a->strings["remove"] = "löschen";
-$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
-$a->strings["Follow Thread"] = "Folge der Unterhaltung";
-$a->strings["%s likes this."] = "%s mag das.";
-$a->strings["%s doesn't like this."] = "%s mag das nicht.";
-$a->strings["<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 link URL:"] = "Bitte gib die URL des Links ein:";
-$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
-$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
-$a->strings["Tag term:"] = "Tag:";
+$a->strings["No profile"] = "Kein Profil";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Profile"] = "Profil";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
+$a->strings["Edit Your Profile"] = "Editiere dein Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
+$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
+$a->strings["Connecting"] = "Verbindungen knüpfen";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
+$a->strings["Importing Emails"] = "Emails Importieren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
+$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
+$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
+$a->strings["Getting Help"] = "Hilfe bekommen";
+$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
+$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["or"] = "oder";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["photo"] = "Foto";
+$a->strings["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["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
-$a->strings["Delete item(s)?"] = "Einträge löschen?";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Share"] = "Teilen";
-$a->strings["Upload photo"] = "Foto hochladen";
-$a->strings["upload photo"] = "Bild hochladen";
-$a->strings["Attach file"] = "Datei anhängen";
-$a->strings["attach file"] = "Datei anhängen";
-$a->strings["Insert web link"] = "Einen Link einfügen";
-$a->strings["web link"] = "Weblink";
-$a->strings["Insert video link"] = "Video-Adresse einfügen";
-$a->strings["video link"] = "Video-Link";
-$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
-$a->strings["audio link"] = "Audio-Link";
-$a->strings["Set your location"] = "Deinen Standort festlegen";
-$a->strings["set location"] = "Ort setzen";
-$a->strings["Clear browser location"] = "Browser-Standort leeren";
-$a->strings["clear location"] = "Ort löschen";
-$a->strings["Set title"] = "Titel setzen";
-$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
-$a->strings["Permission settings"] = "Berechtigungseinstellungen";
-$a->strings["permissions"] = "Zugriffsrechte";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Public post"] = "Öffentlicher Beitrag";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Preview"] = "Vorschau";
-$a->strings["Post to Groups"] = "Poste an Gruppe";
-$a->strings["Post to Contacts"] = "Poste an Kontakte";
-$a->strings["Private post"] = "Privater Beitrag";
-$a->strings["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["No contacts"] = "Keine Kontakte";
-$a->strings["%d Contact"] = array(
-       0 => "%d Kontakt",
-       1 => "%d Kontakte",
-);
-$a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["- select -"] = "- auswählen -";
 $a->strings["Save"] = "Speichern";
-$a->strings["poke"] = "anstupsen";
-$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["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
+$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
+$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
+$a->strings["Group created."] = "Gruppe erstellt.";
+$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
 $a->strings["View Video"] = "Video ansehen";
-$a->strings["bytes"] = "Byte";
-$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["default"] = "Standard";
-$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
-$a->strings["activity"] = "Aktivität";
-$a->strings["comment"] = array(
-       0 => "Kommentar",
-       1 => "Kommentare",
-);
-$a->strings["post"] = "Beitrag";
-$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Male"] = "Männlich";
-$a->strings["Female"] = "Weiblich";
-$a->strings["Currently Male"] = "Momentan männlich";
-$a->strings["Currently Female"] = "Momentan weiblich";
-$a->strings["Mostly Male"] = "Hauptsächlich männlich";
-$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transsexuell";
-$a->strings["Hermaphrodite"] = "Hermaphrodit";
-$a->strings["Neuter"] = "Neuter";
-$a->strings["Non-specific"] = "Nicht spezifiziert";
-$a->strings["Other"] = "Andere";
-$a->strings["Undecided"] = "Unentschieden";
-$a->strings["Males"] = "Männer";
-$a->strings["Females"] = "Frauen";
-$a->strings["Gay"] = "Schwul";
-$a->strings["Lesbian"] = "Lesbisch";
-$a->strings["No Preference"] = "Keine Vorlieben";
-$a->strings["Bisexual"] = "Bisexuell";
-$a->strings["Autosexual"] = "Autosexual";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Jungfrauen";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Nonsexual";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Einsam";
-$a->strings["Available"] = "Verfügbar";
-$a->strings["Unavailable"] = "Nicht verfügbar";
-$a->strings["Has crush"] = "verknallt";
-$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";
-$a->strings["Married"] = "Verheiratet";
-$a->strings["Imaginarily married"] = "imaginär verheiratet";
-$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["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$\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\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ötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["to"] = "zu";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
-);
-$a->strings["This is you"] = "Das bist du";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["Group created."] = "Gruppe erstellt.";
-$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
-$a->strings["Group not found."] = "Gruppe nicht gefunden.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
+$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 zu etwas, das du dir leicht merken kannst).";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
+$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
+$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
+$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
+$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
+$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
+$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
+$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["View Contacts"] = "Kontakte anzeigen";
 $a->strings["Invalid request identifier."] = "Invalid request identifier.";
 $a->strings["Discard"] = "Verwerfen";
-$a->strings["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"] = "Verberge diesen Kontakt vor anderen";
 $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
 $a->strings["if applicable"] = "falls anwendbar";
 $a->strings["Approve"] = "Genehmigen";
@@ -754,6 +299,7 @@ $a->strings["Fan/Admirer"] = "Fan/Verehrer";
 $a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
 $a->strings["New Follower"] = "Neuer Bewunderer";
 $a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["Notifications"] = "Benachrichtigungen";
 $a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
 $a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
 $a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
@@ -767,350 +313,88 @@ $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["No profile"] = "Kein Profil";
-$a->strings["everybody"] = "jeder";
-$a->strings["Account"] = "Nutzerkonto";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Display"] = "Anzeige";
-$a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Connected apps"] = "Verbundene Programme";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["Remove account"] = "Konto löschen";
-$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
-$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
-$a->strings["Features updated"] = "Features aktualisiert";
-$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet.";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["Wrong password."] = "Falsches Passwort.";
-$a->strings["Password changed."] = "Passwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
-$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
-$a->strings[" Name too short."] = " Name ist zu kurz.";
-$a->strings["Wrong Password"] = "Falsches Passwort";
-$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
-$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Programm hinzufügen";
-$a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Name"] = "Name";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleiten";
-$a->strings["Icon url"] = "Icon URL";
-$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
-$a->strings["Connected Apps"] = "Verbundene Programme";
-$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Autorisierung entziehen";
-$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
-$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Features";
-$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
-$a->strings["enabled"] = "eingeschaltet";
-$a->strings["disabled"] = "ausgeschaltet";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
-$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
-$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
-$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
-$a->strings["IMAP port:"] = "IMAP-Port:";
-$a->strings["Security:"] = "Sicherheit:";
-$a->strings["None"] = "Keine";
-$a->strings["Email login name:"] = "E-Mail-Login-Name:";
-$a->strings["Email password:"] = "E-Mail-Passwort:";
-$a->strings["Reply-to address:"] = "Reply-to Adresse:";
-$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
-$a->strings["Action after import:"] = "Aktion nach Import:";
-$a->strings["Mark as seen"] = "Als gelesen markieren";
-$a->strings["Move to folder"] = "In einen Ordner verschieben";
-$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Theme:";
-$a->strings["Mobile Theme:"] = "Mobiles Theme";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
-$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
-$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
-$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
-$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
-$a->strings["Infinite scroll"] = "Endloses Scrollen";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist.";
-$a->strings["User Types"] = "Nutzer Art";
-$a->strings["Community Types"] = "Gemeinschafts Art";
-$a->strings["Normal Account Page"] = "Normales Konto";
-$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
-$a->strings["Soapbox Page"] = "Marktschreier-Konto";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
-$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
-$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
-$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
-$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
-$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
-$a->strings["No"] = "Nein";
-$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
-$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?";
-$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
-$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
-$a->strings["or"] = "oder";
-$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
-$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
-$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
-$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
-$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
-$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
-$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
-$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
-$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
-$a->strings["Account Settings"] = "Kontoeinstellungen";
-$a->strings["Password Settings"] = "Passwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
-$a->strings["Current Password:"] = "Aktuelles Passwort:";
-$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen";
-$a->strings["Password:"] = "Passwort:";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Email Address:"] = "E-Mail-Adresse:";
-$a->strings["Your Timezone:"] = "Deine Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
-$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
-$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
-$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Default Private Post"] = "Privater Standardbeitrag";
-$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
-$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
-$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
-$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
-$a->strings["accepting a friend request"] = "– du eine Kontaktanfrage akzeptierst";
-$a->strings["joining a forum/community"] = "– du einem Forum/einer Gemeinschaftsseite beitrittst";
-$a->strings["making an <em>interesting</em> profile change"] = "– du eine <em>interessante</em> Änderung an deinem Profil durchführst";
-$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
-$a->strings["You receive an introduction"] = "– du eine Kontaktanfrage erhältst";
-$a->strings["Your introductions are confirmed"] = "– eine deiner Kontaktanfragen akzeptiert wurde";
-$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
-$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst";
-$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst";
-$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst";
-$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
-$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
-$a->strings["Relocate"] = "Umziehen";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button.";
-$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["Common Friends"] = "Gemeinsame Freunde";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet",
+$a->strings["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["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Repair"] = "Reparieren";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Contact Editor"] = "Kontakt Editor";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Last update:"] = "letzte Aktualisierung:";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "du bist Fan von";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Finding: "] = "Funde: ";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["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["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Name"] = "Name";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden.";
+$a->strings["Access denied."] = "Zugriff verweigert.";
 $a->strings["People Search"] = "Personensuche";
 $a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde dich an.";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
-$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["Photos"] = "Bilder";
 $a->strings["Files"] = "Dateien";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
 $a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
-$a->strings["link"] = "Link";
-$a->strings["No contacts."] = "Keine Kontakte.";
 $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Nutzer";
+$a->strings["Plugins"] = "Plugins";
 $a->strings["Themes"] = "Themen";
 $a->strings["DB updates"] = "DB Updates";
 $a->strings["Logs"] = "Protokolle";
+$a->strings["Admin"] = "Administration";
 $a->strings["Plugin Features"] = "Plugin Features";
 $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $a->strings["Normal Account"] = "Normales Konto";
@@ -1128,7 +412,12 @@ $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Aktive Plugins";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
 $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
+$a->strings["Frequently"] = "immer wieder";
+$a->strings["Hourly"] = "Stündlich";
+$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Daily"] = "Täglich";
 $a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
 $a->strings["Closed"] = "Geschlossen";
 $a->strings["Requires approval"] = "Bedarf der Zustimmung";
@@ -1136,12 +425,15 @@ $a->strings["Open"] = "Offen";
 $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
 $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["Save Settings"] = "Einstellungen speichern";
+$a->strings["Registration"] = "Registrierung";
 $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Advanced"] = "Erweitert";
 $a->strings["Performance"] = "Performance";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
 $a->strings["Site name"] = "Seitenname";
+$a->strings["Host name"] = "Host Name";
 $a->strings["Banner/Logo"] = "Banner/Logo";
 $a->strings["Additional Info"] = "Zusätzliche Informationen";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden.";
@@ -1152,6 +444,8 @@ $a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
 $a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
 $a->strings["SSL link policy"] = "Regeln für SSL Links";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
+$a->strings["Force SSL"] = "Erzwinge SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
 $a->strings["Old style 'Share'"] = "Altes \"Teilen\" Element";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen.";
 $a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
@@ -1238,8 +532,8 @@ $a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
 $a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
 $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
 $a->strings["New base url"] = "Neue Basis-URL";
-$a->strings["Enable noscrape"] = "Noscrape aktivieren";
-$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur.";
+$a->strings["Disable noscrape"] = "Noscrape deaktivieren";
+$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur. Wird es deaktiviert, wird mehr Last auf deinem Server und den Verzichnis Servern verursacht.";
 $a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
 $a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
@@ -1254,7 +548,8 @@ $a->strings["This does not include updates prior to 1139, which did not return a
 $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
 $a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
 $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für dich angelegt.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1\$s\n\tBenutzernamename:\t%2\$s\n\tPasswort:\t%3\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite)\n\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ötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4\$s.";
+$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."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1\$s\n\tBenutzernamename:\t%2\$s\n\tPasswort:\t%3\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4\$s.";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s Benutzer geblockt/freigegeben",
        1 => "%s Benutzer geblockt/freigegeben",
@@ -1271,6 +566,7 @@ $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
 $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
 $a->strings["Request date"] = "Anfragedatum";
+$a->strings["Email"] = "E-Mail";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
 $a->strings["Deny"] = "Verwehren";
 $a->strings["Site admin"] = "Seitenadministrator";
@@ -1280,6 +576,7 @@ $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";
@@ -1308,14 +605,10 @@ $a->strings["FTP Host"] = "FTP Host";
 $a->strings["FTP Path"] = "FTP Pfad";
 $a->strings["FTP User"] = "FTP Nutzername";
 $a->strings["FTP Password"] = "FTP Passwort";
-$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
 $a->strings["Search Results For:"] = "Suchergebnisse für:";
 $a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["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";
@@ -1338,131 +631,13 @@ $a->strings["Group: "] = "Gruppe: ";
 $a->strings["Contact: "] = "Kontakt: ";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
 $a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-);
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["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 zu etwas, das du dir leicht merken kannst).";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
-$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Reset"] = "Zurücksetzen";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["Profile Match"] = "Profilübereinstimmungen";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
-$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Friends of %s"] = "Freunde von %s";
+$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
 $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
 $a->strings["l, F j"] = "l, F j";
 $a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Events"] = "Veranstaltungen";
 $a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
 $a->strings["Previous"] = "Vorherige";
 $a->strings["Next"] = "Nächste";
@@ -1475,113 +650,53 @@ $a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit i
 $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["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
-$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
-$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
-$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
-$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
-$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
-$a->strings["Mood"] = "Stimmung";
-$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und du";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
+$a->strings["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["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
-$a->strings["Likes"] = "Likes";
-$a->strings["Dislikes"] = "Dislikes";
-$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Ansichten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Wohnort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["Edit Profile Details"] = "Profil bearbeiten";
-$a->strings["Change Profile Photo"] = "Profilbild ändern";
-$a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
-$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Basic information"] = "Grundinformationen";
-$a->strings["Profile picture"] = "Profilbild";
-$a->strings["Preferences"] = "Vorlieben";
-$a->strings["Status information"] = "Status Informationen";
-$a->strings["Additional information"] = "Zusätzliche Informationen";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["Your Full Name:"] = "Dein kompletter Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
-$a->strings["Street Address:"] = "Adresse:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/Bundesstaat:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Bücher, Literatur";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
-$a->strings["Love/romance"] = "Liebe/Romantik";
-$a->strings["Work/employment"] = "Arbeit/Anstellung";
-$a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["comment"] = array(
+       0 => "Kommentar",
+       1 => "Kommentare",
+);
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["This is you"] = "Das bist du";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Preview"] = "Vorschau";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["to"] = "zu";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
 $a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
 $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
 $a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
@@ -1643,114 +758,1023 @@ $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["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["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["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["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
-$a->strings["Edit Your Profile"] = "Editiere dein Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
-$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
-$a->strings["Connecting"] = "Verbindungen knüpfen";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
-$a->strings["Importing Emails"] = "Emails Importieren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
-$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
-$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
-$a->strings["Getting Help"] = "Hilfe bekommen";
-$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = "\nHallo $[username],\n\ndein Passwort wurde wie angefordert geändert. Bitte bewahre diese Informationen auf (oder ändere dein Passwort augenblicklich in etwas an das du dir merken kannst).";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["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["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
-$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
-$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
-$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
-$a->strings["Upload File:"] = "Datei hochladen:";
-$a->strings["Select a profile:"] = "Profil auswählen:";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
-$a->strings["Crop Image"] = "Bild zurechtschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
-$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
-$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
-$a->strings["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["link"] = "Link";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["everybody"] = "jeder";
+$a->strings["Additional features"] = "Zusätzliche Features";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Delegations"] = "Delegationen";
+$a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["Remove account"] = "Konto löschen";
+$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
+$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
+$a->strings["Features updated"] = "Features aktualisiert";
+$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet.";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
+$a->strings["Wrong password."] = "Falsches Passwort.";
+$a->strings["Password changed."] = "Passwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
+$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
+$a->strings[" Name too short."] = " Name ist zu kurz.";
+$a->strings["Wrong Password"] = "Falsches Passwort";
+$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
+$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleiten";
+$a->strings["Icon url"] = "Icon URL";
+$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
+$a->strings["Connected Apps"] = "Verbundene Programme";
+$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Autorisierung entziehen";
+$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
+$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Features";
+$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["enabled"] = "eingeschaltet";
+$a->strings["disabled"] = "ausgeschaltet";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
+$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
+$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
+$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
+$a->strings["IMAP port:"] = "IMAP-Port:";
+$a->strings["Security:"] = "Sicherheit:";
+$a->strings["None"] = "Keine";
+$a->strings["Email login name:"] = "E-Mail-Login-Name:";
+$a->strings["Email password:"] = "E-Mail-Passwort:";
+$a->strings["Reply-to address:"] = "Reply-to Adresse:";
+$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
+$a->strings["Action after import:"] = "Aktion nach Import:";
+$a->strings["Mark as seen"] = "Als gelesen markieren";
+$a->strings["Move to folder"] = "In einen Ordner verschieben";
+$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Theme:";
+$a->strings["Mobile Theme:"] = "Mobiles Theme";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
+$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
+$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
+$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
+$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
+$a->strings["Infinite scroll"] = "Endloses Scrollen";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist.";
+$a->strings["User Types"] = "Nutzer Art";
+$a->strings["Community Types"] = "Gemeinschafts Art";
+$a->strings["Normal Account Page"] = "Normales Konto";
+$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
+$a->strings["Soapbox Page"] = "Marktschreier-Konto";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
+$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
+$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
+$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
+$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
+$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
+$a->strings["No"] = "Nein";
+$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
+$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich";
+$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?";
+$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
+$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
+$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
+$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
+$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
+$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
+$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
+$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
+$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
+$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
+$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
+$a->strings["Account Settings"] = "Kontoeinstellungen";
+$a->strings["Password Settings"] = "Passwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
+$a->strings["Current Password:"] = "Aktuelles Passwort:";
+$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen";
+$a->strings["Password:"] = "Passwort:";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Full Name:"] = "Kompletter Name:";
+$a->strings["Email Address:"] = "E-Mail-Adresse:";
+$a->strings["Your Timezone:"] = "Deine Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
+$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
+$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
+$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Default Private Post"] = "Privater Standardbeitrag";
+$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
+$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
+$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
+$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
+$a->strings["accepting a friend request"] = "– du eine Kontaktanfrage akzeptierst";
+$a->strings["joining a forum/community"] = "– du einem Forum/einer Gemeinschaftsseite beitrittst";
+$a->strings["making an <em>interesting</em> profile change"] = "– du eine <em>interessante</em> Änderung an deinem Profil durchführst";
+$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
+$a->strings["You receive an introduction"] = "– du eine Kontaktanfrage erhältst";
+$a->strings["Your introductions are confirmed"] = "– eine deiner Kontaktanfragen akzeptiert wurde";
+$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
+$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst";
+$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst";
+$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst";
+$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
+$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
+$a->strings["Relocate"] = "Umziehen";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button.";
+$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
+$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Search"] = "Suche";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Common Friends"] = "Gemeinsame Freunde";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
+$a->strings["Mood"] = "Stimmung";
+$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Dislikes";
+$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Ansichten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Wohnort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings[" and "] = " und ";
+$a->strings["public profile"] = "öffentliches Profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
+$a->strings["Edit Profile Details"] = "Profil bearbeiten";
+$a->strings["Change Profile Photo"] = "Profilbild ändern";
+$a->strings["View this profile"] = "Dieses Profil anzeigen";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
+$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Basic information"] = "Grundinformationen";
+$a->strings["Profile picture"] = "Profilbild";
+$a->strings["Preferences"] = "Vorlieben";
+$a->strings["Status information"] = "Status Informationen";
+$a->strings["Additional information"] = "Zusätzliche Informationen";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["Your Full Name:"] = "Dein kompletter Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
+$a->strings["Street Address:"] = "Adresse:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
+$a->strings["Homepage URL:"] = "Adresse der Homepage:";
+$a->strings["Hometown:"] = "Heimatort:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
+$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
+$a->strings["Likes:"] = "Likes:";
+$a->strings["Dislikes:"] = "Dislikes:";
+$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Bücher, Literatur";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
+$a->strings["Love/romance"] = "Liebe/Romantik";
+$a->strings["Work/employment"] = "Arbeit/Anstellung";
+$a->strings["School/education"] = "Schule/Ausbildung";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["upload photo"] = "Bild hochladen";
+$a->strings["Attach file"] = "Datei anhängen";
+$a->strings["attach file"] = "Datei anhängen";
+$a->strings["web link"] = "Weblink";
+$a->strings["Insert video link"] = "Video-Adresse einfügen";
+$a->strings["video link"] = "Video-Link";
+$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
+$a->strings["audio link"] = "Audio-Link";
+$a->strings["Set your location"] = "Deinen Standort festlegen";
+$a->strings["set location"] = "Ort setzen";
+$a->strings["Clear browser location"] = "Browser-Standort leeren";
+$a->strings["clear location"] = "Ort löschen";
+$a->strings["Permission settings"] = "Berechtigungseinstellungen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Public post"] = "Öffentlicher Beitrag";
+$a->strings["Set title"] = "Titel setzen";
+$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = array(
+       0 => "%d Nachricht gesendet.",
+       1 => "%d Nachrichten gesendet.",
+);
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Share"] = "Teilen";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde dich an.";
+$a->strings["Move account"] = "Account umziehen";
+$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
+$a->strings["terms of service"] = "Nutzungsbedingungen";
+$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
+$a->strings["privacy policy"] = "Datenschutzerklärung";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Message"] = "Nachricht";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["Network:"] = "Netzwerk";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
+$a->strings["[No description]"] = "[keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["Categories:"] = "Kategorien:";
+$a->strings["Filed under:"] = "Abgelegt unter:";
+$a->strings["via"] = "via";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
+$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Saved Folders"] = "Gespeicherte Ordner";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["following"] = "folgen";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["year"] = "Jahr";
+$a->strings["month"] = "Monat";
+$a->strings["day"] = "Tag";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["years"] = "Jahre";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["show"] = "zeigen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Poke"] = "Anstupsen";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["Edit Contact"] = "Kontakt bearbeiten";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Welcome "] = "Willkommen ";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
+$a->strings["event"] = "Veranstaltung";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["poked"] = "stupste";
+$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["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["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["No contacts"] = "Keine Kontakte";
+$a->strings["%d Contact"] = array(
+       0 => "%d Kontakt",
+       1 => "%d Kontakte",
+);
+$a->strings["poke"] = "anstupsen";
+$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["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora";
+$a->strings["Statusnet"] = "StatusNet";
+$a->strings["App.net"] = "App.net";
+$a->strings[" on Last.fm"] = " bei Last.fm";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Tags:"] = "Tags";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Literatur/Bücher:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebesleben:";
+$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
+$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["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";
+$a->strings["Currently Female"] = "Momentan weiblich";
+$a->strings["Mostly Male"] = "Hauptsächlich männlich";
+$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transsexuell";
+$a->strings["Hermaphrodite"] = "Hermaphrodit";
+$a->strings["Neuter"] = "Neuter";
+$a->strings["Non-specific"] = "Nicht spezifiziert";
+$a->strings["Other"] = "Andere";
+$a->strings["Undecided"] = "Unentschieden";
+$a->strings["Males"] = "Männer";
+$a->strings["Females"] = "Frauen";
+$a->strings["Gay"] = "Schwul";
+$a->strings["Lesbian"] = "Lesbisch";
+$a->strings["No Preference"] = "Keine Vorlieben";
+$a->strings["Bisexual"] = "Bisexuell";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Jungfrauen";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Nonsexual";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Einsam";
+$a->strings["Available"] = "Verfügbar";
+$a->strings["Unavailable"] = "Nicht verfügbar";
+$a->strings["Has crush"] = "verknallt";
+$a->strings["Infatuated"] = "verliebt";
+$a->strings["Dating"] = "Dating";
+$a->strings["Unfaithful"] = "Untreu";
+$a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Verlobt";
+$a->strings["Married"] = "Verheiratet";
+$a->strings["Imaginarily married"] = "imaginär verheiratet";
+$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["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
+$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit dir";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat deine Kontaktanfrage auf  %2\$s bestätigt";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
+);
+$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
+$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
+$a->strings["Set theme width"] = "Theme Breite festlegen";
+$a->strings["Color scheme"] = "Farbschema";
+$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
+$a->strings["Set colour scheme"] = "Farbschema wählen";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Mitte";
+$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
+$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
+$a->strings["Set color scheme"] = "Wähle Farbschema";
+$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Community Profiles"] = "Community-Profile";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["Find Friends"] = "Freunde finden";
+$a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Last photos"] = "Letzte Fotos";
+$a->strings["Last likes"] = "Zuletzt gemocht";
+$a->strings["Your contacts"] = "Deine Kontakte";
+$a->strings["Your personal photos"] = "Deine privaten Fotos";
+$a->strings["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
+$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
+$a->strings["Set style"] = "Stil auswählen";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variationen";
index 593c174ce7219d02efcfac1affb61bae0120206d..cebd06869e71572334e87ee06f37168e830f7e65 100644 (file)
@@ -16,8 +16,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-10-22 10:05+0200\n"
-"PO-Revision-Date: 2015-01-02 00:18+0000\n"
+"POT-Creation-Date: 2015-01-22 17:30+0100\n"
+"PO-Revision-Date: 2015-01-23 11:48+0000\n"
 "Last-Translator: Sylvain Lagacé\n"
 "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -26,754 +26,722 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Cette entrée à été édité"
+#: ../../mod/contacts.php:107
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contact édité"
+msgstr[1] "%d contacts édités."
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1357
-#: ../../mod/content.php:620
-msgid "Private Message"
-msgstr "Message privé"
+#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder à l'enregistrement du contact."
 
-#: ../../object/Item.php:120 ../../mod/settings.php:673
-#: ../../mod/content.php:728
-msgid "Edit"
-msgstr "Éditer"
+#: ../../mod/contacts.php:152
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil séléctionné."
 
-#: ../../object/Item.php:129 ../../mod/photos.php:1651
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Sélectionner"
+#: ../../mod/contacts.php:185
+msgid "Contact updated."
+msgstr "Contact mis-à-jour."
 
-#: ../../object/Item.php:130 ../../mod/admin.php:970 ../../mod/photos.php:1652
-#: ../../mod/contacts.php:709 ../../mod/settings.php:674
-#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Supprimer"
+#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Échec de mise-à-jour du contact."
 
-#: ../../object/Item.php:133 ../../mod/content.php:763
-msgid "save to folder"
-msgstr "sauver vers dossier"
+#: ../../mod/contacts.php:253 ../../mod/manage.php:96
+#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
+#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
+#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
+#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/crepair.php:119
+#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
+#: ../../mod/events.php:140 ../../mod/install.php:151
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
+#: ../../mod/settings.php:596 ../../mod/settings.php:601
+#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
+#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
+#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
+#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
+msgid "Permission denied."
+msgstr "Permission refusée."
 
-#: ../../object/Item.php:195 ../../mod/content.php:753
-msgid "add star"
-msgstr "mett en avant"
+#: ../../mod/contacts.php:286
+msgid "Contact has been blocked"
+msgstr "Le contact a été bloqué"
 
-#: ../../object/Item.php:196 ../../mod/content.php:754
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: ../../mod/contacts.php:286
+msgid "Contact has been unblocked"
+msgstr "Le contact n'est plus bloqué"
 
-#: ../../object/Item.php:197 ../../mod/content.php:755
-msgid "toggle star status"
-msgstr "mettre en avant"
+#: ../../mod/contacts.php:297
+msgid "Contact has been ignored"
+msgstr "Le contact a été ignoré"
 
-#: ../../object/Item.php:200 ../../mod/content.php:758
-msgid "starred"
-msgstr "mis en avant"
+#: ../../mod/contacts.php:297
+msgid "Contact has been unignored"
+msgstr "Le contact n'est plus ignoré"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorer le fil"
+#: ../../mod/contacts.php:309
+msgid "Contact has been archived"
+msgstr "Contact archivé"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Ne plus ignorer le fil"
+#: ../../mod/contacts.php:309
+msgid "Contact has been unarchived"
+msgstr "Contact désarchivé"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignorer le statut"
+#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
+msgid "Do you really want to delete this contact?"
+msgstr "Voulez-vous vraiment supprimer ce contact?"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignoré"
+#: ../../mod/contacts.php:336 ../../mod/message.php:209
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:233 ../../mod/suggest.php:29
+#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
+#: ../../include/items.php:4528
+msgid "Yes"
+msgstr "Oui"
 
-#: ../../object/Item.php:220 ../../mod/content.php:759
-msgid "add tag"
-msgstr "ajouter une étiquette"
+#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
+#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../include/conversation.php:1129 ../../include/items.php:4531
+msgid "Cancel"
+msgstr "Annuler"
 
-#: ../../object/Item.php:231 ../../mod/photos.php:1540
-#: ../../mod/content.php:684
-msgid "I like this (toggle)"
-msgstr "J'aime (bascule)"
+#: ../../mod/contacts.php:351
+msgid "Contact has been removed."
+msgstr "Ce contact a été retiré."
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
-msgid "like"
-msgstr "aime"
+#: ../../mod/contacts.php:389
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Vous êtes ami (et réciproquement) avec %s"
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1541
-#: ../../mod/content.php:685
-msgid "I don't like this (toggle)"
-msgstr "Je n'aime pas (bascule)"
+#: ../../mod/contacts.php:393
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Vous partagez avec %s"
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
-msgid "dislike"
-msgstr "n'aime pas"
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s partage avec vous"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
-msgid "Share this"
-msgstr "Partager"
+#: ../../mod/contacts.php:415
+msgid "Private communications are not available for this contact."
+msgstr "Les communications privées ne sont pas disponibles pour ce contact."
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
-msgid "share"
-msgstr "partager"
+#: ../../mod/contacts.php:418 ../../mod/admin.php:546
+msgid "Never"
+msgstr "Jamais"
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Catégories:"
+#: ../../mod/contacts.php:422
+msgid "(Update was successful)"
+msgstr "(Mise à jour effectuée avec succès)"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Rangé sous:"
+#: ../../mod/contacts.php:422
+msgid "(Update was not successful)"
+msgstr "(Mise à jour échouée)"
 
-#: ../../object/Item.php:326 ../../object/Item.php:327
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../include/conversation.php:654
+#: ../../mod/contacts.php:424
+msgid "Suggest friends"
+msgstr "Suggérer amitié/contact"
+
+#: ../../mod/contacts.php:428
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
+msgid "Network type: %s"
+msgstr "Type de réseau %s"
 
-#: ../../object/Item.php:328 ../../mod/content.php:854
-msgid "to"
-msgstr "à"
+#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact en commun"
+msgstr[1] "%d contacts en commun"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/contacts.php:436
+msgid "View all contacts"
+msgstr "Voir tous les contacts"
 
-#: ../../object/Item.php:330 ../../mod/content.php:855
-msgid "Wall-to-Wall"
-msgstr "Inter-mur"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:981
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: ../../object/Item.php:331 ../../mod/content.php:856
-msgid "via Wall-To-Wall:"
-msgstr "en Inter-mur:"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:980
+msgid "Block"
+msgstr "Bloquer"
 
-#: ../../object/Item.php:340 ../../mod/content.php:481
-#: ../../mod/content.php:864 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: ../../mod/contacts.php:444
+msgid "Toggle Blocked status"
+msgstr "(dés)activer l'état \"bloqué\""
 
-#: ../../object/Item.php:361 ../../object/Item.php:677
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
-#: ../../mod/photos.php:1694 ../../mod/content.php:709 ../../boot.php:724
-msgid "Comment"
-msgstr "Commenter"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: ../../object/Item.php:364 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../mod/editpost.php:124
-#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1543
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Patientez"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../object/Item.php:387 ../../mod/content.php:603
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commentaire"
-msgstr[1] "%d commentaires"
+#: ../../mod/contacts.php:450
+msgid "Toggle Ignored status"
+msgstr "(dés)activer l'état \"ignoré\""
 
-#: ../../object/Item.php:389 ../../object/Item.php:402
-#: ../../mod/content.php:605 ../../include/text.php:1969
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commentaire"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Unarchive"
+msgstr "Désarchiver"
 
-#: ../../object/Item.php:390 ../../mod/content.php:606 ../../boot.php:725
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "montrer plus"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Archive"
+msgstr "Archiver"
 
-#: ../../object/Item.php:675 ../../mod/photos.php:1560
-#: ../../mod/photos.php:1604 ../../mod/photos.php:1692
-#: ../../mod/content.php:707
-msgid "This is you"
-msgstr "C'est vous"
+#: ../../mod/contacts.php:457
+msgid "Toggle Archive status"
+msgstr "(dés)activer l'état \"archivé\""
 
-#: ../../object/Item.php:678 ../../mod/fsuggest.php:107
-#: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/events.php:478 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1205 ../../mod/photos.php:1512
-#: ../../mod/photos.php:1563 ../../mod/photos.php:1607
-#: ../../mod/photos.php:1695 ../../mod/contacts.php:470
-#: ../../mod/invite.php:140 ../../mod/profiles.php:645
-#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/content.php:710 ../../mod/mood.php:137 ../../mod/crepair.php:181
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:52
-#: ../../view/theme/dispy/config.php:70
-#: ../../view/theme/duepuntozero/config.php:59
-#: ../../view/theme/quattro/config.php:64
+#: ../../mod/contacts.php:460
+msgid "Repair"
+msgstr "Réparer"
+
+#: ../../mod/contacts.php:463
+msgid "Advanced Contact Settings"
+msgstr "Réglages avancés du contact"
+
+#: ../../mod/contacts.php:469
+msgid "Communications lost with this contact!"
+msgstr "Communications perdues avec ce contact !"
+
+#: ../../mod/contacts.php:472
+msgid "Contact Editor"
+msgstr "Éditeur de contact"
+
+#: ../../mod/contacts.php:474 ../../mod/manage.php:110
+#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
+#: ../../mod/message.php:564 ../../mod/crepair.php:186
+#: ../../mod/events.php:478 ../../mod/content.php:710
+#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
+#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
+#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../object/Item.php:678
 #: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/duepuntozero/config.php:59
 msgid "Submit"
 msgstr "Envoyer"
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
-msgid "Bold"
-msgstr "Gras"
+#: ../../mod/contacts.php:475
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
-msgid "Italic"
-msgstr "Italique"
+#: ../../mod/contacts.php:476
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
-msgid "Underline"
-msgstr "Souligné"
+#: ../../mod/contacts.php:477
+msgid "Contact Information / Notes"
+msgstr "Informations de contact / Notes"
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
-msgid "Quote"
-msgstr "Citation"
+#: ../../mod/contacts.php:478
+msgid "Edit contact notes"
+msgstr "Éditer les notes des contacts"
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
-msgid "Code"
-msgstr "Code"
+#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
+#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
-msgid "Image"
-msgstr "Image"
+#: ../../mod/contacts.php:484
+msgid "Block/Unblock contact"
+msgstr "Bloquer/débloquer ce contact"
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
-msgid "Link"
-msgstr "Lien"
+#: ../../mod/contacts.php:485
+msgid "Ignore contact"
+msgstr "Ignorer ce contact"
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
-msgid "Video"
-msgstr "Vidéo"
+#: ../../mod/contacts.php:486
+msgid "Repair URL settings"
+msgstr "Réglages de réparation des URL"
 
-#: ../../object/Item.php:687 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1564 ../../mod/photos.php:1608
-#: ../../mod/photos.php:1696 ../../mod/content.php:719
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Aperçu"
+#: ../../mod/contacts.php:487
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: ../../index.php:205 ../../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:489
+msgid "Delete contact"
+msgstr "Effacer ce contact"
 
-#: ../../index.php:249 ../../mod/help.php:90
-msgid "Not Found"
-msgstr "Non trouvé"
+#: ../../mod/contacts.php:493
+msgid "Last update:"
+msgstr "Dernière mise-à-jour :"
 
-#: ../../index.php:252 ../../mod/help.php:93
-msgid "Page not found."
-msgstr "Page introuvable."
+#: ../../mod/contacts.php:495
+msgid "Update public posts"
+msgstr "Mettre à jour les publications publiques:"
 
-#: ../../index.php:361 ../../mod/profperm.php:19 ../../mod/group.php:72
-msgid "Permission denied"
-msgstr "Permission refusée"
+#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
+msgid "Update now"
+msgstr "Mettre à jour"
 
-#: ../../index.php:362 ../../mod/fsuggest.php:78 ../../mod/files.php:170
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/editpost.php:10
-#: ../../mod/dfrn_confirm.php:55 ../../mod/events.php:140
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1050
-#: ../../mod/register.php:42 ../../mod/attach.php:33
-#: ../../mod/contacts.php:249 ../../mod/follow.php:9 ../../mod/uimport.php:23
-#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
-#: ../../mod/settings.php:102 ../../mod/settings.php:593
-#: ../../mod/settings.php:598 ../../mod/display.php:455
-#: ../../mod/profiles.php:148 ../../mod/profiles.php:577
-#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
-#: ../../mod/manage.php:96 ../../mod/delegate.php:12
-#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:110
-#: ../../mod/item.php:149 ../../mod/item.php:165 ../../mod/mood.php:114
-#: ../../mod/network.php:4 ../../mod/crepair.php:119
-#: ../../include/items.php:4575
-msgid "Permission denied."
-msgstr "Permission refusée."
+#: ../../mod/contacts.php:504
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: ../../index.php:421
-msgid "toggle mobile"
-msgstr "activ. mobile"
+#: ../../mod/contacts.php:505
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
-msgstr "[contenu incorporé - rechargez la page pour le voir]"
+#: ../../mod/contacts.php:506
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "Contact introuvable."
+#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Cacher ce contact aux autres"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
+#: ../../mod/contacts.php:507
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
+#: ../../mod/contacts.php:508
+msgid "Notification for new posts"
+msgstr "Notification des nouvelles publications"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
+#: ../../mod/contacts.php:508
+msgid "Send a notification of every new post of this contact"
+msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Cette introduction a déjà été acceptée."
+#: ../../mod/contacts.php:509
+msgid "Fetch further information for feeds"
+msgstr "Chercher plus d'informations pour les flux"
 
-#: ../../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/contacts.php:510
+msgid "Disabled"
+msgstr "Désactivé"
 
-#: ../../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/contacts.php:510
+msgid "Fetch information"
+msgstr ""
 
-#: ../../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:510
+msgid "Fetch information and keywords"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%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:512
+msgid "Blacklisted keywords"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Phase d'introduction achevée."
+#: ../../mod/contacts.php:512
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: ../../mod/contacts.php:563
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: ../../mod/contacts.php:566
+msgid "Suggest potential friends"
+msgstr "Suggérer des amis potentiels"
 
-#: ../../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:569 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Tous les contacts"
 
-#: ../../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:572
+msgid "Show all contacts"
+msgstr "Montrer tous les contacts"
 
-#: ../../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:575
+msgid "Unblocked"
+msgstr "Non-bloqués"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: ../../mod/contacts.php:578
+msgid "Only show unblocked contacts"
+msgstr "Ne montrer que les contacts non-bloqués"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Adresse courriel invalide."
+#: ../../mod/contacts.php:582
+msgid "Blocked"
+msgstr "Bloqués"
 
-#: ../../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:585
+msgid "Only show blocked contacts"
+msgstr "Ne montrer que les contacts bloqués"
 
-#: ../../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:589
+msgid "Ignored"
+msgstr "Ignorés"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: ../../mod/contacts.php:592
+msgid "Only show ignored contacts"
+msgstr "Ne montrer que les contacts ignorés"
 
-#: ../../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/contacts.php:596
+msgid "Archived"
+msgstr "Archivés"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: ../../mod/contacts.php:599
+msgid "Only show archived contacts"
+msgstr "Ne montrer que les contacts archivés"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: ../../mod/contacts.php:603
+msgid "Hidden"
+msgstr "Cachés"
 
-#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:183
-msgid "Failed to update contact record."
-msgstr "Échec de mise-à-jour du contact."
+#: ../../mod/contacts.php:606
+msgid "Only show hidden contacts"
+msgstr "Ne montrer que les contacts masqués"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Votre introduction a été envoyée."
+#: ../../mod/contacts.php:654
+msgid "Mutual Friendship"
+msgstr "Relation réciproque"
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: ../../mod/contacts.php:658
+msgid "is a fan of yours"
+msgstr "Vous suit"
 
-#: ../../mod/dfrn_request.php:664
-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:662
+msgid "you are a fan of"
+msgstr "Vous le/la suivez"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Hide this contact"
-msgstr "Cacher ce contact"
+#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Éditer le contact"
 
-#: ../../mod/dfrn_request.php:678
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+#: ../../mod/contacts.php:701 ../../include/nav.php:175
+#: ../../view/theme/diabook/theme.php:125
+msgid "Contacts"
+msgstr "Contacts"
 
-#: ../../mod/dfrn_request.php:679
-#, 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:705
+msgid "Search your contacts"
+msgstr "Rechercher dans vos contacts"
 
-#: ../../mod/dfrn_request.php:680
-msgid "Confirm"
-msgstr "Confirmer"
+#: ../../mod/contacts.php:706 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Trouvé: "
 
-#: ../../mod/dfrn_request.php:721 ../../mod/dfrn_confirm.php:752
-#: ../../include/items.php:3881
-msgid "[Name Withheld]"
-msgstr "[Nom non-publié]"
+#: ../../mod/contacts.php:707 ../../mod/directory.php:63
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Trouver"
 
-#: ../../mod/dfrn_request.php:766 ../../mod/photos.php:920
-#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:180
-#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
-#: ../../mod/directory.php:33
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../mod/contacts.php:712 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
+msgstr "Mises-à-jour"
 
-#: ../../mod/dfrn_request.php:808
-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:716 ../../mod/group.php:171 ../../mod/admin.php:979
+#: ../../mod/content.php:438 ../../mod/content.php:741
+#: ../../mod/settings.php:677 ../../mod/photos.php:1654
+#: ../../object/Item.php:130 ../../include/conversation.php:614
+msgid "Delete"
+msgstr "Supprimer"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "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/hcard.php:10
+msgid "No profile"
+msgstr "Aucun profil"
 
-#: ../../mod/dfrn_request.php:831
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gérer les identités et/ou les pages"
 
-#: ../../mod/dfrn_request.php:832
+#: ../../mod/manage.php:107
 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"
+"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/dfrn_request.php:833
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit:"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Choisir une identité à gérer: "
 
-#: ../../mod/dfrn_request.php:834
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publication réussie."
 
-#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106
-#: ../../mod/register.php:234 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1013 ../../mod/settings.php:1021
-#: ../../mod/settings.php:1025 ../../mod/settings.php:1030
-#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
-#: ../../mod/settings.php:1048 ../../mod/settings.php:1078
-#: ../../mod/settings.php:1079 ../../mod/settings.php:1080
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/profiles.php:620 ../../mod/profiles.php:624
-msgid "No"
-msgstr "Non"
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
+msgid "Permission denied"
+msgstr "Permission refusée"
 
-#: ../../mod/dfrn_request.php:834 ../../mod/message.php:209
-#: ../../mod/api.php:105 ../../mod/register.php:233 ../../mod/contacts.php:332
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1013
-#: ../../mod/settings.php:1021 ../../mod/settings.php:1025
-#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
-#: ../../mod/settings.php:1042 ../../mod/settings.php:1048
-#: ../../mod/settings.php:1078 ../../mod/settings.php:1079
-#: ../../mod/settings.php:1080 ../../mod/settings.php:1081
-#: ../../mod/settings.php:1082 ../../mod/profiles.php:620
-#: ../../mod/profiles.php:623 ../../mod/suggest.php:29
-#: ../../include/items.php:4420
-msgid "Yes"
-msgstr "Oui"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle:"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Éditer la visibilité du profil"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:733
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/dfrn_request.php:843
-#, 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/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité:"
-
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
-#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
-#: ../../mod/photos.php:292 ../../mod/contacts.php:335 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/settings.php:612
-#: ../../mod/settings.php:638 ../../mod/suggest.php:32
-#: ../../include/items.php:4423 ../../include/conversation.php:1129
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tous les contacts (ayant un accès sécurisé)"
 
-#: ../../mod/files.php:156 ../../mod/videos.php:301
-#: ../../include/text.php:1402
-msgid "View Video"
-msgstr "Regarder la vidéo"
+#: ../../mod/display.php:70 ../../mod/display.php:260
+#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
+#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
+#: ../../include/items.php:4487
+msgid "Item not found."
+msgstr "Élément introuvable."
 
-#: ../../mod/profile.php:21 ../../boot.php:1432
-msgid "Requested profile is not available."
-msgstr "Le profil demandé n'est pas disponible."
+#: ../../mod/display.php:200 ../../mod/videos.php:115
+#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
+#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
+#: ../../mod/directory.php:33 ../../mod/photos.php:920
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: ../../mod/profile.php:155 ../../mod/display.php:288
+#: ../../mod/display.php:308 ../../mod/profile.php:155
 msgid "Access to this profile has been restricted."
 msgstr "L'accès au profil a été restreint."
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux venus"
-
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: ../../mod/display.php:472
+msgid "Item has been removed."
+msgstr "Cet élément a été enlevé."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Rejeter"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bienvenue sur Friendica"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:443
-#: ../../mod/contacts.php:497 ../../mod/contacts.php:707
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist du nouvel utilisateur"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Système"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:143
-msgid "Network"
-msgstr "Réseau"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Bien démarrer"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:365
-msgid "Personal"
-msgstr "Personnel"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica pas-à-pas"
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
-#: ../../include/nav.php:105 ../../include/nav.php:146
-msgid "Home"
-msgstr "Profil"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:152
-msgid "Introductions"
-msgstr "Introductions"
+#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
+#: ../../mod/admin.php:1297 ../../mod/settings.php:85
+#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648
+msgid "Settings"
+msgstr "Réglages"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Éditer vos Réglages"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Type de notification: "
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Suggestion d'amitié/contact"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+#: ../../mod/profiles.php:665
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:503
-msgid "Hide this contact from others"
-msgstr "Cacher ce contact aux autres"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Éditer votre Profil"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Poster une nouvelle avtivité d'ami"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "si possible"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Mots-clés du profil"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:968
-msgid "Approve"
-msgstr "Approuver"
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez: "
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Connexions"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "oui"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "non"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Approuver en tant que: "
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Ami"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importer courriels"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Admirateur"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Consulter vos Contacts"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Demande de connexion/relation"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nouvel abonné"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Consulter l'Annuaire de votre Site"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Aucune demande d'introduction."
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:153
-msgid "Notifications"
-msgstr "Notifications"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trouver de nouvelles personnes"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s a aimé la publication de %s"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la publication de %s"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Groupes"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s est désormais ami(e) avec %s"
-
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a créé une nouvelle publication"
-
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s a commenté la publication de %s"
-
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Aucune notification du réseau."
-
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Notifications du réseau"
-
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Pas plus de notifications système."
-
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notifications du système"
-
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Aucun notification personnelle."
-
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Notifications personnelles"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grouper vos contacts"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Aucune notification de la page d'accueil."
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Notifications de page d'accueil"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Pourquoi mes éléments ne sont pas publics?"
 
-#: ../../mod/like.php:149 ../../mod/tagger.php:62 ../../mod/subthread.php:87
-#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1965
-#: ../../include/diaspora.php:1919 ../../include/conversation.php:126
-#: ../../include/conversation.php:254
-msgid "photo"
-msgstr "photo"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
 
-#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/tagger.php:62
-#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-msgid "status"
-msgstr "le statut"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtenir de l'aide"
 
-#: ../../mod/like.php:166 ../../view/theme/diabook/theme.php:480
-#: ../../include/diaspora.php:1935 ../../include/conversation.php:137
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Aller à la section Aide"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s n'aime pas %3$s de %2$s"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
 
 #: ../../mod/openid.php:24
 msgid "OpenID protocol error. No ID returned."
@@ -789,2751 +757,2812 @@ msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce
 msgid "Login failed."
 msgstr "Échec de connexion."
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texte source (bbcode) :"
-
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texte source (Diaspora) à convertir en BBcode :"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Image envoyée, mais impossible de la retailler."
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Source input: "
+#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
+#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
+#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../view/theme/diabook/theme.php:500
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML brut)"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Réduction de la taille de l'image [%s] échouée."
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../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."
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "L'image dépasse la taille limite de %d"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
+#: ../../mod/photos.php:807
+msgid "Unable to process image."
+msgstr "Impossible de traiter l'image."
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Fichier à téléverser:"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Choisir un profil:"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Texte source (format Diaspora) :"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Téléverser"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb :"
+#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvés."
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "ignorer cette étape"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:589
-msgid "Site"
-msgstr "Site"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "choisissez une photo depuis vos albums"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:961 ../../mod/admin.php:976
-msgid "Users"
-msgstr "Utilisateurs"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "(Re)cadrer l'image"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1065 ../../mod/admin.php:1118
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Extensions"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1286 ../../mod/admin.php:1320
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Édition terminée"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Mise-à-jour de la base"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1407
-msgid "Logs"
-msgstr "Journaux"
+#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
+#: ../../mod/photos.php:834
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
 
-#: ../../mod/admin.php:128 ../../include/nav.php:182
-msgid "Admin"
-msgstr "Admin"
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1965 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:471
+msgid "photo"
+msgstr "photo"
 
-#: ../../mod/admin.php:129
-msgid "Plugin Features"
-msgstr "Propriétés des extensions"
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../mod/like.php:319 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475
+msgid "status"
+msgstr "le statut"
 
-#: ../../mod/admin.php:131
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente de confirmation"
+#: ../../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"
 
-#: ../../mod/admin.php:166 ../../mod/admin.php:1015 ../../mod/admin.php:1228
-#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240
-#: ../../mod/display.php:459 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4379
-msgid "Item not found."
-msgstr "Élément introuvable."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette supprimée"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:915
-msgid "Normal Account"
-msgstr "Compte normal"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Enlever l'étiquette de l'élément"
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:916
-msgid "Soapbox Account"
-msgstr "Compte \"boîte à savon\""
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Sélectionner une étiquette à supprimer: "
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:917
-msgid "Community/Celebrity Account"
-msgstr "Compte de communauté/célébrité"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:918
-msgid "Automatic Friend Account"
-msgstr "Compte auto-amical"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
+msgstr "Sauver dans le Dossier:"
 
-#: ../../mod/admin.php:194
-msgid "Blog Account"
-msgstr "Compte de blog"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- choisir -"
 
-#: ../../mod/admin.php:195
-msgid "Private Forum"
-msgstr "Forum privé"
+#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
+#: ../../include/text.php:955
+msgid "Save"
+msgstr "Sauver"
 
-#: ../../mod/admin.php:214
-msgid "Message queues"
-msgstr "Files d'attente des messages"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact ajouté"
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:588 ../../mod/admin.php:960
-#: ../../mod/admin.php:1064 ../../mod/admin.php:1117 ../../mod/admin.php:1285
-#: ../../mod/admin.php:1319 ../../mod/admin.php:1406
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication originale."
 
-#: ../../mod/admin.php:220
-msgid "Summary"
-msgstr "Résumé"
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Publication vide rejetée."
 
-#: ../../mod/admin.php:222
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
+#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Photos du mur"
 
-#: ../../mod/admin.php:224
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvée."
 
-#: ../../mod/admin.php:225
-msgid "Version"
-msgstr "Versio"
+#: ../../mod/item.php:964
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
 
-#: ../../mod/admin.php:229
-msgid "Active plugins"
-msgstr "Extensions activés"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: ../../mod/admin.php:252
-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/item.php:967
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
 
-#: ../../mod/admin.php:496
-msgid "Site settings updated."
-msgstr "Réglages du site mis-à-jour."
+#: ../../mod/item.php:971
+#, php-format
+msgid "%s posted an update."
+msgstr "%s a publié une mise à jour."
 
-#: ../../mod/admin.php:525 ../../mod/settings.php:825
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème particulier pour les terminaux mobiles"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Groupe créé."
 
-#: ../../mod/admin.php:542 ../../mod/contacts.php:414
-msgid "Never"
-msgstr "Jamais"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossible de créer le groupe."
 
-#: ../../mod/admin.php:543
-msgid "At post arrival"
-msgstr "A l'arrivé d'une publication"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groupe introuvable."
 
-#: ../../mod/admin.php:544 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Fréquemment"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groupe renommé."
 
-#: ../../mod/admin.php:545 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Toutes les heures"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Sauvegarder le groupe"
 
-#: ../../mod/admin.php:546 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Deux fois par jour"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Créez un groupe de contacts/amis."
 
-#: ../../mod/admin.php:547 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Chaque jour"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nom du groupe: "
 
-#: ../../mod/admin.php:552
-msgid "Multi user instance"
-msgstr "Instance multi-utilisateurs"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Groupe enlevé."
 
-#: ../../mod/admin.php:575
-msgid "Closed"
-msgstr "Fermé"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossible d'enlever le groupe."
 
-#: ../../mod/admin.php:576
-msgid "Requires approval"
-msgstr "Demande une apptrobation"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Éditeur de groupe"
 
-#: ../../mod/admin.php:577
-msgid "Open"
-msgstr "Ouvert"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membres"
 
-#: ../../mod/admin.php:581
-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/apps.php:7 ../../index.php:212
+msgid "You must be logged in to use addons. "
+msgstr "Vous devez être connecté pour utiliser les greffons."
 
-#: ../../mod/admin.php:582
-msgid "Force all links to use SSL"
-msgstr "Forcer tous les liens à utiliser SSL"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Applications"
 
-#: ../../mod/admin.php:583
-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/apps.php:14
+msgid "No installed applications."
+msgstr "Pas d'application installée."
 
-#: ../../mod/admin.php:590 ../../mod/admin.php:1119 ../../mod/admin.php:1321
-#: ../../mod/admin.php:1408 ../../mod/settings.php:611
-#: ../../mod/settings.php:721 ../../mod/settings.php:795
-#: ../../mod/settings.php:877 ../../mod/settings.php:1110
-msgid "Save Settings"
-msgstr "Sauvegarder les paramétres"
+#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
+#: ../../mod/profiles.php:596
+msgid "Profile not found."
+msgstr "Profil introuvable."
 
-#: ../../mod/admin.php:591 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Inscription"
+#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
+#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+msgid "Contact not found."
+msgstr "Contact introuvable."
 
-#: ../../mod/admin.php:592
-msgid "File upload"
-msgstr "Téléversement de fichier"
+#: ../../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é."
 
-#: ../../mod/admin.php:593
-msgid "Policies"
-msgstr "Politiques"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Réponse du site distant incomprise."
 
-#: ../../mod/admin.php:594
-msgid "Advanced"
-msgstr "Avancé"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Réponse inattendue du site distant: "
 
-#: ../../mod/admin.php:595
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Confirmation achevée avec succès."
 
-#: ../../mod/admin.php:596
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Alerte du site distant: "
 
-#: ../../mod/admin.php:599
-msgid "Site name"
-msgstr "Nom du site"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Échec temporaire. Merci de recommencer ultérieurement."
 
-#: ../../mod/admin.php:600
-msgid "Banner/Logo"
-msgstr "Bannière/Logo"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Introduction échouée ou annulée."
 
-#: ../../mod/admin.php:601
-msgid "Additional Info"
-msgstr "Informations supplémentaires"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Impossible de définir la photo du contact."
 
-#: ../../mod/admin.php:601
-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/dfrn_confirm.php:486 ../../include/conversation.php:172
+#: ../../include/diaspora.php:620
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s est désormais lié à %2$s"
 
-#: ../../mod/admin.php:602
-msgid "System language"
-msgstr "Langue du système"
+#: ../../mod/dfrn_confirm.php:571
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Pas d'utilisateur trouvé pour '%s' "
 
-#: ../../mod/admin.php:603
-msgid "System theme"
-msgstr "Thème du système"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "Notre clé de chiffrement de site est apparemment corrompue."
 
-#: ../../mod/admin.php:603
-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/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."
 
-#: ../../mod/admin.php:604
-msgid "Mobile system theme"
-msgstr "Thème 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."
 
-#: ../../mod/admin.php:604
-msgid "Theme for mobile devices"
-msgstr "Thème pour les terminaux mobiles"
+#: ../../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."
 
-#: ../../mod/admin.php:605
-msgid "SSL link policy"
-msgstr "Politique SSL pour les liens"
+#: ../../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."
 
-#: ../../mod/admin.php:605
-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/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."
 
-#: ../../mod/admin.php:606
-msgid "Old style 'Share'"
-msgstr "Anciens style 'Partage'"
+#: ../../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"
 
-#: ../../mod/admin.php:606
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles."
+#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
+#: ../../include/items.php:3979
+msgid "[Name Withheld]"
+msgstr "[Nom non-publié]"
 
-#: ../../mod/admin.php:607
-msgid "Hide help entry from navigation menu"
-msgstr "Cacher l'aide du menu de navigation"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s a rejoint %2$s"
 
-#: ../../mod/admin.php:607
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
+#: ../../mod/profile.php:21 ../../boot.php:1453
+msgid "Requested profile is not available."
+msgstr "Le profil demandé n'est pas disponible."
 
-#: ../../mod/admin.php:608
-msgid "Single user instance"
-msgstr "Instance mono-utilisateur"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Conseils aux nouveaux venus"
 
-#: ../../mod/admin.php:608
-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/videos.php:125
+msgid "No videos selected"
+msgstr "Pas de vidéo sélectionné"
 
-#: ../../mod/admin.php:609
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Accès restreint à cet élément."
 
-#: ../../mod/admin.php:609
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
+#: ../../mod/videos.php:301 ../../include/text.php:1402
+msgid "View Video"
+msgstr "Regarder la vidéo"
 
-#: ../../mod/admin.php:610
-msgid "Maximum image length"
-msgstr "Longueur maximale des images"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Voir l'album"
 
-#: ../../mod/admin.php:610
-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/videos.php:317
+msgid "Recent Videos"
+msgstr "Vidéos récente"
 
-#: ../../mod/admin.php:611
-msgid "JPEG image quality"
-msgstr "Qualité JPEG des images"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Téléversé une nouvelle vidéo"
 
-#: ../../mod/admin.php:611
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
 
-#: ../../mod/admin.php:613
-msgid "Register policy"
-msgstr "Politique d'inscription"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/contact envoyée."
 
-#: ../../mod/admin.php:614
-msgid "Maximum Daily Registrations"
-msgstr "Inscriptions maximum par jour"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer des amis/contacts"
 
-#: ../../mod/admin.php:614
-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/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un ami/contact pour %s"
 
-#: ../../mod/admin.php:615
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Impossible de trouver un compte valide."
 
-#: ../../mod/admin.php:615
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sera affiché de manière bien visible sur la page d'accueil."
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
 
-#: ../../mod/admin.php:616
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: ../../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 ""
 
-#: ../../mod/admin.php:616
+#: ../../mod/lostpass.php:53
+#, php-format
 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."
+"\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 ""
 
-#: ../../mod/admin.php:617
-msgid "Allowed friend domains"
-msgstr "Domaines autorisés"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Requête de réinitialisation de mot de passe à %s"
 
-#: ../../mod/admin.php:617
+#: ../../mod/lostpass.php:92
 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"
+"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é."
 
-#: ../../mod/admin.php:618
-msgid "Allowed email domains"
-msgstr "Domaines courriel autorisés"
+#: ../../mod/lostpass.php:109 ../../boot.php:1275
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../mod/admin.php:618
-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/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: ../../mod/admin.php:619
-msgid "Block public"
-msgstr "Interdire la publication globale"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est "
 
-#: ../../mod/admin.php:619
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
+
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
+
+#: ../../mod/lostpass.php:114
 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."
+"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é."
 
-#: ../../mod/admin.php:620
-msgid "Force publish"
-msgstr "Forcer la publication globale"
+#: ../../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 ""
 
-#: ../../mod/admin.php:620
+#: ../../mod/lostpass.php:131
+#, php-format
 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."
+"\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 ""
 
-#: ../../mod/admin.php:621
-msgid "Global directory update URL"
-msgstr "URL de mise-à-jour de l'annuaire global"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Votre mot de passe a été modifié à %s"
 
-#: ../../mod/admin.php:621
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié?"
+
+#: ../../mod/lostpass.php:160
 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."
+"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."
 
-#: ../../mod/admin.php:622
-msgid "Allow threaded items"
-msgstr "autoriser le suivi des éléments par fil conducteur"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Pseudo ou Courriel: "
 
-#: ../../mod/admin.php:622
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permettre une imbrication infinie des commentaires."
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: ../../mod/admin.php:623
-msgid "Private posts by default for new users"
-msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
+#: ../../mod/like.php:166 ../../include/conversation.php:137
+#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: ../../mod/admin.php:623
-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/like.php:168 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
 
-#: ../../mod/admin.php:624
-msgid "Don't include post content in email notifications"
-msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} souhaite être votre ami(e)"
 
-#: ../../mod/admin.php:624
-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/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} vous a envoyé un message"
 
-#: ../../mod/admin.php:625
-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/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} a demandé à s'inscrire"
 
-#: ../../mod/admin.php:625
-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/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} a commenté la publication de %s"
 
-#: ../../mod/admin.php:626
-msgid "Don't embed private images in posts"
-msgstr "Ne pas miniaturiser les images privées dans les publications"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} a aimé la publication de %s"
 
-#: ../../mod/admin.php:626
-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/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} n'a pas aimé la publication de %s"
 
-#: ../../mod/admin.php:627
-msgid "Allow Users to set remote_self"
-msgstr "Autoriser les utilisateurs à définir remote_self"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} est désormais ami(e) avec %s"
 
-#: ../../mod/admin.php:627
-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/ping.php:276
+msgid "{0} posted"
+msgstr "{0} a publié"
+
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} a étiqueté la publication de %s avec #%s"
+
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} vous a mentionné dans une publication"
+
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Aucun contact."
+
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
+msgid "View Contacts"
+msgstr "Voir les contacts"
+
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de demande invalide."
+
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Rejeter"
+
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Système"
+
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
+msgstr "Réseau"
+
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Personnel"
+
+#: ../../mod/notifications.php:93 ../../include/nav.php:105
+#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
+msgid "Home"
+msgstr "Profil"
 
-#: ../../mod/admin.php:628
-msgid "Block multiple registrations"
-msgstr "Interdire les inscriptions multiples"
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
+msgstr "Introductions"
 
-#: ../../mod/admin.php:628
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Voir les demandes ignorées"
 
-#: ../../mod/admin.php:629
-msgid "OpenID support"
-msgstr "Support OpenID"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Cacher les demandes ignorées"
 
-#: ../../mod/admin.php:629
-msgid "OpenID support for registration and logins."
-msgstr "Supporter OpenID pour les inscriptions et connexions."
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Type de notification: "
 
-#: ../../mod/admin.php:630
-msgid "Fullname check"
-msgstr "Vérification du \"Prénom Nom\""
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Suggestion d'amitié/contact"
 
-#: ../../mod/admin.php:630
-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/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "suggéré(e) par %s"
 
-#: ../../mod/admin.php:631
-msgid "UTF-8 Regular expressions"
-msgstr "Regex UTF-8"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Poster une nouvelle avtivité d'ami"
 
-#: ../../mod/admin.php:631
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "si possible"
 
-#: ../../mod/admin.php:632
-msgid "Show Community Page"
-msgstr "Montrer la \"Place publique\""
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:977
+msgid "Approve"
+msgstr "Approuver"
 
-#: ../../mod/admin.php:632
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site."
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Prétend que vous le connaissez: "
 
-#: ../../mod/admin.php:633
-msgid "Enable OStatus support"
-msgstr "Activer le support d'OStatus"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "oui"
 
-#: ../../mod/admin.php:633
-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/notifications.php:181
+msgid "no"
+msgstr "non"
 
-#: ../../mod/admin.php:634
-msgid "OStatus conversation completion interval"
-msgstr "Achèvement de l'intervalle de conversation OStatus "
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Approuver en tant que: "
 
-#: ../../mod/admin.php:634
-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/notifications.php:189
+msgid "Friend"
+msgstr "Ami"
 
-#: ../../mod/admin.php:635
-msgid "Enable Diaspora support"
-msgstr "Activer le support de Diaspora"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Initiateur du partage"
 
-#: ../../mod/admin.php:635
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fournir une compatibilité Diaspora intégrée."
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Admirateur"
 
-#: ../../mod/admin.php:636
-msgid "Only allow Friendica contacts"
-msgstr "N'autoriser que les contacts Friendica"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Demande de connexion/relation"
 
-#: ../../mod/admin.php:636
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nouvel abonné"
 
-#: ../../mod/admin.php:637
-msgid "Verify SSL"
-msgstr "Vérifier SSL"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Aucune demande d'introduction."
 
-#: ../../mod/admin.php:637
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
+msgstr "Notifications"
 
-#: ../../mod/admin.php:638
-msgid "Proxy user"
-msgstr "Utilisateur du proxy"
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s a aimé la publication de %s"
 
-#: ../../mod/admin.php:639
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s n'a pas aimé la publication de %s"
 
-#: ../../mod/admin.php:640
-msgid "Network timeout"
-msgstr "Dépassement du délai d'attente du réseau"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s est désormais ami(e) avec %s"
 
-#: ../../mod/admin.php:640
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a créé une nouvelle publication"
 
-#: ../../mod/admin.php:641
-msgid "Delivery interval"
-msgstr "Intervalle de transmission"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s a commenté la publication de %s"
 
-#: ../../mod/admin.php:641
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
+msgstr "Aucune notification du réseau."
 
-#: ../../mod/admin.php:642
-msgid "Poll interval"
-msgstr "Intervalle de réception"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
+msgstr "Notifications du réseau"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
+#: ../../mod/notifications.php:336 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Pas plus de notifications système."
 
-#: ../../mod/admin.php:643
-msgid "Maximum Load Average"
-msgstr "Plafond de la charge moyenne"
+#: ../../mod/notifications.php:340 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: ../../mod/admin.php:643
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
+msgstr "Aucun notification personnelle."
 
-#: ../../mod/admin.php:645
-msgid "Use MySQL full text engine"
-msgstr "Utiliser le moteur de recherche plein texte de MySQL"
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
+msgstr "Notifications personnelles"
 
-#: ../../mod/admin.php:645
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
+msgstr "Aucune notification de la page d'accueil."
 
-#: ../../mod/admin.php:646
-msgid "Suppress Language"
-msgstr "Supprimer un langage"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
+msgstr "Notifications de page d'accueil"
 
-#: ../../mod/admin.php:646
-msgid "Suppress language information in meta information about a posting."
-msgstr "Supprimer les informations de langue dans les métadonnées des publications."
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texte source (bbcode) :"
 
-#: ../../mod/admin.php:647
-msgid "Path to item cache"
-msgstr "Chemin vers le cache des objets."
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texte source (Diaspora) à convertir en BBcode :"
 
-#: ../../mod/admin.php:648
-msgid "Cache duration in seconds"
-msgstr "Durée du cache en secondes"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Source input: "
 
-#: ../../mod/admin.php:648
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML brut)"
 
-#: ../../mod/admin.php:649
-msgid "Maximum numbers of comments per post"
-msgstr "Nombre maximum de commentaires par publication"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../mod/admin.php:649
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/admin.php:650
-msgid "Path for lock file"
-msgstr "Chemin vers le ficher de verrouillage"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/admin.php:651
-msgid "Temp path"
-msgstr "Chemin des fichiers temporaires"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/admin.php:652
-msgid "Base path to installation"
-msgstr "Chemin de base de l'installation"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/admin.php:653
-msgid "Disable picture proxy"
-msgstr "Désactiver le proxy image "
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/admin.php:653
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Texte source (format Diaspora) :"
 
-#: ../../mod/admin.php:655
-msgid "New base url"
-msgstr "Nouvelle URL de base"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb :"
 
-#: ../../mod/admin.php:657
-msgid "Disable noscrape"
-msgstr "Désactiver le noscrape"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Rien de neuf ici"
 
-#: ../../mod/admin.php:657
-msgid ""
-"The noscrape feature speeds up directory submissions by using JSON data "
-"instead of HTML scraping. Disabling it will cause higher load on your server"
-" and the directory server."
-msgstr "La fonction de noscrape accélère les répertoires de mémoire en utilisant des données JSON lieu de grattage HTML. En le désactivant il entraîne une charge plus élevée sur votre serveur et le serveur d'annuaire."
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Effacer les notifications"
 
-#: ../../mod/admin.php:674
-msgid "Update has been marked successful"
-msgstr "Mise-à-jour validée comme 'réussie'"
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: ../../mod/admin.php:682
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Pas de destinataire sélectionné."
 
-#: ../../mod/admin.php:685
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossible de localiser les informations du contact."
 
-#: ../../mod/admin.php:697
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "L'exécution %s a échoué avec l'erreur: %s"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Impossible d'envoyer le message."
 
-#: ../../mod/admin.php:700
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Mise-à-jour %s appliquée avec succès."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Récupération des messages infructueuse."
 
-#: ../../mod/admin.php:704
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Message envoyé."
 
-#: ../../mod/admin.php:706
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
+msgstr "Messages"
 
-#: ../../mod/admin.php:725
-msgid "No failed updates."
-msgstr "Pas de mises-à-jour échouées."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Voulez-vous vraiment supprimer ce message ?"
 
-#: ../../mod/admin.php:726
-msgid "Check database structure"
-msgstr "Vérifier la structure de la base de données"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Message supprimé."
 
-#: ../../mod/admin.php:731
-msgid "Failed Updates"
-msgstr "Mises-à-jour échouées"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
 
-#: ../../mod/admin.php:732
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
+msgstr "Entrez un lien web:"
 
-#: ../../mod/admin.php:733
-msgid "Mark success (if update was manually applied)"
-msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
 
-#: ../../mod/admin.php:734
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter d'éxecuter cette étape automatiquement"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "À:"
 
-#: ../../mod/admin.php:766
-#, 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."
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Sujet:"
 
-#: ../../mod/admin.php:769
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Votre message:"
 
-#: ../../mod/admin.php:801 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails d'inscription pour %s"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
+msgstr "Joindre photo"
 
-#: ../../mod/admin.php:813
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utilisateur a (dé)bloqué"
-msgstr[1] "%s utilisateurs ont (dé)bloqué"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: ../../mod/admin.php:820
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
+#: ../../mod/photos.php:1545 ../../object/Item.php:364
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
+msgstr "Patientez"
+
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Aucun message."
 
-#: ../../mod/admin.php:859
+#: ../../mod/message.php:378
 #, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+msgid "Unknown sender - %s"
+msgstr "Émetteur inconnu - %s"
 
-#: ../../mod/admin.php:867
+#: ../../mod/message.php:381
 #, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+msgid "You and %s"
+msgstr "Vous et %s"
 
-#: ../../mod/admin.php:867
+#: ../../mod/message.php:384
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
+msgid "%s and You"
+msgstr "%s et vous"
 
-#: ../../mod/admin.php:962
-msgid "Add User"
-msgstr "Ajouter l'utilisateur"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Effacer conversation"
 
-#: ../../mod/admin.php:963
-msgid "select all"
-msgstr "tout sélectionner"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../mod/admin.php:964
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions d'utilisateurs en attente de confirmation"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: ../../mod/admin.php:965
-msgid "User waiting for permanent deletion"
-msgstr "Utilisateur en attente de suppression définitive"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Message indisponible."
 
-#: ../../mod/admin.php:966
-msgid "Request date"
-msgstr "Date de la demande"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Effacer message"
 
-#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979
-#: ../../mod/admin.php:992 ../../mod/settings.php:613
-#: ../../mod/settings.php:639 ../../mod/crepair.php:160
-msgid "Name"
-msgstr "Nom"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
 
-#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979
-#: ../../mod/admin.php:994 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "Courriel"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Répondre"
 
-#: ../../mod/admin.php:967
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
+#: ../../mod/update_network.php:25
+msgid "[Embedded content - reload page to view]"
+msgstr "[contenu incorporé - rechargez la page pour le voir]"
 
-#: ../../mod/admin.php:969
-msgid "Deny"
-msgstr "Rejetter"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Réglages du contact appliqués."
 
-#: ../../mod/admin.php:971 ../../mod/contacts.php:437
-#: ../../mod/contacts.php:496 ../../mod/contacts.php:706
-msgid "Block"
-msgstr "Bloquer"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Impossible d'appliquer les réglages."
 
-#: ../../mod/admin.php:972 ../../mod/contacts.php:437
-#: ../../mod/contacts.php:496 ../../mod/contacts.php:706
-msgid "Unblock"
-msgstr "Débloquer"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Réglages de réparation des contacts"
 
-#: ../../mod/admin.php:973
-msgid "Site admin"
-msgstr "Administration du Site"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
 
-#: ../../mod/admin.php:974
-msgid "Account expired"
-msgstr "Compte expiré"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "une photo"
 
-#: ../../mod/admin.php:977
-msgid "New User"
-msgstr "Nouvel utilisateur"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Retour à l'éditeur de contact"
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:979
-msgid "Register date"
-msgstr "Date d'inscription"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr ""
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:979
-msgid "Last login"
-msgstr "Dernière connexion"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr ""
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:979
-msgid "Last item"
-msgstr "Dernier élément"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr ""
 
-#: ../../mod/admin.php:978
-msgid "Deleted since"
-msgstr "Supprimé depuis"
+#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
+#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
+#: ../../mod/settings.php:642
+msgid "Name"
+msgstr "Nom"
 
-#: ../../mod/admin.php:979 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Compte"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Pseudo du compte"
 
-#: ../../mod/admin.php:981
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
 
-#: ../../mod/admin.php:982
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL du compte"
 
-#: ../../mod/admin.php:992
-msgid "Name of the new user."
-msgstr "Nom du nouvel utilisateur."
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "Echec du téléversement de l'image."
 
-#: ../../mod/admin.php:993
-msgid "Nickname"
-msgstr "Pseudo"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "Accès public refusé."
 
-#: ../../mod/admin.php:993
-msgid "Nickname of the new user."
-msgstr "Pseudo du nouvel utilisateur."
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../mod/admin.php:994
-msgid "Email address of the new user."
-msgstr "Adresse mail du nouvel utilisateur."
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Téléverser des photos"
 
-#: ../../mod/admin.php:1027
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nouvelle photo depuis cette URL"
 
-#: ../../mod/admin.php:1031
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr ""
 
-#: ../../mod/admin.php:1041 ../../mod/admin.php:1257
-msgid "Disable"
-msgstr "Désactiver"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../mod/admin.php:1043 ../../mod/admin.php:1259
-msgid "Enable"
-msgstr "Activer"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../mod/admin.php:1066 ../../mod/admin.php:1287
-msgid "Toggle"
-msgstr "Activer/Désactiver"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accès refusé."
 
-#: ../../mod/admin.php:1067 ../../mod/admin.php:1288
-#: ../../mod/newmember.php:22 ../../mod/settings.php:85
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170
-msgid "Settings"
-msgstr "Réglages"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Recherche de personnes"
 
-#: ../../mod/admin.php:1074 ../../mod/admin.php:1297
-msgid "Author: "
-msgstr "Auteur: "
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Aucune correspondance"
 
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1298
-msgid "Maintainer: "
-msgstr "Mainteneur: "
+#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
+#: ../../view/theme/diabook/theme.php:126
+msgid "Photos"
+msgstr "Photos"
 
-#: ../../mod/admin.php:1217
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Fichiers"
 
-#: ../../mod/admin.php:1279
-msgid "Screenshot"
-msgstr "Capture d'écran"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacts qui n’appartiennent à aucun groupe"
 
-#: ../../mod/admin.php:1325
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvés."
 
-#: ../../mod/admin.php:1326
-msgid "[Unsupported]"
-msgstr "[Non supporté]"
+#: ../../mod/admin.php:104 ../../mod/admin.php:596
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/admin.php:1353
-msgid "Log settings updated."
-msgstr "Réglages des journaux mis-à-jour."
+#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: ../../mod/admin.php:1409
-msgid "Clear"
-msgstr "Effacer"
+#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Extensions"
 
-#: ../../mod/admin.php:1415
-msgid "Enable Debugging"
-msgstr "Activer le déboggage"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+msgid "Themes"
+msgstr "Thèmes"
 
-#: ../../mod/admin.php:1416
-msgid "Log file"
-msgstr "Fichier de journaux"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "Mise-à-jour de la base"
 
-#: ../../mod/admin.php:1416
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
+#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+msgid "Logs"
+msgstr "Journaux"
 
-#: ../../mod/admin.php:1417
-msgid "Log level"
-msgstr "Niveau de journalisaton"
+#: ../../mod/admin.php:128 ../../include/nav.php:182
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/admin.php:1466 ../../mod/contacts.php:493
-msgid "Update now"
-msgstr "Mettre à jour"
+#: ../../mod/admin.php:129
+msgid "Plugin Features"
+msgstr "Propriétés des extensions"
 
-#: ../../mod/admin.php:1467
-msgid "Close"
-msgstr "Fermer"
+#: ../../mod/admin.php:131
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente de confirmation"
 
-#: ../../mod/admin.php:1473
-msgid "FTP Host"
-msgstr "Hôte FTP"
+#: ../../mod/admin.php:190 ../../mod/admin.php:924
+msgid "Normal Account"
+msgstr "Compte normal"
 
-#: ../../mod/admin.php:1474
-msgid "FTP Path"
-msgstr "Chemin FTP"
+#: ../../mod/admin.php:191 ../../mod/admin.php:925
+msgid "Soapbox Account"
+msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/admin.php:1475
-msgid "FTP User"
-msgstr "Utilisateur FTP"
+#: ../../mod/admin.php:192 ../../mod/admin.php:926
+msgid "Community/Celebrity Account"
+msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/admin.php:1476
-msgid "FTP Password"
-msgstr "Mot de passe FTP"
+#: ../../mod/admin.php:193 ../../mod/admin.php:927
+msgid "Automatic Friend Account"
+msgstr "Compte auto-amical"
 
-#: ../../mod/message.php:9 ../../include/nav.php:162
-msgid "New Message"
-msgstr "Nouveau message"
+#: ../../mod/admin.php:194
+msgid "Blog Account"
+msgstr "Compte de blog"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Pas de destinataire sélectionné."
+#: ../../mod/admin.php:195
+msgid "Private Forum"
+msgstr "Forum privé"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: ../../mod/admin.php:214
+msgid "Message queues"
+msgstr "Files d'attente des messages"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Impossible d'envoyer le message."
+#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
+#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
+#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Récupération des messages infructueuse."
+#: ../../mod/admin.php:220
+msgid "Summary"
+msgstr "Résumé"
+
+#: ../../mod/admin.php:222
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Message envoyé."
+#: ../../mod/admin.php:224
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
 
-#: ../../mod/message.php:182 ../../include/nav.php:159
-msgid "Messages"
-msgstr "Messages"
+#: ../../mod/admin.php:225
+msgid "Version"
+msgstr "Versio"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Voulez-vous vraiment supprimer ce message ?"
+#: ../../mod/admin.php:229
+msgid "Active plugins"
+msgstr "Extensions activés"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: ../../mod/admin.php:252
+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/message.php:258
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: ../../mod/admin.php:500
+msgid "Site settings updated."
+msgstr "Réglages du site mis-à-jour."
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Entrez un lien web:"
+#: ../../mod/admin.php:529 ../../mod/settings.php:828
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème particulier pour les terminaux mobiles"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: ../../mod/admin.php:547
+msgid "At post arrival"
+msgstr "A l'arrivé d'une publication"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "À:"
+#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Fréquemment"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Sujet:"
+#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Toutes les heures"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Votre message:"
+#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Deux fois par jour"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Joindre photo"
+#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Chaque jour"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Insérer lien web"
+#: ../../mod/admin.php:556
+msgid "Multi user instance"
+msgstr "Instance multi-utilisateurs"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Aucun message."
+#: ../../mod/admin.php:579
+msgid "Closed"
+msgstr "Fermé"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Émetteur inconnu - %s"
+#: ../../mod/admin.php:580
+msgid "Requires approval"
+msgstr "Demande une apptrobation"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vous et %s"
+#: ../../mod/admin.php:581
+msgid "Open"
+msgstr "Ouvert"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s et vous"
+#: ../../mod/admin.php:585
+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/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: ../../mod/admin.php:586
+msgid "Force all links to use SSL"
+msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/admin.php:587
+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/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
+#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/settings.php:724 ../../mod/settings.php:798
+#: ../../mod/settings.php:880 ../../mod/settings.php:1113
+msgid "Save Settings"
+msgstr "Sauvegarder les paramétres"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Message indisponible."
+#: ../../mod/admin.php:598 ../../mod/register.php:255
+msgid "Registration"
+msgstr "Inscription"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Effacer message"
+#: ../../mod/admin.php:599
+msgid "File upload"
+msgstr "Téléversement de fichier"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
+#: ../../mod/admin.php:600
+msgid "Policies"
+msgstr "Politiques"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Répondre"
+#: ../../mod/admin.php:601
+msgid "Advanced"
+msgstr "Avancé"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../mod/admin.php:602
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: ../../mod/admin.php:603
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
 
-#: ../../mod/editpost.php:109 ../../mod/filer.php:31 ../../mod/notes.php:63
-#: ../../include/text.php:955
-msgid "Save"
-msgstr "Sauver"
+#: ../../mod/admin.php:606
+msgid "Site name"
+msgstr "Nom du site"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "envoi image"
+#: ../../mod/admin.php:607
+msgid "Host name"
+msgstr ""
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: ../../mod/admin.php:608
+msgid "Banner/Logo"
+msgstr "Bannière/Logo"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "ajout fichier"
+#: ../../mod/admin.php:609
+msgid "Additional Info"
+msgstr "Informations supplémentaires"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "lien web"
+#: ../../mod/admin.php:609
+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/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: ../../mod/admin.php:610
+msgid "System language"
+msgstr "Langue du système"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "lien vidéo"
+#: ../../mod/admin.php:611
+msgid "System theme"
+msgstr "Thème du système"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
+#: ../../mod/admin.php:611
+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/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "lien audio"
+#: ../../mod/admin.php:612
+msgid "Mobile system theme"
+msgstr "Thème mobile"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Définir votre localisation"
+#: ../../mod/admin.php:612
+msgid "Theme for mobile devices"
+msgstr "Thème pour les terminaux mobiles"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "spéc. localisation"
+#: ../../mod/admin.php:613
+msgid "SSL link policy"
+msgstr "Politique SSL pour les liens"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
+#: ../../mod/admin.php:613
+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/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "supp. localisation"
+#: ../../mod/admin.php:614
+msgid "Force SSL"
+msgstr ""
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Réglages des permissions"
+#: ../../mod/admin.php:614
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr ""
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
+#: ../../mod/admin.php:615
+msgid "Old style 'Share'"
+msgstr "Anciens style 'Partage'"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Publication publique"
+#: ../../mod/admin.php:615
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles."
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Définir un titre"
+#: ../../mod/admin.php:616
+msgid "Hide help entry from navigation menu"
+msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
+#: ../../mod/admin.php:616
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: bob@exemple.com, mary@exemple.com"
+#: ../../mod/admin.php:617
+msgid "Single user instance"
+msgstr "Instance mono-utilisateur"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
-#: ../../mod/profiles.php:589
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: ../../mod/admin.php:617
+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/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é."
+#: ../../mod/admin.php:618
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Réponse du site distant incomprise."
+#: ../../mod/admin.php:618
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Réponse inattendue du site distant: "
+#: ../../mod/admin.php:619
+msgid "Maximum image length"
+msgstr "Longueur maximale des images"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Confirmation achevée avec succès."
+#: ../../mod/admin.php:619
+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/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Alerte du site distant: "
+#: ../../mod/admin.php:620
+msgid "JPEG image quality"
+msgstr "Qualité JPEG des images"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Échec temporaire. Merci de recommencer ultérieurement."
+#: ../../mod/admin.php:620
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Introduction échouée ou annulée."
+#: ../../mod/admin.php:622
+msgid "Register policy"
+msgstr "Politique d'inscription"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Impossible de définir la photo du contact."
+#: ../../mod/admin.php:623
+msgid "Maximum Daily Registrations"
+msgstr "Inscriptions maximum par jour"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/diaspora.php:620
-#: ../../include/conversation.php:172
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s est désormais lié à %2$s"
+#: ../../mod/admin.php:623
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "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/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pas d'utilisateur trouvé pour '%s' "
+#: ../../mod/admin.php:624
+msgid "Register text"
+msgstr "Texte d'inscription"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "Notre clé de chiffrement de site est apparemment corrompue."
+#: ../../mod/admin.php:624
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sera affiché de manière bien visible sur la page d'accueil."
 
-#: ../../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."
+#: ../../mod/admin.php:625
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../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."
+#: ../../mod/admin.php:625
+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/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."
+#: ../../mod/admin.php:626
+msgid "Allowed friend domains"
+msgstr "Domaines autorisés"
 
-#: ../../mod/dfrn_confirm.php:647
+#: ../../mod/admin.php:626
 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."
+"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/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."
+#: ../../mod/admin.php:627
+msgid "Allowed email domains"
+msgstr "Domaines courriel autorisés"
 
-#: ../../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"
+#: ../../mod/admin.php:627
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste 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/dfrn_confirm.php:797
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s a rejoint %2$s"
+#: ../../mod/admin.php:628
+msgid "Block public"
+msgstr "Interdire la publication globale"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Vous devez donner un nom et un horaire de début à l'événement."
+#: ../../mod/admin.php:628
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../mod/admin.php:629
+msgid "Force publish"
+msgstr "Forcer la publication globale"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: ../../mod/admin.php:629
+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/events.php:335 ../../include/text.php:1644
-#: ../../include/text.php:1654
-msgid "link to source"
-msgstr "lien original"
+#: ../../mod/admin.php:630
+msgid "Global directory update URL"
+msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
-#: ../../boot.php:2114 ../../include/nav.php:80
-msgid "Events"
-msgstr "Événements"
+#: ../../mod/admin.php:630
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: ../../mod/admin.php:631
+msgid "Allow threaded items"
+msgstr "autoriser le suivi des éléments par fil conducteur"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Précédent"
+#: ../../mod/admin.php:631
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Suivant"
+#: ../../mod/admin.php:632
+msgid "Private posts by default for new users"
+msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "heures:minutes"
+#: ../../mod/admin.php:632
+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/events.php:456
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../mod/admin.php:633
+msgid "Don't include post content in email notifications"
+msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
+#: ../../mod/admin.php:633
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "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/events.php:459
-msgid "Event Starts:"
-msgstr "Début de l'événement:"
+#: ../../mod/admin.php:634
+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/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Requis"
+#: ../../mod/admin.php:634
+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/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../mod/admin.php:635
+msgid "Don't embed private images in posts"
+msgstr "Ne pas miniaturiser les images privées dans les publications"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Fin de l'événement:"
+#: ../../mod/admin.php:635
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "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/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: ../../mod/admin.php:636
+msgid "Allow Users to set remote_self"
+msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Description:"
+#: ../../mod/admin.php:636
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "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/events.php:471 ../../mod/directory.php:136 ../../boot.php:1622
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:156
-msgid "Location:"
-msgstr "Localisation:"
+#: ../../mod/admin.php:637
+msgid "Block multiple registrations"
+msgstr "Interdire les inscriptions multiples"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titre :"
+#: ../../mod/admin.php:637
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../mod/admin.php:638
+msgid "OpenID support"
+msgstr "Support OpenID"
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
-#: ../../boot.php:2097 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Photos"
+#: ../../mod/admin.php:638
+msgid "OpenID support for registration and logins."
+msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Fichiers"
+#: ../../mod/admin.php:639
+msgid "Fullname check"
+msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../mod/admin.php:639
+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/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: ../../mod/admin.php:640
+msgid "UTF-8 Regular expressions"
+msgstr "Regex UTF-8"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visible par:"
+#: ../../mod/admin.php:640
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../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/admin.php:641
+msgid "Show Community Page"
+msgstr "Montrer la \"Place publique\""
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Impossible de vérifier votre localisation."
+#: ../../mod/admin.php:641
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Pas de destinataire."
+#: ../../mod/admin.php:642
+msgid "Enable OStatus support"
+msgstr "Activer le support d'OStatus"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:642
 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."
+"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/nogroup.php:40 ../../mod/contacts.php:479
-#: ../../mod/contacts.php:671 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../mod/admin.php:643
+msgid "OStatus conversation completion interval"
+msgstr "Achèvement de l'intervalle de conversation OStatus "
 
-#: ../../mod/nogroup.php:41 ../../mod/contacts.php:672
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: ../../mod/admin.php:643
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacts qui n’appartiennent à aucun groupe"
+#: ../../mod/admin.php:644
+msgid "Enable Diaspora support"
+msgstr "Activer le support de Diaspora"
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
-msgstr "Motorisé par Friendica version"
+#: ../../mod/admin.php:644
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
-msgstr "hébergé sur"
+#: ../../mod/admin.php:645
+msgid "Only allow Friendica contacts"
+msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../mod/friendica.php:65
+#: ../../mod/admin.php:645
 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."
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs: rendez vous sur"
+#: ../../mod/admin.php:646
+msgid "Verify SSL"
+msgstr "Vérifier SSL"
 
-#: ../../mod/friendica.php:68
+#: ../../mod/admin.php:646
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
-
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/greffons/applications installées:"
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
 
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
-msgstr "Extensions/greffons/applications non installées:"
+#: ../../mod/admin.php:647
+msgid "Proxy user"
+msgstr "Utilisateur du proxy"
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Supprimer mon compte"
+#: ../../mod/admin.php:648
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
+#: ../../mod/admin.php:649
+msgid "Network timeout"
+msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Merci de saisir votre mot de passe pour vérification:"
+#: ../../mod/admin.php:649
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: ../../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"
+#: ../../mod/admin.php:650
+msgid "Delivery interval"
+msgstr "Intervalle de transmission"
 
-#: ../../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."
+#: ../../mod/admin.php:650
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
 
-#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178
-#: ../../mod/wall_upload.php:185 ../../mod/item.php:465
-#: ../../include/message.php:144 ../../include/Photo.php:911
-#: ../../include/Photo.php:926 ../../include/Photo.php:933
-#: ../../include/Photo.php:955
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../mod/admin.php:651
+msgid "Poll interval"
+msgstr "Intervalle de réception"
 
-#: ../../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é."
+#: ../../mod/admin.php:651
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../mod/admin.php:652
+msgid "Maximum Load Average"
+msgstr "Plafond de la charge moyenne"
 
-#: ../../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:652
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../mod/admin.php:654
+msgid "Use MySQL full text engine"
+msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:654
 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?"
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
+#: ../../mod/admin.php:655
+msgid "Suppress Language"
+msgstr "Supprimer un langage"
 
-#: ../../mod/photos.php:52 ../../boot.php:2100
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: ../../mod/admin.php:655
+msgid "Suppress language information in meta information about a posting."
+msgstr "Supprimer les informations de langue dans les métadonnées des publications."
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1189 ../../mod/photos.php:1212
-#: ../../mod/photos.php:1758 ../../mod/photos.php:1770
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Photos du contact"
+#: ../../mod/admin.php:656
+msgid "Path to item cache"
+msgstr "Chemin vers le cache des objets."
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: ../../mod/admin.php:657
+msgid "Cache duration in seconds"
+msgstr "Durée du cache en secondes"
 
-#: ../../mod/photos.php:80 ../../mod/settings.php:29
-msgid "everybody"
-msgstr "tout le monde"
+#: ../../mod/admin.php:657
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: ../../mod/admin.php:658
+msgid "Maximum numbers of comments per post"
+msgstr "Nombre maximum de commentaires par publication"
 
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189
-#: ../../mod/photos.php:1212 ../../mod/profile_photo.php:74
-#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
-#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
-#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500
-#: ../../include/user.php:335 ../../include/user.php:342
-#: ../../include/user.php:349
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../mod/admin.php:658
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../mod/admin.php:659
+msgid "Path for lock file"
+msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: ../../mod/admin.php:660
+msgid "Temp path"
+msgstr "Chemin des fichiers temporaires"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
+#: ../../mod/admin.php:661
+msgid "Base path to installation"
+msgstr "Chemin de base de l'installation"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: ../../mod/admin.php:662
+msgid "Disable picture proxy"
+msgstr "Désactiver le proxy image "
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Voulez-vous vraiment supprimer cette photo ?"
+#: ../../mod/admin.php:662
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s a été étiqueté dans %2$s par %3$s"
+#: ../../mod/admin.php:664
+msgid "New base url"
+msgstr "Nouvelle URL de base"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "une photo"
+#: ../../mod/admin.php:666
+msgid "Disable noscrape"
+msgstr "Désactiver le noscrape"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "L'image dépasse la taille maximale de  "
+#: ../../mod/admin.php:666
+msgid ""
+"The noscrape feature speeds up directory submissions by using JSON data "
+"instead of HTML scraping. Disabling it will cause higher load on your server"
+" and the directory server."
+msgstr "La fonction de noscrape accélère les répertoires de mémoire en utilisant des données JSON lieu de grattage HTML. En le désactivant il entraîne une charge plus élevée sur votre serveur et le serveur d'annuaire."
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: ../../mod/admin.php:683
+msgid "Update has been marked successful"
+msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: ../../mod/admin.php:691
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
 
-#: ../../mod/photos.php:1031 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "Accès restreint à cet élément."
+#: ../../mod/admin.php:694
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
 
-#: ../../mod/photos.php:1094
+#: ../../mod/admin.php:706
 #, 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."
+msgid "Executing %s failed with error: %s"
+msgstr "L'exécution %s a échoué avec l'erreur: %s"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../mod/admin.php:709
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1201
-msgid "New album name: "
-msgstr "Nom du nouvel album: "
+#: ../../mod/admin.php:713
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant: "
+#: ../../mod/admin.php:715
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice de statut pour cet envoi"
+#: ../../mod/admin.php:734
+msgid "No failed updates."
+msgstr "Pas de mises-à-jour échouées."
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1508
-msgid "Permissions"
-msgstr "Permissions"
+#: ../../mod/admin.php:735
+msgid "Check database structure"
+msgstr "Vérifier la structure de la base de données"
 
-#: ../../mod/photos.php:1146 ../../mod/photos.php:1517
-#: ../../mod/settings.php:1145
-msgid "Show to Groups"
-msgstr "Montrer aux groupes"
+#: ../../mod/admin.php:740
+msgid "Failed Updates"
+msgstr "Mises-à-jour échouées"
 
-#: ../../mod/photos.php:1147 ../../mod/photos.php:1518
-#: ../../mod/settings.php:1146
-msgid "Show to Contacts"
-msgstr "Montrer aux Contacts"
+#: ../../mod/admin.php:741
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Photo privée"
+#: ../../mod/admin.php:742
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Photo publique"
+#: ../../mod/admin.php:743
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../mod/photos.php:1216
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../mod/admin.php:775
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
 
-#: ../../mod/photos.php:1222
-msgid "Show Newest First"
-msgstr "Plus récent d'abord"
+#: ../../mod/admin.php:778
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr ""
 
-#: ../../mod/photos.php:1224
-msgid "Show Oldest First"
-msgstr "Plus ancien d'abord"
+#: ../../mod/admin.php:810 ../../include/user.php:413
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails d'inscription pour %s"
 
-#: ../../mod/photos.php:1257 ../../mod/photos.php:1800
-msgid "View Photo"
-msgstr "Voir la photo"
+#: ../../mod/admin.php:822
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilisateur a (dé)bloqué"
+msgstr[1] "%s utilisateurs ont (dé)bloqué"
 
-#: ../../mod/photos.php:1292
-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:829
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../mod/photos.php:1294
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../mod/admin.php:868
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/photos.php:1350
-msgid "View photo"
-msgstr "Voir photo"
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/photos.php:1350
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/photos.php:1351
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: ../../mod/admin.php:971
+msgid "Add User"
+msgstr "Ajouter l'utilisateur"
 
-#: ../../mod/photos.php:1376
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../mod/admin.php:972
+msgid "select all"
+msgstr "tout sélectionner"
 
-#: ../../mod/photos.php:1455
-msgid "Tags: "
-msgstr "Étiquettes:"
+#: ../../mod/admin.php:973
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../mod/photos.php:1458
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
+#: ../../mod/admin.php:974
+msgid "User waiting for permanent deletion"
+msgstr "Utilisateur en attente de suppression définitive"
 
-#: ../../mod/photos.php:1498
-msgid "Rotate CW (right)"
-msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
+#: ../../mod/admin.php:975
+msgid "Request date"
+msgstr "Date de la demande"
 
-#: ../../mod/photos.php:1499
-msgid "Rotate CCW (left)"
-msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
+#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "Courriel"
 
-#: ../../mod/photos.php:1501
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: ../../mod/admin.php:976
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
 
-#: ../../mod/photos.php:1504
-msgid "Caption"
-msgstr "Titre"
+#: ../../mod/admin.php:978
+msgid "Deny"
+msgstr "Rejetter"
 
-#: ../../mod/photos.php:1506
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../mod/admin.php:982
+msgid "Site admin"
+msgstr "Administration du Site"
 
-#: ../../mod/photos.php:1510
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
+#: ../../mod/admin.php:983
+msgid "Account expired"
+msgstr "Compte expiré"
 
-#: ../../mod/photos.php:1519
-msgid "Private photo"
-msgstr "Photo privée"
+#: ../../mod/admin.php:986
+msgid "New User"
+msgstr "Nouvel utilisateur"
 
-#: ../../mod/photos.php:1520
-msgid "Public photo"
-msgstr "Photo publique"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Register date"
+msgstr "Date d'inscription"
 
-#: ../../mod/photos.php:1542 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Partager"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last login"
+msgstr "Dernière connexion"
 
-#: ../../mod/photos.php:1806 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Voir l'album"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last item"
+msgstr "Dernier élément"
 
-#: ../../mod/photos.php:1815
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../mod/admin.php:987
+msgid "Deleted since"
+msgstr "Supprimé depuis"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Aucun profil"
+#: ../../mod/admin.php:988 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Compte"
 
-#: ../../mod/register.php:90
+#: ../../mod/admin.php:990
 msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/register.php:96
-#, php-format
+#: ../../mod/admin.php:991
 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 ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traitée."
+#: ../../mod/admin.php:1001
+msgid "Name of the new user."
+msgstr "Nom du nouvel utilisateur."
 
-#: ../../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/admin.php:1002
+msgid "Nickname"
+msgstr "Pseudo"
 
-#: ../../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/admin.php:1002
+msgid "Nickname of the new user."
+msgstr "Pseudo du nouvel utilisateur."
 
-#: ../../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/admin.php:1003
+msgid "Email address of the new user."
+msgstr "Adresse mail du nouvel utilisateur."
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
+#: ../../mod/admin.php:1036
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extension %s désactivée."
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Votre OpenID (facultatif): "
+#: ../../mod/admin.php:1040
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extension %s activée."
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Inclure votre profil dans l'annuaire des membres?"
+#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+msgid "Disable"
+msgstr "Désactiver"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+msgid "Enable"
+msgstr "Activer"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "Votre ID d'invitation: "
+#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+msgid "Toggle"
+msgstr "Activer/Désactiver"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Votre nom complet (p.ex. Michel Dupont): "
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+msgid "Author: "
+msgstr "Auteur: "
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Votre adresse courriel: "
+#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+msgid "Maintainer: "
+msgstr "Mainteneur: "
 
-#: ../../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/admin.php:1226
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Choisir un pseudo: "
+#: ../../mod/admin.php:1288
+msgid "Screenshot"
+msgstr "Capture d'écran"
 
-#: ../../mod/register.php:269 ../../boot.php:1215 ../../include/nav.php:109
-msgid "Register"
-msgstr "S'inscrire"
+#: ../../mod/admin.php:1334
+msgid "[Experimental]"
+msgstr "[Expérimental]"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importer"
+#: ../../mod/admin.php:1335
+msgid "[Unsupported]"
+msgstr "[Non supporté]"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importer votre profile dans cette instance de friendica"
+#: ../../mod/admin.php:1362
+msgid "Log settings updated."
+msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
+#: ../../mod/admin.php:1418
+msgid "Clear"
+msgstr "Effacer"
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
+#: ../../mod/admin.php:1424
+msgid "Enable Debugging"
+msgstr "Activer le déboggage"
 
-#: ../../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 ""
+#: ../../mod/admin.php:1425
+msgid "Log file"
+msgstr "Fichier de journaux"
 
-#: ../../mod/lostpass.php:53
-#, php-format
+#: ../../mod/admin.php:1425
 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 ""
-
-#: ../../mod/lostpass.php:72
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Requête de réinitialisation de mot de passe à %s"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
 
-#: ../../mod/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é."
+#: ../../mod/admin.php:1426
+msgid "Log level"
+msgstr "Niveau de journalisaton"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1254
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../mod/admin.php:1476
+msgid "Close"
+msgstr "Fermer"
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../mod/admin.php:1482
+msgid "FTP Host"
+msgstr "Hôte FTP"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est "
+#: ../../mod/admin.php:1483
+msgid "FTP Path"
+msgstr "Chemin FTP"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
+#: ../../mod/admin.php:1484
+msgid "FTP User"
+msgstr "Utilisateur FTP"
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../mod/admin.php:1485
+msgid "FTP Password"
+msgstr "Mot de passe FTP"
 
-#: ../../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é."
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Résultats pour:"
 
-#: ../../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 ""
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: ../../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 ""
+#: ../../mod/network.php:194 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Recherches"
 
-#: ../../mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Votre mot de passe a été modifié à %s"
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr "ajouter"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Tri par commentaires"
 
-#: ../../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."
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Trier par date de commentaire"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Pseudo ou Courriel: "
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Tri des publications"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Système indisponible pour cause de maintenance"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nouveau"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Flux d'activités - par date"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Applications"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Liens partagés"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Liens intéressants"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Aide:"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Aide"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Publications favorites"
 
-#: ../../mod/contacts.php:107
+#: ../../mod/network.php:463
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d contact édité"
-msgstr[1] "%d contacts édités."
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
+msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
 
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:267
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
 
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Groupe inexistant"
 
-#: ../../mod/contacts.php:181
-msgid "Contact updated."
-msgstr "Contact mis-à-jour."
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Groupe vide"
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Groupe: "
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: ../../mod/network.php:554
+msgid "Contact"
+msgstr "Contact: "
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Contact invalide."
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been archived"
-msgstr "Contact archivé"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amis de %s"
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been unarchived"
-msgstr "Contact désarchivé"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Pas d'amis à afficher."
 
-#: ../../mod/contacts.php:330 ../../mod/contacts.php:703
-msgid "Do you really want to delete this contact?"
-msgstr "Voulez-vous vraiment supprimer ce contact?"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Vous devez donner un nom et un horaire de début à l'événement."
 
-#: ../../mod/contacts.php:347
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/contacts.php:385
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editer l'événement"
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+#: ../../mod/events.php:335 ../../include/text.php:1644
+#: ../../include/text.php:1654
+msgid "link to source"
+msgstr "lien original"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
+#: ../../view/theme/diabook/theme.php:127
+msgid "Events"
+msgstr "Événements"
 
-#: ../../mod/contacts.php:411
-msgid "Private communications are not available for this contact."
-msgstr "Les communications privées ne sont pas disponibles pour ce contact."
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Créer un nouvel événement"
 
-#: ../../mod/contacts.php:418
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Précédent"
 
-#: ../../mod/contacts.php:418
-msgid "(Update was not successful)"
-msgstr "(Mise à jour échouée)"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Suivant"
 
-#: ../../mod/contacts.php:420
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "heures:minutes"
 
-#: ../../mod/contacts.php:424
-#, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Détails de l'événement"
 
-#: ../../mod/contacts.php:427 ../../include/contact_widgets.php:200
+#: ../../mod/events.php:457
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact en commun"
-msgstr[1] "%d contacts en commun"
-
-#: ../../mod/contacts.php:432
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
-
-#: ../../mod/contacts.php:440
-msgid "Toggle Blocked status"
-msgstr "(dés)activer l'état \"bloqué\""
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
 
-#: ../../mod/contacts.php:443 ../../mod/contacts.php:497
-#: ../../mod/contacts.php:707
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Début de l'événement:"
 
-#: ../../mod/contacts.php:446
-msgid "Toggle Ignored status"
-msgstr "(dés)activer l'état \"ignoré\""
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Requis"
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Unarchive"
-msgstr "Désarchiver"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date/heure de fin inconnue ou sans objet"
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Archive"
-msgstr "Archiver"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Fin de l'événement:"
 
-#: ../../mod/contacts.php:453
-msgid "Toggle Archive status"
-msgstr "(dés)activer l'état \"archivé\""
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster à la zone horaire du visiteur"
 
-#: ../../mod/contacts.php:456
-msgid "Repair"
-msgstr "Réparer"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Description:"
 
-#: ../../mod/contacts.php:459
-msgid "Advanced Contact Settings"
-msgstr "Réglages avancés du contact"
+#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
+#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
+msgid "Location:"
+msgstr "Localisation:"
 
-#: ../../mod/contacts.php:465
-msgid "Communications lost with this contact!"
-msgstr "Communications perdues avec ce contact !"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titre :"
 
-#: ../../mod/contacts.php:468
-msgid "Contact Editor"
-msgstr "Éditeur de contact"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Partager cet événement"
 
-#: ../../mod/contacts.php:471
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../mod/content.php:437 ../../mod/content.php:740
+#: ../../mod/photos.php:1653 ../../object/Item.php:129
+#: ../../include/conversation.php:613
+msgid "Select"
+msgstr "Sélectionner"
 
-#: ../../mod/contacts.php:472
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../include/conversation.php:654
 #, php-format
-msgid ""
-"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."
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#: ../../object/Item.php:340 ../../include/conversation.php:674
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: ../../mod/contacts.php:474
-msgid "Edit contact notes"
-msgstr "Éditer les notes des contacts"
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
+msgstr "Voir dans le contexte"
 
-#: ../../mod/contacts.php:480
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: ../../mod/content.php:603 ../../object/Item.php:387
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
 
-#: ../../mod/contacts.php:481
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: ../../mod/content.php:605 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../include/text.php:1969
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commentaire"
 
-#: ../../mod/contacts.php:482
-msgid "Repair URL settings"
-msgstr "Réglages de réparation des URL"
+#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
+#: ../../include/contact_widgets.php:205
+msgid "show more"
+msgstr "montrer plus"
 
-#: ../../mod/contacts.php:483
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../mod/content.php:620 ../../mod/photos.php:1359
+#: ../../object/Item.php:116
+msgid "Private Message"
+msgstr "Message privé"
 
-#: ../../mod/contacts.php:485
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: ../../mod/content.php:684 ../../mod/photos.php:1542
+#: ../../object/Item.php:231
+msgid "I like this (toggle)"
+msgstr "J'aime (bascule)"
 
-#: ../../mod/contacts.php:489
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
+#: ../../mod/content.php:684 ../../object/Item.php:231
+msgid "like"
+msgstr "aime"
 
-#: ../../mod/contacts.php:491
-msgid "Update public posts"
-msgstr "Mettre à jour les publications publiques:"
+#: ../../mod/content.php:685 ../../mod/photos.php:1543
+#: ../../object/Item.php:232
+msgid "I don't like this (toggle)"
+msgstr "Je n'aime pas (bascule)"
 
-#: ../../mod/contacts.php:500
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../mod/content.php:685 ../../object/Item.php:232
+msgid "dislike"
+msgstr "n'aime pas"
 
-#: ../../mod/contacts.php:501
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../mod/content.php:687 ../../object/Item.php:234
+msgid "Share this"
+msgstr "Partager"
 
-#: ../../mod/contacts.php:502
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: ../../mod/content.php:687 ../../object/Item.php:234
+msgid "share"
+msgstr "partager"
 
-#: ../../mod/contacts.php:503
-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/content.php:707 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
+#: ../../object/Item.php:675
+msgid "This is you"
+msgstr "C'est vous"
 
-#: ../../mod/contacts.php:504
-msgid "Notification for new posts"
-msgstr "Notification des nouvelles publications"
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
+#: ../../object/Item.php:361 ../../object/Item.php:677
+msgid "Comment"
+msgstr "Commenter"
 
-#: ../../mod/contacts.php:504
-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/content.php:711 ../../object/Item.php:679
+msgid "Bold"
+msgstr "Gras"
 
-#: ../../mod/contacts.php:505
-msgid "Fetch further information for feeds"
-msgstr "Chercher plus d'informations pour les flux"
+#: ../../mod/content.php:712 ../../object/Item.php:680
+msgid "Italic"
+msgstr "Italique"
 
-#: ../../mod/contacts.php:556
-msgid "Suggestions"
-msgstr "Suggestions"
+#: ../../mod/content.php:713 ../../object/Item.php:681
+msgid "Underline"
+msgstr "Souligné"
 
-#: ../../mod/contacts.php:559
-msgid "Suggest potential friends"
-msgstr "Suggérer des amis potentiels"
+#: ../../mod/content.php:714 ../../object/Item.php:682
+msgid "Quote"
+msgstr "Citation"
 
-#: ../../mod/contacts.php:562 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tous les contacts"
+#: ../../mod/content.php:715 ../../object/Item.php:683
+msgid "Code"
+msgstr "Code"
 
-#: ../../mod/contacts.php:565
-msgid "Show all contacts"
-msgstr "Montrer tous les contacts"
+#: ../../mod/content.php:716 ../../object/Item.php:684
+msgid "Image"
+msgstr "Image"
 
-#: ../../mod/contacts.php:568
-msgid "Unblocked"
-msgstr "Non-bloqués"
+#: ../../mod/content.php:717 ../../object/Item.php:685
+msgid "Link"
+msgstr "Lien"
 
-#: ../../mod/contacts.php:571
-msgid "Only show unblocked contacts"
-msgstr "Ne montrer que les contacts non-bloqués"
+#: ../../mod/content.php:718 ../../object/Item.php:686
+msgid "Video"
+msgstr "Vidéo"
 
-#: ../../mod/contacts.php:575
-msgid "Blocked"
-msgstr "Bloqués"
+#: ../../mod/content.php:719 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
+#: ../../mod/photos.php:1698 ../../object/Item.php:687
+#: ../../include/conversation.php:1126
+msgid "Preview"
+msgstr "Aperçu"
 
-#: ../../mod/contacts.php:578
-msgid "Only show blocked contacts"
-msgstr "Ne montrer que les contacts bloqués"
+#: ../../mod/content.php:728 ../../mod/settings.php:676
+#: ../../object/Item.php:120
+msgid "Edit"
+msgstr "Éditer"
 
-#: ../../mod/contacts.php:582
-msgid "Ignored"
-msgstr "Ignorés"
+#: ../../mod/content.php:753 ../../object/Item.php:195
+msgid "add star"
+msgstr "mett en avant"
 
-#: ../../mod/contacts.php:585
-msgid "Only show ignored contacts"
-msgstr "Ne montrer que les contacts ignorés"
+#: ../../mod/content.php:754 ../../object/Item.php:196
+msgid "remove star"
+msgstr "ne plus mettre en avant"
 
-#: ../../mod/contacts.php:589
-msgid "Archived"
-msgstr "Archivés"
+#: ../../mod/content.php:755 ../../object/Item.php:197
+msgid "toggle star status"
+msgstr "mettre en avant"
 
-#: ../../mod/contacts.php:592
-msgid "Only show archived contacts"
-msgstr "Ne montrer que les contacts archivés"
+#: ../../mod/content.php:758 ../../object/Item.php:200
+msgid "starred"
+msgstr "mis en avant"
 
-#: ../../mod/contacts.php:596
-msgid "Hidden"
-msgstr "Cachés"
+#: ../../mod/content.php:759 ../../object/Item.php:220
+msgid "add tag"
+msgstr "ajouter une étiquette"
 
-#: ../../mod/contacts.php:599
-msgid "Only show hidden contacts"
-msgstr "Ne montrer que les contacts masqués"
+#: ../../mod/content.php:763 ../../object/Item.php:133
+msgid "save to folder"
+msgstr "sauver vers dossier"
 
-#: ../../mod/contacts.php:647
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: ../../mod/content.php:854 ../../object/Item.php:328
+msgid "to"
+msgstr "à"
 
-#: ../../mod/contacts.php:651
-msgid "is a fan of yours"
-msgstr "Vous suit"
+#: ../../mod/content.php:855 ../../object/Item.php:330
+msgid "Wall-to-Wall"
+msgstr "Inter-mur"
 
-#: ../../mod/contacts.php:655
-msgid "you are a fan of"
-msgstr "Vous le/la suivez"
+#: ../../mod/content.php:856 ../../object/Item.php:331
+msgid "via Wall-To-Wall:"
+msgstr "en Inter-mur:"
 
-#: ../../mod/contacts.php:694 ../../view/theme/diabook/theme.php:125
-#: ../../include/nav.php:175
-msgid "Contacts"
-msgstr "Contacts"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Supprimer mon compte"
 
-#: ../../mod/contacts.php:698
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
 
-#: ../../mod/contacts.php:699 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Trouvé: "
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Merci de saisir votre mot de passe pour vérification:"
 
-#: ../../mod/contacts.php:700 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Trouver"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Serveur de communications Friendica - Configuration"
 
-#: ../../mod/contacts.php:705 ../../mod/settings.php:132
-#: ../../mod/settings.php:637
-msgid "Update"
-msgstr "Mises-à-jour"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Pas de vidéo sélectionné"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossible de créer une table."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vidéos récente"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "La base de données de votre site Friendica a bien été installée."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Téléversé une nouvelle vidéo"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amis communs"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Référez-vous au fichier \"INSTALL.txt\"."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Pas de contacts en commun."
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Vérifications système"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact ajouté"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Migrer le compte"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../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/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
 
-#: ../../mod/uimport.php:68
+#: ../../mod/install.php:229
 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."
+"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/uimport.php:69
+#: ../../mod/install.php:230
 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"
+"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/uimport.php:70
-msgid "Account file"
-msgstr "Fichier du compte"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Serveur de base de données"
 
-#: ../../mod/uimport.php:70
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nom d'utilisateur de la base"
+
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Mot de passe de la base"
+
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nom de la base"
+
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adresse électronique de l'administrateur du site"
+
+#: ../../mod/install.php:238 ../../mod/install.php:277
 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\""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
+
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
 
-#: ../../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"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amis de %s"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette supprimée"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Chemin vers l'exécutable de PHP"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Sélectionner une étiquette à supprimer: "
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Version \"ligne de commande\" de PHP"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bienvenue sur Friendica"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Version de PHP:"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../mod/newmember.php:12
+#: ../../mod/install.php:354
 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."
+"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/newmember.php:14
-msgid "Getting Started"
-msgstr "Bien démarrer"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Ceci est requis pour que la livraison des messages fonctionne."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica pas-à-pas"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/newmember.php:18
+#: ../../mod/install.php:378
 msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
-
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Éditer vos Réglages"
+"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/newmember.php:26
+#: ../../mod/install.php:379
 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."
+"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/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Générer les clés de chiffrement"
 
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2090
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77
-msgid "Profile"
-msgstr "Profil"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Module libCurl de PHP"
 
-#: ../../mod/newmember.php:36 ../../mod/profiles.php:658
-#: ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Module GD (graphiques) de PHP"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Module OpenSSL de PHP"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Éditer votre Profil"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Module Mysqli de PHP"
 
-#: ../../mod/newmember.php:38
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Module mb_string de PHP"
+
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Module mod_rewrite Apache"
+
+#: ../../mod/install.php:397
 msgid ""
-"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."
+"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/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Mots-clés du profil"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
 
-#: ../../mod/newmember.php:40
+#: ../../mod/install.php:409
 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."
+"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/newmember.php:44
-msgid "Connecting"
-msgstr "Connexions"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
 
-#: ../../mod/newmember.php:51
+#: ../../mod/install.php:438
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
-
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importer courriels"
+"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/newmember.php:56
+#: ../../mod/install.php:439
 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."
+"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/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Consulter vos Contacts"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
 
-#: ../../mod/newmember.php:58
+#: ../../mod/install.php:441
 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>."
+"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/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Consulter l'Annuaire de votre Site"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Fichier .htconfig.php accessible en écriture"
 
-#: ../../mod/newmember.php:60
+#: ../../mod/install.php:454
 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é."
+"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/newmember.php:62
-msgid "Finding New People"
-msgstr "Trouver de nouvelles personnes"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
 
-#: ../../mod/newmember.php:62
+#: ../../mod/install.php:456
 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."
+"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/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groupes"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grouper vos contacts"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 est autorisé à l écriture"
 
-#: ../../mod/newmember.php:70
+#: ../../mod/install.php:472
 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."
+"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/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Pourquoi mes éléments ne sont pas publics?"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne."
 
-#: ../../mod/newmember.php:73
+#: ../../mod/install.php:484
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
-
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtenir de l'aide"
+"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/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Aller à la section Aide"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ensuite</h1>"
 
-#: ../../mod/newmember.php:82
+#: ../../mod/install.php:524
 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."
+"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/search.php:21 ../../mod/network.php:179
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../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/search.php:30 ../../mod/network.php:188
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Recherches"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossible de vérifier votre localisation."
 
-#: ../../mod/search.php:99 ../../include/text.php:952
-#: ../../include/text.php:953 ../../include/nav.php:119
-msgid "Search"
-msgstr "Recherche"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Pas de destinataire."
 
-#: ../../mod/search.php:170 ../../mod/search.php:196
-#: ../../mod/community.php:62 ../../mod/community.php:71
-msgid "No results."
-msgstr "Aucun résultat."
+#: ../../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 "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "La limite d'invitation totale est éxédée."
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Aide:"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
+msgstr "Aide"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Rejoignez-nous sur Friendica"
+#: ../../mod/help.php:90 ../../index.php:256
+msgid "Not Found"
+msgstr "Non trouvé"
 
-#: ../../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/help.php:93 ../../index.php:259
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../mod/invite.php:89
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s accueille %2$s"
 
-#: ../../mod/invite.php:93
+#: ../../mod/home.php:35
 #, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: ../../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/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
 
-#: ../../mod/invite.php:122
+#: ../../mod/wall_attach.php:81
 #, 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 "File exceeds size limit of %d"
+msgstr "La taille du fichier dépasse la limite de %d"
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "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/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Le téléversement a échoué."
 
-#: ../../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/match.php:12
+msgid "Profile Match"
+msgstr "Correpondance de profils"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne:"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "s'intéresse à:"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
+#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
+msgstr "Relier"
 
-#: ../../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/share.php:44
+msgid "link"
+msgstr "lien"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Indisponible."
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
+#: ../../mod/community.php:32 ../../include/nav.php:129
+#: ../../view/theme/diabook/theme.php:129
+msgid "Community"
+msgstr "Communauté"
+
+#: ../../mod/community.php:62 ../../mod/community.php:71
+#: ../../mod/search.php:170 ../../mod/search.php:196
+msgid "No results."
+msgstr "Aucun résultat."
+
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "tout le monde"
 
 #: ../../mod/settings.php:41
 msgid "Additional features"
@@ -3543,7 +3572,7 @@ msgstr "Fonctions supplémentaires"
 msgid "Display"
 msgstr "Afficher"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:777
+#: ../../mod/settings.php:52 ../../mod/settings.php:780
 msgid "Social Networks"
 msgstr "Réseaux sociaux"
 
@@ -3603,1058 +3632,883 @@ msgstr "Mots de passe changés."
 msgid "Password update failed. Please try again."
 msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/settings.php:426
+#: ../../mod/settings.php:428
 msgid " Please use a shorter name."
 msgstr " Merci d'utiliser un nom plus court."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:430
 msgid " Name too short."
 msgstr " Nom trop court."
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:439
 msgid "Wrong Password"
 msgstr "Mauvais mot de passe"
 
-#: ../../mod/settings.php:442
+#: ../../mod/settings.php:444
 msgid " Not valid email."
 msgstr " Email invalide."
 
-#: ../../mod/settings.php:448
+#: ../../mod/settings.php:450
 msgid " Cannot change to that email."
 msgstr " Impossible de changer pour cet email."
 
-#: ../../mod/settings.php:503
+#: ../../mod/settings.php:506
 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:507
+#: ../../mod/settings.php:510
 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:537
+#: ../../mod/settings.php:540
 msgid "Settings updated."
 msgstr "Réglages mis à jour."
 
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:675
 msgid "Add application"
 msgstr "Ajouter une application"
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:617 ../../mod/settings.php:643
 msgid "Consumer Key"
 msgstr "Clé utilisateur"
 
-#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
 msgid "Consumer Secret"
 msgstr "Secret utilisateur"
 
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
+#: ../../mod/settings.php:619 ../../mod/settings.php:645
 msgid "Redirect"
 msgstr "Rediriger"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
 msgid "Icon url"
 msgstr "URL de l'icône"
 
-#: ../../mod/settings.php:628
+#: ../../mod/settings.php:631
 msgid "You can't edit this application."
 msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/settings.php:671
+#: ../../mod/settings.php:674
 msgid "Connected Apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:678
 msgid "Client key starts with"
 msgstr "La clé cliente commence par"
 
-#: ../../mod/settings.php:676
+#: ../../mod/settings.php:679
 msgid "No name"
 msgstr "Sans nom"
 
-#: ../../mod/settings.php:677
+#: ../../mod/settings.php:680
 msgid "Remove authorization"
 msgstr "Révoquer l'autorisation"
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:692
 msgid "No Plugin settings configured"
 msgstr "Pas de réglages d'extensions configurés"
 
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:700
 msgid "Plugin Settings"
 msgstr "Extensions"
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "Off"
 msgstr "Éteint"
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "On"
 msgstr "Allumé"
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:722
 msgid "Additional Features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr "activé"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "disabled"
 msgstr "désactivé"
 
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:737
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:770
+#: ../../mod/settings.php:773
 msgid "Email access is disabled on this site."
 msgstr "L'accès courriel est désactivé sur ce site."
 
-#: ../../mod/settings.php:782
+#: ../../mod/settings.php:785
 msgid "Email/Mailbox Setup"
 msgstr "Réglages de courriel/boîte à lettre"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:786
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
 
-#: ../../mod/settings.php:784
+#: ../../mod/settings.php:787
 msgid "Last successful email check:"
 msgstr "Dernière vérification réussie des courriels:"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:789
 msgid "IMAP server name:"
 msgstr "Nom du serveur IMAP:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:790
 msgid "IMAP port:"
 msgstr "Port IMAP:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:791
 msgid "Security:"
 msgstr "Sécurité:"
 
-#: ../../mod/settings.php:788 ../../mod/settings.php:793
+#: ../../mod/settings.php:791 ../../mod/settings.php:796
 msgid "None"
 msgstr "Aucun(e)"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:792
 msgid "Email login name:"
 msgstr "Nom de connexion:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:793
 msgid "Email password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:794
 msgid "Reply-to address:"
 msgstr "Adresse de réponse:"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:795
 msgid "Send public posts to all email contacts:"
 msgstr "Envoyer les publications publiques à tous les contacts courriels:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Action after import:"
 msgstr "Action après import:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Mark as seen"
 msgstr "Marquer comme vu"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Move to folder"
 msgstr "Déplacer vers"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:797
 msgid "Move to folder:"
 msgstr "Déplacer vers:"
 
-#: ../../mod/settings.php:875
+#: ../../mod/settings.php:878
 msgid "Display Settings"
 msgstr "Affichage"
 
-#: ../../mod/settings.php:881 ../../mod/settings.php:896
+#: ../../mod/settings.php:884 ../../mod/settings.php:899
 msgid "Display Theme:"
 msgstr "Thème d'affichage:"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:885
 msgid "Mobile Theme:"
 msgstr "Thème mobile:"
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Update browser every xx seconds"
 msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Délai minimum de 10 secondes, pas de maximum"
 
-#: ../../mod/settings.php:884
+#: ../../mod/settings.php:887
 msgid "Number of items to display per page:"
 msgstr "Nombre d’éléments par page:"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:885
+#: ../../mod/settings.php:887 ../../mod/settings.php:888
 msgid "Maximum of 100 items"
 msgstr "Maximum de 100 éléments"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:888
 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:886
+#: ../../mod/settings.php:889
 msgid "Don't show emoticons"
 msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:890
 msgid "Don't show notices"
 msgstr "Ne plus afficher les avis"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:891
 msgid "Infinite scroll"
 msgstr "Défilement infini"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:892
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:969
 msgid "User Types"
 msgstr "Types d'utilisateurs"
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Types"
 msgstr "Genre de communautés"
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 msgid "Normal Account Page"
 msgstr "Compte normal"
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:972
 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:972
+#: ../../mod/settings.php:975
 msgid "Soapbox Page"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/settings.php:973
+#: ../../mod/settings.php:976
 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:976
+#: ../../mod/settings.php:979
 msgid "Community Forum/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:980
 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:980
+#: ../../mod/settings.php:983
 msgid "Automatic Friend Page"
 msgstr "Compte d'\"amitié automatique\""
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:984
 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:984
+#: ../../mod/settings.php:987
 msgid "Private Forum [Experimental]"
 msgstr "Forum privé [expérimental]"
 
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:988
 msgid "Private forum - approved members only"
 msgstr "Forum privé - modéré en inscription"
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1010
 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:1013
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:234 ../../mod/profiles.php:627
+#: ../../mod/profiles.php:631 ../../mod/api.php:106
+msgid "No"
+msgstr "Non"
+
+#: ../../mod/settings.php:1016
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire social global?"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1024
 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:1025 ../../include/conversation.php:1057
+#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Cacher les détails du profil aux visiteurs inconnus?"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1028
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr ""
+
+#: ../../mod/settings.php:1033
 msgid "Allow friends to post to your profile page?"
 msgstr "Autoriser vos amis à publier sur votre profil?"
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1039
 msgid "Allow friends to tag your posts?"
 msgstr "Autoriser vos amis à étiqueter vos publications?"
 
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1045
 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:1048
+#: ../../mod/settings.php:1051
 msgid "Permit unknown people to send you private mail?"
 msgstr "Autoriser les messages privés d'inconnus?"
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1059
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "ou"
-
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr "L'adresse de votre identité est"
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 msgid "Automatically expire posts after this many days:"
 msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 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:1076
+#: ../../mod/settings.php:1079
 msgid "Advanced expiration settings"
 msgstr "Réglages avancés de l'expiration"
 
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1080
 msgid "Advanced Expiration"
 msgstr "Expiration (avancé)"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1081
 msgid "Expire posts:"
 msgstr "Faire expirer les publications:"
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1082
 msgid "Expire personal notes:"
 msgstr "Faire expirer les notes personnelles:"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1083
 msgid "Expire starred posts:"
 msgstr "Faire expirer les publications marqués:"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1084
 msgid "Expire photos:"
 msgstr "Faire expirer les photos:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1085
 msgid "Only expire posts by others:"
 msgstr "Faire expirer seulement les publications des autres:"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "Account Settings"
 msgstr "Compte"
 
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1119
 msgid "Password Settings"
 msgstr "Réglages de mot de passe"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "New Password:"
 msgstr "Nouveau mot de passe:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Confirm:"
 msgstr "Confirmer:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 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:1119
+#: ../../mod/settings.php:1122
 msgid "Current Password:"
 msgstr "Mot de passe actuel:"
 
-#: ../../mod/settings.php:1119 ../../mod/settings.php:1120
+#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
 msgid "Your current password to confirm the changes"
 msgstr "Votre mot de passe actuel pour confirmer les modifications"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:1124
+#: ../../mod/settings.php:1127
 msgid "Basic Settings"
 msgstr "Réglages basiques"
 
-#: ../../mod/settings.php:1125 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Nom complet:"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1129
 msgid "Email Address:"
 msgstr "Adresse courriel:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "Your Timezone:"
 msgstr "Votre fuseau horaire:"
 
-#: ../../mod/settings.php:1128
+#: ../../mod/settings.php:1131
 msgid "Default Post Location:"
 msgstr "Emplacement de publication par défaut:"
 
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1132
 msgid "Use Browser Location:"
 msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1135
 msgid "Security and Privacy Settings"
 msgstr "Réglages de sécurité et vie privée"
 
-#: ../../mod/settings.php:1134
+#: ../../mod/settings.php:1137
 msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximal de requêtes d'amitié/jour:"
-
-#: ../../mod/settings.php:1134 ../../mod/settings.php:1164
-msgid "(to prevent spam abuse)"
-msgstr "(pour limiter l'impact du spam)"
-
-#: ../../mod/settings.php:1135
-msgid "Default Post Permissions"
-msgstr "Permissions de publication par défaut"
-
-#: ../../mod/settings.php:1136
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
-
-#: ../../mod/settings.php:1147
-msgid "Default Private Post"
-msgstr "Message privé par défaut"
-
-#: ../../mod/settings.php:1148
-msgid "Default Public Post"
-msgstr "Message publique par défaut"
-
-#: ../../mod/settings.php:1152
-msgid "Default Permissions for New Posts"
-msgstr "Permissions par défaut pour les nouvelles publications"
-
-#: ../../mod/settings.php:1164
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum de messages privés d'inconnus par jour:"
-
-#: ../../mod/settings.php:1167
-msgid "Notification Settings"
-msgstr "Réglages de notification"
-
-#: ../../mod/settings.php:1168
-msgid "By default post a status message when:"
-msgstr "Par défaut, poster un statut quand:"
-
-#: ../../mod/settings.php:1169
-msgid "accepting a friend request"
-msgstr "j'accepte un ami"
-
-#: ../../mod/settings.php:1170
-msgid "joining a forum/community"
-msgstr "joignant un forum/une communauté"
-
-#: ../../mod/settings.php:1171
-msgid "making an <em>interesting</em> profile change"
-msgstr "je fais une modification <em>intéressante</em> de mon profil"
-
-#: ../../mod/settings.php:1172
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand:"
-
-#: ../../mod/settings.php:1173
-msgid "You receive an introduction"
-msgstr "Vous recevez une introduction"
-
-#: ../../mod/settings.php:1174
-msgid "Your introductions are confirmed"
-msgstr "Vos introductions sont confirmées"
-
-#: ../../mod/settings.php:1175
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un écrit sur votre mur"
-
-#: ../../mod/settings.php:1176
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un vous commente"
-
-#: ../../mod/settings.php:1177
-msgid "You receive a private message"
-msgstr "Vous recevez un message privé"
-
-#: ../../mod/settings.php:1178
-msgid "You receive a friend suggestion"
-msgstr "Vous avez reçu une suggestion d'ami"
-
-#: ../../mod/settings.php:1179
-msgid "You are tagged in a post"
-msgstr "Vous avez été étiquetté dans une publication"
-
-#: ../../mod/settings.php:1180
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Vous avez été sollicité dans une publication"
-
-#: ../../mod/settings.php:1183
-msgid "Advanced Account/Page Type Settings"
-msgstr "Paramètres avancés de compte/page"
-
-#: ../../mod/settings.php:1184
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifier le comportement de ce compte dans certaines situations"
-
-#: ../../mod/settings.php:1187
-msgid "Relocate"
-msgstr ""
-
-#: ../../mod/settings.php:1188
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr ""
-
-#: ../../mod/settings.php:1189
-msgid "Resend relocate message to contacts"
-msgstr ""
-
-#: ../../mod/display.php:452
-msgid "Item has been removed."
-msgstr "Cet élément a été enlevé."
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Recherche de personnes"
-
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Aucune correspondance"
-
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil supprimé."
-
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
-
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nouveau profil créé."
-
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Ce profil ne peut être cloné."
-
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
-
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
-msgstr "Statut marital"
-
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
-msgstr "Partenaire/conjoint"
-
-#: ../../mod/profiles.php:331
-msgid "Likes"
-msgstr "Derniers \"J'aime\""
-
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
-msgstr "Derniers \"Je n'aime pas\""
-
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
-
-#: ../../mod/profiles.php:342
-msgid "Religion"
-msgstr "Religion"
-
-#: ../../mod/profiles.php:346
-msgid "Political Views"
-msgstr "Tendance politique"
-
-#: ../../mod/profiles.php:350
-msgid "Gender"
-msgstr "Sexe"
-
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
-
-#: ../../mod/profiles.php:358
-msgid "Homepage"
-msgstr "Site internet"
-
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:657
-msgid "Interests"
-msgstr "Centres d'intérêt"
-
-#: ../../mod/profiles.php:366
-msgid "Address"
-msgstr "Adresse"
-
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:653
-msgid "Location"
-msgstr "Localisation"
-
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
-msgstr "Profil mis à jour."
-
-#: ../../mod/profiles.php:527
-msgid " and "
-msgstr " et "
-
-#: ../../mod/profiles.php:535
-msgid "public profile"
-msgstr "profil public"
-
-#: ../../mod/profiles.php:538
-#, 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/profiles.php:539
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "Visiter le %2$s de %1$s"
-
-#: ../../mod/profiles.php:542
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
-
-#: ../../mod/profiles.php:617
-msgid "Hide contacts and friends:"
-msgstr "Cacher mes contacts et amis:"
-
-#: ../../mod/profiles.php:622
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
+msgstr "Nombre maximal de requêtes d'amitié/jour:"
 
-#: ../../mod/profiles.php:644
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+msgid "(to prevent spam abuse)"
+msgstr "(pour limiter l'impact du spam)"
 
-#: ../../mod/profiles.php:646
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: ../../mod/settings.php:1138
+msgid "Default Post Permissions"
+msgstr "Permissions de publication par défaut"
 
-#: ../../mod/profiles.php:647
-msgid "View this profile"
-msgstr "Voir ce profil"
+#: ../../mod/settings.php:1139
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/profiles.php:648
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil en utilisant ces réglages"
+#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/photos.php:1519
+msgid "Show to Groups"
+msgstr "Montrer aux groupes"
 
-#: ../../mod/profiles.php:649
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
+#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/photos.php:1520
+msgid "Show to Contacts"
+msgstr "Montrer aux Contacts"
 
-#: ../../mod/profiles.php:650
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
+#: ../../mod/settings.php:1150
+msgid "Default Private Post"
+msgstr "Message privé par défaut"
 
-#: ../../mod/profiles.php:651
-msgid "Basic information"
-msgstr "Information de base"
+#: ../../mod/settings.php:1151
+msgid "Default Public Post"
+msgstr "Message publique par défaut"
 
-#: ../../mod/profiles.php:652
-msgid "Profile picture"
-msgstr "Image de profil"
+#: ../../mod/settings.php:1155
+msgid "Default Permissions for New Posts"
+msgstr "Permissions par défaut pour les nouvelles publications"
 
-#: ../../mod/profiles.php:654
-msgid "Preferences"
-msgstr "Préférences"
+#: ../../mod/settings.php:1167
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum de messages privés d'inconnus par jour:"
 
-#: ../../mod/profiles.php:655
-msgid "Status information"
-msgstr "Information sur le statut"
+#: ../../mod/settings.php:1170
+msgid "Notification Settings"
+msgstr "Réglages de notification"
 
-#: ../../mod/profiles.php:656
-msgid "Additional information"
-msgstr "Information additionnelle"
+#: ../../mod/settings.php:1171
+msgid "By default post a status message when:"
+msgstr "Par défaut, poster un statut quand:"
 
-#: ../../mod/profiles.php:659
-msgid "Profile Name:"
-msgstr "Nom du profil:"
+#: ../../mod/settings.php:1172
+msgid "accepting a friend request"
+msgstr "j'accepte un ami"
 
-#: ../../mod/profiles.php:660
-msgid "Your Full Name:"
-msgstr "Votre nom complet:"
+#: ../../mod/settings.php:1173
+msgid "joining a forum/community"
+msgstr "joignant un forum/une communauté"
 
-#: ../../mod/profiles.php:661
-msgid "Title/Description:"
-msgstr "Titre/Description:"
+#: ../../mod/settings.php:1174
+msgid "making an <em>interesting</em> profile change"
+msgstr "je fais une modification <em>intéressante</em> de mon profil"
 
-#: ../../mod/profiles.php:662
-msgid "Your Gender:"
-msgstr "Votre genre:"
+#: ../../mod/settings.php:1175
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand:"
 
-#: ../../mod/profiles.php:663
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Anniversaire (%s):"
+#: ../../mod/settings.php:1176
+msgid "You receive an introduction"
+msgstr "Vous recevez une introduction"
 
-#: ../../mod/profiles.php:664
-msgid "Street Address:"
-msgstr "Adresse postale:"
+#: ../../mod/settings.php:1177
+msgid "Your introductions are confirmed"
+msgstr "Vos introductions sont confirmées"
 
-#: ../../mod/profiles.php:665
-msgid "Locality/City:"
-msgstr "Ville/Localité:"
+#: ../../mod/settings.php:1178
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/profiles.php:666
-msgid "Postal/Zip Code:"
-msgstr "Code postal:"
+#: ../../mod/settings.php:1179
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un vous commente"
 
-#: ../../mod/profiles.php:667
-msgid "Country:"
-msgstr "Pays:"
+#: ../../mod/settings.php:1180
+msgid "You receive a private message"
+msgstr "Vous recevez un message privé"
 
-#: ../../mod/profiles.php:668
-msgid "Region/State:"
-msgstr "Région/État:"
+#: ../../mod/settings.php:1181
+msgid "You receive a friend suggestion"
+msgstr "Vous avez reçu une suggestion d'ami"
 
-#: ../../mod/profiles.php:669
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
+#: ../../mod/settings.php:1182
+msgid "You are tagged in a post"
+msgstr "Vous avez été étiquetté dans une publication"
 
-#: ../../mod/profiles.php:670
-msgid "Who: (if applicable)"
-msgstr "Qui: (si pertinent)"
+#: ../../mod/settings.php:1183
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous avez été sollicité dans une publication"
 
-#: ../../mod/profiles.php:671
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/settings.php:1185
+msgid "Text-only notification emails"
+msgstr ""
 
-#: ../../mod/profiles.php:672
-msgid "Since [date]:"
-msgstr "Depuis [date] :"
+#: ../../mod/settings.php:1187
+msgid "Send text only notification emails, without the html part"
+msgstr ""
 
-#: ../../mod/profiles.php:673 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Préférence sexuelle:"
+#: ../../mod/settings.php:1189
+msgid "Advanced Account/Page Type Settings"
+msgstr "Paramètres avancés de compte/page"
 
-#: ../../mod/profiles.php:674
-msgid "Homepage URL:"
-msgstr "Page personnelle:"
+#: ../../mod/settings.php:1190
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifier le comportement de ce compte dans certaines situations"
 
-#: ../../mod/profiles.php:675 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr " Ville d'origine:"
+#: ../../mod/settings.php:1193
+msgid "Relocate"
+msgstr ""
 
-#: ../../mod/profiles.php:676 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Opinions politiques:"
+#: ../../mod/settings.php:1194
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr ""
 
-#: ../../mod/profiles.php:677
-msgid "Religious Views:"
-msgstr "Opinions religieuses:"
+#: ../../mod/settings.php:1195
+msgid "Resend relocate message to contacts"
+msgstr ""
 
-#: ../../mod/profiles.php:678
-msgid "Public Keywords:"
-msgstr "Mots-clés publics:"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Cette introduction a déjà été acceptée."
 
-#: ../../mod/profiles.php:679
-msgid "Private Keywords:"
-msgstr "Mots-clés privés:"
+#: ../../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:680 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "J'aime :"
+#: ../../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:681 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Je n'aime pas :"
+#: ../../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:682
-msgid "Example: fishing photography software"
-msgstr "Exemple: football dessin programmation"
+#: ../../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:683
-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:172
+msgid "Introduction complete."
+msgstr "Phase d'introduction achevée."
 
-#: ../../mod/profiles.php:684
-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:214
+msgid "Unrecoverable protocol error."
+msgstr "Erreur de protocole non-récupérable."
 
-#: ../../mod/profiles.php:685
-msgid "Tell us about yourself..."
-msgstr "Parlez-nous de vous..."
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil indisponible."
 
-#: ../../mod/profiles.php:686
-msgid "Hobbies/Interests"
-msgstr "Passe-temps/Centres d'intérêt"
+#: ../../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:687
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées/Réseaux sociaux"
+#: ../../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:688
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../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:689
-msgid "Books, literature"
-msgstr "Lectures"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Localisateur invalide"
 
-#: ../../mod/profiles.php:690
-msgid "Television"
-msgstr "Télévision"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Adresse courriel invalide."
 
-#: ../../mod/profiles.php:691
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../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:692
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../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:693
-msgid "Work/employment"
-msgstr "Activité professionnelle/Occupation"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Vous vous êtes déjà présenté ici."
 
-#: ../../mod/profiles.php:694
-msgid "School/education"
-msgstr "Études/Formation"
+#: ../../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:699
-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/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "URL de profil invalide."
 
-#: ../../mod/profiles.php:709 ../../mod/directory.php:113
-msgid "Age: "
-msgstr "Age: "
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "URL de profil interdite."
 
-#: ../../mod/profiles.php:762
-msgid "Edit/Manage Profiles"
-msgstr "Editer/gérer les profils"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Votre introduction a été envoyée."
 
-#: ../../mod/profiles.php:763 ../../boot.php:1585 ../../boot.php:1611
-msgid "Change profile photo"
-msgstr "Changer de photo de profil"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Connectez-vous pour confirmer l'introduction."
 
-#: ../../mod/profiles.php:764 ../../boot.php:1586
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../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:775 ../../boot.php:1596
-msgid "Profile Image"
-msgstr "Image du profil"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Cacher ce contact"
 
-#: ../../mod/profiles.php:777 ../../boot.php:1599
-msgid "visible to everybody"
-msgstr "visible par tous"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bienvenue chez vous, %s."
 
-#: ../../mod/profiles.php:778 ../../boot.php:1600
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
+#: ../../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/share.php:44
-msgid "link"
-msgstr "lien"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Confirmer"
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Exporter le compte"
+#: ../../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/uexport.php:77
+#: ../../mod/dfrn_request.php:824
 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."
+"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/uexport.php:78
-msgid "Export all"
-msgstr "Tout exporter"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Requête de relation/amitié"
 
-#: ../../mod/uexport.php:78
+#: ../../mod/dfrn_request.php:828
 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)."
+"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/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Merci de répondre à ce qui suit:"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Est-ce que %s vous connaît?"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Ajouter une note personnelle:"
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} a commenté la publication de %s"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} a aimé la publication de %s"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/ping.php:266
+#: ../../mod/dfrn_request.php:839
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} n'a pas aimé la publication de %s"
+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/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} est désormais ami(e) avec %s"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Votre adresse d'identité:"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} a publié"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Envoyer la requête"
 
-#: ../../mod/ping.php:281
+#: ../../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
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} a étiqueté la publication de %s avec #%s"
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr ""
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vous a mentionné dans une publication"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traitée."
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
+#: ../../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/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Effacer les notifications"
+#: ../../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/community.php:23
-msgid "Not available."
-msgstr "Indisponible."
+#: ../../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/community.php:32 ../../view/theme/diabook/theme.php:129
-#: ../../include/nav.php:129
-msgid "Community"
-msgstr "Communauté"
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Sauver dans le Dossier:"
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Votre OpenID (facultatif): "
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: ../../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/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr ""
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "Votre ID d'invitation: "
 
-#: ../../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/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Votre nom complet (p.ex. Michel Dupont): "
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Votre adresse courriel: "
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../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/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Choisir un pseudo: "
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
+#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
+msgid "Register"
+msgstr "S'inscrire"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importer votre profile dans cette instance de friendica"
+
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Système indisponible pour cause de maintenance"
+
+#: ../../mod/search.php:99 ../../include/text.php:952
+#: ../../include/text.php:953 ../../include/nav.php:119
+msgid "Search"
+msgstr "Recherche"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
+#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Annuaire global"
 
-#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
-#: ../../include/contact_widgets.php:35
-msgid "Friend Suggestions"
-msgstr "Suggestions d'amitiés/contacts"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Trouver sur ce site"
 
-#: ../../mod/suggest.php:72
-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/directory.php:62
+msgid "Site Directory"
+msgstr "Annuaire local"
 
-#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1542
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Relier"
+#: ../../mod/directory.php:113 ../../mod/profiles.php:716
+msgid "Age: "
+msgstr "Age: "
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Genre: "
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accès refusé."
+#: ../../mod/directory.php:138 ../../boot.php:1645
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Genre:"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s accueille %2$s"
+#: ../../mod/directory.php:140 ../../boot.php:1648
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Statut:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
+#: ../../mod/directory.php:142 ../../boot.php:1650
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Page personnelle:"
 
-#: ../../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/directory.php:144 ../../boot.php:1652
+#: ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "À propos:"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Aucune entrée (certaines peuvent être cachées)."
 
 #: ../../mod/delegate.php:101
 msgid "No potential page delegates located."
@@ -4691,1132 +4545,1194 @@ msgstr "Ajouter"
 msgid "No entries."
 msgstr "Aucune entrée."
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Aucun contact."
-
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
-msgid "View Contacts"
-msgstr "Voir les contacts"
-
-#: ../../mod/notes.php:44 ../../boot.php:2121
-msgid "Personal Notes"
-msgstr "Notes personnelles"
-
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Solliciter"
-
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "solliciter (poke/...) quelqu'un"
-
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinataire"
-
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisissez ce que vous voulez faire au destinataire"
-
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendez ce message privé"
-
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amis communs"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Pas de contacts en commun."
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exporter le compte"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Genre: "
+#: ../../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/directory.php:138 ../../boot.php:1624
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Genre:"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Tout exporter"
 
-#: ../../mod/directory.php:140 ../../boot.php:1627
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Statut:"
+#: ../../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/directory.php:142 ../../boot.php:1629
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Page personnelle:"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s est d'humeur %2$s"
 
-#: ../../mod/directory.php:144 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "À propos:"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humeur"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Aucune entrée (certaines peuvent être cachées)."
+#: ../../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/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:134
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:527
+msgid "Friend Suggestions"
+msgstr "Suggestions d'amitiés/contacts"
 
-#: ../../mod/localtime.php:26
+#: ../../mod/suggest.php:74
 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."
+"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/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorer/cacher"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil supprimé."
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nouveau profil créé."
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publication réussie."
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Ce profil ne peut être cloné."
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image envoyée, mais impossible de la retailler."
+#: ../../mod/profiles.php:172
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Réduction de la taille de l'image [%s] échouée."
+#: ../../mod/profiles.php:323
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../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."
+#: ../../mod/profiles.php:327
+msgid "Romantic Partner"
+msgstr "Partenaire/conjoint"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: ../../mod/profiles.php:331
+msgid "Likes"
+msgstr "Derniers \"J'aime\""
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Fichier à téléverser:"
+#: ../../mod/profiles.php:335
+msgid "Dislikes"
+msgstr "Derniers \"Je n'aime pas\""
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Choisir un profil:"
+#: ../../mod/profiles.php:339
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Téléverser"
+#: ../../mod/profiles.php:342
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: ../../mod/profiles.php:346
+msgid "Political Views"
+msgstr "Tendance politique"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: ../../mod/profiles.php:350
+msgid "Gender"
+msgstr "Sexe"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: ../../mod/profiles.php:354
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
+#: ../../mod/profiles.php:358
+msgid "Homepage"
+msgstr "Site internet"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../mod/profiles.php:366
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Serveur de communications Friendica - Configuration"
+#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base."
+#: ../../mod/profiles.php:456
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossible de créer une table."
+#: ../../mod/profiles.php:534
+msgid " and "
+msgstr " et "
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "La base de données de votre site Friendica a bien été installée."
+#: ../../mod/profiles.php:542
+msgid "public profile"
+msgstr "profil public"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
+#: ../../mod/profiles.php:545
+#, 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/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+#: ../../mod/profiles.php:546
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "Visiter le %2$s de %1$s"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Vérifications système"
+#: ../../mod/profiles.php:549
+#, 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/install.php:208
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: ../../mod/profiles.php:624
+msgid "Hide contacts and friends:"
+msgstr "Cacher mes contacts et amis:"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: ../../mod/profiles.php:629
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
+#: ../../mod/profiles.php:651
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
+#: ../../mod/profiles.php:653
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
+#: ../../mod/profiles.php:654
+msgid "View this profile"
+msgstr "Voir ce profil"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+#: ../../mod/profiles.php:655
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: ../../mod/profiles.php:656
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: ../../mod/profiles.php:657
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nom de la base"
+#: ../../mod/profiles.php:658
+msgid "Basic information"
+msgstr "Information de base"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Adresse électronique de l'administrateur du site"
+#: ../../mod/profiles.php:659
+msgid "Profile picture"
+msgstr "Image de profil"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
+#: ../../mod/profiles.php:661
+msgid "Preferences"
+msgstr "Préférences"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
+#: ../../mod/profiles.php:662
+msgid "Status information"
+msgstr "Information sur le statut"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Réglages du site"
+#: ../../mod/profiles.php:663
+msgid "Additional information"
+msgstr "Information additionnelle"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
+#: ../../mod/profiles.php:666
+msgid "Profile Name:"
+msgstr "Nom du profil:"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/profiles.php:667
+msgid "Your Full Name:"
+msgstr "Votre nom complet:"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Chemin vers l'exécutable de PHP"
+#: ../../mod/profiles.php:668
+msgid "Title/Description:"
+msgstr "Titre/Description:"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
+#: ../../mod/profiles.php:669
+msgid "Your Gender:"
+msgstr "Votre genre:"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Version \"ligne de commande\" de PHP"
+#: ../../mod/profiles.php:670
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Anniversaire (%s):"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
+#: ../../mod/profiles.php:671
+msgid "Street Address:"
+msgstr "Adresse postale:"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Version de PHP:"
+#: ../../mod/profiles.php:672
+msgid "Locality/City:"
+msgstr "Ville/Localité:"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../mod/profiles.php:673
+msgid "Postal/Zip Code:"
+msgstr "Code postal:"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
+#: ../../mod/profiles.php:674
+msgid "Country:"
+msgstr "Pays:"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+#: ../../mod/profiles.php:675
+msgid "Region/State:"
+msgstr "Région/État:"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/profiles.php:676
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
+#: ../../mod/profiles.php:677
+msgid "Who: (if applicable)"
+msgstr "Qui: (si pertinent)"
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/profiles.php:678
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Générer les clés de chiffrement"
+#: ../../mod/profiles.php:679
+msgid "Since [date]:"
+msgstr "Depuis [date] :"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Module libCurl de PHP"
+#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Préférence sexuelle:"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Module GD (graphiques) de PHP"
+#: ../../mod/profiles.php:681
+msgid "Homepage URL:"
+msgstr "Page personnelle:"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Module OpenSSL de PHP"
+#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr " Ville d'origine:"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Module Mysqli de PHP"
+#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Opinions politiques:"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Module mb_string de PHP"
+#: ../../mod/profiles.php:684
+msgid "Religious Views:"
+msgstr "Opinions religieuses:"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Module mod_rewrite Apache"
+#: ../../mod/profiles.php:685
+msgid "Public Keywords:"
+msgstr "Mots-clés publics:"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
+#: ../../mod/profiles.php:686
+msgid "Private Keywords:"
+msgstr "Mots-clés privés:"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
+#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "J'aime :"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
+#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Je n'aime pas :"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
+#: ../../mod/profiles.php:689
+msgid "Example: fishing photography software"
+msgstr "Exemple: football dessin programmation"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
+#: ../../mod/profiles.php:690
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
+#: ../../mod/profiles.php:691
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
+#: ../../mod/profiles.php:692
+msgid "Tell us about yourself..."
+msgstr "Parlez-nous de vous..."
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+#: ../../mod/profiles.php:693
+msgid "Hobbies/Interests"
+msgstr "Passe-temps/Centres d'intérêt"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
+#: ../../mod/profiles.php:694
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées/Réseaux sociaux"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+#: ../../mod/profiles.php:695
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Fichier .htconfig.php accessible en écriture"
+#: ../../mod/profiles.php:696
+msgid "Books, literature"
+msgstr "Lectures"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+#: ../../mod/profiles.php:697
+msgid "Television"
+msgstr "Télévision"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+#: ../../mod/profiles.php:698
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+#: ../../mod/profiles.php:699
+msgid "Love/romance"
+msgstr "Amour/Romance"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
+#: ../../mod/profiles.php:700
+msgid "Work/employment"
+msgstr "Activité professionnelle/Occupation"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 est autorisé à l écriture"
+#: ../../mod/profiles.php:701
+msgid "School/education"
+msgstr "Études/Formation"
 
-#: ../../mod/install.php:472
+#: ../../mod/profiles.php:706
 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."
+"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/install.php:474
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne."
+#: ../../mod/profiles.php:769
+msgid "Edit/Manage Profiles"
+msgstr "Editer/gérer les profils"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
+msgid "Change profile photo"
+msgstr "Changer de photo de profil"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Ensuite</h1>"
+#: ../../mod/profiles.php:771 ../../boot.php:1607
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."
+#: ../../mod/profiles.php:782 ../../boot.php:1617
+msgid "Profile Image"
+msgstr "Image du profil"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groupe créé."
+#: ../../mod/profiles.php:784 ../../boot.php:1620
+msgid "visible to everybody"
+msgstr "visible par tous"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: ../../mod/profiles.php:785 ../../boot.php:1621
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Éditer la publication"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Sauvegarder le groupe"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
+msgstr "envoi image"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
+msgstr "Joindre fichier"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nom du groupe: "
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
+msgstr "ajout fichier"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
+msgstr "lien web"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
+msgstr "Insérer un lien video"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
+msgstr "lien vidéo"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
+msgstr "Insérer un lien audio"
 
-#: ../../mod/content.php:119 ../../mod/network.php:514
-msgid "No such group"
-msgstr "Groupe inexistant"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr "lien audio"
 
-#: ../../mod/content.php:130 ../../mod/network.php:531
-msgid "Group is empty"
-msgstr "Groupe vide"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
+msgstr "Définir votre localisation"
 
-#: ../../mod/content.php:134 ../../mod/network.php:538
-msgid "Group: "
-msgstr "Groupe: "
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
+msgstr "spéc. localisation"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
+msgstr "Effacer la localisation du navigateur"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Inscription validée."
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
+msgstr "supp. localisation"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
+msgstr "Réglages des permissions"
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr "CC: adresses de courriel"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
+msgstr "Publication publique"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
+msgstr "Définir un titre"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "s'intéresse à:"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication originale."
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
-#: ../../mod/item.php:326
-msgid "Empty post discarded."
-msgstr "Publication vide rejetée."
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
+msgstr "Motorisé par Friendica version"
 
-#: ../../mod/item.php:919
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvée."
+#: ../../mod/friendica.php:63
+msgid "running at web location"
+msgstr "hébergé sur"
 
-#: ../../mod/item.php:945
-#, php-format
+#: ../../mod/friendica.php:65
 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."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica."
 
-#: ../../mod/item.php:947
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
+msgstr "Pour les rapports de bugs: rendez vous sur"
 
-#: ../../mod/item.php:948
+#: ../../mod/friendica.php:68
 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."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
 
-#: ../../mod/item.php:952
-#, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+#: ../../mod/friendica.php:82
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/greffons/applications installées:"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s est d'humeur %2$s"
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
+msgstr "Extensions/greffons/applications non installées:"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humeur"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
 
-#: ../../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/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/network.php:136
-msgid "Search Results For:"
-msgstr "Résultats pour:"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
 
-#: ../../mod/network.php:189 ../../include/group.php:275
-msgid "add"
-msgstr "ajouter"
+#: ../../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/network.php:350
-msgid "Commented Order"
-msgstr "Tri par commentaires"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informations de confidentialité indisponibles."
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
-msgstr "Trier par date de commentaire"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visible par:"
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
-msgstr "Tri des publications"
+#: ../../mod/notes.php:44 ../../boot.php:2145
+msgid "Personal Notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
-msgstr "Trier par date de publication"
+#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
+#: ../../include/event.php:11
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversion temporelle"
 
-#: ../../mod/network.php:374
-msgid "New"
-msgstr "Nouveau"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
-msgstr "Flux d'activités - par date"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Temps UTC : %s"
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
-msgstr "Liens partagés"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Zone de temps courante : %s"
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
-msgstr "Liens intéressants"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Temps local converti : %s"
 
-#: ../../mod/network.php:392
-msgid "Starred"
-msgstr "Mis en avant"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Sélectionner votre zone :"
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Solliciter"
 
-#: ../../mod/network.php:457
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
-msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "solliciter (poke/...) quelqu'un"
 
-#: ../../mod/network.php:460
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinataire"
 
-#: ../../mod/network.php:548
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisissez ce que vous voulez faire au destinataire"
 
-#: ../../mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendez ce message privé"
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
-msgstr "Contact invalide."
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "La limite d'invitation totale est éxédée."
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Réglages du contact appliqués."
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Adresse de courriel invalide."
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Impossible d'appliquer les réglages."
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Rejoignez-nous sur Friendica"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Réglages de réparation des contacts"
+#: ../../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/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : L'envoi du message a échoué."
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "une photo"
+#: ../../mod/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/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Retour à l'éditeur de contact"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Vous n'avez plus d'invitations disponibles"
 
-#: ../../mod/crepair.php:161
-msgid "Account Nickname"
-msgstr "Pseudo du compte"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
 
-#: ../../mod/crepair.php:162
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
+#: ../../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/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
 
-#: ../../mod/crepair.php:163
-msgid "Account URL"
-msgstr "URL du compte"
+#: ../../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/crepair.php:164
-msgid "Friend Request URL"
-msgstr "Echec du téléversement de l'image."
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
 
-#: ../../mod/crepair.php:165
-msgid "Friend Confirm URL"
-msgstr "Accès public refusé."
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses email, une par ligne:"
 
-#: ../../mod/crepair.php:166
-msgid "Notification Endpoint URL"
-msgstr "Aucune photo sélectionnée"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
 
-#: ../../mod/crepair.php:167
-msgid "Poll/Feed URL"
-msgstr "Téléverser des photos"
+#: ../../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/crepair.php:168
-msgid "New photo from this URL"
-msgstr "Nouvelle photo depuis cette URL"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
 
-#: ../../mod/crepair.php:169
-msgid "Remote Self"
-msgstr ""
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
 
-#: ../../mod/crepair.php:171
-msgid "Mirror postings from this contact"
-msgstr ""
+#: ../../mod/photos.php:52 ../../boot.php:2124
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: ../../mod/crepair.php:171
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr ""
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Photos du contact"
 
-#: ../../mod/crepair.php:171
-msgid "No mirroring"
-msgstr ""
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Téléverser de nouvelles photos"
 
-#: ../../mod/crepair.php:171
-msgid "Mirror as forwarded posting"
-msgstr ""
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Informations de contact indisponibles"
 
-#: ../../mod/crepair.php:171
-msgid "Mirror as my own posting"
-msgstr ""
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:146
-msgid "Your posts and conversations"
-msgstr "Vos publications et conversations"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Effacer l'album"
 
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Votre page de profil"
+#: ../../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 ?"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vos contacts"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Effacer la photo"
 
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Vos photos"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
-msgid "Your events"
-msgstr "Vos événements"
+#: ../../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"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
-msgid "Personal notes"
-msgstr "Notes personnelles"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "une photo"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Vos photos personnelles"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "L'image dépasse la taille maximale de  "
 
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-#: ../../view/theme/diabook/config.php:158
-msgid "Community Pages"
-msgstr "Pages de Communauté"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Fichier image vide."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Profils communautaires"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Derniers utilisateurs"
+#: ../../mod/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."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Dernièrement aimé"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1963
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-msgid "event"
-msgstr "évènement"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nom du nouvel album: "
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Dernières photos"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "ou nom d'un album existant: "
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Trouver des amis"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de notice de statut pour cet envoi"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Annuaire local"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Permissions"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
-msgid "Similar Interests"
-msgstr "Intérêts similaires"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Photo privée"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Photo publique"
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Géolocalisation"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Éditer l'album"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Régler le niveau de zoom pour la géolocalisation"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Plus récent d'abord"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Régler la longitude (X) pour la géolocalisation"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Plus ancien d'abord"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Régler la latitude (Y) pour la géolocalisation"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Voir la photo"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr "Aide ou @NewHere?"
+#: ../../mod/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."
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Connecter des services"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
-msgid "don't show"
-msgstr "cacher"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Voir photo"
 
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
-msgid "show"
-msgstr "montrer"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Éditer la photo"
 
-#: ../../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/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:54
-#: ../../view/theme/dispy/config.php:72
-#: ../../view/theme/duepuntozero/config.php:61
-#: ../../view/theme/quattro/config.php:66
-#: ../../view/theme/cleanzero/config.php:82
-msgid "Theme settings"
-msgstr "Réglages du thème graphique"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
 
-#: ../../view/theme/diabook/config.php:151
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/cleanzero/config.php:84
-msgid "Set font-size for posts and comments"
-msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Étiquettes:"
 
-#: ../../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/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Retirer toutes les étiquettes]"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Réglez la résolution de la colonne centrale"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Niveau de zoom"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nom du nouvel album"
 
-#: ../../view/theme/vier/config.php:55
-msgid "Set style"
-msgstr "Définir le style"
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Titre"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1699
-#: ../../include/user.php:247
-msgid "default"
-msgstr "défaut"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Photo privée"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Photo publique"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
+msgstr "Partager"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Inscription validée."
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Merci de vous connecter."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alignement"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Migrer le compte"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Gauche"
+#: ../../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."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centre"
+#: ../../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."
 
-#: ../../view/theme/quattro/config.php:68
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Palette de couleurs"
+#: ../../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"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Taille de texte des publications"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Fichier du compte"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Taille de police des zones de texte"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
 
-#: ../../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/attach.php:8
+msgid "Item not available."
+msgstr "Elément non disponible."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Largeur du thème"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element introuvable."
 
-#: ../../boot.php:723
+#: ../../boot.php:744
 msgid "Delete this item?"
 msgstr "Effacer cet élément?"
 
-#: ../../boot.php:726
+#: ../../boot.php:747
 msgid "show fewer"
 msgstr "montrer moins"
 
-#: ../../boot.php:1096
+#: ../../boot.php:1117
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
 
-#: ../../boot.php:1214
+#: ../../boot.php:1235
 msgid "Create a New Account"
 msgstr "Créer un nouveau compte"
 
-#: ../../boot.php:1239 ../../include/nav.php:73
+#: ../../boot.php:1260 ../../include/nav.php:73
 msgid "Logout"
 msgstr "Se déconnecter"
 
-#: ../../boot.php:1240 ../../include/nav.php:92
+#: ../../boot.php:1261 ../../include/nav.php:92
 msgid "Login"
 msgstr "Connexion"
 
-#: ../../boot.php:1242
+#: ../../boot.php:1263
 msgid "Nickname or Email address: "
 msgstr "Pseudo ou courriel: "
 
-#: ../../boot.php:1243
+#: ../../boot.php:1264
 msgid "Password: "
 msgstr "Mot de passe: "
 
-#: ../../boot.php:1244
+#: ../../boot.php:1265
 msgid "Remember me"
 msgstr "Se souvenir de moi"
 
-#: ../../boot.php:1247
+#: ../../boot.php:1268
 msgid "Or login using OpenID: "
 msgstr "Ou connectez-vous via OpenID: "
 
-#: ../../boot.php:1253
+#: ../../boot.php:1274
 msgid "Forgot your password?"
 msgstr "Mot de passe oublié?"
 
-#: ../../boot.php:1256
+#: ../../boot.php:1277
 msgid "Website Terms of Service"
 msgstr "Conditions d'utilisation du site internet"
 
-#: ../../boot.php:1257
+#: ../../boot.php:1278
 msgid "terms of service"
 msgstr "conditions d'utilisation"
 
-#: ../../boot.php:1259
+#: ../../boot.php:1280
 msgid "Website Privacy Policy"
 msgstr "Politique de confidentialité du site internet"
 
-#: ../../boot.php:1260
+#: ../../boot.php:1281
 msgid "privacy policy"
 msgstr "politique de confidentialité"
 
-#: ../../boot.php:1393
+#: ../../boot.php:1414
 msgid "Requested account is not available."
 msgstr "Le compte demandé n'est pas disponible."
 
-#: ../../boot.php:1475 ../../boot.php:1609
+#: ../../boot.php:1496 ../../boot.php:1630
 #: ../../include/profile_advanced.php:84
 msgid "Edit profile"
 msgstr "Editer le profil"
 
-#: ../../boot.php:1574
+#: ../../boot.php:1595
 msgid "Message"
 msgstr "Message"
 
-#: ../../boot.php:1580 ../../include/nav.php:173
+#: ../../boot.php:1601 ../../include/nav.php:173
 msgid "Profiles"
 msgstr "Profils"
 
-#: ../../boot.php:1580
+#: ../../boot.php:1601
 msgid "Manage/edit profiles"
 msgstr "Gérer/éditer les profils"
 
-#: ../../boot.php:1677
+#: ../../boot.php:1701
 msgid "Network:"
 msgstr "Réseau"
 
-#: ../../boot.php:1707 ../../boot.php:1793
+#: ../../boot.php:1731 ../../boot.php:1817
 msgid "g A l F d"
 msgstr "g A | F d"
 
-#: ../../boot.php:1708 ../../boot.php:1794
+#: ../../boot.php:1732 ../../boot.php:1818
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1753 ../../boot.php:1834
+#: ../../boot.php:1777 ../../boot.php:1858
 msgid "[today]"
 msgstr "[aujourd'hui]"
 
-#: ../../boot.php:1765
+#: ../../boot.php:1789
 msgid "Birthday Reminders"
 msgstr "Rappels d'anniversaires"
 
-#: ../../boot.php:1766
+#: ../../boot.php:1790
 msgid "Birthdays this week:"
 msgstr "Anniversaires cette semaine:"
 
-#: ../../boot.php:1827
+#: ../../boot.php:1851
 msgid "[No description]"
 msgstr "[Sans description]"
 
-#: ../../boot.php:1845
+#: ../../boot.php:1869
 msgid "Event Reminders"
 msgstr "Rappels d'événements"
 
-#: ../../boot.php:1846
+#: ../../boot.php:1870
 msgid "Events this week:"
 msgstr "Evénements cette semaine:"
 
-#: ../../boot.php:2083 ../../include/nav.php:76
+#: ../../boot.php:2107 ../../include/nav.php:76
 msgid "Status"
 msgstr "Statut"
 
-#: ../../boot.php:2086
+#: ../../boot.php:2110
 msgid "Status Messages and Posts"
 msgstr "Messages d'état et publications"
 
-#: ../../boot.php:2093
+#: ../../boot.php:2117
 msgid "Profile Details"
 msgstr "Détails du profil"
 
-#: ../../boot.php:2104 ../../boot.php:2107 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Vidéos"
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Vidéos"
+
+#: ../../boot.php:2141
+msgid "Events and Calendar"
+msgstr "Événements et agenda"
+
+#: ../../boot.php:2148
+msgid "Only You Can See This"
+msgstr "Vous seul pouvez voir ça"
+
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Cette entrée à été édité"
+
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorer le fil"
+
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "Ne plus ignorer le fil"
+
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "Ignorer le statut"
+
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "ignoré"
+
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
+msgstr "Catégories:"
+
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
+msgstr "Rangé sous:"
+
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
+
+#: ../../include/dbstructure.php:26
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr ""
+
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr ""
+
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
+msgstr "Des erreurs ont été signalées lors de la création des tables."
+
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
+msgstr ""
+
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Déconnecté."
+
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
+
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "Le message d'erreur était :"
+
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Ajouter un nouveau contact"
+
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Entrez son adresse ou sa localisation web"
+
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple: bob@example.com, http://example.com/barbara"
+
+#: ../../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"
+
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Trouver des personnes"
+
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Entrez un nom ou un centre d'intérêt"
+
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Connecter/Suivre"
+
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Robert Morgenstein, Pêche"
+
+#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
+msgid "Similar Interests"
+msgstr "Intérêts similaires"
+
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Profil au hasard"
+
+#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
+msgid "Invite Friends"
+msgstr "Inviter des amis"
+
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Réseaux"
+
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Tous réseaux"
 
-#: ../../boot.php:2117
-msgid "Events and Calendar"
-msgstr "Événements et agenda"
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: ../../boot.php:2124
-msgid "Only You Can See This"
-msgstr "Vous seul pouvez voir ça"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tout"
+
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Catégories"
 
 #: ../../include/features.php:23
 msgid "General Features"
@@ -5915,172 +5831,444 @@ msgstr "Activer l'onglet pour afficher seulement les publications du réseau (da
 msgid "Network Shared Links Tab"
 msgstr "Onglet réseau partagé"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
+
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "outils de publication/commentaire"
+
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Suppression multiple"
+
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
+
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
+
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Éditer et corriger les publications et commentaires après l'envoi"
+
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Étiquettage"
+
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Possibilité d'étiqueter les publications existantes"
+
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Catégories des publications"
+
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
+
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Possibilité d'afficher les publications sous les répertoires"
+
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Publications non aimées"
+
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilité de ne pas aimer les publications/commentaires"
+
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Publications spéciales"
+
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Possibilité de marquer les publications spéciales d'une étoile"
+
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr ""
+
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr ""
+
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de connexion manquante."
+
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
+
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
+
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
+
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
+
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Aucune URL de navigation ne correspond à cette adresse."
+
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
+
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
+
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
+
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
+
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossible de récupérer les informations du contact."
+
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "following"
+
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
+
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tout le monde"
+
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "éditer"
+
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editer groupe"
+
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Créer un nouveau groupe"
+
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contacts n'appartenant à aucun groupe"
+
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Divers"
+
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "an"
+
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "mois"
+
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "jour"
+
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "jamais"
+
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "il y a moins d'une seconde"
+
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "ans"
+
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "mois"
+
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "semaine"
+
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "semaines"
+
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "jours"
+
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "heure"
+
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "heures"
+
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minute"
+
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minutes"
+
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "seconde"
+
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "secondes"
+
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s auparavant"
+
+#: ../../include/datetime.php:477 ../../include/items.php:2195
+#, php-format
+msgid "%s's birthday"
+msgstr "Anniversaire de %s's"
+
+#: ../../include/datetime.php:478 ../../include/items.php:2196
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Joyeux anniversaire, %s !"
+
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Visible par tout le monde"
+
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "show"
+msgstr "montrer"
+
+#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "don't show"
+msgstr "cacher"
+
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[pas de sujet]"
+
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "retiré de la liste de suivi"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "outils de publication/commentaire"
+#: ../../include/Contact.php:228 ../../include/conversation.php:882
+msgid "Poke"
+msgstr "Sollicitations (pokes)"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Suppression multiple"
+#: ../../include/Contact.php:229 ../../include/conversation.php:876
+msgid "View Status"
+msgstr "Voir les statuts"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
+#: ../../include/Contact.php:230 ../../include/conversation.php:877
+msgid "View Profile"
+msgstr "Voir le profil"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
+#: ../../include/Contact.php:231 ../../include/conversation.php:878
+msgid "View Photos"
+msgstr "Voir les photos"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Éditer et corriger les publications et commentaires après l'envoi"
+#: ../../include/Contact.php:232 ../../include/Contact.php:255
+#: ../../include/conversation.php:879
+msgid "Network Posts"
+msgstr "Publications du réseau"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Étiquettage"
+#: ../../include/Contact.php:233 ../../include/Contact.php:255
+#: ../../include/conversation.php:880
+msgid "Edit Contact"
+msgstr "Éditer le contact"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Possibilité d'étiqueter les publications existantes"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Supprimer le contact"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Catégories des publications"
+#: ../../include/Contact.php:235 ../../include/Contact.php:255
+#: ../../include/conversation.php:881
+msgid "Send PM"
+msgstr "Message privé"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bienvenue "
 
-#: ../../include/features.php:60 ../../include/contact_widgets.php:104
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Merci d'illustrer votre profil d'une image."
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Possibilité d'afficher les publications sous les répertoires"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bienvenue à nouveau, "
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Publications non aimées"
+#: ../../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é."
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Possibilité de ne pas aimer les publications/commentaires"
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
+msgid "event"
+msgstr "évènement"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Publications spéciales"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s a sollicité %2$s"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Possibilité de marquer les publications spéciales d'une étoile"
+#: ../../include/conversation.php:211 ../../include/text.php:1004
+msgid "poked"
+msgstr "a titillé"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "publication/élément"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s a marqué le %3$s de %2$s comme favori"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Déconnecté."
+#: ../../include/conversation.php:772
+msgid "remove"
+msgstr "enlever"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
+#: ../../include/conversation.php:776
+msgid "Delete Selected Items"
+msgstr "Supprimer les éléments sélectionnés"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Le message d'erreur était :"
+#: ../../include/conversation.php:875
+msgid "Follow Thread"
+msgstr "Suivre le fil"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:140
-msgid "Starts:"
-msgstr "Débute:"
+#: ../../include/conversation.php:944
+#, php-format
+msgid "%s likes this."
+msgstr "%s aime ça."
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:148
-msgid "Finishes:"
-msgstr "Finit:"
+#: ../../include/conversation.php:944
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s n'aime pas ça."
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/conversation.php:949
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../include/conversation.php:952
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Anniversaire:"
+#: ../../include/conversation.php:966
+msgid "and"
+msgstr "et"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Age:"
+#: ../../include/conversation.php:972
+#, php-format
+msgid ", and %d other people"
+msgstr ", et %d autres personnes"
 
-#: ../../include/profile_advanced.php:43
+#: ../../include/conversation.php:974
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+msgid "%s like this."
+msgstr "%s aiment ça."
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Étiquette:"
+#: ../../include/conversation.php:974
+#, php-format
+msgid "%s don't like this."
+msgstr "%s n'aiment pas ça."
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible par <strong>tout le monde</strong>"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt:"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter a video link/URL:"
+msgstr "Entrez un lien/URL video :"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées/Réseaux sociaux:"
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Please enter an audio link/URL:"
+msgstr "Entrez un lien/URL audio :"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Goûts musicaux:"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Tag term:"
+msgstr "Terme d'étiquette:"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Lectures:"
+#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
+msgid "Where are you right now?"
+msgstr "Où êtes-vous présentemment?"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Télévision:"
+#: ../../include/conversation.php:1008
+msgid "Delete item(s)?"
+msgstr "Supprimer les élément(s) ?"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement:"
+#: ../../include/conversation.php:1051
+msgid "Post to Email"
+msgstr "Publier aux courriels"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amour/Romance:"
+#: ../../include/conversation.php:1056
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation:"
+#: ../../include/conversation.php:1111
+msgid "permissions"
+msgstr "permissions"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Études/Formation:"
+#: ../../include/conversation.php:1135
+msgid "Post to Groups"
+msgstr "Publier aux groupes"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[pas de sujet]"
+#: ../../include/conversation.php:1136
+msgid "Post to Contacts"
+msgstr "Publier aux contacts"
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
-msgstr "sur Last.fm"
+#: ../../include/conversation.php:1137
+msgid "Private post"
+msgstr "Message privé"
+
+#: ../../include/network.php:895
+msgid "view full size"
+msgstr "voir en pleine taille"
 
 #: ../../include/text.php:296
 msgid "newer"
@@ -6118,12 +6306,8 @@ msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
 #: ../../include/text.php:1004
-msgid "poke"
-msgstr "titiller"
-
-#: ../../include/text.php:1004 ../../include/conversation.php:211
-msgid "poked"
-msgstr "a titillé"
+msgid "poke"
+msgstr "titiller"
 
 #: ../../include/text.php:1005
 msgid "ping"
@@ -6329,6 +6513,11 @@ msgstr "octets"
 msgid "Click to open/close"
 msgstr "Cliquer pour ouvrir/fermer"
 
+#: ../../include/text.php:1699 ../../include/user.php:247
+#: ../../view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "défaut"
+
 #: ../../include/text.php:1711
 msgid "Select an alternate language"
 msgstr "Choisir une langue alternative"
@@ -6345,821 +6534,763 @@ msgstr "publication"
 msgid "Item filed"
 msgstr "Élément classé"
 
-#: ../../include/api.php:278 ../../include/api.php:289
-#: ../../include/api.php:390 ../../include/api.php:975
-#: ../../include/api.php:977
-msgid "User not found."
-msgstr "Utilisateur non trouvé"
-
-#: ../../include/api.php:1184
-msgid "There is no status with this id."
-msgstr "Il n'y a pas de statut avec cet id."
-
-#: ../../include/api.php:1254
-msgid "There is no conversation with this id."
-msgstr "Il n'y a pas de conversation avec cet id."
-
-#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
+#: ../../include/bbcode.php:1028
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: ../../include/items.php:2112 ../../include/datetime.php:472
+#: ../../include/bbcode.php:528
 #, php-format
-msgid "%s's birthday"
-msgstr "Anniversaire de %s's"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
 
-#: ../../include/items.php:2113 ../../include/datetime.php:473
+#: ../../include/bbcode.php:562
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Joyeux anniversaire, %s !"
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr ""
 
-#: ../../include/items.php:4418
-msgid "Do you really want to delete this item?"
-msgstr "Voulez-vous vraiment supprimer cet élément ?"
+#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
+msgid "$1 wrote:"
+msgstr "$1 a écrit:"
 
-#: ../../include/items.php:4641
-msgid "Archives"
-msgstr "Archives"
+#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../include/delivery.php:456 ../../include/notifier.php:774
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
 msgid "(no subject)"
 msgstr "(sans titre)"
 
-#: ../../include/delivery.php:467 ../../include/notifier.php:784
-#: ../../include/enotify.php:30
+#: ../../include/notifier.php:796 ../../include/delivery.php:467
+#: ../../include/enotify.php:31
 msgid "noreply"
 msgstr "noreply"
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
-
-#: ../../include/diaspora.php:2312
-msgid "Attachments:"
-msgstr "Pièces jointes : "
-
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de connexion manquante."
-
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
-
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
-
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
-
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
-
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
-
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
-
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
-
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
-
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
-
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "following"
-
-#: ../../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, "
-
-#: ../../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é."
-
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculin"
-
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Féminin"
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Actuellement masculin"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Inconnu | Non-classé"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Actuellement féminin"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquer immédiatement"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Principalement masculin"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Douteux, spammeur, accro à l'auto-promotion"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Principalement féminin"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Connu de moi, mais sans opinion"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgenre"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probablement inoffensif"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Inter-sexe"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Réputé, a toute ma confiance"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuel"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Chaque semaine"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Chaque mois"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutre"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-spécifique"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Autre"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indécis"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Hommes"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmes"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sans préférence"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuel"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Connecteur Diaspora"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Auto-sexuel"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vierge"
+#: ../../include/Scrape.php:593
+msgid " on Last.fm"
+msgstr "sur Last.fm"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Déviant"
+#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Débute:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fétichiste"
+#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Finit:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Non-sexuel"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Célibataire"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Anniversaire:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Esseulé"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Age:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponible"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Indisponible"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Étiquette:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Attiré par quelqu'un"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Entiché"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passe-temps/Centres d'intérêt:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dans une relation"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées/Réseaux sociaux:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infidèle"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Goûts musicaux:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Accro au sexe"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Lectures:"
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:289
-#: ../../include/user.php:293
-msgid "Friends"
-msgstr "Amis"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Télévision:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amis par intérêt"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/Danse/Culture/Divertissement:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amour/Romance:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Fiancé"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Activité professionnelle/Occupation:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Marié"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Études/Formation:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Se croit marié"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partenaire"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action dépasse les limites définies par votre abonnement."
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "En cohabitation"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas disponible avec votre abonnement."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Mettre fin à cette session"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Heureux"
+#: ../../include/nav.php:76 ../../include/nav.php:146
+#: ../../view/theme/diabook/theme.php:123
+msgid "Your posts and conversations"
+msgstr "Vos publications et conversations"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Pas intéressé"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Your profile page"
+msgstr "Votre page de profil"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Échangiste"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
+msgid "Your photos"
+msgstr "Vos photos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Trahi(e)"
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Vos vidéos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Séparé"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
+msgid "Your events"
+msgstr "Vos événements"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instable"
+#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
+msgid "Personal notes"
+msgstr "Notes personnelles"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorcé"
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Vos notes personnelles"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Se croit divorcé"
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Se connecter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Veuf/Veuve"
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Page d'accueil"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incertain"
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Créer un compte"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "C'est compliqué"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Aide et documentation"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "S'en désintéresse"
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Applications"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Me demander"
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Applications supplémentaires, utilitaires, jeux"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Rechercher dans le contenu du site"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversations ayant cours sur ce site"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erreur! Pseudo invalide"
+#: ../../include/nav.php:131
+msgid "Directory"
+msgstr "Annuaire"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
+#: ../../include/nav.php:131
+msgid "People directory"
+msgstr "Annuaire des utilisateurs"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erreur de création d'utilisateur"
+#: ../../include/nav.php:133
+msgid "Information"
+msgstr "Information"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erreur de création du profil utilisateur"
+#: ../../include/nav.php:133
+msgid "Information about this friendica instance"
+msgstr "Information au sujet de cette instance de friendica"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contacts non importés"
-msgstr[1] "%d contacts non importés"
+#: ../../include/nav.php:143
+msgid "Conversations from your friends"
+msgstr "Conversations de vos amis"
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
+#: ../../include/nav.php:144
+msgid "Network Reset"
+msgstr "Réinitialiser le réseau"
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
+#: ../../include/nav.php:144
+msgid "Load Network page with no filters"
+msgstr "Chargement des pages du réseau sans filtre"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Cette action dépasse les limites définies par votre abonnement."
+#: ../../include/nav.php:152
+msgid "Friend Requests"
+msgstr "Demande d'amitié"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Cette action n'est pas disponible avec votre abonnement."
+#: ../../include/nav.php:154
+msgid "See all notifications"
+msgstr "Voir toute notification"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s a sollicité %2$s"
+#: ../../include/nav.php:155
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme 'vues'"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "publication/élément"
+#: ../../include/nav.php:159
+msgid "Private mail"
+msgstr "Messages privés"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s a marqué le %3$s de %2$s comme favori"
+#: ../../include/nav.php:160
+msgid "Inbox"
+msgstr "Messages entrants"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "enlever"
+#: ../../include/nav.php:161
+msgid "Outbox"
+msgstr "Messages sortants"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Supprimer les éléments sélectionnés"
+#: ../../include/nav.php:165
+msgid "Manage"
+msgstr "Gérer"
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Suivre le fil"
+#: ../../include/nav.php:165
+msgid "Manage other pages"
+msgstr "Gérer les autres pages"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Voir les statuts"
+#: ../../include/nav.php:170
+msgid "Account settings"
+msgstr "Compte"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Voir le profil"
+#: ../../include/nav.php:173
+msgid "Manage/Edit Profiles"
+msgstr "Gérer/Éditer les profiles"
 
-#: ../../include/conversation.php:878 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Voir les photos"
+#: ../../include/nav.php:175
+msgid "Manage/edit friends and contacts"
+msgstr "Gérer/éditer les amitiés et contacts"
 
-#: ../../include/conversation.php:879 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Publications du réseau"
+#: ../../include/nav.php:182
+msgid "Site setup and configuration"
+msgstr "Démarrage et configuration du site"
 
-#: ../../include/conversation.php:880 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Éditer le contact"
+#: ../../include/nav.php:186
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../include/conversation.php:881 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Message privé"
+#: ../../include/nav.php:186
+msgid "Site map"
+msgstr "Carte du site"
 
-#: ../../include/conversation.php:882 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Sollicitations (pokes)"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1062
+#: ../../include/api.php:1064
+msgid "User not found."
+msgstr "Utilisateur non trouvé"
 
-#: ../../include/conversation.php:944
+#: ../../include/api.php:771
 #, php-format
-msgid "%s likes this."
-msgstr "%s aime ça."
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr ""
 
-#: ../../include/conversation.php:944
+#: ../../include/api.php:790
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s n'aime pas ça."
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr ""
 
-#: ../../include/conversation.php:949
+#: ../../include/api.php:809
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr ""
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Il n'y a pas de statut avec cet id."
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "et"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Il n'y a pas de conversation avec cet id."
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr ", et %d autres personnes"
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr ""
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s aiment ça."
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr ""
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s n'aiment pas ça."
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr ""
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible par <strong>tout le monde</strong>"
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr ""
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Entrez un lien/URL video :"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Entrez un lien/URL audio :"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "L'invitation fournie n'a pu être validée."
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Terme d'étiquette:"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Adresse OpenID invalide"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Où êtes-vous présentemment?"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Entrez les informations requises."
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Supprimer les élément(s) ?"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Utilisez un nom plus court."
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Publier aux courriels"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Nom trop court."
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "permissions"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Publier aux groupes"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Ceci n'est pas une adresse courriel valide."
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Publier aux contacts"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Impossible d'utiliser ce courriel."
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Message privé"
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Ajouter un nouveau contact"
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Entrez son adresse ou sa localisation web"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple: bob@example.com, http://example.com/barbara"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
 
-#: ../../include/contact_widgets.php:24
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Amis"
+
+#: ../../include/user.php:377
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation disponible"
-msgstr[1] "%d invitations disponibles"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr ""
+
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr ""
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Trouver des personnes"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Notification de partage du réseau Diaspora"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Entrez un nom ou un centre d'intérêt"
+#: ../../include/diaspora.php:2332
+msgid "Attachments:"
+msgstr "Pièces jointes : "
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Connecter/Suivre"
+#: ../../include/items.php:4526
+msgid "Do you really want to delete this item?"
+msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Pêche"
+#: ../../include/items.php:4749
+msgid "Archives"
+msgstr "Archives"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Profil au hasard"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculin"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Réseaux"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Féminin"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Tous réseaux"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Actuellement masculin"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tout"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Actuellement féminin"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Catégories"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Principalement masculin"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Mettre fin à cette session"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Principalement féminin"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Vos vidéos"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgenre"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Vos notes personnelles"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Inter-sexe"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Se connecter"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuel"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Page d'accueil"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Créer un compte"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutre"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Aide et documentation"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-spécifique"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Applications"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Autre"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, utilitaires, jeux"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indécis"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Rechercher dans le contenu du site"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Hommes"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversations ayant cours sur ce site"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmes"
 
-#: ../../include/nav.php:131
-msgid "Directory"
-msgstr "Annuaire"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../include/nav.php:131
-msgid "People directory"
-msgstr "Annuaire des utilisateurs"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbienne"
 
-#: ../../include/nav.php:133
-msgid "Information"
-msgstr "Information"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sans préférence"
 
-#: ../../include/nav.php:133
-msgid "Information about this friendica instance"
-msgstr "Information au sujet de cette instance de friendica"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuel"
 
-#: ../../include/nav.php:143
-msgid "Conversations from your friends"
-msgstr "Conversations de vos amis"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Auto-sexuel"
 
-#: ../../include/nav.php:144
-msgid "Network Reset"
-msgstr "Réinitialiser le réseau"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../include/nav.php:144
-msgid "Load Network page with no filters"
-msgstr "Chargement des pages du réseau sans filtre"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vierge"
 
-#: ../../include/nav.php:152
-msgid "Friend Requests"
-msgstr "Demande d'amitié"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Déviant"
 
-#: ../../include/nav.php:154
-msgid "See all notifications"
-msgstr "Voir toute notification"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fétichiste"
 
-#: ../../include/nav.php:155
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme 'vues'"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../include/nav.php:159
-msgid "Private mail"
-msgstr "Messages privés"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Non-sexuel"
 
-#: ../../include/nav.php:160
-msgid "Inbox"
-msgstr "Messages entrants"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Célibataire"
 
-#: ../../include/nav.php:161
-msgid "Outbox"
-msgstr "Messages sortants"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Esseulé"
 
-#: ../../include/nav.php:165
-msgid "Manage"
-msgstr "Gérer"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponible"
 
-#: ../../include/nav.php:165
-msgid "Manage other pages"
-msgstr "Gérer les autres pages"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Indisponible"
 
-#: ../../include/nav.php:170
-msgid "Account settings"
-msgstr "Compte"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Attiré par quelqu'un"
 
-#: ../../include/nav.php:173
-msgid "Manage/Edit Profiles"
-msgstr "Gérer/Éditer les profiles"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Entiché"
 
-#: ../../include/nav.php:175
-msgid "Manage/edit friends and contacts"
-msgstr "Gérer/éditer les amitiés et contacts"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dans une relation"
 
-#: ../../include/nav.php:182
-msgid "Site setup and configuration"
-msgstr "Démarrage et configuration du site"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidèle"
 
-#: ../../include/nav.php:186
-msgid "Navigation"
-msgstr "Navigation"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Accro au sexe"
 
-#: ../../include/nav.php:186
-msgid "Site map"
-msgstr "Carte du site"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amis par intérêt"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Inconnu | Non-classé"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquer immédiatement"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Fiancé"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Douteux, spammeur, accro à l'auto-promotion"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Marié"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Connu de moi, mais sans opinion"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Se croit marié"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probablement inoffensif"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partenaire"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Réputé, a toute ma confiance"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "En cohabitation"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Chaque semaine"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Chaque mois"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Heureux"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Pas intéressé"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Échangiste"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Trahi(e)"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Séparé"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instable"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorcé"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Se croit divorcé"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Veuf/Veuve"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incertain"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Connecteur Diaspora"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "C'est compliqué"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "S'en désintéresse"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Me demander"
 
 #: ../../include/enotify.php:18
 msgid "Friendica Notification"
@@ -7174,238 +7305,238 @@ msgstr "Merci, "
 msgid "%s Administrator"
 msgstr "L'administrateur de %s"
 
-#: ../../include/enotify.php:55
+#: ../../include/enotify.php:61
 #, php-format
 msgid "%s <!item_type!>"
 msgstr "%s <!item_type!>"
 
-#: ../../include/enotify.php:59
+#: ../../include/enotify.php:65
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
 
-#: ../../include/enotify.php:61
+#: ../../include/enotify.php:67
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
 
-#: ../../include/enotify.php:62
+#: ../../include/enotify.php:68
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr "%1$s vous a envoyé %2$s."
 
-#: ../../include/enotify.php:62
+#: ../../include/enotify.php:68
 msgid "a private message"
 msgstr "un message privé"
 
-#: ../../include/enotify.php:63
+#: ../../include/enotify.php:69
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
 
-#: ../../include/enotify.php:115
+#: ../../include/enotify.php:121
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
 
-#: ../../include/enotify.php:122
+#: ../../include/enotify.php:128
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
 
-#: ../../include/enotify.php:130
+#: ../../include/enotify.php:136
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: ../../include/enotify.php:140
+#: ../../include/enotify.php:146
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
 
-#: ../../include/enotify.php:141
+#: ../../include/enotify.php:147
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s a commenté un élément que vous suivez."
 
-#: ../../include/enotify.php:144 ../../include/enotify.php:159
-#: ../../include/enotify.php:172 ../../include/enotify.php:185
-#: ../../include/enotify.php:203 ../../include/enotify.php:216
+#: ../../include/enotify.php:150 ../../include/enotify.php:165
+#: ../../include/enotify.php:178 ../../include/enotify.php:191
+#: ../../include/enotify.php:209 ../../include/enotify.php:222
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
 
-#: ../../include/enotify.php:151
+#: ../../include/enotify.php:157
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
 
-#: ../../include/enotify.php:153
+#: ../../include/enotify.php:159
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s a publié sur votre mur à %2$s"
 
-#: ../../include/enotify.php:155
+#: ../../include/enotify.php:161
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
 
-#: ../../include/enotify.php:166
+#: ../../include/enotify.php:172
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica:Notification] %s vous a étiqueté"
 
-#: ../../include/enotify.php:167
+#: ../../include/enotify.php:173
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s vous a étiqueté sur %2$s"
 
-#: ../../include/enotify.php:168
+#: ../../include/enotify.php:174
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
 
-#: ../../include/enotify.php:179
+#: ../../include/enotify.php:185
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr "[Friendica:Notification] %s partage une nouvelle publication"
 
-#: ../../include/enotify.php:180
+#: ../../include/enotify.php:186
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:181
+#: ../../include/enotify.php:187
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr "%1$s [url=%2$s]partage une publication[/url]."
 
-#: ../../include/enotify.php:193
+#: ../../include/enotify.php:199
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica:Notify] %1$s vous a sollicité"
 
-#: ../../include/enotify.php:194
+#: ../../include/enotify.php:200
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s vous a sollicité via %2$s"
 
-#: ../../include/enotify.php:195
+#: ../../include/enotify.php:201
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: ../../include/enotify.php:210
+#: ../../include/enotify.php:216
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica:Notification] %s a étiqueté votre publication"
 
-#: ../../include/enotify.php:211
+#: ../../include/enotify.php:217
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s a étiqueté votre publication sur %2$s"
 
-#: ../../include/enotify.php:212
+#: ../../include/enotify.php:218
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
 
-#: ../../include/enotify.php:223
+#: ../../include/enotify.php:229
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica:Notification] Introduction reçue"
 
-#: ../../include/enotify.php:224
+#: ../../include/enotify.php:230
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
 
-#: ../../include/enotify.php:225
+#: ../../include/enotify.php:231
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
 
-#: ../../include/enotify.php:228 ../../include/enotify.php:270
+#: ../../include/enotify.php:234 ../../include/enotify.php:276
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "Vous pouvez visiter son profil sur %s"
 
-#: ../../include/enotify.php:230
+#: ../../include/enotify.php:236
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
 
-#: ../../include/enotify.php:238
+#: ../../include/enotify.php:244
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: ../../include/enotify.php:239 ../../include/enotify.php:240
+#: ../../include/enotify.php:245 ../../include/enotify.php:246
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:246
+#: ../../include/enotify.php:252
 msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: ../../include/enotify.php:247 ../../include/enotify.php:248
+#: ../../include/enotify.php:253 ../../include/enotify.php:254
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: ../../include/enotify.php:261
+#: ../../include/enotify.php:267
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
 
-#: ../../include/enotify.php:262
+#: ../../include/enotify.php:268
 #, 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:263
+#: ../../include/enotify.php:269
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
 
-#: ../../include/enotify.php:268
+#: ../../include/enotify.php:274
 msgid "Name:"
 msgstr "Nom :"
 
-#: ../../include/enotify.php:269
+#: ../../include/enotify.php:275
 msgid "Photo:"
 msgstr "Photo :"
 
-#: ../../include/enotify.php:272
+#: ../../include/enotify.php:278
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
 
-#: ../../include/enotify.php:280 ../../include/enotify.php:293
+#: ../../include/enotify.php:286 ../../include/enotify.php:299
 msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: ../../include/enotify.php:281 ../../include/enotify.php:294
+#: ../../include/enotify.php:287 ../../include/enotify.php:300
 #, php-format
 msgid "'%1$s' has acepted your connection request at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:282 ../../include/enotify.php:295
+#: ../../include/enotify.php:288 ../../include/enotify.php:301
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: ../../include/enotify.php:285
+#: ../../include/enotify.php:291
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and email\n"
 "\twithout restriction."
 msgstr ""
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:302
+#: ../../include/enotify.php:294 ../../include/enotify.php:308
 #, php-format
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: ../../include/enotify.php:298
+#: ../../include/enotify.php:304
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -7414,318 +7545,265 @@ msgid ""
 "automatically."
 msgstr ""
 
-#: ../../include/enotify.php:300
+#: ../../include/enotify.php:306
 #, php-format
 msgid ""
 "'%1$s' may choose to extend this into a two-way or more permissive "
 "relationship in the future. "
 msgstr ""
 
-#: ../../include/enotify.php:313
+#: ../../include/enotify.php:319
 msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: ../../include/enotify.php:314
+#: ../../include/enotify.php:320
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/enotify.php:315
+#: ../../include/enotify.php:321
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: ../../include/enotify.php:318
+#: ../../include/enotify.php:324
 #, php-format
 msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: ../../include/enotify.php:321
+#: ../../include/enotify.php:327
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Nom trop court."
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
+#: ../../include/oembed.php:210
+msgid "Embedded content"
+msgstr "Contenu incorporé"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
+#: ../../include/oembed.php:219
+msgid "Embedding disabled"
+msgstr "Incorporation désactivée"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erreur! Pseudo invalide"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erreur de création d'utilisateur"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erreur de création du profil utilisateur"
 
-#: ../../include/user.php:377
+#: ../../include/uimport.php:220
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr ""
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contacts non importés"
+msgstr[1] "%d contacts non importés"
 
-#: ../../include/user.php:381
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr ""
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Visible par tout le monde"
+#: ../../index.php:428
+msgid "toggle mobile"
+msgstr "activ. mobile"
 
-#: ../../include/bbcode.php:449 ../../include/bbcode.php:1054
-#: ../../include/bbcode.php:1055
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
+#: ../../view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
+msgstr "Réglages du thème graphique"
 
-#: ../../include/bbcode.php:549
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"
 
-#: ../../include/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 ""
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/diabook/config.php:151
+msgid "Set font-size for posts and comments"
+msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
 
-#: ../../include/bbcode.php:1018 ../../include/bbcode.php:1038
-msgid "$1 wrote:"
-msgstr "$1 a écrit:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Largeur du thème"
 
-#: ../../include/bbcode.php:1063 ../../include/bbcode.php:1064
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Palette de couleurs"
 
-#: ../../include/oembed.php:205
-msgid "Embedded content"
-msgstr "Contenu incorporé"
+#: ../../view/theme/dispy/config.php:74
+#: ../../view/theme/diabook/config.php:152
+msgid "Set line-height for posts and comments"
+msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires"
 
-#: ../../include/oembed.php:214
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../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."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alignement"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Gauche"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tout le monde"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centre"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "éditer"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Taille de texte des publications"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editer groupe"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Taille de police des zones de texte"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Réglez la résolution de la colonne centrale"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contacts n'appartenant à aucun groupe"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Niveau de zoom"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Supprimer le contact"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Régler la longitude (X) pour la géolocalisation"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Divers"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Régler la latitude (Y) pour la géolocalisation"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "an"
+#: ../../view/theme/diabook/config.php:158
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Pages de Communauté"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "mois"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Géolocalisation"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "jour"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Profils communautaires"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "jamais"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Aide ou @NewHere?"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Connecter des services"
 
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "ans"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Trouver des amis"
 
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "mois"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Derniers utilisateurs"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "semaine"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Dernières photos"
 
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "semaines"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Dernièrement aimé"
 
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "jours"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vos contacts"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "heure"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Vos photos personnelles"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "heures"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Annuaire local"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minute"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Régler le niveau de zoom pour la géolocalisation"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutes"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "seconde"
+#: ../../view/theme/vier/config.php:56
+msgid "Set style"
+msgstr "Définir le style"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "secondes"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr ""
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s auparavant"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr ""
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr ""
 
-#: ../../include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
 msgstr ""
 
-#: ../../include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
 msgstr ""
 
-#: ../../include/dbstructure.php:163
-msgid "Errors encountered creating database tables."
-msgstr "Des erreurs ont été signalées lors de la création des tables."
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr ""
 
-#: ../../include/dbstructure.php:221
-msgid "Errors encountered performing database changes."
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
 msgstr ""
index 45bd95a726eefb8c96ae2feec3a979cdf424692b..a7cd0d1d868a661721e6af72057f85f82448d285 100644 (file)
@@ -5,210 +5,416 @@ function string_plural_select_fr($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["This entry was edited"] = "Cette entrée à été édité";
-$a->strings["Private Message"] = "Message privé";
-$a->strings["Edit"] = "Éditer";
-$a->strings["Select"] = "Sélectionner";
-$a->strings["Delete"] = "Supprimer";
-$a->strings["save to folder"] = "sauver vers dossier";
-$a->strings["add star"] = "mett en avant";
-$a->strings["remove star"] = "ne plus mettre en avant";
-$a->strings["toggle star status"] = "mettre en avant";
-$a->strings["starred"] = "mis en avant";
-$a->strings["ignore thread"] = "ignorer le fil";
-$a->strings["unignore thread"] = "Ne plus ignorer le fil";
-$a->strings["toggle ignore status"] = "Ignorer le statut";
-$a->strings["ignored"] = "ignoré";
-$a->strings["add tag"] = "ajouter une étiquette";
-$a->strings["I like this (toggle)"] = "J'aime (bascule)";
-$a->strings["like"] = "aime";
-$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
-$a->strings["dislike"] = "n'aime pas";
-$a->strings["Share this"] = "Partager";
-$a->strings["share"] = "partager";
-$a->strings["Categories:"] = "Catégories:";
-$a->strings["Filed under:"] = "Rangé sous:";
-$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
-$a->strings["to"] = "à";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Inter-mur";
-$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
-$a->strings["%s from %s"] = "%s de %s";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Please wait"] = "Patientez";
-$a->strings["%d comment"] = array(
-       0 => "%d commentaire",
-       1 => "%d commentaires",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "commentaire",
-);
-$a->strings["show more"] = "montrer plus";
-$a->strings["This is you"] = "C'est vous";
-$a->strings["Submit"] = "Envoyer";
-$a->strings["Bold"] = "Gras";
-$a->strings["Italic"] = "Italique";
-$a->strings["Underline"] = "Souligné";
-$a->strings["Quote"] = "Citation";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Lien";
-$a->strings["Video"] = "Vidéo";
-$a->strings["Preview"] = "Aperçu";
-$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
-$a->strings["Not Found"] = "Non trouvé";
-$a->strings["Page not found."] = "Page introuvable.";
-$a->strings["Permission denied"] = "Permission refusée";
-$a->strings["Permission denied."] = "Permission refusée.";
-$a->strings["toggle mobile"] = "activ. mobile";
-$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
-$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["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["%d contact edited."] = array(
+       0 => "%d contact édité",
+       1 => "%d contacts édités.",
 );
-$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
-$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
-$a->strings["Profile unavailable."] = "Profil indisponible.";
-$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
-$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
-$a->strings["Invalid locator"] = "Localisateur invalide";
-$a->strings["Invalid email address."] = "Adresse courriel invalide.";
-$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
-$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
-$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
-$a->strings["Invalid profile URL."] = "URL de profil invalide.";
-$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
+$a->strings["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["Your introduction has been sent."] = "Votre introduction a été envoyée.";
-$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
-$a->strings["Hide this contact"] = "Cacher ce contact";
-$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
-$a->strings["Confirm"] = "Confirmer";
-$a->strings["[Name Withheld]"] = "[Nom non-publié]";
-$a->strings["Public access denied."] = "Accès public refusé.";
-$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["No"] = "Non";
+$a->strings["Permission denied."] = "Permission refusée.";
+$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
+$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
+$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
+$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
+$a->strings["Contact has been archived"] = "Contact archivé";
+$a->strings["Contact has been unarchived"] = "Contact désarchivé";
+$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
 $a->strings["Yes"] = "Oui";
-$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
-$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
-$a->strings["Submit Request"] = "Envoyer la requête";
 $a->strings["Cancel"] = "Annuler";
-$a->strings["View Video"] = "Regarder la vidéo";
-$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
-$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
-$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
-$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
-$a->strings["Discard"] = "Rejeter";
+$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["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["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["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
+$a->strings["Unarchive"] = "Désarchiver";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
+$a->strings["Repair"] = "Réparer";
+$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
+$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
+$a->strings["Contact Editor"] = "Éditeur de contact";
+$a->strings["Submit"] = "Envoyer";
+$a->strings["Profile Visibility"] = "Visibilité du profil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
+$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
+$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
+$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
+$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
+$a->strings["Ignore contact"] = "Ignorer ce contact";
+$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
+$a->strings["View conversations"] = "Voir les conversations";
+$a->strings["Delete contact"] = "Effacer ce contact";
+$a->strings["Last update:"] = "Dernière mise-à-jour :";
+$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
+$a->strings["Update now"] = "Mettre à jour";
+$a->strings["Currently blocked"] = "Actuellement bloqué";
+$a->strings["Currently ignored"] = "Actuellement ignoré";
+$a->strings["Currently archived"] = "Actuellement archivé";
 $a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
-$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
-$a->strings["if applicable"] = "si possible";
-$a->strings["Approve"] = "Approuver";
-$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
-$a->strings["yes"] = "oui";
-$a->strings["no"] = "non";
-$a->strings["Approve as: "] = "Approuver en tant que: ";
-$a->strings["Friend"] = "Ami";
-$a->strings["Sharer"] = "Initiateur du partage";
-$a->strings["Fan/Admirer"] = "Fan/Admirateur";
-$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
-$a->strings["New Follower"] = "Nouvel abonné";
-$a->strings["No introductions."] = "Aucune demande d'introduction.";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
-$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
-$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
-$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
-$a->strings["No more network notifications."] = "Aucune notification du réseau.";
-$a->strings["Network Notifications"] = "Notifications du réseau";
-$a->strings["No more system notifications."] = "Pas plus de notifications système.";
-$a->strings["System Notifications"] = "Notifications du système";
-$a->strings["No more personal notifications."] = "Aucun notification personnelle.";
-$a->strings["Personal Notifications"] = "Notifications personnelles";
-$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil.";
-$a->strings["Home Notifications"] = "Notifications de page d'accueil";
-$a->strings["photo"] = "photo";
-$a->strings["status"] = "le statut";
-$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["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["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["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["Admin"] = "Admin";
-$a->strings["Plugin Features"] = "Propriétés des extensions";
-$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
-$a->strings["Item not found."] = "Élément introuvable.";
-$a->strings["Normal Account"] = "Compte normal";
-$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
-$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
-$a->strings["Automatic Friend Account"] = "Compte auto-amical";
-$a->strings["Blog Account"] = "Compte de blog";
-$a->strings["Private Forum"] = "Forum privé";
-$a->strings["Message queues"] = "Files d'attente des messages";
-$a->strings["Administration"] = "Administration";
-$a->strings["Summary"] = "Résumé";
-$a->strings["Registered users"] = "Utilisateurs inscrits";
-$a->strings["Pending registrations"] = "Inscriptions en attente";
-$a->strings["Version"] = "Versio";
-$a->strings["Active plugins"] = "Extensions activés";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>";
-$a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
-$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
-$a->strings["Never"] = "Jamais";
-$a->strings["At post arrival"] = "A l'arrivé d'une publication";
-$a->strings["Frequently"] = "Fréquemment";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
+$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
+$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
+$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
+$a->strings["Disabled"] = "Désactivé";
+$a->strings["Fetch information"] = "";
+$a->strings["Fetch information and keywords"] = "";
+$a->strings["Blacklisted keywords"] = "";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
+$a->strings["Suggestions"] = "Suggestions";
+$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
+$a->strings["All Contacts"] = "Tous les contacts";
+$a->strings["Show all contacts"] = "Montrer tous les contacts";
+$a->strings["Unblocked"] = "Non-bloqués";
+$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
+$a->strings["Blocked"] = "Bloqués";
+$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
+$a->strings["Ignored"] = "Ignorés";
+$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
+$a->strings["Archived"] = "Archivés";
+$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
+$a->strings["Hidden"] = "Cachés";
+$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
+$a->strings["Mutual Friendship"] = "Relation réciproque";
+$a->strings["is a fan of yours"] = "Vous suit";
+$a->strings["you are a fan of"] = "Vous le/la suivez";
+$a->strings["Edit contact"] = "Éditer le contact";
+$a->strings["Contacts"] = "Contacts";
+$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
+$a->strings["Finding: "] = "Trouvé: ";
+$a->strings["Find"] = "Trouver";
+$a->strings["Update"] = "Mises-à-jour";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["No profile"] = "Aucun profil";
+$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
+$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
+$a->strings["Post successful."] = "Publication réussie.";
+$a->strings["Permission denied"] = "Permission refusée";
+$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
+$a->strings["Profile"] = "Profil";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
+$a->strings["Visible To"] = "Visible par";
+$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
+$a->strings["Item not found."] = "Élément introuvable.";
+$a->strings["Public access denied."] = "Accès public refusé.";
+$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
+$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
+$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
+$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
+$a->strings["Getting Started"] = "Bien démarrer";
+$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
+$a->strings["Edit Your Profile"] = "Éditer votre Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
+$a->strings["Profile Keywords"] = "Mots-clés du profil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
+$a->strings["Connecting"] = "Connexions";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre.";
+$a->strings["Importing Emails"] = "Importer courriels";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
+$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
+$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
+$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
+$a->strings["Groups"] = "Groupes";
+$a->strings["Group Your Contacts"] = "Grouper vos contacts";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
+$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
+$a->strings["Getting Help"] = "Obtenir de l'aide";
+$a->strings["Go to the Help Section"] = "Aller à la section Aide";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
+$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
+$a->strings["Login failed."] = "Échec de connexion.";
+$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
+$a->strings["Profile Photos"] = "Photos du profil";
+$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
+$a->strings["Unable to process image"] = "Impossible de traiter l'image";
+$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
+$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
+$a->strings["Upload File:"] = "Fichier à téléverser:";
+$a->strings["Select a profile:"] = "Choisir un profil:";
+$a->strings["Upload"] = "Téléverser";
+$a->strings["or"] = "ou";
+$a->strings["skip this step"] = "ignorer cette étape";
+$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
+$a->strings["Crop Image"] = "(Re)cadrer l'image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
+$a->strings["Done Editing"] = "Édition terminée";
+$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
+$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
+$a->strings["photo"] = "photo";
+$a->strings["status"] = "le statut";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
+$a->strings["Tag removed"] = "Étiquette supprimée";
+$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
+$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: ";
+$a->strings["Remove"] = "Utiliser comme photo de profil";
+$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["Save"] = "Sauver";
+$a->strings["Contact added"] = "Contact ajouté";
+$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
+$a->strings["Empty post discarded."] = "Publication vide rejetée.";
+$a->strings["Wall Photos"] = "Photos du mur";
+$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica.";
+$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
+$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
+$a->strings["Group created."] = "Groupe créé.";
+$a->strings["Could not create group."] = "Impossible de créer le groupe.";
+$a->strings["Group not found."] = "Groupe introuvable.";
+$a->strings["Group name changed."] = "Groupe renommé.";
+$a->strings["Save Group"] = "Sauvegarder le groupe";
+$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
+$a->strings["Group Name: "] = "Nom du groupe: ";
+$a->strings["Group removed."] = "Groupe enlevé.";
+$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
+$a->strings["Group Editor"] = "Éditeur de groupe";
+$a->strings["Members"] = "Membres";
+$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "Pas d'application installée.";
+$a->strings["Profile not found."] = "Profil introuvable.";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
+$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise.";
+$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: ";
+$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès.";
+$a->strings["Remote site reported: "] = "Alerte du site distant: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement.";
+$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée.";
+$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
+$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable.";
+$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez.";
+$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système.";
+$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
+$a->strings["[Name Withheld]"] = "[Nom non-publié]";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
+$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
+$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
+$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
+$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
+$a->strings["View Video"] = "Regarder la vidéo";
+$a->strings["View Album"] = "Voir l'album";
+$a->strings["Recent Videos"] = "Vidéos récente";
+$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
+$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
+$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
+$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
+$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
+$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
+$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
+$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
+$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
+$a->strings["click here to login"] = "cliquez ici pour vous connecter";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
+$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
+$a->strings["Forgot your Password?"] = "Mot de passe oublié?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
+$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: ";
+$a->strings["Reset"] = "Réinitialiser";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
+$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
+$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
+$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
+$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s";
+$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s";
+$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s";
+$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
+$a->strings["{0} posted"] = "{0} a publié";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
+$a->strings["No contacts."] = "Aucun contact.";
+$a->strings["View Contacts"] = "Voir les contacts";
+$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
+$a->strings["Discard"] = "Rejeter";
+$a->strings["System"] = "Système";
+$a->strings["Network"] = "Réseau";
+$a->strings["Personal"] = "Personnel";
+$a->strings["Home"] = "Profil";
+$a->strings["Introductions"] = "Introductions";
+$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
+$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
+$a->strings["Notification type: "] = "Type de notification: ";
+$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
+$a->strings["suggested by %s"] = "suggéré(e) par %s";
+$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
+$a->strings["if applicable"] = "si possible";
+$a->strings["Approve"] = "Approuver";
+$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
+$a->strings["yes"] = "oui";
+$a->strings["no"] = "non";
+$a->strings["Approve as: "] = "Approuver en tant que: ";
+$a->strings["Friend"] = "Ami";
+$a->strings["Sharer"] = "Initiateur du partage";
+$a->strings["Fan/Admirer"] = "Fan/Admirateur";
+$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
+$a->strings["New Follower"] = "Nouvel abonné";
+$a->strings["No introductions."] = "Aucune demande d'introduction.";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
+$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
+$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
+$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
+$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
+$a->strings["No more network notifications."] = "Aucune notification du réseau.";
+$a->strings["Network Notifications"] = "Notifications du réseau";
+$a->strings["No more system notifications."] = "Pas plus de notifications système.";
+$a->strings["System Notifications"] = "Notifications du système";
+$a->strings["No more personal notifications."] = "Aucun notification personnelle.";
+$a->strings["Personal Notifications"] = "Notifications personnelles";
+$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil.";
+$a->strings["Home Notifications"] = "Notifications de page d'accueil";
+$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :";
+$a->strings["Source input: "] = "Source input: ";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
+$a->strings["diaspora2bb: "] = "diaspora2bb :";
+$a->strings["Nothing new here"] = "Rien de neuf ici";
+$a->strings["Clear notifications"] = "Effacer les notifications";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
+$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
+$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
+$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
+$a->strings["Message sent."] = "Message envoyé.";
+$a->strings["Messages"] = "Messages";
+$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
+$a->strings["Message deleted."] = "Message supprimé.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
+$a->strings["Send Private Message"] = "Envoyer un message privé";
+$a->strings["To:"] = "À:";
+$a->strings["Subject:"] = "Sujet:";
+$a->strings["Your message:"] = "Votre message:";
+$a->strings["Upload photo"] = "Joindre photo";
+$a->strings["Insert web link"] = "Insérer lien web";
+$a->strings["Please wait"] = "Patientez";
+$a->strings["No messages."] = "Aucun message.";
+$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
+$a->strings["You and %s"] = "Vous et %s";
+$a->strings["%s and You"] = "%s et vous";
+$a->strings["Delete conversation"] = "Effacer conversation";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
+);
+$a->strings["Message not available."] = "Message indisponible.";
+$a->strings["Delete message"] = "Effacer message";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
+$a->strings["Send Reply"] = "Répondre";
+$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
+$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
+$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
+$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
+$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
+$a->strings["No mirroring"] = "";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Name"] = "Nom";
+$a->strings["Account Nickname"] = "Pseudo du compte";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
+$a->strings["Account URL"] = "URL du compte";
+$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
+$a->strings["Friend Confirm URL"] = "Accès public refusé.";
+$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
+$a->strings["Poll/Feed URL"] = "Téléverser des photos";
+$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Access denied."] = "Accès refusé.";
+$a->strings["People Search"] = "Recherche de personnes";
+$a->strings["No matches"] = "Aucune correspondance";
+$a->strings["Photos"] = "Photos";
+$a->strings["Files"] = "Fichiers";
+$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
+$a->strings["Theme settings updated."] = "Réglages du thème sauvés.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Utilisateurs";
+$a->strings["Plugins"] = "Extensions";
+$a->strings["Themes"] = "Thèmes";
+$a->strings["DB updates"] = "Mise-à-jour de la base";
+$a->strings["Logs"] = "Journaux";
+$a->strings["Admin"] = "Admin";
+$a->strings["Plugin Features"] = "Propriétés des extensions";
+$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
+$a->strings["Normal Account"] = "Compte normal";
+$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
+$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
+$a->strings["Automatic Friend Account"] = "Compte auto-amical";
+$a->strings["Blog Account"] = "Compte de blog";
+$a->strings["Private Forum"] = "Forum privé";
+$a->strings["Message queues"] = "Files d'attente des messages";
+$a->strings["Administration"] = "Administration";
+$a->strings["Summary"] = "Résumé";
+$a->strings["Registered users"] = "Utilisateurs inscrits";
+$a->strings["Pending registrations"] = "Inscriptions en attente";
+$a->strings["Version"] = "Versio";
+$a->strings["Active plugins"] = "Extensions activés";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>";
+$a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
+$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
+$a->strings["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";
@@ -227,6 +433,7 @@ $a->strings["Advanced"] = "Avancé";
 $a->strings["Performance"] = "Performance";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible.";
 $a->strings["Site name"] = "Nom du site";
+$a->strings["Host name"] = "";
 $a->strings["Banner/Logo"] = "Bannière/Logo";
 $a->strings["Additional Info"] = "Informations supplémentaires";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo.";
@@ -237,6 +444,8 @@ $a->strings["Mobile system theme"] = "Thème mobile";
 $a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles";
 $a->strings["SSL link policy"] = "Politique SSL pour les liens";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL";
+$a->strings["Force SSL"] = "";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
 $a->strings["Old style 'Share'"] = "Anciens style 'Partage'";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Désactive l'élément 'partage' de bbcode pour répéter les articles.";
 $a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
@@ -328,453 +537,250 @@ $a->strings["The noscrape feature speeds up directory submissions by using JSON
 $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'";
 $a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s";
-$a->strings["Executing %s failed with error: %s"] = "L'exécution %s a échoué avec l'erreur: %s";
-$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé";
-$a->strings["No failed updates."] = "Pas de mises-à-jour échouées.";
-$a->strings["Check database structure"] = "Vérifier la structure de la base de données";
-$a->strings["Failed Updates"] = "Mises-à-jour échouées";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.";
-$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)";
-$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
-$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s utilisateur a (dé)bloqué",
-       1 => "%s utilisateurs ont (dé)bloqué",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s utilisateur supprimé",
-       1 => "%s utilisateurs supprimés",
-);
-$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
-$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
-$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
-$a->strings["Add User"] = "Ajouter l'utilisateur";
-$a->strings["select all"] = "tout sélectionner";
-$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
-$a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive";
-$a->strings["Request date"] = "Date de la demande";
-$a->strings["Name"] = "Nom";
-$a->strings["Email"] = "Courriel";
-$a->strings["No registrations."] = "Pas d'inscriptions.";
-$a->strings["Deny"] = "Rejetter";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Site admin"] = "Administration du Site";
-$a->strings["Account expired"] = "Compte expiré";
-$a->strings["New User"] = "Nouvel utilisateur";
-$a->strings["Register date"] = "Date d'inscription";
-$a->strings["Last login"] = "Dernière connexion";
-$a->strings["Last item"] = "Dernier élément";
-$a->strings["Deleted since"] = "Supprimé depuis";
-$a->strings["Account"] = "Compte";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
-$a->strings["Name of the new user."] = "Nom du nouvel utilisateur.";
-$a->strings["Nickname"] = "Pseudo";
-$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur.";
-$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur.";
-$a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
-$a->strings["Plugin %s enabled."] = "Extension %s activée.";
-$a->strings["Disable"] = "Désactiver";
-$a->strings["Enable"] = "Activer";
-$a->strings["Toggle"] = "Activer/Désactiver";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Author: "] = "Auteur: ";
-$a->strings["Maintainer: "] = "Mainteneur: ";
-$a->strings["No themes found."] = "Aucun thème trouvé.";
-$a->strings["Screenshot"] = "Capture d'écran";
-$a->strings["[Experimental]"] = "[Expérimental]";
-$a->strings["[Unsupported]"] = "[Non supporté]";
-$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
-$a->strings["Clear"] = "Effacer";
-$a->strings["Enable Debugging"] = "Activer le déboggage";
-$a->strings["Log file"] = "Fichier de journaux";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
-$a->strings["Log level"] = "Niveau de journalisaton";
-$a->strings["Update now"] = "Mettre à jour";
-$a->strings["Close"] = "Fermer";
-$a->strings["FTP Host"] = "Hôte FTP";
-$a->strings["FTP Path"] = "Chemin FTP";
-$a->strings["FTP User"] = "Utilisateur FTP";
-$a->strings["FTP Password"] = "Mot de passe FTP";
-$a->strings["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["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["Executing %s failed with error: %s"] = "L'exécution %s a échoué avec l'erreur: %s";
+$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé";
+$a->strings["No failed updates."] = "Pas de mises-à-jour échouées.";
+$a->strings["Check database structure"] = "Vérifier la structure de la base de données";
+$a->strings["Failed Updates"] = "Mises-à-jour échouées";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.";
+$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)";
+$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s utilisateur a (dé)bloqué",
+       1 => "%s utilisateurs ont (dé)bloqué",
 );
-$a->strings["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["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
-$a->strings["Save"] = "Sauver";
-$a->strings["upload photo"] = "envoi image";
-$a->strings["Attach file"] = "Joindre fichier";
-$a->strings["attach file"] = "ajout fichier";
-$a->strings["web link"] = "lien web";
-$a->strings["Insert video link"] = "Insérer un lien video";
-$a->strings["video link"] = "lien vidéo";
-$a->strings["Insert audio link"] = "Insérer un lien audio";
-$a->strings["audio link"] = "lien audio";
-$a->strings["Set your location"] = "Définir votre localisation";
-$a->strings["set location"] = "spéc. localisation";
-$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
-$a->strings["clear location"] = "supp. localisation";
-$a->strings["Permission settings"] = "Réglages des permissions";
-$a->strings["CC: email addresses"] = "CC: adresses de courriel";
-$a->strings["Public post"] = "Publication publique";
-$a->strings["Set title"] = "Définir un titre";
-$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
-$a->strings["Profile not found."] = "Profil 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["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
-$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editer l'événement";
-$a->strings["link to source"] = "lien original";
-$a->strings["Events"] = "Événements";
-$a->strings["Create New Event"] = "Créer un nouvel événement";
-$a->strings["Previous"] = "Précédent";
-$a->strings["Next"] = "Suivant";
-$a->strings["hour:minute"] = "heures:minutes";
-$a->strings["Event details"] = "Détails de l'événement";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
-$a->strings["Event Starts:"] = "Début de l'événement:";
-$a->strings["Required"] = "Requis";
-$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
-$a->strings["Event Finishes:"] = "Fin de l'événement:";
-$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
-$a->strings["Description:"] = "Description:";
-$a->strings["Location:"] = "Localisation:";
-$a->strings["Title:"] = "Titre :";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Photos"] = "Photos";
-$a->strings["Files"] = "Fichiers";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
-$a->strings["Visible to:"] = "Visible par:";
-$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["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-$a->strings["Edit contact"] = "Éditer le contact";
-$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
-$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["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["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["Wall Photos"] = "Photos du mur";
-$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
-$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["%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["Photo Albums"] = "Albums photo";
-$a->strings["Contact Photos"] = "Photos du contact";
-$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
-$a->strings["everybody"] = "tout le monde";
-$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
-$a->strings["Profile Photos"] = "Photos du profil";
-$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["Access to this item is restricted."] = "Accès restreint à cet élément.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos.";
-$a->strings["Upload Photos"] = "Téléverser des photos";
-$a->strings["New album name: "] = "Nom du nouvel album: ";
-$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["Show to Groups"] = "Montrer aux groupes";
-$a->strings["Show to Contacts"] = "Montrer aux Contacts";
-$a->strings["Private Photo"] = "Photo privée";
-$a->strings["Public Photo"] = "Photo publique";
-$a->strings["Edit Album"] = "Éditer l'album";
-$a->strings["Show Newest First"] = "Plus récent d'abord";
-$a->strings["Show Oldest First"] = "Plus ancien d'abord";
-$a->strings["View Photo"] = "Voir la photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
-$a->strings["Photo not available"] = "Photo indisponible";
-$a->strings["View photo"] = "Voir photo";
-$a->strings["Edit photo"] = "Éditer la photo";
-$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
-$a->strings["View Full Size"] = "Voir en taille réelle";
-$a->strings["Tags: "] = "Étiquettes:";
-$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
-$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
-$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
-$a->strings["New album name"] = "Nom du nouvel album";
-$a->strings["Caption"] = "Titre";
-$a->strings["Add a Tag"] = "Ajouter une étiquette";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
-$a->strings["Private photo"] = "Photo privée";
-$a->strings["Public photo"] = "Photo publique";
-$a->strings["Share"] = "Partager";
-$a->strings["View Album"] = "Voir l'album";
-$a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["No profile"] = "Aucun profil";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
-$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
-$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
-$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
-$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
-$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
-$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
-$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
-$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
-$a->strings["Register"] = "S'inscrire";
-$a->strings["Import"] = "Importer";
-$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
-$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
-$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
-$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
-$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
-$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
-$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
-$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
-$a->strings["click here to login"] = "cliquez ici pour vous connecter";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
-$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
-$a->strings["Forgot your Password?"] = "Mot de passe oublié?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
-$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: ";
-$a->strings["Reset"] = "Réinitialiser";
-$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
-$a->strings["Item not available."] = "Elément non disponible.";
-$a->strings["Item was not found."] = "Element introuvable.";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "Pas d'application installée.";
-$a->strings["Help:"] = "Aide:";
-$a->strings["Help"] = "Aide";
-$a->strings["%d contact edited."] = array(
-       0 => "%d contact édité",
-       1 => "%d contacts édités.",
+$a->strings["%s user deleted"] = array(
+       0 => "%s utilisateur supprimé",
+       1 => "%s utilisateurs supprimé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["Contact has been blocked"] = "Le contact a été bloqué";
-$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
-$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
-$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
-$a->strings["Contact has been archived"] = "Contact archivé";
-$a->strings["Contact has been unarchived"] = "Contact désarchivé";
-$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
-$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
-$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
-$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
-$a->strings["%s is sharing with you"] = "%s partage avec vous";
-$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
-$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
-$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
-$a->strings["Suggest friends"] = "Suggérer amitié/contact";
-$a->strings["Network type: %s"] = "Type de réseau %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contact en commun",
-       1 => "%d contacts en commun",
+$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
+$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
+$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
+$a->strings["Add User"] = "Ajouter l'utilisateur";
+$a->strings["select all"] = "tout sélectionner";
+$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
+$a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive";
+$a->strings["Request date"] = "Date de la demande";
+$a->strings["Email"] = "Courriel";
+$a->strings["No registrations."] = "Pas d'inscriptions.";
+$a->strings["Deny"] = "Rejetter";
+$a->strings["Site admin"] = "Administration du Site";
+$a->strings["Account expired"] = "Compte expiré";
+$a->strings["New User"] = "Nouvel utilisateur";
+$a->strings["Register date"] = "Date d'inscription";
+$a->strings["Last login"] = "Dernière connexion";
+$a->strings["Last item"] = "Dernier élément";
+$a->strings["Deleted since"] = "Supprimé depuis";
+$a->strings["Account"] = "Compte";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
+$a->strings["Name of the new user."] = "Nom du nouvel utilisateur.";
+$a->strings["Nickname"] = "Pseudo";
+$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur.";
+$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur.";
+$a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
+$a->strings["Plugin %s enabled."] = "Extension %s activée.";
+$a->strings["Disable"] = "Désactiver";
+$a->strings["Enable"] = "Activer";
+$a->strings["Toggle"] = "Activer/Désactiver";
+$a->strings["Author: "] = "Auteur: ";
+$a->strings["Maintainer: "] = "Mainteneur: ";
+$a->strings["No themes found."] = "Aucun thème trouvé.";
+$a->strings["Screenshot"] = "Capture d'écran";
+$a->strings["[Experimental]"] = "[Expérimental]";
+$a->strings["[Unsupported]"] = "[Non supporté]";
+$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
+$a->strings["Clear"] = "Effacer";
+$a->strings["Enable Debugging"] = "Activer le déboggage";
+$a->strings["Log file"] = "Fichier de journaux";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
+$a->strings["Log level"] = "Niveau de journalisaton";
+$a->strings["Close"] = "Fermer";
+$a->strings["FTP Host"] = "Hôte FTP";
+$a->strings["FTP Path"] = "Chemin FTP";
+$a->strings["FTP User"] = "Utilisateur FTP";
+$a->strings["FTP Password"] = "Mot de passe FTP";
+$a->strings["Search Results For:"] = "Résultats pour:";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Saved Searches"] = "Recherches";
+$a->strings["add"] = "ajouter";
+$a->strings["Commented Order"] = "Tri par commentaires";
+$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
+$a->strings["Posted Order"] = "Tri des publications";
+$a->strings["Sort by Post Date"] = "Trier par date de publication";
+$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
+$a->strings["New"] = "Nouveau";
+$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
+$a->strings["Shared Links"] = "Liens partagés";
+$a->strings["Interesting Links"] = "Liens intéressants";
+$a->strings["Starred"] = "Mis en avant";
+$a->strings["Favourite Posts"] = "Publications favorites";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
+       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
 );
-$a->strings["View all contacts"] = "Voir tous les contacts";
-$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
-$a->strings["Unignore"] = "Ne plus ignorer";
-$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
-$a->strings["Unarchive"] = "Désarchiver";
-$a->strings["Archive"] = "Archiver";
-$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
-$a->strings["Repair"] = "Réparer";
-$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
-$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
-$a->strings["Contact Editor"] = "Éditeur de contact";
-$a->strings["Profile Visibility"] = "Visibilité du profil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
-$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
-$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
-$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
-$a->strings["Ignore contact"] = "Ignorer ce contact";
-$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
-$a->strings["View conversations"] = "Voir les conversations";
-$a->strings["Delete contact"] = "Effacer ce contact";
-$a->strings["Last update:"] = "Dernière mise-à-jour :";
-$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$a->strings["Currently archived"] = "Actuellement archivé";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
-$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
-$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
-$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
-$a->strings["Suggestions"] = "Suggestions";
-$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
-$a->strings["All Contacts"] = "Tous les contacts";
-$a->strings["Show all contacts"] = "Montrer tous les contacts";
-$a->strings["Unblocked"] = "Non-bloqués";
-$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
-$a->strings["Blocked"] = "Bloqués";
-$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
-$a->strings["Ignored"] = "Ignorés";
-$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
-$a->strings["Archived"] = "Archivés";
-$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
-$a->strings["Hidden"] = "Cachés";
-$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
-$a->strings["Mutual Friendship"] = "Relation réciproque";
-$a->strings["is a fan of yours"] = "Vous suit";
-$a->strings["you are a fan of"] = "Vous le/la suivez";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
-$a->strings["Finding: "] = "Trouvé: ";
-$a->strings["Find"] = "Trouver";
-$a->strings["Update"] = "Mises-à-jour";
-$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
-$a->strings["Recent Videos"] = "Vidéos récente";
-$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
-$a->strings["Common Friends"] = "Amis communs";
-$a->strings["No contacts in common."] = "Pas de contacts en commun.";
-$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
+$a->strings["No such group"] = "Groupe inexistant";
+$a->strings["Group is empty"] = "Groupe vide";
+$a->strings["Group: "] = "Groupe: ";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
+$a->strings["Invalid contact."] = "Contact invalide.";
 $a->strings["Friends of %s"] = "Amis de %s";
 $a->strings["No friends to display."] = "Pas d'amis à afficher.";
-$a->strings["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["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["Profile"] = "Profil";
-$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["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches";
-$a->strings["Search"] = "Recherche";
+$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editer l'événement";
+$a->strings["link to source"] = "lien original";
+$a->strings["Events"] = "Événements";
+$a->strings["Create New Event"] = "Créer un nouvel événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["Next"] = "Suivant";
+$a->strings["hour:minute"] = "heures:minutes";
+$a->strings["Event details"] = "Détails de l'événement";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
+$a->strings["Event Starts:"] = "Début de l'événement:";
+$a->strings["Required"] = "Requis";
+$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
+$a->strings["Event Finishes:"] = "Fin de l'événement:";
+$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
+$a->strings["Description:"] = "Description:";
+$a->strings["Location:"] = "Localisation:";
+$a->strings["Title:"] = "Titre :";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["Select"] = "Sélectionner";
+$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["View in context"] = "Voir dans le contexte";
+$a->strings["%d comment"] = array(
+       0 => "%d commentaire",
+       1 => "%d commentaires",
+);
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "commentaire",
+);
+$a->strings["show more"] = "montrer plus";
+$a->strings["Private Message"] = "Message privé";
+$a->strings["I like this (toggle)"] = "J'aime (bascule)";
+$a->strings["like"] = "aime";
+$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
+$a->strings["dislike"] = "n'aime pas";
+$a->strings["Share this"] = "Partager";
+$a->strings["share"] = "partager";
+$a->strings["This is you"] = "C'est vous";
+$a->strings["Comment"] = "Commenter";
+$a->strings["Bold"] = "Gras";
+$a->strings["Italic"] = "Italique";
+$a->strings["Underline"] = "Souligné";
+$a->strings["Quote"] = "Citation";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Lien";
+$a->strings["Video"] = "Vidéo";
+$a->strings["Preview"] = "Aperçu";
+$a->strings["Edit"] = "Éditer";
+$a->strings["add star"] = "mett en avant";
+$a->strings["remove star"] = "ne plus mettre en avant";
+$a->strings["toggle star status"] = "mettre en avant";
+$a->strings["starred"] = "mis en avant";
+$a->strings["add tag"] = "ajouter une étiquette";
+$a->strings["save to folder"] = "sauver vers dossier";
+$a->strings["to"] = "à";
+$a->strings["Wall-to-Wall"] = "Inter-mur";
+$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
+$a->strings["Remove My Account"] = "Supprimer mon compte";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
+$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:";
+$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
+$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
+$a->strings["Could not create table."] = "Impossible de créer une table.";
+$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
+$a->strings["System check"] = "Vérifications système";
+$a->strings["Check again"] = "Vérifier à nouveau";
+$a->strings["Database connection"] = "Connexion à la base de données";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
+$a->strings["Database Server Name"] = "Serveur de base de données";
+$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
+$a->strings["Database Login Password"] = "Mot de passe de la base";
+$a->strings["Database Name"] = "Nom de la base";
+$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
+$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
+$a->strings["Site settings"] = "Réglages du site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
+$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
+$a->strings["Found PHP version: "] = "Version de PHP:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
+$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
+$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
+$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
+$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
+$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
+$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
+$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
+$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
+$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
+$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
+$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
+$a->strings["No recipient."] = "Pas de destinataire.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
+$a->strings["Help:"] = "Aide:";
+$a->strings["Help"] = "Aide";
+$a->strings["Not Found"] = "Non trouvé";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
+$a->strings["Or - did you try to upload an empty file?"] = "";
+$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
+$a->strings["File upload failed."] = "Le téléversement a échoué.";
+$a->strings["Profile Match"] = "Correpondance de profils";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
+$a->strings["is interested in:"] = "s'intéresse à:";
+$a->strings["Connect"] = "Relier";
+$a->strings["link"] = "lien";
+$a->strings["Not available."] = "Indisponible.";
+$a->strings["Community"] = "Communauté";
 $a->strings["No results."] = "Aucun résultat.";
-$a->strings["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["everybody"] = "tout le monde";
 $a->strings["Additional features"] = "Fonctions supplémentaires";
 $a->strings["Display"] = "Afficher";
 $a->strings["Social Networks"] = "Réseaux sociaux";
@@ -816,6 +822,7 @@ $a->strings["Off"] = "Éteint";
 $a->strings["On"] = "Allumé";
 $a->strings["Additional Features"] = "Fonctions supplémentaires";
 $a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
+$a->strings["Diaspora"] = "Diaspora";
 $a->strings["enabled"] = "activé";
 $a->strings["disabled"] = "désactivé";
 $a->strings["StatusNet"] = "StatusNet";
@@ -862,15 +869,16 @@ $a->strings["Private forum - approved members only"] = "Forum privé - modéré
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
 $a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
+$a->strings["No"] = "Non";
 $a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
 $a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
+$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";
@@ -878,404 +886,348 @@ $a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiratio
 $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["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["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
-$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
-$a->strings["Relocate"] = "";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
-$a->strings["Resend relocate message to contacts"] = "";
-$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
-$a->strings["People Search"] = "Recherche de personnes";
-$a->strings["No matches"] = "Aucune correspondance";
-$a->strings["Profile deleted."] = "Profil supprimé.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Nouveau profil créé.";
-$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
-$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
-$a->strings["Marital Status"] = "Statut marital";
-$a->strings["Romantic Partner"] = "Partenaire/conjoint";
-$a->strings["Likes"] = "Derniers \"J'aime\"";
-$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
-$a->strings["Work/Employment"] = "Travail/Occupation";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Tendance politique";
-$a->strings["Gender"] = "Sexe";
-$a->strings["Sexual Preference"] = "Préférence sexuelle";
-$a->strings["Homepage"] = "Site internet";
-$a->strings["Interests"] = "Centres d'intérêt";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Localisation";
-$a->strings["Profile updated."] = "Profil mis à jour.";
-$a->strings[" and "] = " et ";
-$a->strings["public profile"] = "profil public";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?";
-$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
-$a->strings["Change Profile Photo"] = "Changer la photo du profil";
-$a->strings["View this profile"] = "Voir ce profil";
-$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
-$a->strings["Clone this profile"] = "Cloner ce profil";
-$a->strings["Delete this profile"] = "Supprimer ce profil";
-$a->strings["Basic information"] = "Information de base";
-$a->strings["Profile picture"] = "Image de profil";
-$a->strings["Preferences"] = "Préférences";
-$a->strings["Status information"] = "Information sur le statut";
-$a->strings["Additional information"] = "Information additionnelle";
-$a->strings["Profile Name:"] = "Nom du profil:";
-$a->strings["Your Full Name:"] = "Votre nom complet:";
-$a->strings["Title/Description:"] = "Titre/Description:";
-$a->strings["Your Gender:"] = "Votre genre:";
-$a->strings["Birthday (%s):"] = "Anniversaire (%s):";
-$a->strings["Street Address:"] = "Adresse postale:";
-$a->strings["Locality/City:"] = "Ville/Localité:";
-$a->strings["Postal/Zip Code:"] = "Code postal:";
-$a->strings["Country:"] = "Pays:";
-$a->strings["Region/State:"] = "Région/État:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Statut marital:";
-$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Depuis [date] :";
-$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
-$a->strings["Homepage URL:"] = "Page personnelle:";
-$a->strings["Hometown:"] = " Ville d'origine:";
-$a->strings["Political Views:"] = "Opinions politiques:";
-$a->strings["Religious Views:"] = "Opinions religieuses:";
-$a->strings["Public Keywords:"] = "Mots-clés publics:";
-$a->strings["Private Keywords:"] = "Mots-clés privés:";
-$a->strings["Likes:"] = "J'aime :";
-$a->strings["Dislikes:"] = "Je n'aime pas :";
-$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
-$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
-$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt";
-$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux";
-$a->strings["Musical interests"] = "Goûts musicaux";
-$a->strings["Books, literature"] = "Lectures";
-$a->strings["Television"] = "Télévision";
-$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
-$a->strings["Love/romance"] = "Amour/Romance";
-$a->strings["Work/employment"] = "Activité professionnelle/Occupation";
-$a->strings["School/education"] = "Études/Formation";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
-$a->strings["Age: "] = "Age: ";
-$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["link"] = "lien";
-$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["{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["Nothing new here"] = "Rien de neuf ici";
-$a->strings["Clear notifications"] = "Effacer les notifications";
-$a->strings["Not available."] = "Indisponible.";
-$a->strings["Community"] = "Communauté";
-$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
-$a->strings["- select -"] = "- choisir -";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
-$a->strings["Or - did you try to upload an empty file?"] = "";
-$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
-$a->strings["File upload failed."] = "Le téléversement a échoué.";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du 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["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["Connect"] = "Relier";
-$a->strings["Ignore/Hide"] = "Ignorer/cacher";
-$a->strings["Access denied."] = "Accès refusé.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
-$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["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["No contacts."] = "Aucun contact.";
-$a->strings["View Contacts"] = "Voir les contacts";
-$a->strings["Personal Notes"] = "Notes personnelles";
-$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["Expire starred posts:"] = "Faire expirer les publications marqués:";
+$a->strings["Expire photos:"] = "Faire expirer les photos:";
+$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:";
+$a->strings["Account Settings"] = "Compte";
+$a->strings["Password Settings"] = "Réglages de mot de passe";
+$a->strings["New Password:"] = "Nouveau mot de passe:";
+$a->strings["Confirm:"] = "Confirmer:";
+$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
+$a->strings["Current Password:"] = "Mot de passe actuel:";
+$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications";
+$a->strings["Password:"] = "Mot de passe:";
+$a->strings["Basic Settings"] = "Réglages basiques";
+$a->strings["Full Name:"] = "Nom complet:";
+$a->strings["Email Address:"] = "Adresse courriel:";
+$a->strings["Your Timezone:"] = "Votre fuseau horaire:";
+$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:";
+$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:";
+$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:";
+$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)";
+$a->strings["Default Post Permissions"] = "Permissions de publication par défaut";
+$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
+$a->strings["Show to Groups"] = "Montrer aux groupes";
+$a->strings["Show to Contacts"] = "Montrer aux Contacts";
+$a->strings["Default Private Post"] = "Message privé par défaut";
+$a->strings["Default Public Post"] = "Message publique par défaut";
+$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:";
+$a->strings["Notification Settings"] = "Réglages de notification";
+$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:";
+$a->strings["accepting a friend request"] = "j'accepte un ami";
+$a->strings["joining a forum/community"] = "joignant un forum/une communauté";
+$a->strings["making an <em>interesting</em> profile change"] = "je fais une modification <em>intéressante</em> de mon profil";
+$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:";
+$a->strings["You receive an introduction"] = "Vous recevez une introduction";
+$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées";
+$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
+$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente";
+$a->strings["You receive a private message"] = "Vous recevez un message privé";
+$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami";
+$a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication";
+$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication";
+$a->strings["Text-only notification emails"] = "";
+$a->strings["Send text only notification emails, without the html part"] = "";
+$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
+$a->strings["Relocate"] = "";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
+$a->strings["Resend relocate message to contacts"] = "";
+$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
+$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
+       1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
+);
+$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
+$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
+$a->strings["Profile unavailable."] = "Profil indisponible.";
+$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
+$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
+$a->strings["Invalid locator"] = "Localisateur invalide";
+$a->strings["Invalid email address."] = "Adresse courriel invalide.";
+$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
+$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
+$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
+$a->strings["Invalid profile URL."] = "URL de profil invalide.";
+$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
+$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
+$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
+$a->strings["Hide this contact"] = "Cacher ce contact";
+$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
+$a->strings["Confirm"] = "Confirmer";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
+$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
+$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
+$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
+$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
+$a->strings["Submit Request"] = "Envoyer la requête";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
+$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
+$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
+$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
+$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
+$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
+$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
+$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
+$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
+$a->strings["Register"] = "S'inscrire";
+$a->strings["Import"] = "Importer";
+$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
+$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
+$a->strings["Search"] = "Recherche";
 $a->strings["Global Directory"] = "Annuaire global";
 $a->strings["Find on this site"] = "Trouver sur ce site";
 $a->strings["Site Directory"] = "Annuaire local";
+$a->strings["Age: "] = "Age: ";
 $a->strings["Gender: "] = "Genre: ";
 $a->strings["Gender:"] = "Genre:";
 $a->strings["Status:"] = "Statut:";
 $a->strings["Homepage:"] = "Page personnelle:";
 $a->strings["About:"] = "À propos:";
 $a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
-$a->strings["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["Post successful."] = "Publication réussie.";
-$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["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
-$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
-$a->strings["Could not create table."] = "Impossible de créer une table.";
-$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
-$a->strings["System check"] = "Vérifications système";
-$a->strings["Check again"] = "Vérifier à nouveau";
-$a->strings["Database connection"] = "Connexion à la base de données";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
-$a->strings["Database Server Name"] = "Serveur de base de données";
-$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
-$a->strings["Database Login Password"] = "Mot de passe de la base";
-$a->strings["Database Name"] = "Nom de la base";
-$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
-$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
-$a->strings["Site settings"] = "Réglages du site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
-$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
-$a->strings["Found PHP version: "] = "Version de PHP:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
-$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
-$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
-$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
-$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
-$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
-$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
-$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
-$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
-$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
-$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'.";
-$a->strings["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["No such group"] = "Groupe inexistant";
-$a->strings["Group is empty"] = "Groupe vide";
-$a->strings["Group: "] = "Groupe: ";
-$a->strings["View in context"] = "Voir dans le contexte";
-$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["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["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["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["Search Results For:"] = "Résultats pour:";
-$a->strings["add"] = "ajouter";
-$a->strings["Commented Order"] = "Tri par commentaires";
-$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
-$a->strings["Posted Order"] = "Tri des publications";
-$a->strings["Sort by Post Date"] = "Trier par date de publication";
-$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
-$a->strings["New"] = "Nouveau";
-$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
-$a->strings["Shared Links"] = "Liens partagés";
-$a->strings["Interesting Links"] = "Liens intéressants";
-$a->strings["Starred"] = "Mis en avant";
-$a->strings["Favourite Posts"] = "Publications favorites";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
-       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
+$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
+$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
+$a->strings["Ignore/Hide"] = "Ignorer/cacher";
+$a->strings["Profile deleted."] = "Profil supprimé.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Nouveau profil créé.";
+$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
+$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
+$a->strings["Marital Status"] = "Statut marital";
+$a->strings["Romantic Partner"] = "Partenaire/conjoint";
+$a->strings["Likes"] = "Derniers \"J'aime\"";
+$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
+$a->strings["Work/Employment"] = "Travail/Occupation";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Tendance politique";
+$a->strings["Gender"] = "Sexe";
+$a->strings["Sexual Preference"] = "Préférence sexuelle";
+$a->strings["Homepage"] = "Site internet";
+$a->strings["Interests"] = "Centres d'intérêt";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Localisation";
+$a->strings["Profile updated."] = "Profil mis à jour.";
+$a->strings[" and "] = " et ";
+$a->strings["public profile"] = "profil public";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?";
+$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
+$a->strings["Change Profile Photo"] = "Changer la photo du profil";
+$a->strings["View this profile"] = "Voir ce profil";
+$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
+$a->strings["Clone this profile"] = "Cloner ce profil";
+$a->strings["Delete this profile"] = "Supprimer ce profil";
+$a->strings["Basic information"] = "Information de base";
+$a->strings["Profile picture"] = "Image de profil";
+$a->strings["Preferences"] = "Préférences";
+$a->strings["Status information"] = "Information sur le statut";
+$a->strings["Additional information"] = "Information additionnelle";
+$a->strings["Profile Name:"] = "Nom du profil:";
+$a->strings["Your Full Name:"] = "Votre nom complet:";
+$a->strings["Title/Description:"] = "Titre/Description:";
+$a->strings["Your Gender:"] = "Votre genre:";
+$a->strings["Birthday (%s):"] = "Anniversaire (%s):";
+$a->strings["Street Address:"] = "Adresse postale:";
+$a->strings["Locality/City:"] = "Ville/Localité:";
+$a->strings["Postal/Zip Code:"] = "Code postal:";
+$a->strings["Country:"] = "Pays:";
+$a->strings["Region/State:"] = "Région/État:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Statut marital:";
+$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Depuis [date] :";
+$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
+$a->strings["Homepage URL:"] = "Page personnelle:";
+$a->strings["Hometown:"] = " Ville d'origine:";
+$a->strings["Political Views:"] = "Opinions politiques:";
+$a->strings["Religious Views:"] = "Opinions religieuses:";
+$a->strings["Public Keywords:"] = "Mots-clés publics:";
+$a->strings["Private Keywords:"] = "Mots-clés privés:";
+$a->strings["Likes:"] = "J'aime :";
+$a->strings["Dislikes:"] = "Je n'aime pas :";
+$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
+$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
+$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt";
+$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux";
+$a->strings["Musical interests"] = "Goûts musicaux";
+$a->strings["Books, literature"] = "Lectures";
+$a->strings["Television"] = "Télévision";
+$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
+$a->strings["Love/romance"] = "Amour/Romance";
+$a->strings["Work/employment"] = "Activité professionnelle/Occupation";
+$a->strings["School/education"] = "Études/Formation";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
+$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils";
+$a->strings["Change profile photo"] = "Changer de photo de profil";
+$a->strings["Create New Profile"] = "Créer un nouveau profil";
+$a->strings["Profile Image"] = "Image du profil";
+$a->strings["visible to everybody"] = "visible par tous";
+$a->strings["Edit visibility"] = "Changer la visibilité";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["upload photo"] = "envoi image";
+$a->strings["Attach file"] = "Joindre fichier";
+$a->strings["attach file"] = "ajout fichier";
+$a->strings["web link"] = "lien web";
+$a->strings["Insert video link"] = "Insérer un lien video";
+$a->strings["video link"] = "lien vidéo";
+$a->strings["Insert audio link"] = "Insérer un lien audio";
+$a->strings["audio link"] = "lien audio";
+$a->strings["Set your location"] = "Définir votre localisation";
+$a->strings["set location"] = "spéc. localisation";
+$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
+$a->strings["clear location"] = "supp. localisation";
+$a->strings["Permission settings"] = "Réglages des permissions";
+$a->strings["CC: email addresses"] = "CC: adresses de courriel";
+$a->strings["Public post"] = "Publication publique";
+$a->strings["Set title"] = "Définir un titre";
+$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
+$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
+$a->strings["running at web location"] = "hébergé sur";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
+$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:";
+$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:";
+$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
+$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
+$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
+$a->strings["Visible to:"] = "Visible par:";
+$a->strings["Personal Notes"] = "Notes personnelles";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Conversion temporelle";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
+$a->strings["UTC time: %s"] = "Temps UTC : %s";
+$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
+$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
+$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
+$a->strings["Poke/Prod"] = "Solliciter";
+$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
+$a->strings["Recipient"] = "Destinataire";
+$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
+$a->strings["Make this post private"] = "Rendez ce message privé";
+$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
+$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
+$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
+$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
+$a->strings["%d message sent."] = array(
+       0 => "%d message envoyé.",
+       1 => "%d messages envoyés.",
 );
-$a->strings["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["Contact: "] = "Contact: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
-$a->strings["Invalid contact."] = "Contact invalide.";
-$a->strings["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["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["No mirroring"] = "";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Your posts and conversations"] = "Vos publications et conversations";
-$a->strings["Your profile page"] = "Votre page de profil";
-$a->strings["Your contacts"] = "Vos contacts";
-$a->strings["Your photos"] = "Vos photos";
-$a->strings["Your events"] = "Vos événements";
-$a->strings["Personal notes"] = "Notes personnelles";
-$a->strings["Your personal photos"] = "Vos photos personnelles";
-$a->strings["Community Pages"] = "Pages de Communauté";
-$a->strings["Community Profiles"] = "Profils communautaires";
-$a->strings["Last users"] = "Derniers utilisateurs";
-$a->strings["Last likes"] = "Dernièrement aimé";
-$a->strings["event"] = "évènement";
-$a->strings["Last photos"] = "Dernières photos";
-$a->strings["Find Friends"] = "Trouver des amis";
-$a->strings["Local Directory"] = "Annuaire local";
-$a->strings["Similar Interests"] = "Intérêts similaires";
-$a->strings["Invite Friends"] = "Inviter des amis";
-$a->strings["Earth Layers"] = "Géolocalisation";
-$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
-$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation";
-$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
-$a->strings["Connect Services"] = "Connecter des services";
-$a->strings["don't show"] = "cacher";
-$a->strings["show"] = "montrer";
-$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
-$a->strings["Theme settings"] = "Réglages du thème graphique";
-$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires";
-$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires";
-$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale";
-$a->strings["Set color scheme"] = "Choisir le schéma de couleurs";
-$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom";
-$a->strings["Set style"] = "Définir le style";
-$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
-$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"] = "";
-$a->strings["Alignment"] = "Alignement";
-$a->strings["Left"] = "Gauche";
-$a->strings["Center"] = "Centre";
-$a->strings["Color scheme"] = "Palette de couleurs";
-$a->strings["Posts font size"] = "Taille de texte des publications";
-$a->strings["Textareas font size"] = "Taille de police des zones de texte";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
-$a->strings["Set theme width"] = "Largeur du thème";
+$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
+$a->strings["Send invitations"] = "Envoyer des invitations";
+$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Contact Photos"] = "Photos du contact";
+$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
+$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
+$a->strings["Album not found."] = "Album introuvable.";
+$a->strings["Delete Album"] = "Effacer l'album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
+$a->strings["Delete Photo"] = "Effacer la photo";
+$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
+$a->strings["a photo"] = "une photo";
+$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";
+$a->strings["Image file is empty."] = "Fichier image vide.";
+$a->strings["No photos selected"] = "Aucune photo sélectionnée";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos.";
+$a->strings["Upload Photos"] = "Téléverser des photos";
+$a->strings["New album name: "] = "Nom du nouvel album: ";
+$a->strings["or existing album name: "] = "ou nom d'un album existant: ";
+$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Private Photo"] = "Photo privée";
+$a->strings["Public Photo"] = "Photo publique";
+$a->strings["Edit Album"] = "Éditer l'album";
+$a->strings["Show Newest First"] = "Plus récent d'abord";
+$a->strings["Show Oldest First"] = "Plus ancien d'abord";
+$a->strings["View Photo"] = "Voir la photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
+$a->strings["Photo not available"] = "Photo indisponible";
+$a->strings["View photo"] = "Voir photo";
+$a->strings["Edit photo"] = "Éditer la photo";
+$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
+$a->strings["View Full Size"] = "Voir en taille réelle";
+$a->strings["Tags: "] = "Étiquettes:";
+$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
+$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
+$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
+$a->strings["New album name"] = "Nom du nouvel album";
+$a->strings["Caption"] = "Titre";
+$a->strings["Add a Tag"] = "Ajouter une étiquette";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
+$a->strings["Private photo"] = "Photo privée";
+$a->strings["Public photo"] = "Photo publique";
+$a->strings["Share"] = "Partager";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Account approved."] = "Inscription validée.";
+$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
+$a->strings["Please login."] = "Merci de vous connecter.";
+$a->strings["Move account"] = "Migrer le compte";
+$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora";
+$a->strings["Account file"] = "Fichier du compte";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
+$a->strings["Item not available."] = "Elément non disponible.";
+$a->strings["Item was not found."] = "Element introuvable.";
 $a->strings["Delete this item?"] = "Effacer cet élément?";
 $a->strings["show fewer"] = "montrer moins";
 $a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
@@ -1311,6 +1263,40 @@ $a->strings["Profile Details"] = "Détails du profil";
 $a->strings["Videos"] = "Vidéos";
 $a->strings["Events and Calendar"] = "Événements et agenda";
 $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
+$a->strings["This entry was edited"] = "Cette entrée à été édité";
+$a->strings["ignore thread"] = "ignorer le fil";
+$a->strings["unignore thread"] = "Ne plus ignorer le fil";
+$a->strings["toggle ignore status"] = "Ignorer le statut";
+$a->strings["ignored"] = "ignoré";
+$a->strings["Categories:"] = "Catégories:";
+$a->strings["Filed under:"] = "Rangé sous:";
+$a->strings["via"] = "via";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "";
+$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
+$a->strings["Errors encountered performing database changes."] = "";
+$a->strings["Logged out."] = "Déconnecté.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
+$a->strings["The error message was:"] = "Le message d'erreur était :";
+$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
+$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation disponible",
+       1 => "%d invitations disponibles",
+);
+$a->strings["Find People"] = "Trouver des personnes";
+$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
+$a->strings["Connect/Follow"] = "Connecter/Suivre";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
+$a->strings["Similar Interests"] = "Intérêts similaires";
+$a->strings["Random Profile"] = "Profil au hasard";
+$a->strings["Invite Friends"] = "Inviter des amis";
+$a->strings["Networks"] = "Réseaux";
+$a->strings["All Networks"] = "Tous réseaux";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Everything"] = "Tout";
+$a->strings["Categories"] = "Catégories";
 $a->strings["General Features"] = "Fonctions générales";
 $a->strings["Multiple Profiles"] = "Profils multiples";
 $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
@@ -1345,7 +1331,6 @@ $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";
@@ -1353,29 +1338,91 @@ $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["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["Starts:"] = "Débute:";
-$a->strings["Finishes:"] = "Finit:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Anniversaire:";
-$a->strings["Age:"] = "Age:";
-$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
-$a->strings["Tags:"] = "Étiquette:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
-$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
-$a->strings["Musical interests:"] = "Goûts musicaux:";
-$a->strings["Books, literature:"] = "Lectures:";
-$a->strings["Television:"] = "Télévision:";
-$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
-$a->strings["Love/Romance:"] = "Amour/Romance:";
-$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
-$a->strings["School/education:"] = "Études/Formation:";
+$a->strings["Connect URL missing."] = "URL de connexion manquante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
+$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
+$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
+$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
+$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
+$a->strings["following"] = "following";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
+$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["edit"] = "éditer";
+$a->strings["Edit group"] = "Editer groupe";
+$a->strings["Create a new group"] = "Créer un nouveau groupe";
+$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
+$a->strings["Miscellaneous"] = "Divers";
+$a->strings["year"] = "an";
+$a->strings["month"] = "mois";
+$a->strings["day"] = "jour";
+$a->strings["never"] = "jamais";
+$a->strings["less than a second ago"] = "il y a moins d'une seconde";
+$a->strings["years"] = "ans";
+$a->strings["months"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["weeks"] = "semaines";
+$a->strings["days"] = "jours";
+$a->strings["hour"] = "heure";
+$a->strings["hours"] = "heures";
+$a->strings["minute"] = "minute";
+$a->strings["minutes"] = "minutes";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant";
+$a->strings["%s's birthday"] = "Anniversaire de %s's";
+$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
+$a->strings["Visible to everybody"] = "Visible par tout le monde";
+$a->strings["show"] = "montrer";
+$a->strings["don't show"] = "cacher";
 $a->strings["[no subject]"] = "[pas de sujet]";
-$a->strings[" on Last.fm"] = "sur Last.fm";
+$a->strings["stopped following"] = "retiré de la liste de suivi";
+$a->strings["Poke"] = "Sollicitations (pokes)";
+$a->strings["View Status"] = "Voir les statuts";
+$a->strings["View Profile"] = "Voir le profil";
+$a->strings["View Photos"] = "Voir les photos";
+$a->strings["Network Posts"] = "Publications du réseau";
+$a->strings["Edit Contact"] = "Éditer le contact";
+$a->strings["Drop Contact"] = "Supprimer le contact";
+$a->strings["Send PM"] = "Message privé";
+$a->strings["Welcome "] = "Bienvenue ";
+$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
+$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
+$a->strings["event"] = "évènement";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
+$a->strings["poked"] = "a titillé";
+$a->strings["post/item"] = "publication/élément";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori";
+$a->strings["remove"] = "enlever";
+$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
+$a->strings["Follow Thread"] = "Suivre le fil";
+$a->strings["%s likes this."] = "%s aime ça.";
+$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça";
+$a->strings["and"] = "et";
+$a->strings[", and %d other people"] = ", et %d autres personnes";
+$a->strings["%s like this."] = "%s aiment ça.";
+$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
+$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
+$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
+$a->strings["Tag term:"] = "Terme d'étiquette:";
+$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
+$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
+$a->strings["Post to Email"] = "Publier aux courriels";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["permissions"] = "permissions";
+$a->strings["Post to Groups"] = "Publier aux groupes";
+$a->strings["Post to Contacts"] = "Publier aux contacts";
+$a->strings["Private post"] = "Message privé";
+$a->strings["view full size"] = "voir en pleine taille";
 $a->strings["newer"] = "Plus récent";
 $a->strings["older"] = "Plus ancien";
 $a->strings["prev"] = "précédent";
@@ -1388,7 +1435,6 @@ $a->strings["%d Contact"] = array(
        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";
@@ -1440,38 +1486,131 @@ $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[" on Last.fm"] = "sur Last.fm";
+$a->strings["Starts:"] = "Débute:";
+$a->strings["Finishes:"] = "Finit:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Anniversaire:";
+$a->strings["Age:"] = "Age:";
+$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+$a->strings["Tags:"] = "Étiquette:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
+$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
+$a->strings["Musical interests:"] = "Goûts musicaux:";
+$a->strings["Books, literature:"] = "Lectures:";
+$a->strings["Television:"] = "Télévision:";
+$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
+$a->strings["Love/Romance:"] = "Amour/Romance:";
+$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
+$a->strings["School/education:"] = "Études/Formation:";
+$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
+$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
+$a->strings["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["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."] = "";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
 $a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id.";
 $a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id.";
-$a->strings["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["%s's birthday"] = "Anniversaire de %s's";
-$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
-$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
-$a->strings["Archives"] = "Archives";
-$a->strings["(no subject)"] = "(sans titre)";
-$a->strings["noreply"] = "noreply";
+$a->strings["Invalid request."] = "";
+$a->strings["Invalid item."] = "";
+$a->strings["Invalid action. "] = "";
+$a->strings["DB error"] = "";
+$a->strings["An invitation is required."] = "Une invitation est requise.";
+$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
+$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
+$a->strings["Please enter the required information."] = "Entrez les informations requises.";
+$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
+$a->strings["Name too short."] = "Nom trop court.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
+$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
+$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre.";
+$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
+$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
+$a->strings["Friends"] = "Amis";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
 $a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
 $a->strings["Attachments:"] = "Pièces jointes : ";
-$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["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["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";
@@ -1508,7 +1647,6 @@ $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é";
@@ -1530,121 +1668,6 @@ $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["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["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["%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["View Status"] = "Voir les statuts";
-$a->strings["View Profile"] = "Voir le profil";
-$a->strings["View Photos"] = "Voir les photos";
-$a->strings["Network Posts"] = "Publications du réseau";
-$a->strings["Edit Contact"] = "Éditer le contact";
-$a->strings["Send PM"] = "Message privé";
-$a->strings["Poke"] = "Sollicitations (pokes)";
-$a->strings["%s likes this."] = "%s aime ça.";
-$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça";
-$a->strings["and"] = "et";
-$a->strings[", and %d other people"] = ", et %d autres personnes";
-$a->strings["%s like this."] = "%s aiment ça.";
-$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
-$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
-$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
-$a->strings["Tag term:"] = "Terme d'étiquette:";
-$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
-$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
-$a->strings["Post to Email"] = "Publier aux courriels";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
-$a->strings["permissions"] = "permissions";
-$a->strings["Post to Groups"] = "Publier aux groupes";
-$a->strings["Post to Contacts"] = "Publier aux contacts";
-$a->strings["Private post"] = "Message privé";
-$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
-$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitation disponible",
-       1 => "%d invitations disponibles",
-);
-$a->strings["Find People"] = "Trouver des personnes";
-$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
-$a->strings["Connect/Follow"] = "Connecter/Suivre";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
-$a->strings["Random Profile"] = "Profil au hasard";
-$a->strings["Networks"] = "Réseaux";
-$a->strings["All Networks"] = "Tous réseaux";
-$a->strings["Everything"] = "Tout";
-$a->strings["Categories"] = "Catégories";
-$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 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["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["Unknown | Not categorised"] = "Inconnu | Non-classé";
-$a->strings["Block immediately"] = "Bloquer immédiatement";
-$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
-$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
-$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
-$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
-$a->strings["Weekly"] = "Chaque semaine";
-$a->strings["Monthly"] = "Chaque mois";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
 $a->strings["Friendica Notification"] = "Notification Friendica";
 $a->strings["Thank You,"] = "Merci, ";
 $a->strings["%s Administrator"] = "L'administrateur de %s";
@@ -1702,61 +1725,56 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
 $a->strings["Please visit %s to approve or reject the request."] = "";
-$a->strings["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"] = "";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["Visible to everybody"] = "Visible par tout le monde";
-$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["Embedded content"] = "Contenu incorporé";
 $a->strings["Embedding disabled"] = "Incorporation désactivée";
-$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["stopped following"] = "retiré de la liste de suivi";
-$a->strings["Drop Contact"] = "Supprimer le contact";
-$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["view full size"] = "voir en pleine taille";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "";
-$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
-$a->strings["Errors encountered performing database changes."] = "";
+$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
+$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
+$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
+$a->strings["User creation error"] = "Erreur de création d'utilisateur";
+$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contacts non importés",
+       1 => "%d contacts non importés",
+);
+$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
+$a->strings["toggle mobile"] = "activ. mobile";
+$a->strings["Theme settings"] = "Réglages du thème graphique";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
+$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires";
+$a->strings["Set theme width"] = "Largeur du thème";
+$a->strings["Color scheme"] = "Palette de couleurs";
+$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires";
+$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
+$a->strings["Alignment"] = "Alignement";
+$a->strings["Left"] = "Gauche";
+$a->strings["Center"] = "Centre";
+$a->strings["Posts font size"] = "Taille de texte des publications";
+$a->strings["Textareas font size"] = "Taille de police des zones de texte";
+$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale";
+$a->strings["Set color scheme"] = "Choisir le schéma de couleurs";
+$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom";
+$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation";
+$a->strings["Community Pages"] = "Pages de Communauté";
+$a->strings["Earth Layers"] = "Géolocalisation";
+$a->strings["Community Profiles"] = "Profils communautaires";
+$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
+$a->strings["Connect Services"] = "Connecter des services";
+$a->strings["Find Friends"] = "Trouver des amis";
+$a->strings["Last users"] = "Derniers utilisateurs";
+$a->strings["Last photos"] = "Dernières photos";
+$a->strings["Last likes"] = "Dernièrement aimé";
+$a->strings["Your contacts"] = "Vos contacts";
+$a->strings["Your personal photos"] = "Vos photos personnelles";
+$a->strings["Local Directory"] = "Annuaire local";
+$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
+$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
+$a->strings["Set style"] = "Définir le style";
+$a->strings["greenzero"] = "";
+$a->strings["purplezero"] = "";
+$a->strings["easterbunny"] = "";
+$a->strings["darkzero"] = "";
+$a->strings["comix"] = "";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "";
index 62bbbcbf0eafbd70edadc0d986f5cb98a4ee7020..14210d2424649117e35bffa0043c1a2c9c73926a 100644 (file)
@@ -22,14 +22,14 @@ if ($style == "")
 
 if ($style == "flat")
        $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/flat.css" type="text/css" media="screen"/>'."\n";
-if ($style == "dark")
-       $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/dark.css" type="text/css" media="screen"/>'."\n";
 else if ($style == "netcolour")
        $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/netcolour.css" type="text/css" media="screen"/>'."\n";
 else if ($style == "breathe")
        $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/breathe.css" type="text/css" media="screen"/>'."\n";
 else if ($style == "plus")
        $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/plus.css" type="text/css" media="screen"/>'."\n";
+else if ($style == "dark")
+       $a->page['htmlhead'] .= '<link rel="stylesheet" href="view/theme/vier/dark.css" type="text/css" media="screen"/>'."\n";
 
 $a->page['htmlhead'] .= <<< EOT
 <script type="text/javascript">