]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/master'
authorMichael Vogel <icarus@dabo.de>
Sat, 22 Jun 2013 16:31:28 +0000 (18:31 +0200)
committerMichael Vogel <icarus@dabo.de>
Sat, 22 Jun 2013 16:31:28 +0000 (18:31 +0200)
15 files changed:
boot.php
include/text.php
view/cs/messages.po
view/cs/strings.php
view/fr/messages.po
view/fr/strings.php
view/it/messages.po
view/it/strings.php
view/nb-no/messages.po
view/nb-no/strings.php
view/nb-no/update_fail_eml.tpl
view/templates/paginate.tpl [new file with mode: 0644]
view/zh-cn/messages.po
view/zh-cn/strings.php
view/zh-cn/update_fail_eml.tpl

index bed6caa572f804e9278f98b975f52ded41b1c093..0f3f7f67a46cb9d621243d6aa81ba747151147d2 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -635,7 +635,11 @@ if(! class_exists('App')) {
                function set_pager_itemspage($n) {
                        $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
                        $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
-
+               }
+               
+               function set_pager_page($n) {
+                       $this->pager['page'] = $n;
+                       $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
                }
 
                function init_pagehead() {
index 9f8114d926ddcdb5b7a5bfe6c01cfce88dfb200e..6b39868b9a67c9658a9f3cf6e81adffeaf2783b2 100644 (file)
@@ -27,7 +27,11 @@ function replace_macros($s,$r) {
        $a = get_app();
 
        $t = $a->template_engine();
-       $output = $t->replace_macros($s,$r);
+       try {
+               $output = $t->replace_macros($s,$r);
+       } catch (Exception $e) {
+               echo "<pre><b>".__function__."</b>: ".$e->getMessage()."</pre>"; killme();
+       }
 
        $a->save_timestamp($stamp1, "rendering");
 
@@ -260,75 +264,106 @@ function hex2bin($s) {
 }}
 
 
-if(! function_exists('paginate')) {
+if(! function_exists('paginate_data')) {
 /**
- * Automatic pagination.
+ * Automatica pagination data.
  *
- *  To use, get the count of total items.
- * Then call $a->set_pager_total($number_items);
- * Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
- * Then call paginate($a) after the end of the display loop to insert the pager block on the page
- * (assuming there are enough items to paginate).
- * When using with SQL, the setting LIMIT %d, %d => $a->pager['start'],$a->pager['itemspage']
- * will limit the results to the correct items for the current page. 
- * The actual page handling is then accomplished at the application layer. 
- * 
  * @param App $a App instance
- * @return string html for pagination #FIXME remove html
+ * @param int $count [optional] item count (used with alt pager)
+ * @return Array data for pagination template
  */
-function paginate(&$a) {
-       $o = '';
+function paginate_data(&$a, $count=null) {
        $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
 
-//     $stripped = preg_replace('/&zrl=(.*?)([\?&]|$)/ism','',$stripped);
-
        $stripped = str_replace('q=','',$stripped);
        $stripped = trim($stripped,'/');
        $pagenum = $a->pager['page'];
        $url = $a->get_baseurl() . '/' . $stripped;
 
 
-         if($a->pager['total'] > $a->pager['itemspage']) {
-               $o .= '<div class="pager">';
-               if($a->pager['page'] != 1)
-                       $o .= '<span class="pager_prev">'."<a href=\"$url".'&page='.($a->pager['page'] - 1).'">' . t('prev') . '</a></span> ';
+       $data = array();
+       function _l(&$d, $name, $url, $text, $class="") { 
+               
+               $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class); 
+       }
+
+       if (!is_null($count)){
+               // alt pager
+               if($a->pager['page']>1)
+                       _l($data,  "prev", $url.'&page='.($a->pager['page'] - 1), t('newer'));
+               if($count>0)
+                       _l($data,  "next", $url.'&page='.($a->pager['page'] + 1), t('older'));
+       } else {
+               // full pager
+               if($a->pager['total'] > $a->pager['itemspage']) {
+                       if($a->pager['page'] != 1)
+                               _l($data,  "prev", $url.'&page='.($a->pager['page'] - 1), t('prev'));
 
-               $o .=  "<span class=\"pager_first\"><a href=\"$url"."&page=1\">" . t('first') . "</a></span> ";
+                       _l($data, "first", $url."&page=1",  t('first'));
 
-               $numpages = $a->pager['total'] / $a->pager['itemspage'];
+                       
+                       $numpages = $a->pager['total'] / $a->pager['itemspage'];
 
                        $numstart = 1;
-               $numstop = $numpages;
+                       $numstop = $numpages;
 
-               if($numpages > 14) {
-                       $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
-                       $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
-               }
-   
-               for($i = $numstart; $i <= $numstop; $i++){
-                       if($i == $a->pager['page'])
-                               $o .= '<span class="pager_current">'.(($i < 10) ? '&nbsp;'.$i : $i);
-                       else
-                               $o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? '&nbsp;'.$i : $i)."</a>";
-                       $o .= '</span> ';
-               }
+                       if($numpages > 14) {
+                               $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
+                               $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
+                       }
 
-               if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
-                       if($i == $a->pager['page'])
-                               $o .= '<span class="pager_current">'.(($i < 10) ? '&nbsp;'.$i : $i);
-                       else
-                               $o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? '&nbsp;'.$i : $i)."</a>";
-                       $o .= '</span> ';
-               }
+                       $pages = array();
 
-               $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
-               $o .= "<span class=\"pager_last\"><a href=\"$url"."&page=$lastpage\">" . t('last') . "</a></span> ";
+                       for($i = $numstart; $i <= $numstop; $i++){
+                               if($i == $a->pager['page'])
+                                       _l($pages, $i, "#",  $i, "current");
+                               else
+                                       _l($pages, $i, $url."&page=$i", $i, "n");
+                       }
+
+                       if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
+                               if($i == $a->pager['page'])
+                                       _l($pages, $i, "#",  $i, "current");
+                               else
+                                       _l($pages, $i, $url."&page=$i", $i, "n");
+                       }
+
+                       $data['pages'] = $pages;
 
-               if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
-                       $o .= '<span class="pager_next">'."<a href=\"$url"."&page=".($a->pager['page'] + 1).'">' . t('next') . '</a></span>';
-               $o .= '</div>'."\r\n";
+                       $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
+                       _l($data, "last", $url."&page=$lastpage", t('last'));
+                       
+                       if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
+                               _l($data, "next", $url."&page=".($a->pager['page'] + 1), t('next'));
+
+               }       
        }
-       return $o;
+       return $data;
+
+}}
+
+if(! function_exists('paginate')) {
+/**
+ * Automatic pagination.
+ *
+ *  To use, get the count of total items.
+ * Then call $a->set_pager_total($number_items);
+ * Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
+ * Then call paginate($a) after the end of the display loop to insert the pager block on the page
+ * (assuming there are enough items to paginate).
+ * When using with SQL, the setting LIMIT %d, %d => $a->pager['start'],$a->pager['itemspage']
+ * will limit the results to the correct items for the current page. 
+ * The actual page handling is then accomplished at the application layer. 
+ * 
+ * @param App $a App instance
+ * @return string html for pagination #FIXME remove html
+ */
+function paginate(&$a) {
+       
+       $data = paginate_data($a);
+       $tpl = get_markup_template("paginate.tpl");
+       return replace_macros($tpl, array("pager" => $data));
+
 }}
 
 if(! function_exists('alt_pager')) {
@@ -339,27 +374,11 @@ if(! function_exists('alt_pager')) {
  * @return string html for pagination #FIXME remove html
  */
 function alt_pager(&$a, $i) {
-        $o = '';
-       $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
-       $stripped = str_replace('q=','',$stripped);
-       $stripped = trim($stripped,'/');
-       $pagenum = $a->pager['page'];
-        $url = $a->get_baseurl() . '/' . $stripped;
-
-        $o .= '<div class="pager">';
 
-       if($a->pager['page']>1)
-         $o .= "<a href=\"$url"."&page=".($a->pager['page'] - 1).'" class="pager_newer">' . t('newer') . '</a>';
-        if($i>0) {
-          if($a->pager['page']>1)
-                 $o .= "&nbsp;-&nbsp;";
-         $o .= "<a href=\"$url"."&page=".($a->pager['page'] + 1).'" class="pager_older">' . t('older') . '</a>';
-       }
-
-
-        $o .= '</div>'."\r\n";
-
-       return $o;
+       $data = paginate_data($a, $i);
+       $tpl = get_markup_template("paginate.tpl");
+       return replace_macros($tpl, array('pager' => $data));
+       
 }}
 
 
@@ -564,8 +583,11 @@ function get_markup_template($s, $root = '') {
 
        $a = get_app();
        $t = $a->template_engine();
-       
-       $template = $t->get_template_file($s, $root);
+       try {
+               $template = $t->get_template_file($s, $root);
+       } catch (Exception $e) {
+               echo "<pre><b>".__function__."</b>: ".$e->getMessage()."</pre>"; killme();
+       }
        
        $a->save_timestamp($stamp1, "file");
        
index 8d430d0627e3eb3bebb128293a2229b017621044..31663ed95a95b10918583c8378a70d619ce4e54d 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-05-22 00:01-0700\n"
-"PO-Revision-Date: 2013-05-24 17:03+0000\n"
+"POT-Creation-Date: 2013-06-12 00:01-0700\n"
+"PO-Revision-Date: 2013-06-12 18:39+0000\n"
 "Last-Translator: Michal Šupler <msupler@gmail.com>\n"
 "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -401,7 +401,8 @@ msgstr "Editovat Kontakty"
 msgid "Send PM"
 msgstr "Poslat soukromou zprávu"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:549
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:550
+#: ../../include/bbcode.php:551
 msgid "Image/photo"
 msgstr "Obrázek/fotografie"
 
@@ -416,7 +417,7 @@ msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> napsal následujíc
 msgid "$1 wrote:"
 msgstr "$1 napsal:"
 
-#: ../../include/bbcode.php:557 ../../include/bbcode.php:558
+#: ../../include/bbcode.php:559 ../../include/bbcode.php:560
 msgid "Encrypted content"
 msgstr "Šifrovaný obsah"
 
@@ -594,7 +595,7 @@ msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
 msgid "An error occurred during registration. Please try again."
 msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
 
-#: ../../include/user.php:237 ../../include/text.php:1594
+#: ../../include/user.php:237 ../../include/text.php:1596
 msgid "default"
 msgstr "standardní"
 
@@ -926,7 +927,7 @@ msgstr "%1$s je nyní přítel s %2$s"
 msgid "Sharing notification from Diaspora network"
 msgstr "Sdílení oznámení ze sítě Diaspora"
 
-#: ../../include/diaspora.php:1874 ../../include/text.php:1860
+#: ../../include/diaspora.php:1874 ../../include/text.php:1862
 #: ../../include/conversation.php:126 ../../include/conversation.php:254
 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
 #: ../../view/theme/diabook/theme.php:464
@@ -1361,112 +1362,112 @@ msgstr "uvolněný"
 msgid "surprised"
 msgstr "překvapený"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Monday"
 msgstr "Pondělí"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Tuesday"
 msgstr "Úterý"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Wednesday"
 msgstr "Středa"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Thursday"
 msgstr "Čtvrtek"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Friday"
 msgstr "Pátek"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Saturday"
 msgstr "Sobota"
 
-#: ../../include/text.php:1161
+#: ../../include/text.php:1163
 msgid "Sunday"
 msgstr "Neděle"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "January"
 msgstr "Ledna"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "February"
 msgstr "Února"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "March"
 msgstr "Března"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "April"
 msgstr "Dubna"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "May"
 msgstr "Května"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "June"
 msgstr "Června"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "July"
 msgstr "Července"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "August"
 msgstr "Srpna"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "September"
 msgstr "Září"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "October"
 msgstr "Října"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "November"
 msgstr "Listopadu"
 
-#: ../../include/text.php:1165
+#: ../../include/text.php:1167
 msgid "December"
 msgstr "Prosinec"
 
-#: ../../include/text.php:1321 ../../mod/videos.php:301
+#: ../../include/text.php:1323 ../../mod/videos.php:301
 msgid "View Video"
 msgstr "Zobrazit video"
 
-#: ../../include/text.php:1353
+#: ../../include/text.php:1355
 msgid "bytes"
 msgstr "bytů"
 
-#: ../../include/text.php:1377 ../../include/text.php:1389
+#: ../../include/text.php:1379 ../../include/text.php:1391
 msgid "Click to open/close"
 msgstr "Klikněte pro otevření/zavření"
 
-#: ../../include/text.php:1551 ../../mod/events.php:335
+#: ../../include/text.php:1553 ../../mod/events.php:335
 msgid "link to source"
 msgstr "odkaz na zdroj"
 
-#: ../../include/text.php:1606
+#: ../../include/text.php:1608
 msgid "Select an alternate language"
 msgstr "Vyběr alternativního jazyka"
 
-#: ../../include/text.php:1858 ../../include/conversation.php:118
+#: ../../include/text.php:1860 ../../include/conversation.php:118
 #: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
 msgid "event"
 msgstr "událost"
 
-#: ../../include/text.php:1862
+#: ../../include/text.php:1864
 msgid "activity"
 msgstr "aktivita"
 
-#: ../../include/text.php:1864 ../../mod/content.php:628
+#: ../../include/text.php:1866 ../../mod/content.php:628
 #: ../../object/Item.php:364 ../../object/Item.php:377
 msgid "comment"
 msgid_plural "comments"
@@ -1474,11 +1475,11 @@ msgstr[0] ""
 msgstr[1] ""
 msgstr[2] "komentář"
 
-#: ../../include/text.php:1865
+#: ../../include/text.php:1867
 msgid "post"
 msgstr "příspěvek"
 
-#: ../../include/text.php:2020
+#: ../../include/text.php:2022
 msgid "Item filed"
 msgstr "Položka vyplněna"
 
@@ -6367,8 +6368,8 @@ msgid "Tips for New Members"
 msgstr "Tipy pro nové členy"
 
 #: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Friendica Sociální komunkační server - Nastavení"
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikační server - Nastavení"
 
 #: ../../mod/install.php:123
 msgid "Could not connect to database."
index cf6fee93cabf203031b0c499f3e1b50d0ba23479..6d6251830e7af3d46c8abd2b45050d8d244bb500 100644 (file)
@@ -1489,7 +1489,7 @@ $a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
 $a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
 $a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
 $a->strings["Tips for New Members"] = "Tipy pro nové členy";
-$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Sociální komunkační server - Nastavení";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
 $a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
 $a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
 $a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
index 5845874cd001fb759f1da9a09803c3556d2daac2..7ed67a10c9a9e1c9b778e0e700901fad3f4ede79 100644 (file)
@@ -1,18 +1,19 @@
 # FRIENDICA Distributed Social Network
-# Copyright (C) 2010, 2011 the Friendica Project
+# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
-#   <domovoy@errlock.org>, 2012.
-#   <olivier@free-beer.ch>, 2012.
-# Olivier  <olivier+transifex@migeot.org>, 2011-2012.
+# Domovoy <domovoy@errlock.org>, 2012
+# ltriay <zapimax38@free.fr>, 2013
+# Marquis_de_Carabas <olivier@free-beer.ch>, 2012
+# Olivier <olivier+transifex@migeot.org>, 2011-2012
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-11-28 10:00-0800\n"
-"PO-Revision-Date: 2012-11-28 08:19+0000\n"
-"Last-Translator: Olivier <olivier+transifex@migeot.org>\n"
+"POT-Creation-Date: 2013-06-12 00:01-0700\n"
+"PO-Revision-Date: 2013-06-21 09:30+0000\n"
+"Last-Translator: ltriay <zapimax38@free.fr>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,9598 +21,7098 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publication réussie."
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
+#: ../../boot.php:1947
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
-#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
-msgstr "[contenu incorporé - rechargez la page pour le voir]"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079
+msgid "Full Name:"
+msgstr "Nom complet:"
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Réglages du contact appliqués."
+#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
+#: ../../boot.php:1487
+msgid "Gender:"
+msgstr "Genre:"
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Impossible d'appliquer les réglages."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
-#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
-#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:541
-#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
-#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
-#: ../../mod/item.php:155 ../../mod/mood.php:114
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:172
-#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
-#: ../../mod/display.php:165 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:424 ../../mod/delegate.php:6
-#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
-#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
-#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
-#: ../../addon/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
-#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
-#: ../../addon.old/facebook/facebook.php:516
-#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
-#: ../../addon.old/dav/friendica/layout.fnk.php:354
-msgid "Permission denied."
-msgstr "Permission refusée."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
-msgid "Contact not found."
-msgstr "Contact introuvable."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Anniversaire:"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Réglages du réparateur de contacts"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Age:"
 
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
+#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
+#: ../../boot.php:1490
+msgid "Status:"
+msgstr "Statut:"
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "une photo"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Retour à l'éditeur de contact"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650
+msgid "Sexual Preference:"
+msgstr "Préférence sexuelle:"
 
-#: ../../mod/crepair.php:148 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/admin.php:692 ../../mod/admin.php:702
-msgid "Name"
-msgstr "Nom"
+#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
+#: ../../boot.php:1492
+msgid "Homepage:"
+msgstr "Page personnelle:"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Pseudo du compte"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652
+msgid "Hometown:"
+msgstr " Ville d'origine:"
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@NomDuTag - prend le pas sur Nom/Pseudo"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tags :"
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL du compte"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653
+msgid "Political Views:"
+msgstr "Opinions politiques:"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "Echec du téléversement de l'image."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "Accès public refusé."
+#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
+msgid "About:"
+msgstr "À propos:"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "Aucune photo sélectionnée"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passe-temps/Centres d'intérêt:"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "Téléverser des photos"
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657
+msgid "Likes:"
+msgstr "J'aime :"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nouvelle photo depuis cette URL"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658
+msgid "Dislikes:"
+msgstr "Je n'aime pas :"
 
-#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1028
-#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
-#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
-#: ../../mod/photos.php:1519 ../../mod/install.php:246
-#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:693 ../../mod/contacts.php:352
-#: ../../mod/settings.php:559 ../../mod/settings.php:669
-#: ../../mod/settings.php:738 ../../mod/settings.php:810
-#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
-#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:443
-#: ../../mod/admin.php:689 ../../mod/admin.php:826 ../../mod/admin.php:1025
-#: ../../mod/admin.php:1112 ../../mod/profiles.php:597
-#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
-#: ../../addon/facebook/facebook.php:619
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
-#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
-#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/remote_permissions/remote_permissions.php:47
-#: ../../addon/remote_permissions/remote_permissions.php:195
-#: ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187
-#: ../../addon/forumlist/forumlist.php:175
-#: ../../addon/impressum/impressum.php:83
-#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/openstreetmap/openstreetmap.php:70
-#: ../../addon/group_text/group_text.php:84
-#: ../../addon/libravatar/libravatar.php:99
-#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
-#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
-#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
-#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/jappixmini/jappixmini.php:307
-#: ../../addon/statusnet/statusnet.php:278
-#: ../../addon/statusnet/statusnet.php:292
-#: ../../addon/statusnet/statusnet.php:318
-#: ../../addon/statusnet/statusnet.php:325
-#: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
-#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
-#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
-#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
-#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
-#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:600
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
-#: ../../addon.old/facebook/facebook.php:619
-#: ../../addon.old/snautofollow/snautofollow.php:64
-#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
-#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
-#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
-#: ../../addon.old/planets/planets.php:158
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
-#: ../../addon.old/randplace/randplace.php:177
-#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
-#: ../../addon.old/startpage/startpage.php:92
-#: ../../addon.old/geonames/geonames.php:187
-#: ../../addon.old/oembed.old/oembed.php:41
-#: ../../addon.old/forumlist/forumlist.php:175
-#: ../../addon.old/impressum/impressum.php:83
-#: ../../addon.old/notimeline/notimeline.php:64
-#: ../../addon.old/blockem/blockem.php:57
-#: ../../addon.old/qcomment/qcomment.php:61
-#: ../../addon.old/openstreetmap/openstreetmap.php:70
-#: ../../addon.old/group_text/group_text.php:84
-#: ../../addon.old/libravatar/libravatar.php:99
-#: ../../addon.old/libertree/libertree.php:90
-#: ../../addon.old/altpager/altpager.php:87
-#: ../../addon.old/mathjax/mathjax.php:42
-#: ../../addon.old/editplain/editplain.php:84
-#: ../../addon.old/blackout/blackout.php:98
-#: ../../addon.old/gravatar/gravatar.php:95
-#: ../../addon.old/pageheader/pageheader.php:55
-#: ../../addon.old/ijpost/ijpost.php:93
-#: ../../addon.old/jappixmini/jappixmini.php:307
-#: ../../addon.old/statusnet/statusnet.php:278
-#: ../../addon.old/statusnet/statusnet.php:292
-#: ../../addon.old/statusnet/statusnet.php:318
-#: ../../addon.old/statusnet/statusnet.php:325
-#: ../../addon.old/statusnet/statusnet.php:353
-#: ../../addon.old/statusnet/statusnet.php:576
-#: ../../addon.old/tumblr/tumblr.php:90
-#: ../../addon.old/numfriends/numfriends.php:85
-#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
-#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
-#: ../../addon.old/twitter/twitter.php:180
-#: ../../addon.old/twitter/twitter.php:209
-#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
-#: ../../addon.old/fromapp/fromapp.php:77
-#: ../../addon.old/blogger/blogger.php:102
-#: ../../addon.old/posterous/posterous.php:103
-msgid "Submit"
-msgstr "Envoyer"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées/Réseaux sociaux:"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Aide:"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Goûts musicaux:"
 
-#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
-msgid "Help"
-msgstr "Aide"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Lectures:"
 
-#: ../../mod/help.php:90 ../../index.php:218
-msgid "Not Found"
-msgstr "Non trouvé"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Télévision:"
 
-#: ../../mod/help.php:93 ../../index.php:221
-msgid "Page not found."
-msgstr "Page introuvable."
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/Danse/Culture/Divertissement:"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "La taille du fichier dépasse la limite de %d"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amour/Romance:"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Activité professionnelle/Occupation:"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Études/Formation:"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculin"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Féminin"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Vous devez donner un nom et un horaire de début à l'événement."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Actuellement masculin"
 
-#: ../../mod/events.php:279
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Actuellement féminin"
 
-#: ../../mod/events.php:301
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Principalement masculin"
 
-#: ../../mod/events.php:323 ../../include/text.php:1190
-msgid "link to source"
-msgstr "lien original"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Principalement féminin"
 
-#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90
-#: ../../include/nav.php:52 ../../boot.php:1748
-msgid "Events"
-msgstr "Événements"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgenre"
 
-#: ../../mod/events.php:348
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Inter-sexe"
 
-#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
-#: ../../addon.old/dav/friendica/layout.fnk.php:263
-msgid "Previous"
-msgstr "Précédent"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuel"
 
-#: ../../mod/events.php:350 ../../mod/install.php:205
-#: ../../addon/dav/friendica/layout.fnk.php:266
-#: ../../addon.old/dav/friendica/layout.fnk.php:266
-msgid "Next"
-msgstr "Suivant"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
 
-#: ../../mod/events.php:423
-msgid "hour:minute"
-msgstr "heures:minutes"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutre"
 
-#: ../../mod/events.php:433
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-spécifique"
 
-#: ../../mod/events.php:434
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Autre"
 
-#: ../../mod/events.php:436
-msgid "Event Starts:"
-msgstr "Début de l'événement:"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indécis"
 
-#: ../../mod/events.php:436 ../../mod/events.php:450
-msgid "Required"
-msgstr "Requis"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Hommes"
 
-#: ../../mod/events.php:439
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmes"
 
-#: ../../mod/events.php:441
-msgid "Event Finishes:"
-msgstr "Fin de l'événement:"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../mod/events.php:444
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbienne"
 
-#: ../../mod/events.php:446
-msgid "Description:"
-msgstr "Description:"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sans préférence"
 
-#: ../../mod/events.php:448 ../../mod/directory.php:134
-#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1278
-msgid "Location:"
-msgstr "Localisation:"
-
-#: ../../mod/events.php:450
-msgid "Title:"
-msgstr "Titre :"
-
-#: ../../mod/events.php:452
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuel"
 
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
-#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
-#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:1009
-#: ../../addon.old/js_upload/js_upload.php:45
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Auto-sexuel"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette enlevée"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vierge"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Choisir une étiquette à enlever: "
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Déviant"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-#: ../../addon/dav/common/wdcal_edit.inc.php:468
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fétichiste"
 
-#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Non-sexuel"
 
-#: ../../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é : "
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Célibataire"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Esseulé"
 
-#: ../../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 notices et contacts, et/ou à créer des notices à votre place?"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponible"
 
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
-#: ../../mod/settings.php:933 ../../mod/settings.php:939
-#: ../../mod/settings.php:947 ../../mod/settings.php:951
-#: ../../mod/settings.php:956 ../../mod/settings.php:962
-#: ../../mod/settings.php:968 ../../mod/settings.php:974
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/register.php:237
-#: ../../mod/profiles.php:577
-msgid "Yes"
-msgstr "Oui"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Indisponible"
 
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
-#: ../../mod/settings.php:933 ../../mod/settings.php:939
-#: ../../mod/settings.php:947 ../../mod/settings.php:951
-#: ../../mod/settings.php:956 ../../mod/settings.php:962
-#: ../../mod/settings.php:968 ../../mod/settings.php:974
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/register.php:238
-#: ../../mod/profiles.php:578
-msgid "No"
-msgstr "Non"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Attiré par quelqu'un"
 
-#: ../../mod/photos.php:51 ../../boot.php:1741
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Entiché"
 
-#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
-#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
-#: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:486
-#: ../../addon.old/communityhome/communityhome.php:110
-msgid "Contact Photos"
-msgstr "Photos du contact"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dans une relation"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidèle"
 
-#: ../../mod/photos.php:79 ../../mod/settings.php:23
-msgid "everybody"
-msgstr "tout le monde"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Accro au sexe"
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "Amis"
 
-#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
-#: ../../mod/photos.php:1107 ../../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
-#: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:487 ../../include/user.php:324
-#: ../../include/user.php:331 ../../include/user.php:338
-#: ../../addon.old/communityhome/communityhome.php:111
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amis par intérêt"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/photos.php:182 ../../mod/photos.php:1101
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Fiancé"
 
-#: ../../mod/photos.php:245 ../../mod/photos.php:1364
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Marié"
 
-#: ../../mod/photos.php:607
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Se croit marié"
 
-#: ../../mod/photos.php:607
-msgid "a photo"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partenaire"
 
-#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
-#: ../../addon.old/js_upload/js_upload.php:315
-msgid "Image exceeds size limit of "
-msgstr "L'image dépasse la taille maximale de  "
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "En cohabitation"
 
-#: ../../mod/photos.php:720
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
 
-#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:112
-msgid "Unable to process image."
-msgstr "Impossible de traiter l'image."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Heureux"
 
-#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:138
-msgid "Image upload failed."
-msgstr "Le téléversement de l'image a échoué."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Pas intéressé"
 
-#: ../../mod/photos.php:865 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
-#: ../../addon/forumdirectory/forumdirectory.php:53
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Échangiste"
 
-#: ../../mod/photos.php:875
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Trahi(e)"
 
-#: ../../mod/photos.php:976
-msgid "Access to this item is restricted."
-msgstr "Accès restreint à cet élément."
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Séparé"
 
-#: ../../mod/photos.php:1037
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instable"
 
-#: ../../mod/photos.php:1043
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorcé"
 
-#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
-msgid "New album name: "
-msgstr "Nom du nouvel album: "
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Se croit divorcé"
 
-#: ../../mod/photos.php:1048
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant: "
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Veuf/Veuve"
 
-#: ../../mod/photos.php:1049
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice pour cet envoi"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incertain"
 
-#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
-msgid "Permissions"
-msgstr "Permissions"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "C'est compliqué"
 
-#: ../../mod/photos.php:1111
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "S'en désintéresse"
 
-#: ../../mod/photos.php:1117
-msgid "Show Newest First"
-msgstr "Plus récent d'abord"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Me demander"
 
-#: ../../mod/photos.php:1119
-msgid "Show Oldest First"
-msgstr "Plus ancien d'abord"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "retiré de la liste de suivi"
 
-#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
-msgid "View Photo"
-msgstr "Voir la photo"
+#: ../../include/Contact.php:225 ../../include/conversation.php:878
+msgid "Poke"
+msgstr "Sollicitations (pokes)"
 
-#: ../../mod/photos.php:1178
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
+#: ../../include/Contact.php:226 ../../include/conversation.php:872
+msgid "View Status"
+msgstr "Voir les statuts"
 
-#: ../../mod/photos.php:1180
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../include/Contact.php:227 ../../include/conversation.php:873
+msgid "View Profile"
+msgstr "Voir le profil"
 
-#: ../../mod/photos.php:1236
-msgid "View photo"
-msgstr "Voir photo"
+#: ../../include/Contact.php:228 ../../include/conversation.php:874
+msgid "View Photos"
+msgstr "Voir les photos"
 
-#: ../../mod/photos.php:1236
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: ../../include/Contact.php:229 ../../include/Contact.php:251
+#: ../../include/conversation.php:875
+msgid "Network Posts"
+msgstr "Posts du Réseau"
 
-#: ../../mod/photos.php:1237
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: ../../include/Contact.php:230 ../../include/Contact.php:251
+#: ../../include/conversation.php:876
+msgid "Edit Contact"
+msgstr "Éditer le contact"
 
-#: ../../mod/photos.php:1243 ../../mod/content.php:603
-#: ../../object/Item.php:104
-msgid "Private Message"
+#: ../../include/Contact.php:231 ../../include/Contact.php:251
+#: ../../include/conversation.php:877
+msgid "Send PM"
 msgstr "Message privé"
 
-#: ../../mod/photos.php:1262
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:550
+#: ../../include/bbcode.php:551
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: ../../mod/photos.php:1336
-msgid "Tags: "
-msgstr "Étiquettes: "
+#: ../../include/bbcode.php:272
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr ""
 
-#: ../../mod/photos.php:1339
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
-
-#: ../../mod/photos.php:1349
-msgid "Rotate CW (right)"
-msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
-
-#: ../../mod/photos.php:1350
-msgid "Rotate CCW (left)"
-msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
+#: ../../include/bbcode.php:514 ../../include/bbcode.php:534
+msgid "$1 wrote:"
+msgstr "$1 a écrit:"
 
-#: ../../mod/photos.php:1352
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: ../../include/bbcode.php:559 ../../include/bbcode.php:560
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../mod/photos.php:1355
-msgid "Caption"
-msgstr "Titre"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Visible par tout le monde"
 
-#: ../../mod/photos.php:1357
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "show"
+msgstr "montrer"
 
-#: ../../mod/photos.php:1361
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "don't show"
+msgstr "cacher"
 
-#: ../../mod/photos.php:1381 ../../mod/content.php:667
-#: ../../object/Item.php:202
-msgid "I like this (toggle)"
-msgstr "J'aime (bascule)"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Déconnecté."
 
-#: ../../mod/photos.php:1382 ../../mod/content.php:668
-#: ../../object/Item.php:203
-msgid "I don't like this (toggle)"
-msgstr "Je n'aime pas (bascule)"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Échec de connexion."
 
-#: ../../mod/photos.php:1383 ../../include/conversation.php:969
-msgid "Share"
-msgstr "Partager"
+#: ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
 
-#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
-#: ../../mod/content.php:482 ../../mod/content.php:848
-#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
-#: ../../mod/message.php:488 ../../include/conversation.php:624
-#: ../../include/conversation.php:988 ../../object/Item.php:269
-msgid "Please wait"
-msgstr "Patientez"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Le message d'erreur était :"
 
-#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
-#: ../../mod/photos.php:1516 ../../mod/content.php:690
-#: ../../object/Item.php:567
-msgid "This is you"
-msgstr "C'est vous"
+#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
-#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
-#: ../../object/Item.php:266 ../../object/Item.php:569
-msgid "Comment"
-msgstr "Commenter"
+#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Débute:"
 
-#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
-#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
-#: ../../mod/content.php:702 ../../include/conversation.php:1006
-#: ../../object/Item.php:579
-msgid "Preview"
-msgstr "Aperçu"
+#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Finit:"
 
-#: ../../mod/photos.php:1488 ../../mod/content.php:439
-#: ../../mod/content.php:724 ../../mod/settings.php:622
-#: ../../mod/group.php:168 ../../mod/admin.php:696
-#: ../../include/conversation.php:569 ../../object/Item.php:118
-msgid "Delete"
-msgstr "Supprimer"
+#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485
+msgid "Location:"
+msgstr "Localisation:"
 
-#: ../../mod/photos.php:1601
-msgid "View Album"
-msgstr "Voir l'album"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
+msgid "Disallowed profile URL."
+msgstr "URL de profil interdite."
 
-#: ../../mod/photos.php:1610
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de connexion manquante."
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Indisponible."
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:92
-#: ../../include/nav.php:101
-msgid "Community"
-msgstr "Communauté"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
 
-#: ../../mod/community.php:61 ../../mod/community.php:86
-#: ../../mod/search.php:162 ../../mod/search.php:188
-msgid "No results."
-msgstr "Aucun résultat."
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "Motorisé par Friendica version"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "hébergé sur"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Aucune URL de navigation ne correspond à cette adresse."
 
-#: ../../mod/friendica.php:58
+#: ../../include/follow.php:86
 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."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs: rendez vous sur"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
 
-#: ../../mod/friendica.php:61
+#: ../../include/follow.php:93
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/applications installées:"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Aucune extension/greffon/application installée"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossible de récupérer les informations du contact."
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "following"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
 
-#: ../../mod/editpost.php:91 ../../include/conversation.php:955
-msgid "Post to Email"
-msgstr "Publier aussi par courriel"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "L'invitation fournie n'a pu être validée."
 
-#: ../../mod/editpost.php:106 ../../mod/content.php:711
-#: ../../mod/settings.php:621 ../../object/Item.php:108
-msgid "Edit"
-msgstr "Éditer"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Adresse OpenID invalide"
 
-#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
-#: ../../mod/message.php:298 ../../mod/message.php:485
-#: ../../include/conversation.php:970
-msgid "Upload photo"
-msgstr "Joindre photo"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "Entrez les informations requises."
 
-#: ../../mod/editpost.php:108 ../../include/conversation.php:971
-msgid "upload photo"
-msgstr "envoi image"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "Utilisez un nom plus court."
 
-#: ../../mod/editpost.php:109 ../../include/conversation.php:972
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "Nom trop court."
 
-#: ../../mod/editpost.php:110 ../../include/conversation.php:973
-msgid "attach file"
-msgstr "ajout fichier"
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
 
-#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:299 ../../mod/message.php:486
-#: ../../include/conversation.php:974
-msgid "Insert web link"
-msgstr "Insérer lien web"
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:975
-msgid "web link"
-msgstr "lien web"
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "Ceci n'est pas une adresse courriel valide."
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:976
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "Impossible d'utiliser ce courriel."
 
-#: ../../mod/editpost.php:114 ../../include/conversation.php:977
-msgid "video link"
-msgstr "lien vidéo"
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:978
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:979
-msgid "audio link"
-msgstr "lien audio"
+#: ../../include/user.php:138
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:980
-msgid "Set your location"
-msgstr "Définir votre localisation"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:981
-msgid "set location"
-msgstr "spéc. localisation"
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:982
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
+#: ../../include/user.php:237 ../../include/text.php:1596
+msgid "default"
+msgstr "défaut"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:983
-msgid "clear location"
-msgstr "supp. localisation"
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:989
-msgid "Permission settings"
-msgstr "Réglages des permissions"
+#: ../../include/user.php:325 ../../include/user.php:332
+#: ../../include/user.php:339 ../../mod/photos.php:154
+#: ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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:493
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: ../../mod/editpost.php:130 ../../include/conversation.php:998
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Inconnu | Non-classé"
 
-#: ../../mod/editpost.php:131 ../../include/conversation.php:999
-msgid "Public post"
-msgstr "Notice publique"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquer immédiatement"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:985
-msgid "Set title"
-msgstr "Définir un titre"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Douteux, spammeur, accro à l'auto-promotion"
 
-#: ../../mod/editpost.php:136 ../../include/conversation.php:987
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Connu de moi, mais sans opinion"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: bob@exemple.com, mary@exemple.com"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probablement inoffensif"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Cette introduction a déjà été acceptée."
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Réputé, a toute ma confiance"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
-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."
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
+msgid "Frequently"
+msgstr "Fréquemment"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
-
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
-msgid "Warning: profile location has no profile photo."
-msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
-
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
-#, 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é"
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
+msgid "Hourly"
+msgstr "Toutes les heures"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Phase d'introduction achevée."
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
+msgid "Twice daily"
+msgstr "Deux fois par jour"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
+msgid "Daily"
+msgstr "Chaque jour"
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Chaque semaine"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Chaque mois"
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Des mesures de protection contre le spam ont été déclenchées."
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Adresse courriel invalide."
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
+#: ../../mod/admin.php:777
+msgid "Email"
+msgstr "Courriel"
 
-#: ../../mod/dfrn_request.php:361
-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."
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705
+#: ../../mod/dfrn_request.php:842
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/dfrn_request.php:457
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/dfrn_request.php:470
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/dfrn_request.php:474
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Il semblerait que vous soyez déjà ami avec %s."
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/dfrn_request.php:495
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Échec de mise-à-jour du contact."
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:591
-msgid "Your introduction has been sent."
-msgstr "Votre introduction a été envoyée."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Ajouter un nouveau contact"
 
-#: ../../mod/dfrn_request.php:644
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Entrez son adresse ou sa localisation web"
 
-#: ../../mod/dfrn_request.php:658
-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."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/dfrn_request.php:669
-msgid "Hide this contact"
-msgstr "Cacher ce contact"
+#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
+#: ../../mod/match.php:58 ../../boot.php:1417
+msgid "Connect"
+msgstr "Relier"
 
-#: ../../mod/dfrn_request.php:672
+#: ../../include/contact_widgets.php:23
 #, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation disponible"
+msgstr[1] "%d invitations disponibles"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Trouver des personnes"
 
-#: ../../mod/dfrn_request.php:674
-msgid "Confirm"
-msgstr "Confirmer"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Entrez un nom ou un centre d'intérêt"
 
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
-msgid "[Name Withheld]"
-msgstr "[Nom non-publié]"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Connecter/Suivre"
 
-#: ../../mod/dfrn_request.php:810
-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:"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Robert Morgenstein, Pêche"
 
-#: ../../mod/dfrn_request.php:826
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Connecter un utilisateur de courriel</strike> (bientôt)"
+#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
+#: ../../mod/directory.php:61
+msgid "Find"
+msgstr "Trouver"
 
-#: ../../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>."
+#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
+#: ../../view/theme/diabook/theme.php:520
+msgid "Friend Suggestions"
+msgstr "Suggestions d'amitiés/contacts"
 
-#: ../../mod/dfrn_request.php:831
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
+msgid "Similar Interests"
+msgstr "Intérêts similaires"
 
-#: ../../mod/dfrn_request.php:832
-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"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Profil au hasard"
 
-#: ../../mod/dfrn_request.php:833
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit:"
+#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
+msgid "Invite Friends"
+msgstr "Inviter des amis"
 
-#: ../../mod/dfrn_request.php:834
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Réseaux"
 
-#: ../../mod/dfrn_request.php:837
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle:"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Tous réseaux"
 
-#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: ../../mod/dfrn_request.php:840
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Tout"
 
-#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Catégories"
 
-#: ../../mod/dfrn_request.php:842
+#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
 #, 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."
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact en commun"
+msgstr[1] "%d contacts en commun"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité:"
+#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
+#: ../../object/Item.php:365 ../../boot.php:671
+msgid "show more"
+msgstr "montrer plus"
 
-#: ../../mod/dfrn_request.php:846
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "sur Last.fm"
 
-#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
-msgid "Account settings"
-msgstr "Compte"
+#: ../../include/network.php:877
+msgid "view full size"
+msgstr "voir en pleine taille"
 
-#: ../../mod/uexport.php:14 ../../mod/settings.php:40
-msgid "Display settings"
-msgstr "Affichage"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Divers"
 
-#: ../../mod/uexport.php:20 ../../mod/settings.php:46
-msgid "Connector settings"
-msgstr "Connecteurs"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "an"
 
-#: ../../mod/uexport.php:25 ../../mod/settings.php:51
-msgid "Plugin settings"
-msgstr "Extensions"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "mois"
 
-#: ../../mod/uexport.php:30 ../../mod/settings.php:56
-msgid "Connected apps"
-msgstr "Applications connectées"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "jour"
 
-#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
-msgid "Export personal data"
-msgstr "Exporter"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "jamais"
 
-#: ../../mod/uexport.php:40 ../../mod/settings.php:66
-msgid "Remove account"
-msgstr "Supprimer le compte"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "il y a moins d'une seconde"
 
-#: ../../mod/uexport.php:48 ../../mod/settings.php:74
-#: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:615
-#: ../../include/nav.php:138 ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon.old/mathjax/mathjax.php:36
-msgid "Settings"
-msgstr "Réglages"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "ans"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Exporter le compte"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "mois"
 
-#: ../../mod/uexport.php:72
-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."
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "semaine"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Tout exporter"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "semaines"
 
-#: ../../mod/uexport.php:73
-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)."
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "jours"
 
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Serveur de communications sociales Friendica - Installation"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "heure"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base."
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "heures"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossible de créer une table."
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minute"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "La base de données de votre site Friendica a bien été installée."
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minutes"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "seconde"
 
-#: ../../mod/install.php:139 ../../mod/install.php:204
-#: ../../mod/install.php:488
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../mod/install.php:201
-msgid "System check"
-msgstr "Vérifications système"
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s auparavant"
 
-#: ../../mod/install.php:206
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: ../../include/datetime.php:472 ../../include/items.php:1813
+#, php-format
+msgid "%s's birthday"
+msgstr "Anniversaire de %s's"
 
-#: ../../mod/install.php:225
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: ../../include/datetime.php:473 ../../include/items.php:1814
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Joyeux anniversaire, %s !"
 
-#: ../../mod/install.php:226
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
 
-#: ../../mod/install.php:227
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action dépasse les limites définies par votre abonnement."
 
-#: ../../mod/install.php:228
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas disponible avec votre abonnement."
 
-#: ../../mod/install.php:232
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "(sans titre)"
 
-#: ../../mod/install.php:233
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: ../../include/delivery.php:468 ../../include/enotify.php:28
+#: ../../include/notifier.php:785
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/install.php:234
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s est désormais lié à %2$s"
 
-#: ../../mod/install.php:235
-msgid "Database Name"
-msgstr "Nom de la base"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Notification de partage du réseau Diaspora"
 
-#: ../../mod/install.php:236 ../../mod/install.php:275
-msgid "Site administrator email address"
-msgstr "Adresse électronique de l'administrateur du site"
+#: ../../include/diaspora.php:1874 ../../include/text.php:1862
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../view/theme/diabook/theme.php:464
+msgid "photo"
+msgstr "photo"
 
-#: ../../mod/install.php:236 ../../mod/install.php:275
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468
+msgid "status"
+msgstr "le statut"
 
-#: ../../mod/install.php:240 ../../mod/install.php:278
-msgid "Please select a default timezone for your website"
-msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
+#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
+#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: ../../mod/install.php:265
-msgid "Site settings"
-msgstr "Réglages du site"
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "Pièces jointes : "
 
-#: ../../mod/install.php:318
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
+#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[Nom non-publié]"
 
-#: ../../mod/install.php:319
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../include/items.php:3495
+msgid "A new person is sharing with you at "
+msgstr "Une nouvelle personne partage avec vous à "
 
-#: ../../mod/install.php:323
-msgid "PHP executable path"
-msgstr "Chemin vers l'exécutable de PHP"
+#: ../../include/items.php:3495
+msgid "You have a new follower at "
+msgstr "Vous avez un nouvel abonné à "
 
-#: ../../mod/install.php:323
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
+#: ../../include/items.php:3979 ../../mod/display.php:51
+#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809
+#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
+msgid "Item not found."
+msgstr "Élément introuvable."
 
-#: ../../mod/install.php:328
-msgid "Command line PHP"
-msgstr "Version \"ligne de commande\" de PHP"
+#: ../../include/items.php:4018
+msgid "Do you really want to delete this item?"
+msgstr ""
 
-#: ../../mod/install.php:337
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
+#: ../../include/items.php:4020 ../../mod/profiles.php:610
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "Oui"
 
-#: ../../mod/install.php:338
-msgid "This is required for message delivery to work."
-msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+#: ../../include/items.php:4023 ../../include/conversation.php:1120
+#: ../../mod/contacts.php:249 ../../mod/settings.php:585
+#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848
+#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
+#: ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "Annuler"
 
-#: ../../mod/install.php:340
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../include/items.php:4143 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242
+#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159
+#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/settings.php:91
+#: ../../mod/settings.php:566 ../../mod/settings.php:571
+#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
+#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
+#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/notifications.php:66
+#: ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/install.php:151 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../index.php:346
+msgid "Permission denied."
+msgstr "Permission refusée."
 
-#: ../../mod/install.php:361
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
+#: ../../include/items.php:4213
+msgid "Archives"
+msgstr "Archives"
 
-#: ../../mod/install.php:362
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr ""
 
-#: ../../mod/install.php:364
-msgid "Generate encryption keys"
-msgstr "Générer les clés de chiffrement"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr ""
 
-#: ../../mod/install.php:371
-msgid "libCurl PHP module"
-msgstr "Module libCurl de PHP"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr ""
 
-#: ../../mod/install.php:372
-msgid "GD graphics PHP module"
-msgstr "Module GD (graphiques) de PHP"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr ""
 
-#: ../../mod/install.php:373
-msgid "OpenSSL PHP module"
-msgstr "Module OpenSSL de PHP"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr ""
 
-#: ../../mod/install.php:374
-msgid "mysqli PHP module"
-msgstr "Module Mysqli de PHP"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr ""
 
-#: ../../mod/install.php:375
-msgid "mb_string PHP module"
-msgstr "Module mb_string de PHP"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr ""
 
-#: ../../mod/install.php:380 ../../mod/install.php:382
-msgid "Apache mod_rewrite module"
-msgstr "Module mod_rewrite Apache"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: ../../mod/install.php:380
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr ""
 
-#: ../../mod/install.php:388
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr ""
 
-#: ../../mod/install.php:392
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr ""
 
-#: ../../mod/install.php:396
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr ""
 
-#: ../../mod/install.php:400
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
 
-#: ../../mod/install.php:404
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
-
-#: ../../mod/install.php:421
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
-
-#: ../../mod/install.php:422
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr ""
 
-#: ../../mod/install.php:423
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
 
-#: ../../mod/install.php:424
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+#: ../../include/features.php:41 ../../mod/search.php:30
+#: ../../mod/network.php:233
+msgid "Saved Searches"
+msgstr "Recherches"
 
-#: ../../mod/install.php:427
-msgid ".htconfig.php is writable"
-msgstr "Fichier .htconfig.php accessible en écriture"
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr ""
 
-#: ../../mod/install.php:439
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr ""
 
-#: ../../mod/install.php:441
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne."
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr ""
 
-#: ../../mod/install.php:451
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
 
-#: ../../mod/install.php:475
-msgid "Errors encountered creating database tables."
-msgstr "Des erreurs ont été signalées lors de la création des tables."
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr ""
 
-#: ../../mod/install.php:486
-msgid "<h1>What next</h1>"
-msgstr "<h1>Ensuite</h1>"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
 
-#: ../../mod/install.php:487
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr ""
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:390
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr ""
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr ""
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Solliciter"
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr ""
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "solliciter (poke/...) quelqu'un"
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr ""
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinataire"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr ""
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisissez ce que vous voulez faire au destinataire"
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr ""
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendez ce message privé"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr ""
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr ""
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr ""
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "s'intéresse à:"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1216
-msgid "Connect"
-msgstr "Relier"
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
 
-#: ../../mod/match.php:65 ../../mod/dirfind.php:60
-msgid "No matches"
-msgstr "Aucune correspondance"
+#: ../../include/text.php:294
+msgid "prev"
+msgstr "précédent"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: ../../include/text.php:296
+msgid "first"
+msgstr "premier"
 
-#: ../../mod/lockview.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:123
-msgid "Visible to:"
-msgstr "Visible par:"
+#: ../../include/text.php:325
+msgid "last"
+msgstr "dernier"
 
-#: ../../mod/content.php:119 ../../mod/network.php:594
-msgid "No such group"
-msgstr "Groupe inexistant"
+#: ../../include/text.php:328
+msgid "next"
+msgstr "suivant"
 
-#: ../../mod/content.php:130 ../../mod/network.php:605
-msgid "Group is empty"
-msgstr "Groupe vide"
+#: ../../include/text.php:352
+msgid "newer"
+msgstr "Plus récent"
 
-#: ../../mod/content.php:134 ../../mod/network.php:609
-msgid "Group: "
-msgstr "Groupe: "
+#: ../../include/text.php:356
+msgid "older"
+msgstr "Plus ancien"
 
-#: ../../mod/content.php:438 ../../mod/content.php:723
-#: ../../include/conversation.php:568 ../../object/Item.php:117
-msgid "Select"
-msgstr "Sélectionner"
+#: ../../include/text.php:807
+msgid "No contacts"
+msgstr "Aucun contact"
 
-#: ../../mod/content.php:455 ../../mod/content.php:817
-#: ../../mod/content.php:818 ../../include/conversation.php:587
-#: ../../object/Item.php:234 ../../object/Item.php:235
+#: ../../include/text.php:816
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacts"
 
-#: ../../mod/content.php:465 ../../mod/content.php:829
-#: ../../include/conversation.php:607 ../../object/Item.php:248
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: ../../include/text.php:828 ../../mod/viewcontacts.php:76
+msgid "View Contacts"
+msgstr "Voir les contacts"
 
-#: ../../mod/content.php:480 ../../include/conversation.php:622
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: ../../include/text.php:905 ../../include/text.php:906
+#: ../../include/nav.php:118 ../../mod/search.php:99
+msgid "Search"
+msgstr "Recherche"
 
-#: ../../mod/content.php:586 ../../object/Item.php:288
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commentaire"
-msgstr[1] "%d commentaires"
+#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Sauver"
 
-#: ../../mod/content.php:588 ../../include/text.php:1446
-#: ../../object/Item.php:290 ../../object/Item.php:303
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commentaire"
+#: ../../include/text.php:957
+msgid "poke"
+msgstr "titiller"
 
-#: ../../mod/content.php:589 ../../addon/page/page.php:77
-#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../boot.php:609
-#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
-#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
-msgid "show more"
-msgstr "montrer plus"
+#: ../../include/text.php:957 ../../include/conversation.php:211
+msgid "poked"
+msgstr "a titillé"
 
-#: ../../mod/content.php:667 ../../object/Item.php:202
-msgid "like"
-msgstr "aime"
+#: ../../include/text.php:958
+msgid "ping"
+msgstr "attirer l'attention"
 
-#: ../../mod/content.php:668 ../../object/Item.php:203
-msgid "dislike"
-msgstr "n'aime pas"
+#: ../../include/text.php:958
+msgid "pinged"
+msgstr "a attiré l'attention de"
 
-#: ../../mod/content.php:670 ../../object/Item.php:205
-msgid "Share this"
-msgstr "Partager"
+#: ../../include/text.php:959
+msgid "prod"
+msgstr "aiguillonner"
 
-#: ../../mod/content.php:670 ../../object/Item.php:205
-msgid "share"
-msgstr "partager"
+#: ../../include/text.php:959
+msgid "prodded"
+msgstr "a aiguillonné"
 
-#: ../../mod/content.php:694 ../../object/Item.php:571
-msgid "Bold"
-msgstr "Gras"
+#: ../../include/text.php:960
+msgid "slap"
+msgstr "gifler"
 
-#: ../../mod/content.php:695 ../../object/Item.php:572
-msgid "Italic"
-msgstr "Italique"
+#: ../../include/text.php:960
+msgid "slapped"
+msgstr "a giflé"
 
-#: ../../mod/content.php:696 ../../object/Item.php:573
-msgid "Underline"
-msgstr "Souligné"
+#: ../../include/text.php:961
+msgid "finger"
+msgstr "tripoter"
 
-#: ../../mod/content.php:697 ../../object/Item.php:574
-msgid "Quote"
-msgstr "Citation"
-
-#: ../../mod/content.php:698 ../../object/Item.php:575
-msgid "Code"
-msgstr "Code"
+#: ../../include/text.php:961
+msgid "fingered"
+msgstr "a tripoté"
 
-#: ../../mod/content.php:699 ../../object/Item.php:576
-msgid "Image"
-msgstr "Image"
+#: ../../include/text.php:962
+msgid "rebuff"
+msgstr "rabrouer"
 
-#: ../../mod/content.php:700 ../../object/Item.php:577
-msgid "Link"
-msgstr "Lien"
+#: ../../include/text.php:962
+msgid "rebuffed"
+msgstr "a rabroué"
 
-#: ../../mod/content.php:701 ../../object/Item.php:578
-msgid "Video"
-msgstr "Vidéo"
+#: ../../include/text.php:976
+msgid "happy"
+msgstr "heureuse"
 
-#: ../../mod/content.php:736 ../../object/Item.php:181
-msgid "add star"
-msgstr "mett en avant"
+#: ../../include/text.php:977
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/content.php:737 ../../object/Item.php:182
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: ../../include/text.php:978
+msgid "mellow"
+msgstr "suave"
 
-#: ../../mod/content.php:738 ../../object/Item.php:183
-msgid "toggle star status"
-msgstr "mettre en avant"
+#: ../../include/text.php:979
+msgid "tired"
+msgstr "fatiguée"
 
-#: ../../mod/content.php:741 ../../object/Item.php:186
-msgid "starred"
-msgstr "mis en avant"
+#: ../../include/text.php:980
+msgid "perky"
+msgstr "guillerette"
 
-#: ../../mod/content.php:742 ../../object/Item.php:191
-msgid "add tag"
-msgstr "ajouter un tag"
+#: ../../include/text.php:981
+msgid "angry"
+msgstr "colérique"
 
-#: ../../mod/content.php:746 ../../object/Item.php:121
-msgid "save to folder"
-msgstr "sauver vers dossier"
+#: ../../include/text.php:982
+msgid "stupified"
+msgstr "stupéfaite"
 
-#: ../../mod/content.php:819 ../../object/Item.php:236
-msgid "to"
-msgstr "à"
+#: ../../include/text.php:983
+msgid "puzzled"
+msgstr "perplexe"
 
-#: ../../mod/content.php:820 ../../object/Item.php:238
-msgid "Wall-to-Wall"
-msgstr "Inter-mur"
+#: ../../include/text.php:984
+msgid "interested"
+msgstr "intéressée"
 
-#: ../../mod/content.php:821 ../../object/Item.php:239
-msgid "via Wall-To-Wall:"
-msgstr "en Inter-mur:"
+#: ../../include/text.php:985
+msgid "bitter"
+msgstr "amère"
 
-#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
-#: ../../addon.old/communityhome/communityhome.php:179
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../include/text.php:986
+msgid "cheerful"
+msgstr "entraînante"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: ../../include/text.php:987
+msgid "alive"
+msgstr "vivante"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
-msgid "Discard"
-msgstr "Rejeter"
+#: ../../include/text.php:988
+msgid "annoyed"
+msgstr "ennuyée"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
-#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
-#: ../../mod/contacts.php:379
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../include/text.php:989
+msgid "anxious"
+msgstr "anxieuse"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Système"
+#: ../../include/text.php:990
+msgid "cranky"
+msgstr "excentrique"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:113
-msgid "Network"
-msgstr "Réseau"
+#: ../../include/text.php:991
+msgid "disturbed"
+msgstr "dérangée"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:444
-msgid "Personal"
-msgstr "Personnel"
+#: ../../include/text.php:992
+msgid "frustrated"
+msgstr "frustrée"
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:86
-#: ../../include/nav.php:77 ../../include/nav.php:116
-msgid "Home"
-msgstr "Profil"
+#: ../../include/text.php:993
+msgid "motivated"
+msgstr "motivée"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:122
-msgid "Introductions"
-msgstr "Introductions"
+#: ../../include/text.php:994
+msgid "relaxed"
+msgstr "détendue"
 
-#: ../../mod/notifications.php:103 ../../mod/message.php:180
-#: ../../include/nav.php:129
-msgid "Messages"
-msgstr "Messages"
+#: ../../include/text.php:995
+msgid "surprised"
+msgstr "surprise"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: ../../include/text.php:1163
+msgid "Monday"
+msgstr "Lundi"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: ../../include/text.php:1163
+msgid "Tuesday"
+msgstr "Mardi"
 
-#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
-msgid "Notification type: "
-msgstr "Type de notification: "
+#: ../../include/text.php:1163
+msgid "Wednesday"
+msgstr "Mercredi"
 
-#: ../../mod/notifications.php:149
-msgid "Friend Suggestion"
-msgstr "Suggestion d'amitié/contact"
+#: ../../include/text.php:1163
+msgid "Thursday"
+msgstr "Jeudi"
 
-#: ../../mod/notifications.php:151
-#, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+#: ../../include/text.php:1163
+msgid "Friday"
+msgstr "Vendredi"
 
-#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
-#: ../../mod/contacts.php:385
-msgid "Hide this contact from others"
-msgstr "Cacher ce contact aux autres"
+#: ../../include/text.php:1163
+msgid "Saturday"
+msgstr "Samedi"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-msgid "Post a new friend activity"
-msgstr "Poster concernant les nouvelles amitiés"
+#: ../../include/text.php:1163
+msgid "Sunday"
+msgstr "Dimanche"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-msgid "if applicable"
-msgstr "si possible"
+#: ../../include/text.php:1167
+msgid "January"
+msgstr "Janvier"
 
-#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
-#: ../../mod/admin.php:694
-msgid "Approve"
-msgstr "Approuver"
+#: ../../include/text.php:1167
+msgid "February"
+msgstr "Février"
 
-#: ../../mod/notifications.php:180
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez: "
+#: ../../include/text.php:1167
+msgid "March"
+msgstr "Mars"
 
-#: ../../mod/notifications.php:180
-msgid "yes"
-msgstr "oui"
+#: ../../include/text.php:1167
+msgid "April"
+msgstr "Avril"
 
-#: ../../mod/notifications.php:180
-msgid "no"
-msgstr "non"
+#: ../../include/text.php:1167
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/notifications.php:187
-msgid "Approve as: "
-msgstr "Approuver en tant que: "
+#: ../../include/text.php:1167
+msgid "June"
+msgstr "Juin"
 
-#: ../../mod/notifications.php:188
-msgid "Friend"
-msgstr "Ami"
+#: ../../include/text.php:1167
+msgid "July"
+msgstr "Juillet"
 
-#: ../../mod/notifications.php:189
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: ../../include/text.php:1167
+msgid "August"
+msgstr "Août"
 
-#: ../../mod/notifications.php:189
-msgid "Fan/Admirer"
-msgstr "Fan/Admirateur"
+#: ../../include/text.php:1167
+msgid "September"
+msgstr "Septembre"
 
-#: ../../mod/notifications.php:195
-msgid "Friend/Connect Request"
-msgstr "Demande de connexion/relation"
+#: ../../include/text.php:1167
+msgid "October"
+msgstr "Octobre"
 
-#: ../../mod/notifications.php:195
-msgid "New Follower"
-msgstr "Nouvel abonné"
+#: ../../include/text.php:1167
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/notifications.php:216
-msgid "No introductions."
-msgstr "Aucune demande d'introduction."
+#: ../../include/text.php:1167
+msgid "December"
+msgstr "Décembre"
 
-#: ../../mod/notifications.php:219 ../../include/nav.php:123
-msgid "Notifications"
-msgstr "Notifications"
+#: ../../include/text.php:1323 ../../mod/videos.php:301
+msgid "View Video"
+msgstr ""
 
-#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
-#: ../../mod/notifications.php:468
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s a aimé la notice de %s"
+#: ../../include/text.php:1355
+msgid "bytes"
+msgstr "octets"
 
-#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
-#: ../../mod/notifications.php:477
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la notice de %s"
+#: ../../include/text.php:1379 ../../include/text.php:1391
+msgid "Click to open/close"
+msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
-#: ../../mod/notifications.php:491
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s est désormais ami(e) avec %s"
+#: ../../include/text.php:1553 ../../mod/events.php:335
+msgid "link to source"
+msgstr "lien original"
 
-#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a publié une notice"
+#: ../../include/text.php:1608
+msgid "Select an alternate language"
+msgstr "Choisir une langue alternative"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:500
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s a commenté une notice de %s"
+#: ../../include/text.php:1860 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
+msgid "event"
+msgstr "évènement"
 
-#: ../../mod/notifications.php:301
-msgid "No more network notifications."
-msgstr "Aucune notification du réseau."
+#: ../../include/text.php:1864
+msgid "activity"
+msgstr "activité"
 
-#: ../../mod/notifications.php:305
-msgid "Network Notifications"
-msgstr "Notifications du réseau"
+#: ../../include/text.php:1866 ../../mod/content.php:628
+#: ../../object/Item.php:364 ../../object/Item.php:377
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commentaire"
 
-#: ../../mod/notifications.php:331 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr "Pas plus de notifications système."
+#: ../../include/text.php:1867
+msgid "post"
+msgstr "publication"
 
-#: ../../mod/notifications.php:335 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr "Notifications du système"
+#: ../../include/text.php:2022
+msgid "Item filed"
+msgstr "Élément classé"
 
-#: ../../mod/notifications.php:426
-msgid "No more personal notifications."
-msgstr "Aucun notification personnelle."
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
 
-#: ../../mod/notifications.php:430
-msgid "Personal Notifications"
-msgstr "Notifications personnelles"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
 
-#: ../../mod/notifications.php:507
-msgid "No more home notifications."
-msgstr "Aucune notification de la page d'accueil."
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tout le monde"
 
-#: ../../mod/notifications.php:511
-msgid "Home Notifications"
-msgstr "Notifications de page d'accueil"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "éditer"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Groupes"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editer groupe"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Contact mis-à-jour."
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Créer un nouveau groupe"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contacts n'appartenant à aucun groupe"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: ../../include/group.php:275 ../../mod/network.php:234
+msgid "add"
+msgstr "ajouter"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: ../../include/conversation.php:140 ../../mod/like.php:170
+#, 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/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s a sollicité %2$s"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "Contact archivé"
+#: ../../include/conversation.php:227 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s est d'humeur %2$s"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "Contact désarchivé"
+#: ../../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 a taggué %3$s de %2$s avec %4$s"
 
-#: ../../mod/contacts.php:233
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "publication/élément"
 
-#: ../../mod/contacts.php:267
+#: ../../include/conversation.php:292
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s a marqué le %3$s de %2$s comme favori"
+
+#: ../../include/conversation.php:612 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../object/Item.php:126
+msgid "Select"
+msgstr "Sélectionner"
+
+#: ../../include/conversation.php:613 ../../mod/admin.php:770
+#: ../../mod/settings.php:647 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:127
+msgid "Delete"
+msgstr "Supprimer"
 
-#: ../../mod/contacts.php:271
+#: ../../include/conversation.php:652 ../../mod/content.php:495
+#: ../../mod/content.php:875 ../../mod/content.php:876
+#: ../../object/Item.php:306 ../../object/Item.php:307
 #, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
+
+#: ../../include/conversation.php:664 ../../object/Item.php:297
+msgid "Categories:"
+msgstr "Catégories:"
 
-#: ../../mod/contacts.php:276
+#: ../../include/conversation.php:665 ../../object/Item.php:298
+msgid "Filed under:"
+msgstr "Rangé sous:"
+
+#: ../../include/conversation.php:672 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../object/Item.php:320
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: ../../mod/contacts.php:293
-msgid "Private communications are not available for this contact."
-msgstr "Les communications privées ne sont pas disponibles pour ce contact."
+#: ../../include/conversation.php:687 ../../mod/content.php:520
+msgid "View in context"
+msgstr "Voir dans le contexte"
 
-#: ../../mod/contacts.php:296
-msgid "Never"
-msgstr "Jamais"
+#: ../../include/conversation.php:689 ../../include/conversation.php:1100
+#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/photos.php:1532 ../../mod/content.php:522
+#: ../../mod/content.php:906 ../../object/Item.php:341
+msgid "Please wait"
+msgstr "Patientez"
 
-#: ../../mod/contacts.php:300
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: ../../include/conversation.php:768
+msgid "remove"
+msgstr "enlever"
 
-#: ../../mod/contacts.php:300
-msgid "(Update was not successful)"
-msgstr "(Mise à jour échouée)"
+#: ../../include/conversation.php:772
+msgid "Delete Selected Items"
+msgstr "Supprimer les éléments sélectionnés"
 
-#: ../../mod/contacts.php:302
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: ../../include/conversation.php:871
+msgid "Follow Thread"
+msgstr "Suivre le fil"
 
-#: ../../mod/contacts.php:306
+#: ../../include/conversation.php:940
 #, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+msgid "%s likes this."
+msgstr "%s aime ça."
 
-#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
+#: ../../include/conversation.php:940
 #, 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"
+msgid "%s doesn't like this."
+msgstr "%s n'aime pas ça."
 
-#: ../../mod/contacts.php:314
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
+#: ../../include/conversation.php:945
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr ""
 
-#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
-#: ../../mod/admin.php:698
-msgid "Unblock"
-msgstr "Débloquer"
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr ""
 
-#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
-#: ../../mod/admin.php:697
-msgid "Block"
-msgstr "Bloquer"
+#: ../../include/conversation.php:962
+msgid "and"
+msgstr "et"
 
-#: ../../mod/contacts.php:322
-msgid "Toggle Blocked status"
-msgstr "(dés)activer l'état \"bloqué\""
+#: ../../include/conversation.php:968
+#, php-format
+msgid ", and %d other people"
+msgstr ", et %d autres personnes"
 
-#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: ../../include/conversation.php:970
+#, php-format
+msgid "%s like this."
+msgstr "%s aiment ça."
 
-#: ../../mod/contacts.php:328
-msgid "Toggle Ignored status"
-msgstr "(dés)activer l'état \"ignoré\""
+#: ../../include/conversation.php:970
+#, php-format
+msgid "%s don't like this."
+msgstr "%s n'aiment pas ça."
 
-#: ../../mod/contacts.php:332
-msgid "Unarchive"
-msgstr "Désarchiver"
+#: ../../include/conversation.php:997 ../../include/conversation.php:1015
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible par <strong>tout le monde</strong>"
 
-#: ../../mod/contacts.php:332
-msgid "Archive"
-msgstr "Archiver"
+#: ../../include/conversation.php:998 ../../include/conversation.php:1016
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+msgid "Please enter a link URL:"
+msgstr "Entrez un lien web:"
 
-#: ../../mod/contacts.php:335
-msgid "Toggle Archive status"
-msgstr "(dés)activer l'état \"archivé\""
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Please enter a video link/URL:"
+msgstr "Entrez un lien/URL video :"
 
-#: ../../mod/contacts.php:338
-msgid "Repair"
-msgstr "Réparer"
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter an audio link/URL:"
+msgstr "Entrez un lien/URL audio :"
 
-#: ../../mod/contacts.php:341
-msgid "Advanced Contact Settings"
-msgstr "Réglages avancés du contact"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Tag term:"
+msgstr "Tag : "
 
-#: ../../mod/contacts.php:347
-msgid "Communications lost with this contact!"
-msgstr "Communications perdues avec ce contact !"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Sauver dans le Dossier:"
 
-#: ../../mod/contacts.php:350
-msgid "Contact Editor"
-msgstr "Éditeur de contact"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Where are you right now?"
+msgstr "Où êtes-vous présentemment?"
 
-#: ../../mod/contacts.php:353
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../include/conversation.php:1004
+msgid "Delete item(s)?"
+msgstr ""
 
-#: ../../mod/contacts.php:354
-#, 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."
+#: ../../include/conversation.php:1046
+msgid "Post to Email"
+msgstr "Publier aussi par courriel"
 
-#: ../../mod/contacts.php:355
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: ../../include/conversation.php:1081 ../../mod/photos.php:1531
+msgid "Share"
+msgstr "Partager"
 
-#: ../../mod/contacts.php:356
-msgid "Edit contact notes"
-msgstr "Éditer les notes des contacts"
+#: ../../include/conversation.php:1082 ../../mod/editpost.php:110
+#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Joindre photo"
 
-#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../include/conversation.php:1083 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "envoi image"
 
-#: ../../mod/contacts.php:362
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: ../../include/conversation.php:1084 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Joindre fichier"
 
-#: ../../mod/contacts.php:363
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: ../../include/conversation.php:1085 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "ajout fichier"
 
-#: ../../mod/contacts.php:364
-msgid "Repair URL settings"
-msgstr "Réparer les réglages d'URL"
+#: ../../include/conversation.php:1086 ../../mod/editpost.php:114
+#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: ../../mod/contacts.php:365
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../include/conversation.php:1087 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "lien web"
 
-#: ../../mod/contacts.php:367
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: ../../include/conversation.php:1088 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Insérer un lien video"
 
-#: ../../mod/contacts.php:371
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
+#: ../../include/conversation.php:1089 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "lien vidéo"
 
-#: ../../mod/contacts.php:373
-msgid "Update public posts"
-msgstr "Met ses entrées publiques à jour: "
+#: ../../include/conversation.php:1090 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Insérer un lien audio"
 
-#: ../../mod/contacts.php:375 ../../mod/admin.php:1170
-msgid "Update now"
-msgstr "Mettre à jour"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "lien audio"
 
-#: ../../mod/contacts.php:382
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Définir votre localisation"
 
-#: ../../mod/contacts.php:383
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "spéc. localisation"
 
-#: ../../mod/contacts.php:384
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: ../../include/conversation.php:1094 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Effacer la localisation du navigateur"
 
-#: ../../mod/contacts.php:385
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Les réponses et \"j'aime\" à vos contenus publics <strong>peuvent</strong> être toujours visibles"
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "supp. localisation"
 
-#: ../../mod/contacts.php:438
-msgid "Suggestions"
-msgstr "Suggestions"
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Définir un titre"
 
-#: ../../mod/contacts.php:441
-msgid "Suggest potential friends"
-msgstr "Suggérer des amis potentiels"
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/contacts.php:444 ../../mod/group.php:191
-msgid "All Contacts"
-msgstr "Tous les contacts"
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Réglages des permissions"
 
-#: ../../mod/contacts.php:447
-msgid "Show all contacts"
-msgstr "Montrer tous les contacts"
+#: ../../include/conversation.php:1102
+msgid "permissions"
+msgstr "permissions"
 
-#: ../../mod/contacts.php:450
-msgid "Unblocked"
-msgstr "Non-bloqués"
+#: ../../include/conversation.php:1110 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "CC: adresses de courriel"
 
-#: ../../mod/contacts.php:453
-msgid "Only show unblocked contacts"
-msgstr "Ne montrer que les contacts non-bloqués"
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Notice publique"
 
-#: ../../mod/contacts.php:457
-msgid "Blocked"
-msgstr "Bloqués"
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
-#: ../../mod/contacts.php:460
-msgid "Only show blocked contacts"
-msgstr "Ne montrer que les contacts bloqués"
+#: ../../include/conversation.php:1117 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../object/Item.php:662
+msgid "Preview"
+msgstr "Aperçu"
 
-#: ../../mod/contacts.php:464
-msgid "Ignored"
-msgstr "Ignorés"
+#: ../../include/conversation.php:1126
+msgid "Post to Groups"
+msgstr ""
 
-#: ../../mod/contacts.php:467
-msgid "Only show ignored contacts"
-msgstr "Ne montrer que les contacts ignorés"
+#: ../../include/conversation.php:1127
+msgid "Post to Contacts"
+msgstr ""
 
-#: ../../mod/contacts.php:471
-msgid "Archived"
-msgstr "Archivés"
+#: ../../include/conversation.php:1128
+msgid "Private post"
+msgstr ""
 
-#: ../../mod/contacts.php:474
-msgid "Only show archived contacts"
-msgstr "Ne montrer que les contacts archivés"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Notification Friendica"
 
-#: ../../mod/contacts.php:478
-msgid "Hidden"
-msgstr "Cachés"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Merci, "
 
-#: ../../mod/contacts.php:481
-msgid "Only show hidden contacts"
-msgstr "Ne montrer que les contacts masqués"
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "L'administrateur de %s"
 
-#: ../../mod/contacts.php:529
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/contacts.php:533
-msgid "is a fan of yours"
-msgstr "Vous suit"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
 
-#: ../../mod/contacts.php:537
-msgid "you are a fan of"
-msgstr "Vous le/la suivez"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
 
-#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
 
-#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:88
-#: ../../include/nav.php:142
-msgid "Contacts"
-msgstr "Contacts"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "un message privé"
 
-#: ../../mod/contacts.php:579
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
 
-#: ../../mod/contacts.php:580 ../../mod/directory.php:59
-#: ../../addon/forumdirectory/forumdirectory.php:81
-msgid "Finding: "
-msgstr "Trouvé: "
+#: ../../include/enotify.php:90
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
 
-#: ../../mod/contacts.php:581 ../../mod/directory.php:61
-#: ../../addon/forumdirectory/forumdirectory.php:83
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Trouver"
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
 
-#: ../../mod/lostpass.php:16
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: ../../mod/lostpass.php:32
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
 
-#: ../../mod/lostpass.php:43
+#: ../../include/enotify.php:116
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Requête de réinitialisation de mot de passe à %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s a commenté un élément que vous suivez."
 
-#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
-#: ../../mod/register.php:91 ../../mod/register.php:145
-#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
-#: ../../addon/facebook/facebook.php:702
-#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
-#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:1200
-#: ../../addon.old/fbpost/fbpost.php:661
-#: ../../addon.old/public_server/public_server.php:62
-#: ../../addon.old/testdrive/testdrive.php:67
-msgid "Administrator"
-msgstr "Administrateur"
-
-#: ../../mod/lostpass.php:65
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
 
-#: ../../mod/lostpass.php:83 ../../boot.php:963
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
 
-#: ../../mod/lostpass.php:84
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s a publié sur votre mur à %2$s"
 
-#: ../../mod/lostpass.php:85
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est "
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
 
-#: ../../mod/lostpass.php:86
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notification] %s vous a repéré"
 
-#: ../../mod/lostpass.php:87
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s vous parle sur %2$s"
 
-#: ../../mod/lostpass.php:88
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]vous a taggé[/url]."
 
-#: ../../mod/lostpass.php:119
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s vous a sollicité"
 
-#: ../../mod/lostpass.php:120
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s vous a sollicité via %2$s"
 
-#: ../../mod/lostpass.php:121
-msgid "Nickname or Email: "
-msgstr "Pseudo ou Courriel: "
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: ../../mod/lostpass.php:122
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notification] %s a repéré votre publication"
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr ""
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s a tagué votre contenu sur %2$s"
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "Il manque certaines informations importantes!"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]"
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:585
-msgid "Update"
-msgstr "Mises-à-jour"
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notification] Introduction reçue"
 
-#: ../../mod/settings.php:226
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Impossible de se connecter au compte courriel configuré."
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
 
-#: ../../mod/settings.php:231
-msgid "Email settings updated."
-msgstr "Réglages de courriel mis-à-jour."
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
 
-#: ../../mod/settings.php:246
-msgid "Features updated"
-msgstr ""
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter son profil sur %s"
 
-#: ../../mod/settings.php:306
-msgid "Passwords do not match. Password unchanged."
-msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
 
-#: ../../mod/settings.php:311
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
 
-#: ../../mod/settings.php:322
-msgid "Password changed."
-msgstr "Mots de passe changés."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
 
-#: ../../mod/settings.php:324
-msgid "Password update failed. Please try again."
-msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
+#: ../../include/enotify.php:201
+#, 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."
 
-#: ../../mod/settings.php:389
-msgid " Please use a shorter name."
-msgstr " Merci d'utiliser un nom plus court."
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Nom :"
 
-#: ../../mod/settings.php:391
-msgid " Name too short."
-msgstr " Nom trop court."
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "Photo :"
 
-#: ../../mod/settings.php:397
-msgid " Not valid email."
-msgstr " Email invalide."
+#: ../../include/enotify.php:210
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
 
-#: ../../mod/settings.php:399
-msgid " Cannot change to that email."
-msgstr " Impossible de changer pour cet email."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[pas de sujet]"
 
-#: ../../mod/settings.php:453
-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."
+#: ../../include/message.php:144 ../../mod/item.php:446
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151
+msgid "Wall Photos"
+msgstr "Photos du mur"
 
-#: ../../mod/settings.php:457
-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."
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "Rien de neuf ici"
 
-#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
-#: ../../addon/fbpost/fbpost.php:144
-#: ../../addon/remote_permissions/remote_permissions.php:204
-#: ../../addon/impressum/impressum.php:78
-#: ../../addon/openstreetmap/openstreetmap.php:80
-#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:501
-#: ../../addon.old/facebook/facebook.php:495
-#: ../../addon.old/fbpost/fbpost.php:144
-#: ../../addon.old/impressum/impressum.php:78
-#: ../../addon.old/openstreetmap/openstreetmap.php:80
-#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
-#: ../../addon.old/twitter/twitter.php:389
-msgid "Settings updated."
-msgstr "Réglages mis à jour."
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
+msgstr ""
 
-#: ../../mod/settings.php:558 ../../mod/settings.php:584
-#: ../../mod/settings.php:620
-msgid "Add application"
-msgstr "Ajouter une application"
+#: ../../include/nav.php:73 ../../boot.php:1136
+msgid "Logout"
+msgstr "Se déconnecter"
 
-#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../addon/statusnet/statusnet.php:679
-#: ../../addon.old/statusnet/statusnet.php:570
-msgid "Consumer Key"
-msgstr "Clé utilisateur"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Mettre fin à cette session"
 
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
-#: ../../addon/statusnet/statusnet.php:678
-#: ../../addon.old/statusnet/statusnet.php:569
-msgid "Consumer Secret"
-msgstr "Secret utilisateur"
+#: ../../include/nav.php:76 ../../boot.php:1940
+msgid "Status"
+msgstr "Statut"
 
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
-msgid "Redirect"
-msgstr "Rediriger"
+#: ../../include/nav.php:76 ../../include/nav.php:143
+#: ../../view/theme/diabook/theme.php:87
+msgid "Your posts and conversations"
+msgstr "Vos notices et conversations"
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Icon url"
-msgstr "URL de l'icône"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
+msgid "Your profile page"
+msgstr "Votre page de profil"
 
-#: ../../mod/settings.php:576
-msgid "You can't edit this application."
-msgstr "Vous ne pouvez pas éditer cette application."
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954
+msgid "Photos"
+msgstr "Photos"
 
-#: ../../mod/settings.php:619
-msgid "Connected Apps"
-msgstr "Applications connectées"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
+msgid "Your photos"
+msgstr "Vos photos"
 
-#: ../../mod/settings.php:623
-msgid "Client key starts with"
-msgstr "La clé cliente commence par"
+#: ../../include/nav.php:79 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971
+msgid "Events"
+msgstr "Événements"
 
-#: ../../mod/settings.php:624
-msgid "No name"
-msgstr "Sans nom"
+#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
+msgid "Your events"
+msgstr "Vos événements"
 
-#: ../../mod/settings.php:625
-msgid "Remove authorization"
-msgstr "Révoquer l'autorisation"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Personal notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/settings.php:637
-msgid "No Plugin settings configured"
-msgstr "Pas de réglages d'extensions configurés"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Your personal photos"
+msgstr "Vos photos personnelles"
 
-#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
-#: ../../addon.old/widgets/widgets.php:123
-msgid "Plugin Settings"
-msgstr "Extensions"
+#: ../../include/nav.php:91 ../../boot.php:1137
+msgid "Login"
+msgstr "Connexion"
 
-#: ../../mod/settings.php:659
-msgid "Off"
-msgstr ""
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Se connecter"
 
-#: ../../mod/settings.php:659
-msgid "On"
-msgstr ""
+#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+msgid "Home"
+msgstr "Profil"
 
-#: ../../mod/settings.php:667
-msgid "Additional Features"
-msgstr ""
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Page d'accueil"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Le support natif pour la connectivité %s est %s"
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112
+msgid "Register"
+msgstr "S'inscrire"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "activé"
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Créer un compte"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "désactivé"
+#: ../../include/nav.php:113 ../../mod/help.php:84
+msgid "Help"
+msgstr "Aide"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Aide et documentation"
 
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "L'accès courriel est désactivé sur ce site."
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Applications"
 
-#: ../../mod/settings.php:720
-msgid "Connector Settings"
-msgstr "Connecteurs"
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Applications supplémentaires, utilitaires, jeux"
 
-#: ../../mod/settings.php:725
-msgid "Email/Mailbox Setup"
-msgstr "Réglages de courriel/boîte à lettre"
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Rechercher dans le contenu du site"
 
-#: ../../mod/settings.php:726
-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."
+#: ../../include/nav.php:128 ../../mod/community.php:32
+#: ../../view/theme/diabook/theme.php:93
+msgid "Community"
+msgstr "Communauté"
 
-#: ../../mod/settings.php:727
-msgid "Last successful email check:"
-msgstr "Dernière vérification réussie des courriels:"
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Conversations ayant cours sur ce site"
 
-#: ../../mod/settings.php:729
-msgid "IMAP server name:"
-msgstr "Nom du serveur IMAP:"
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Annuaire"
 
-#: ../../mod/settings.php:730
-msgid "IMAP port:"
-msgstr "Port IMAP:"
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "Annuaire des utilisateurs"
 
-#: ../../mod/settings.php:731
-msgid "Security:"
-msgstr "Sécurité:"
+#: ../../include/nav.php:140 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Réseau"
 
-#: ../../mod/settings.php:731 ../../mod/settings.php:736
-#: ../../addon/dav/common/wdcal_edit.inc.php:191
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
-msgid "None"
-msgstr "Aucun(e)"
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Conversations de vos amis"
 
-#: ../../mod/settings.php:732
-msgid "Email login name:"
-msgstr "Nom de connexion:"
+#: ../../include/nav.php:141
+msgid "Network Reset"
+msgstr ""
 
-#: ../../mod/settings.php:733
-msgid "Email password:"
-msgstr "Mot de passe:"
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr ""
 
-#: ../../mod/settings.php:734
-msgid "Reply-to address:"
-msgstr "Adresse de réponse:"
+#: ../../include/nav.php:149 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Introductions"
 
-#: ../../mod/settings.php:735
-msgid "Send public posts to all email contacts:"
-msgstr "Les notices publiques vont à tous les contacts courriel:"
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Demande d'amitié"
 
-#: ../../mod/settings.php:736
-msgid "Action after import:"
-msgstr "Action après import:"
+#: ../../include/nav.php:150 ../../mod/notifications.php:220
+msgid "Notifications"
+msgstr "Notifications"
 
-#: ../../mod/settings.php:736
-msgid "Mark as seen"
-msgstr "Marquer comme vu"
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Voir toute notification"
 
-#: ../../mod/settings.php:736
-msgid "Move to folder"
-msgstr "Déplacer vers"
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme 'vues'"
 
-#: ../../mod/settings.php:737
-msgid "Move to folder:"
-msgstr "Déplacer vers:"
+#: ../../include/nav.php:156 ../../mod/message.php:182
+#: ../../mod/notifications.php:103
+msgid "Messages"
+msgstr "Messages"
 
-#: ../../mod/settings.php:768 ../../mod/admin.php:402
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème particulier pour les terminaux mobiles"
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Messages privés"
 
-#: ../../mod/settings.php:808
-msgid "Display Settings"
-msgstr "Affichage"
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "Messages entrants"
 
-#: ../../mod/settings.php:814 ../../mod/settings.php:825
-msgid "Display Theme:"
-msgstr "Thème d'affichage:"
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Messages sortants"
 
-#: ../../mod/settings.php:815
-msgid "Mobile Theme:"
-msgstr "Thème mobile:"
+#: ../../include/nav.php:159 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: ../../mod/settings.php:816
-msgid "Update browser every xx seconds"
-msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Gérer"
 
-#: ../../mod/settings.php:816
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Délai minimum de 10 secondes, pas de maximum"
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Gérer les autres pages"
 
-#: ../../mod/settings.php:817
-msgid "Number of items to display per page:"
-msgstr "Nombre d’éléments par page:"
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr ""
 
-#: ../../mod/settings.php:817
-msgid "Maximum of 100 items"
-msgstr "Maximum de 100 éléments"
+#: ../../include/nav.php:165 ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Déléguer la gestion de la page"
 
-#: ../../mod/settings.php:818
-msgid "Don't show emoticons"
-msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
+#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
+#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658
+msgid "Settings"
+msgstr "Réglages"
 
-#: ../../mod/settings.php:894
-msgid "Normal Account Page"
-msgstr "Compte normal"
+#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
+msgid "Account settings"
+msgstr "Compte"
 
-#: ../../mod/settings.php:895
-msgid "This account is a normal personal profile"
-msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"
+#: ../../include/nav.php:169 ../../boot.php:1439
+msgid "Profiles"
+msgstr "Profils"
 
-#: ../../mod/settings.php:898
-msgid "Soapbox Page"
-msgstr "Compte \"boîte à savon\""
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr ""
 
-#: ../../mod/settings.php:899
-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'"
+#: ../../include/nav.php:171 ../../mod/contacts.php:607
+#: ../../view/theme/diabook/theme.php:89
+msgid "Contacts"
+msgstr "Contacts"
 
-#: ../../mod/settings.php:902
-msgid "Community Forum/Celebrity Account"
-msgstr "Compte de communauté/célébrité"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Gérer/éditer les amitiés et contacts"
 
-#: ../../mod/settings.php:903
-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'"
+#: ../../include/nav.php:178 ../../mod/admin.php:120
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/settings.php:906
-msgid "Automatic Friend Page"
-msgstr "Compte d'\"amitié automatique\""
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Démarrage et configuration du site"
 
-#: ../../mod/settings.php:907
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr ""
 
-#: ../../mod/settings.php:910
-msgid "Private Forum [Experimental]"
-msgstr "Forum privé [expérimental]"
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr ""
 
-#: ../../mod/settings.php:911
-msgid "Private forum - approved members only"
-msgstr "Forum privé - modéré en inscription"
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Contenu incorporé"
 
-#: ../../mod/settings.php:923
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Incorporation désactivée"
 
-#: ../../mod/settings.php:923
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr ""
 
-#: ../../mod/settings.php:933
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
 
-#: ../../mod/settings.php:939
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publier votre profil par défaut sur l'annuaire social global?"
+#: ../../include/uimport.php:116
+msgid "Error! Cannot check nickname"
+msgstr ""
 
-#: ../../mod/settings.php:947
-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?"
+#: ../../include/uimport.php:120
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
 
-#: ../../mod/settings.php:951
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Cacher les détails du profil aux visiteurs inconnus?"
+#: ../../include/uimport.php:139
+msgid "User creation error"
+msgstr ""
 
-#: ../../mod/settings.php:956
-msgid "Allow friends to post to your profile page?"
-msgstr "Autoriser vos amis à publier sur votre profil?"
+#: ../../include/uimport.php:157
+msgid "User profile creation error"
+msgstr ""
 
-#: ../../mod/settings.php:962
-msgid "Allow friends to tag your posts?"
-msgstr "Autoriser vos amis à tagguer vos notices?"
+#: ../../include/uimport.php:202
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/settings.php:968
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
+#: ../../include/uimport.php:272
+msgid "Done. You can now login with your username and password"
+msgstr ""
 
-#: ../../mod/settings.php:974
-msgid "Permit unknown people to send you private mail?"
-msgstr "Autoriser les messages privés d'inconnus?"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bienvenue "
 
-#: ../../mod/settings.php:982
-msgid "Profile is <strong>not published</strong>."
-msgstr "Ce profil n'est <strong>pas publié</strong>."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Merci d'illustrer votre profil d'une image."
 
-#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "ou"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bienvenue à nouveau, "
 
-#: ../../mod/settings.php:990
-msgid "Your Identity Address is"
-msgstr "L'adresse de votre identité est"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
 
-#: ../../mod/settings.php:1001
-msgid "Automatically expire posts after this many days:"
-msgstr "Les publications expirent automatiquement après (en jours) :"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:160 ../../mod/profiles.php:583
+#: ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
+msgstr "Profil introuvable."
 
-#: ../../mod/settings.php:1001
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil supprimé."
 
-#: ../../mod/settings.php:1002
-msgid "Advanced expiration settings"
-msgstr "Réglages avancés de l'expiration"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/settings.php:1003
-msgid "Advanced Expiration"
-msgstr "Expiration (avancé)"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nouveau profil créé."
 
-#: ../../mod/settings.php:1004
-msgid "Expire posts:"
-msgstr "Faire expirer les contenus:"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Ce profil ne peut être cloné."
 
-#: ../../mod/settings.php:1005
-msgid "Expire personal notes:"
-msgstr "Faire expirer les notes personnelles:"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../mod/settings.php:1006
-msgid "Expire starred posts:"
-msgstr "Faire expirer les contenus marqués:"
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../mod/settings.php:1007
-msgid "Expire photos:"
-msgstr "Faire expirer les photos:"
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr "Partenaire/conjoint"
 
-#: ../../mod/settings.php:1008
-msgid "Only expire posts by others:"
-msgstr "Faire expirer seulement les messages des autres :"
+#: ../../mod/profiles.php:325
+msgid "Likes"
+msgstr "Derniers \"J'aime\""
 
-#: ../../mod/settings.php:1015
-msgid "Account Settings"
-msgstr "Compte"
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr "Derniers \"Je n'aime pas\""
 
-#: ../../mod/settings.php:1023
-msgid "Password Settings"
-msgstr "Réglages de mot de passe"
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
 
-#: ../../mod/settings.php:1024
-msgid "New Password:"
-msgstr "Nouveau mot de passe:"
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/settings.php:1025
-msgid "Confirm:"
-msgstr "Confirmer:"
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Tendance politique"
 
-#: ../../mod/settings.php:1025
-msgid "Leave password fields blank unless changing"
-msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "Sexe"
 
-#: ../../mod/settings.php:1029
-msgid "Basic Settings"
-msgstr "Réglages basiques"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nom complet:"
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Site internet"
 
-#: ../../mod/settings.php:1031
-msgid "Email Address:"
-msgstr "Adresse courriel:"
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../mod/settings.php:1032
-msgid "Your Timezone:"
-msgstr "Votre fuseau horaire:"
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/settings.php:1033
-msgid "Default Post Location:"
-msgstr "Publication par défaut depuis :"
+#: ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../mod/settings.php:1034
-msgid "Use Browser Location:"
-msgstr "Utiliser la localisation géographique du navigateur:"
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../mod/settings.php:1037
-msgid "Security and Privacy Settings"
-msgstr "Réglages de sécurité et vie privée"
+#: ../../mod/profiles.php:521
+msgid " and "
+msgstr " et "
 
-#: ../../mod/settings.php:1039
-msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximal de requêtes d'amitié/jour:"
+#: ../../mod/profiles.php:529
+msgid "public profile"
+msgstr "profil public"
 
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
-msgid "(to prevent spam abuse)"
-msgstr "(pour limiter l'impact du spam)"
+#: ../../mod/profiles.php:532
+#, 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/settings.php:1040
-msgid "Default Post Permissions"
-msgstr "Permissions par défaut sur les articles"
+#: ../../mod/profiles.php:533
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "Visiter le %2$s de %1$s"
 
-#: ../../mod/settings.php:1041
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
+#: ../../mod/profiles.php:536
+#, 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/settings.php:1058
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum de messages privés d'inconnus par jour:"
+#: ../../mod/profiles.php:609
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
 
-#: ../../mod/settings.php:1061
-msgid "Notification Settings"
-msgstr "Réglages de notification"
+#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837
+msgid "No"
+msgstr "Non"
 
-#: ../../mod/settings.php:1062
-msgid "By default post a status message when:"
-msgstr "Par défaut, poster un statut quand:"
+#: ../../mod/profiles.php:629
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../mod/settings.php:1063
-msgid "accepting a friend request"
-msgstr "j'accepte un ami"
+#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763
+#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
+#: ../../mod/contacts.php:386 ../../mod/settings.php:584
+#: ../../mod/settings.php:694 ../../mod/settings.php:763
+#: ../../mod/settings.php:837 ../../mod/settings.php:1064
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:733 ../../object/Item.php:653
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
+#: ../../view/theme/quattro/config.php:64
+msgid "Submit"
+msgstr "Envoyer"
 
-#: ../../mod/settings.php:1064
-msgid "joining a forum/community"
-msgstr "joignant un forum/une communauté"
+#: ../../mod/profiles.php:631
+msgid "Change Profile Photo"
+msgstr ""
 
-#: ../../mod/settings.php:1065
-msgid "making an <em>interesting</em> profile change"
-msgstr "je fais une modification <em>intéressante</em> de mon profil"
+#: ../../mod/profiles.php:632
+msgid "View this profile"
+msgstr "Voir ce profil"
 
-#: ../../mod/settings.php:1066
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand:"
+#: ../../mod/profiles.php:633
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: ../../mod/settings.php:1067
-msgid "You receive an introduction"
-msgstr "Vous recevez une introduction"
+#: ../../mod/profiles.php:634
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
 
-#: ../../mod/settings.php:1068
-msgid "Your introductions are confirmed"
-msgstr "Vos introductions sont confirmées"
+#: ../../mod/profiles.php:635
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
 
-#: ../../mod/settings.php:1069
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un écrit sur votre mur"
+#: ../../mod/profiles.php:636
+msgid "Profile Name:"
+msgstr "Nom du profil:"
 
-#: ../../mod/settings.php:1070
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un vous commente"
+#: ../../mod/profiles.php:637
+msgid "Your Full Name:"
+msgstr "Votre nom complet:"
 
-#: ../../mod/settings.php:1071
-msgid "You receive a private message"
-msgstr "Vous recevez un message privé"
+#: ../../mod/profiles.php:638
+msgid "Title/Description:"
+msgstr "Titre/Description:"
 
-#: ../../mod/settings.php:1072
-msgid "You receive a friend suggestion"
-msgstr "Vous avez reçu une suggestion d'ami"
+#: ../../mod/profiles.php:639
+msgid "Your Gender:"
+msgstr "Votre genre:"
 
-#: ../../mod/settings.php:1073
-msgid "You are tagged in a post"
-msgstr "Vous avez été repéré dans une publication"
+#: ../../mod/profiles.php:640
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Anniversaire (%s):"
 
-#: ../../mod/settings.php:1074
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Vous avez été sollicité dans une publication"
+#: ../../mod/profiles.php:641
+msgid "Street Address:"
+msgstr "Adresse postale:"
 
-#: ../../mod/settings.php:1077
-msgid "Advanced Account/Page Type Settings"
-msgstr "Paramètres avancés de compte/page"
+#: ../../mod/profiles.php:642
+msgid "Locality/City:"
+msgstr "Ville/Localité:"
 
-#: ../../mod/settings.php:1078
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifier le comportement de ce compte dans certaines situations"
+#: ../../mod/profiles.php:643
+msgid "Postal/Zip Code:"
+msgstr "Code postal:"
 
-#: ../../mod/manage.php:94
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
+#: ../../mod/profiles.php:644
+msgid "Country:"
+msgstr "Pays:"
 
-#: ../../mod/manage.php:97
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
+#: ../../mod/profiles.php:645
+msgid "Region/State:"
+msgstr "Région/État:"
 
-#: ../../mod/manage.php:99
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
+#: ../../mod/profiles.php:646
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
 
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr "Résultats pour:"
+#: ../../mod/profiles.php:647
+msgid "Who: (if applicable)"
+msgstr "Qui: (si pertinent)"
 
-#: ../../mod/network.php:224 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../mod/profiles.php:648
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/network.php:233 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Recherches"
+#: ../../mod/profiles.php:649
+msgid "Since [date]:"
+msgstr "Depuis [date] :"
 
-#: ../../mod/network.php:234 ../../include/group.php:275
-msgid "add"
-msgstr "ajouter"
+#: ../../mod/profiles.php:651
+msgid "Homepage URL:"
+msgstr "Page personnelle:"
 
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "Tri par commentaires"
+#: ../../mod/profiles.php:654
+msgid "Religious Views:"
+msgstr "Opinions religieuses:"
 
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr "Trier par date de commentaire"
+#: ../../mod/profiles.php:655
+msgid "Public Keywords:"
+msgstr "Mots-clés publics:"
 
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "Tri par publications"
+#: ../../mod/profiles.php:656
+msgid "Private Keywords:"
+msgstr "Mots-clés privés:"
 
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr "Trier par date de publication"
+#: ../../mod/profiles.php:659
+msgid "Example: fishing photography software"
+msgstr "Exemple: football dessin programmation"
 
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
+#: ../../mod/profiles.php:660
+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/network.php:453
-msgid "New"
-msgstr "Nouveau"
+#: ../../mod/profiles.php:661
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
 
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr "Flux d'activités - par date"
+#: ../../mod/profiles.php:662
+msgid "Tell us about yourself..."
+msgstr "Parlez-nous de vous..."
 
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr "Liens partagés"
+#: ../../mod/profiles.php:663
+msgid "Hobbies/Interests"
+msgstr "Passe-temps/Centres d'intérêt"
 
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr "Liens intéressants"
+#: ../../mod/profiles.php:664
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées/Réseaux sociaux"
 
-#: ../../mod/network.php:471
-msgid "Starred"
-msgstr "Mis en avant"
+#: ../../mod/profiles.php:665
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+#: ../../mod/profiles.php:666
+msgid "Books, literature"
+msgstr "Lectures"
 
-#: ../../mod/network.php:546
-#, 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/profiles.php:667
+msgid "Television"
+msgstr "Télévision"
 
-#: ../../mod/network.php:549
-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/profiles.php:668
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
 
-#: ../../mod/network.php:619
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../mod/profiles.php:669
+msgid "Love/romance"
+msgstr "Amour/Romance"
 
-#: ../../mod/network.php:621
-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/profiles.php:670
+msgid "Work/employment"
+msgstr "Activité professionnelle/Occupation"
 
-#: ../../mod/network.php:626
-msgid "Invalid contact."
-msgstr "Contact invalide."
+#: ../../mod/profiles.php:671
+msgid "School/education"
+msgstr "Études/Formation"
 
-#: ../../mod/notes.php:44 ../../boot.php:1755
-msgid "Personal Notes"
-msgstr "Notes personnelles"
+#: ../../mod/profiles.php:676
+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/notes.php:63 ../../mod/filer.php:30
-#: ../../addon/facebook/facebook.php:770
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
-#: ../../addon/fbpost/fbpost.php:267
-#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
-#: ../../addon.old/facebook/facebook.php:770
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
-#: ../../addon.old/fbpost/fbpost.php:267
-#: ../../addon.old/dav/friendica/layout.fnk.php:441
-#: ../../addon.old/dav/friendica/layout.fnk.php:488
-msgid "Save"
-msgstr "Sauver"
+#: ../../mod/profiles.php:686 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Age: "
 
-#: ../../mod/uimport.php:50 ../../mod/register.php:190
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
+#: ../../mod/profiles.php:725
+msgid "Edit/Manage Profiles"
+msgstr "Editer/gérer les profils"
 
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importer"
+#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471
+msgid "Change profile photo"
+msgstr "Changer de photo de profil"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Migrer le compte"
+#: ../../mod/profiles.php:727 ../../boot.php:1446
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
 
-#: ../../mod/uimport.php:67
-msgid ""
-"You can import an account from another Friendica server. <br>\r\n"
-"                            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.<br>\r\n"
-"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
-msgstr ""
+#: ../../mod/profiles.php:738 ../../boot.php:1456
+msgid "Profile Image"
+msgstr "Image du profil"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Fichier du compte"
+#: ../../mod/profiles.php:740 ../../boot.php:1459
+msgid "visible to everybody"
+msgstr "visible par tous"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
-msgstr ""
+#: ../../mod/profiles.php:741 ../../boot.php:1460
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
 
-#: ../../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/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
+msgid "Permission denied"
+msgstr "Permission refusée"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Pas de destinataire sélectionné."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Impossible de vérifier votre localisation."
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Éditer la visibilité du profil"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Impossible d'envoyer le message."
+#: ../../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/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Récupération des messages infructueuse."
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Message envoyé."
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tous les contacts (ayant un accès sécurisé)"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Pas de destinataire."
+#: ../../mod/notes.php:44 ../../boot.php:1978
+msgid "Personal Notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
-#: ../../mod/message.php:249 ../../mod/message.php:257
-#: ../../include/conversation.php:905 ../../include/conversation.php:923
-msgid "Please enter a link URL:"
-msgstr "Entrez un lien web:"
+#: ../../mod/display.php:19 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
+#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17
+#: ../../mod/photos.php:914 ../../mod/community.php:18
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "L'accès au profil a été restreint."
+
+#: ../../mod/display.php:239
+msgid "Item has been removed."
+msgstr "Cet élément a été enlevé."
 
-#: ../../mod/wallmessage.php:139
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
 #, 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."
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
 
-#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
-#: ../../mod/message.php:476
-msgid "To:"
-msgstr "À:"
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "Éditer le contact"
 
-#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
-#: ../../mod/message.php:478
-msgid "Subject:"
-msgstr "Sujet:"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacts qui n’appartiennent à aucun groupe"
 
-#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
-#: ../../mod/message.php:481 ../../mod/invite.php:113
-msgid "Your message:"
-msgstr "Votre message:"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} souhaite être votre ami(e)"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bienvenue sur Friendica"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} vous a envoyé un message"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} a demandé à s'inscrire"
 
-#: ../../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/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} a commenté une notice de %s"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Bien démarrer"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} a aimé une notice de %s"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica pas-à-pas"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} n'a pas aimé une notice de %s"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} est désormais ami(e) avec %s"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Éditer vos Réglages"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} a posté"
 
-#: ../../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/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} a taggué la notice de %s avec #%s"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} vous a mentionné dans une publication"
 
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1731
-msgid "Profile"
-msgstr "Profil"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvés."
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../mod/admin.php:96 ../../mod/admin.php:490
+msgid "Site"
+msgstr "Site"
 
-#: ../../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/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Éditer votre Profil"
+#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901
+msgid "Plugins"
+msgstr "Extensions"
 
-#: ../../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/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101
+msgid "Themes"
+msgstr "Thèmes"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Mots-clés du profil"
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "Mise-à-jour de la base"
 
-#: ../../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/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188
+msgid "Logs"
+msgstr "Journaux"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Connexions"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Propriétés des extensions"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
-#: ../../include/contact_selectors.php:81
-#: ../../addon.old/facebook/facebook.php:728
-#: ../../addon.old/fbpost/fbpost.php:239
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente de confirmation"
 
-#: ../../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/admin.php:182 ../../mod/admin.php:733
+msgid "Normal Account"
+msgstr "Compte normal"
 
-#: ../../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/admin.php:183 ../../mod/admin.php:734
+msgid "Soapbox Account"
+msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importer courriels"
+#: ../../mod/admin.php:184 ../../mod/admin.php:735
+msgid "Community/Celebrity Account"
+msgstr "Compte de communauté/célébrité"
 
-#: ../../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/admin.php:185 ../../mod/admin.php:736
+msgid "Automatic Friend Account"
+msgstr "Compte auto-amical"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Consulter vos Contacts"
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "Compte de blog"
 
-#: ../../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/admin.php:187
+msgid "Private Forum"
+msgstr "Forum privé"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Consulter l'Annuaire de votre Site"
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "Files d'attente des messages"
 
-#: ../../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/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761
+#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066
+#: ../../mod/admin.php:1100 ../../mod/admin.php:1187
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Trouver de nouvelles personnes"
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Résumé"
 
-#: ../../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/admin.php:214
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groupes"
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grouper vos contacts"
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Versio"
 
-#: ../../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/admin.php:219
+msgid "Active plugins"
+msgstr "Extensions activés"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Pourquoi mes éléments ne sont pas publics?"
+#: ../../mod/admin.php:405
+msgid "Site settings updated."
+msgstr "Réglages du site mis-à-jour."
 
-#: ../../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, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
+#: ../../mod/admin.php:434 ../../mod/settings.php:793
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème particulier pour les terminaux mobiles"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtenir de l'aide"
+#: ../../mod/admin.php:451 ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Jamais"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Aller à la section Aide"
+#: ../../mod/admin.php:460
+msgid "Multi user instance"
+msgstr "Instance multi-utilisateurs"
 
-#: ../../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/admin.php:476
+msgid "Closed"
+msgstr "Fermé"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: ../../mod/admin.php:477
+msgid "Requires approval"
+msgstr "Demande une apptrobation"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: ../../mod/admin.php:478
+msgid "Open"
+msgstr "Ouvert"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groupe créé."
+#: ../../mod/admin.php:482
+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/group.php:35
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: ../../mod/admin.php:483
+msgid "Force all links to use SSL"
+msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../mod/group.php:47 ../../mod/group.php:137
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: ../../mod/admin.php:484
+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/group.php:60
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: ../../mod/admin.php:492 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Inscription"
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
-msgid "Permission denied"
-msgstr "Permission refusée"
+#: ../../mod/admin.php:493
+msgid "File upload"
+msgstr "Téléversement de fichier"
 
-#: ../../mod/group.php:90
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: ../../mod/admin.php:494
+msgid "Policies"
+msgstr "Politiques"
 
-#: ../../mod/group.php:91 ../../mod/group.php:177
-msgid "Group Name: "
-msgstr "Nom du groupe: "
+#: ../../mod/admin.php:495
+msgid "Advanced"
+msgstr "Avancé"
 
-#: ../../mod/group.php:110
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: ../../mod/admin.php:496
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/group.php:112
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: ../../mod/admin.php:500
+msgid "Site name"
+msgstr "Nom du site"
 
-#: ../../mod/group.php:176
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: ../../mod/admin.php:501
+msgid "Banner/Logo"
+msgstr "Bannière/Logo"
 
-#: ../../mod/group.php:189
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/admin.php:502
+msgid "System language"
+msgstr "Langue du système"
 
-#: ../../mod/group.php:221 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
+#: ../../mod/admin.php:503
+msgid "System theme"
+msgstr "Thème du système"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../mod/admin.php:503
+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é en fonction des profils - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
+#: ../../mod/admin.php:504
+msgid "Mobile system theme"
+msgstr "Thème mobile"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../mod/admin.php:504
+msgid "Theme for mobile devices"
+msgstr "Thème pour les terminaux mobiles"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: ../../mod/admin.php:505
+msgid "SSL link policy"
+msgstr "Politique SSL pour les liens"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Aucun contact."
+#: ../../mod/admin.php:505
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Détermine si les liens générés doivent forcer l'usage de SSL"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
-msgid "View Contacts"
-msgstr "Voir les contacts"
+#: ../../mod/admin.php:506
+msgid "'Share' element"
+msgstr ""
 
-#: ../../mod/register.php:89 ../../mod/regmod.php:52
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails d'inscription pour %s"
+#: ../../mod/admin.php:506
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr ""
 
-#: ../../mod/register.php:97
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
+#: ../../mod/admin.php:507
+msgid "Hide help entry from navigation menu"
+msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../mod/register.php:101
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Impossible d'envoyer un email. Voici le message qui a échoué."
+#: ../../mod/admin.php:507
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr ""
 
-#: ../../mod/register.php:106
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traitée."
+#: ../../mod/admin.php:508
+msgid "Single user instance"
+msgstr "Instance mono-utilisateur"
 
-#: ../../mod/register.php:143
-#, php-format
-msgid "Registration request at %s"
-msgstr "Demande d'inscription à %s"
+#: ../../mod/admin.php:508
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr ""
 
-#: ../../mod/register.php:152
-msgid "Your registration is pending approval by the site owner."
-msgstr "Votre inscription attend une validation du propriétaire du site."
+#: ../../mod/admin.php:509
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
 
-#: ../../mod/register.php:218
+#: ../../mod/admin.php:509
 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\"."
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
+
+#: ../../mod/admin.php:510
+msgid "Maximum image length"
+msgstr "Longueur maximale des images"
 
-#: ../../mod/register.php:219
+#: ../../mod/admin.php:510
 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."
+"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/register.php:220
-msgid "Your OpenID (optional): "
-msgstr "Votre OpenID (facultatif): "
+#: ../../mod/admin.php:511
+msgid "JPEG image quality"
+msgstr "Qualité JPEG des images"
 
-#: ../../mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr "Inclure votre profil dans l'annuaire des membres?"
+#: ../../mod/admin.php:511
+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/register.php:256
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../mod/admin.php:513
+msgid "Register policy"
+msgstr "Politique d'inscription"
 
-#: ../../mod/register.php:257
-msgid "Your invitation ID: "
-msgstr "Votre ID d'invitation: "
+#: ../../mod/admin.php:514
+msgid "Maximum Daily Registrations"
+msgstr ""
 
-#: ../../mod/register.php:260 ../../mod/admin.php:444
-msgid "Registration"
-msgstr "Inscription"
+#: ../../mod/admin.php:514
+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/register.php:268
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Votre nom complet (p.ex. Michel Dupont): "
+#: ../../mod/admin.php:515
+msgid "Register text"
+msgstr "Texte d'inscription"
 
-#: ../../mod/register.php:269
-msgid "Your Email Address: "
-msgstr "Votre adresse courriel: "
+#: ../../mod/admin.php:515
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sera affiché de manière bien visible sur la page d'accueil."
 
-#: ../../mod/register.php:270
-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:516
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/register.php:271
-msgid "Choose a nickname: "
-msgstr "Choisir un pseudo: "
+#: ../../mod/admin.php:516
+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/register.php:274 ../../include/nav.php:81 ../../boot.php:923
-msgid "Register"
-msgstr "S'inscrire"
+#: ../../mod/admin.php:517
+msgid "Allowed friend domains"
+msgstr "Domaines autorisés"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Recherche de personnes"
+#: ../../mod/admin.php:517
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:458 ../../include/text.php:1442
-#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
-#: ../../include/conversation.php:253
-#: ../../addon.old/communityhome/communityhome.php:163
-msgid "photo"
-msgstr "photo"
+#: ../../mod/admin.php:518
+msgid "Allowed email domains"
+msgstr "Domaines courriel autorisés"
 
-#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
-#: ../../addon/communityhome/communityhome.php:158
-#: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:453
-#: ../../view/theme/diabook/theme.php:462 ../../include/diaspora.php:1848
-#: ../../include/conversation.php:120 ../../include/conversation.php:129
-#: ../../include/conversation.php:248 ../../include/conversation.php:257
-#: ../../addon.old/facebook/facebook.php:1598
-#: ../../addon.old/communityhome/communityhome.php:158
-#: ../../addon.old/communityhome/communityhome.php:167
-msgid "status"
-msgstr "le statut"
+#: ../../mod/admin.php:518
+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/like.php:162 ../../addon/facebook/facebook.php:1602
-#: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:467 ../../include/diaspora.php:1864
-#: ../../include/conversation.php:136
-#: ../../addon.old/facebook/facebook.php:1602
-#: ../../addon.old/communityhome/communityhome.php:172
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+#: ../../mod/admin.php:519
+msgid "Block public"
+msgstr "Interdire la publication globale"
 
-#: ../../mod/like.php:164 ../../include/conversation.php:139
-#, 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:519
+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/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:39
-#: ../../mod/display.php:169 ../../include/items.php:3843
-msgid "Item not found."
-msgstr "Élément introuvable."
+#: ../../mod/admin.php:520
+msgid "Force publish"
+msgstr "Forcer la publication globale"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accès refusé."
+#: ../../mod/admin.php:520
+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/fbrowser.php:25 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:51 ../../boot.php:1738
-msgid "Photos"
-msgstr "Photos"
+#: ../../mod/admin.php:521
+msgid "Global directory update URL"
+msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../mod/fbrowser.php:96
-msgid "Files"
-msgstr "Fichiers"
+#: ../../mod/admin.php:521
+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/regmod.php:61
-msgid "Account approved."
-msgstr "Inscription validée."
+#: ../../mod/admin.php:522
+msgid "Allow threaded items"
+msgstr "Activer les commentaires imbriqués"
 
-#: ../../mod/regmod.php:98
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: ../../mod/admin.php:522
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../mod/regmod.php:110
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../mod/admin.php:523
+msgid "Private posts by default for new users"
+msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: ../../mod/item.php:104
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser l'article original."
+#: ../../mod/admin.php:523
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
 
-#: ../../mod/item.php:288
-msgid "Empty post discarded."
-msgstr "Article vide défaussé."
+#: ../../mod/admin.php:524
+msgid "Don't include post content in email notifications"
+msgstr ""
 
-#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
-#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../mod/admin.php:524
+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/item.php:837
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvée."
+#: ../../mod/admin.php:525
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: ../../mod/item.php:862
-#, php-format
+#: ../../mod/admin.php:525
 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."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
 
-#: ../../mod/item.php:864
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
+#: ../../mod/admin.php:526
+msgid "Don't embed private images in posts"
+msgstr ""
 
-#: ../../mod/item.php:865
+#: ../../mod/admin.php:526
 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/item.php:867
-#, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+"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/mood.php:62 ../../include/conversation.php:226
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s est d'humeur %2$s"
+#: ../../mod/admin.php:528
+msgid "Block multiple registrations"
+msgstr "Interdire les inscriptions multiples"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humeur"
+#: ../../mod/admin.php:528
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
 
-#: ../../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/admin.php:529
+msgid "OpenID support"
+msgstr "Support OpenID"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image envoyée, mais impossible de la retailler."
+#: ../../mod/admin.php:529
+msgid "OpenID support for registration and logins."
+msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../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/admin.php:530
+msgid "Fullname check"
+msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../mod/profile_photo.php:118
+#: ../../mod/admin.php:530
 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."
+"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/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: ../../mod/admin.php:531
+msgid "UTF-8 Regular expressions"
+msgstr "Regex UTF-8"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "L'image dépasse la taille limite de %d"
+#: ../../mod/admin.php:531
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Fichier à téléverser:"
+#: ../../mod/admin.php:532
+msgid "Show Community Page"
+msgstr "Montrer la \"Place publique\""
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Choisir un profil:"
+#: ../../mod/admin.php:532
+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/profile_photo.php:245
-#: ../../addon/dav/friendica/layout.fnk.php:152
-#: ../../addon.old/dav/friendica/layout.fnk.php:152
-msgid "Upload"
-msgstr "Téléverser"
+#: ../../mod/admin.php:533
+msgid "Enable OStatus support"
+msgstr "Activer le support d'OStatus"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: ../../mod/admin.php:533
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile."
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: ../../mod/admin.php:534
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: ../../mod/admin.php:534
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
 
-#: ../../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:535
+msgid "Enable Diaspora support"
+msgstr "Activer le support de Diaspora"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: ../../mod/admin.php:535
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../mod/admin.php:536
+msgid "Only allow Friendica contacts"
+msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Aucun profil"
+#: ../../mod/admin.php:536
+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/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Supprimer mon compte"
+#: ../../mod/admin.php:537
+msgid "Verify SSL"
+msgstr "Vérifier SSL"
 
-#: ../../mod/removeme.php:46
+#: ../../mod/admin.php:537
 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."
+"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/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Merci de saisir votre mot de passe pour vérification:"
+#: ../../mod/admin.php:538
+msgid "Proxy user"
+msgstr "Utilisateur du proxy"
 
-#: ../../mod/message.php:9 ../../include/nav.php:132
-msgid "New Message"
-msgstr "Nouveau message"
+#: ../../mod/admin.php:539
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: ../../mod/admin.php:540
+msgid "Network timeout"
+msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../mod/message.php:195
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: ../../mod/admin.php:540
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: ../../mod/message.php:225
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: ../../mod/admin.php:541
+msgid "Delivery interval"
+msgstr "Intervalle de transmission"
 
-#: ../../mod/message.php:334
-msgid "No messages."
-msgstr "Aucun message."
+#: ../../mod/admin.php:541
+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/message.php:341
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Émetteur inconnu - %s"
+#: ../../mod/admin.php:542
+msgid "Poll interval"
+msgstr "Intervalle de réception"
 
-#: ../../mod/message.php:344
-#, php-format
-msgid "You and %s"
-msgstr "Vous et %s"
+#: ../../mod/admin.php:542
+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/message.php:347
-#, php-format
-msgid "%s and You"
-msgstr "%s et vous"
+#: ../../mod/admin.php:543
+msgid "Maximum Load Average"
+msgstr "Plafond de la charge moyenne"
 
-#: ../../mod/message.php:357 ../../mod/message.php:469
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: ../../mod/admin.php:543
+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/message.php:360
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/admin.php:545
+msgid "Use MySQL full text engine"
+msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../mod/message.php:363
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: ../../mod/admin.php:545
+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/message.php:398
-msgid "Message not available."
-msgstr "Message indisponible."
+#: ../../mod/admin.php:546
+msgid "Path to item cache"
+msgstr "Chemin vers le cache des objets."
 
-#: ../../mod/message.php:451
-msgid "Delete message"
-msgstr "Effacer message"
+#: ../../mod/admin.php:547
+msgid "Cache duration in seconds"
+msgstr "Durée du cache en secondes"
 
-#: ../../mod/message.php:471
+#: ../../mod/admin.php:547
 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/message.php:475
-msgid "Send Reply"
-msgstr "Répondre"
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr ""
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amis de %s"
+#: ../../mod/admin.php:548
+msgid "Path for lock file"
+msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
+#: ../../mod/admin.php:549
+msgid "Temp path"
+msgstr "Chemin des fichiers temporaires"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvés."
+#: ../../mod/admin.php:550
+msgid "Base path to installation"
+msgstr "Chemin de base de l'installation"
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:442
-msgid "Site"
-msgstr "Site"
+#: ../../mod/admin.php:567
+msgid "Update has been marked successful"
+msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
-msgid "Users"
-msgstr "Utilisateurs"
+#: ../../mod/admin.php:577
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système."
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
-msgid "Plugins"
-msgstr "Extensions"
+#: ../../mod/admin.php:580
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../mod/admin.php:584
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr "Mise-à-jour de la base"
+#: ../../mod/admin.php:587
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée."
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
-msgid "Logs"
-msgstr "Journaux"
+#: ../../mod/admin.php:602
+msgid "No failed updates."
+msgstr "Pas de mises-à-jour échouées."
 
-#: ../../mod/admin.php:120 ../../include/nav.php:149
-msgid "Admin"
-msgstr "Admin"
+#: ../../mod/admin.php:606
+msgid "Failed Updates"
+msgstr "Mises-à-jour échouées"
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "Propriétés des extensions"
+#: ../../mod/admin.php:607
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente de confirmation"
+#: ../../mod/admin.php:608
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:669
-msgid "Normal Account"
-msgstr "Compte normal"
+#: ../../mod/admin.php:609
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:670
-msgid "Soapbox Account"
-msgstr "Compte \"boîte à savon\""
+#: ../../mod/admin.php:634
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilisateur a (dé)bloqué"
+msgstr[1] "%s utilisateurs ont (dé)bloqué"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:671
-msgid "Community/Celebrity Account"
-msgstr "Compte de communauté/célébrité"
+#: ../../mod/admin.php:641
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:672
-msgid "Automatic Friend Account"
-msgstr "Compte auto-amical"
+#: ../../mod/admin.php:680
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/admin.php:187
-msgid "Blog Account"
-msgstr "Compte de blog"
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/admin.php:188
-msgid "Private Forum"
-msgstr "Forum privé"
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/admin.php:207
-msgid "Message queues"
-msgstr "Files d'attente des messages"
+#: ../../mod/admin.php:764
+msgid "select all"
+msgstr "tout sélectionner"
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
-#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
-#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/admin.php:765
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../mod/admin.php:213
-msgid "Summary"
-msgstr "Résumé"
+#: ../../mod/admin.php:766
+msgid "Request date"
+msgstr "Date de la demande"
 
-#: ../../mod/admin.php:215
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586
+#: ../../mod/settings.php:612 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Nom"
 
-#: ../../mod/admin.php:217
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
+#: ../../mod/admin.php:767
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
 
-#: ../../mod/admin.php:218
-msgid "Version"
-msgstr "Versio"
+#: ../../mod/admin.php:768 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Approuver"
 
-#: ../../mod/admin.php:220
-msgid "Active plugins"
-msgstr "Extensions activés"
+#: ../../mod/admin.php:769
+msgid "Deny"
+msgstr "Rejetter"
 
-#: ../../mod/admin.php:373
-msgid "Site settings updated."
-msgstr "Réglages du site mis-à-jour."
+#: ../../mod/admin.php:771 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Bloquer"
 
-#: ../../mod/admin.php:428
-msgid "Closed"
-msgstr "Fermé"
+#: ../../mod/admin.php:772 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: ../../mod/admin.php:429
-msgid "Requires approval"
-msgstr "Demande une apptrobation"
+#: ../../mod/admin.php:773
+msgid "Site admin"
+msgstr "Administration du Site"
 
-#: ../../mod/admin.php:430
-msgid "Open"
-msgstr "Ouvert"
+#: ../../mod/admin.php:774
+msgid "Account expired"
+msgstr "Compte expiré"
 
-#: ../../mod/admin.php:434
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
+#: ../../mod/admin.php:777
+msgid "Register date"
+msgstr "Date d'inscription"
 
-#: ../../mod/admin.php:435
-msgid "Force all links to use SSL"
-msgstr "Forcer tous les liens à utiliser SSL"
+#: ../../mod/admin.php:777
+msgid "Last login"
+msgstr "Dernière connexion"
 
-#: ../../mod/admin.php:436
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
+#: ../../mod/admin.php:777
+msgid "Last item"
+msgstr "Dernier élément"
 
-#: ../../mod/admin.php:445
-msgid "File upload"
-msgstr "Téléversement de fichier"
+#: ../../mod/admin.php:777
+msgid "Account"
+msgstr "Compte"
 
-#: ../../mod/admin.php:446
-msgid "Policies"
-msgstr "Politiques"
+#: ../../mod/admin.php:779
+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 perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:447
-msgid "Advanced"
-msgstr "Avancé"
+#: ../../mod/admin.php:780
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:676
-#: ../../addon.old/statusnet/statusnet.php:567
-msgid "Site name"
-msgstr "Nom du site"
+#: ../../mod/admin.php:821
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extension %s désactivée."
 
-#: ../../mod/admin.php:452
-msgid "Banner/Logo"
-msgstr "Bannière/Logo"
+#: ../../mod/admin.php:825
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extension %s activée."
 
-#: ../../mod/admin.php:453
-msgid "System language"
-msgstr "Langue du système"
+#: ../../mod/admin.php:835 ../../mod/admin.php:1038
+msgid "Disable"
+msgstr "Désactiver"
 
-#: ../../mod/admin.php:454
-msgid "System theme"
-msgstr "Thème du système"
+#: ../../mod/admin.php:837 ../../mod/admin.php:1040
+msgid "Enable"
+msgstr "Activer"
 
-#: ../../mod/admin.php:454
-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é en fonction des profils - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
+#: ../../mod/admin.php:860 ../../mod/admin.php:1068
+msgid "Toggle"
+msgstr "Activer/Désactiver"
 
-#: ../../mod/admin.php:455
-msgid "Mobile system theme"
-msgstr "Thème mobile"
+#: ../../mod/admin.php:868 ../../mod/admin.php:1078
+msgid "Author: "
+msgstr "Auteur: "
 
-#: ../../mod/admin.php:455
-msgid "Theme for mobile devices"
-msgstr "Thème pour les terminaux mobiles"
+#: ../../mod/admin.php:869 ../../mod/admin.php:1079
+msgid "Maintainer: "
+msgstr "Mainteneur: "
 
-#: ../../mod/admin.php:456
-msgid "SSL link policy"
-msgstr "Politique SSL pour les liens"
+#: ../../mod/admin.php:998
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
 
-#: ../../mod/admin.php:456
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Détermine si les liens générés doivent forcer l'usage de SSL"
+#: ../../mod/admin.php:1060
+msgid "Screenshot"
+msgstr "Capture d'écran"
 
-#: ../../mod/admin.php:457
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: ../../mod/admin.php:1106
+msgid "[Experimental]"
+msgstr "[Expérimental]"
 
-#: ../../mod/admin.php:457
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
+#: ../../mod/admin.php:1107
+msgid "[Unsupported]"
+msgstr "[Non supporté]"
 
-#: ../../mod/admin.php:458
-msgid "Maximum image length"
-msgstr "Longueur maximale des images"
+#: ../../mod/admin.php:1134
+msgid "Log settings updated."
+msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../mod/admin.php:458
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
+#: ../../mod/admin.php:1190
+msgid "Clear"
+msgstr "Effacer"
 
-#: ../../mod/admin.php:459
-msgid "JPEG image quality"
-msgstr "Qualité JPEG des images"
+#: ../../mod/admin.php:1196
+msgid "Enable Debugging"
+msgstr ""
+
+#: ../../mod/admin.php:1197
+msgid "Log file"
+msgstr "Fichier de journaux"
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:1197
 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."
+"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:461
-msgid "Register policy"
-msgstr "Politique d'inscription"
+#: ../../mod/admin.php:1198
+msgid "Log level"
+msgstr "Niveau de journalisaton"
 
-#: ../../mod/admin.php:462
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: ../../mod/admin.php:1247 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Mettre à jour"
 
-#: ../../mod/admin.php:462
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sera affiché de manière bien visible sur la page d'accueil."
+#: ../../mod/admin.php:1248
+msgid "Close"
+msgstr "Fermer"
 
-#: ../../mod/admin.php:463
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: ../../mod/admin.php:1254
+msgid "FTP Host"
+msgstr "Hôte FTP"
 
-#: ../../mod/admin.php:463
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
+#: ../../mod/admin.php:1255
+msgid "FTP Path"
+msgstr "Chemin FTP"
 
-#: ../../mod/admin.php:464
-msgid "Allowed friend domains"
-msgstr "Domaines autorisés"
+#: ../../mod/admin.php:1256
+msgid "FTP User"
+msgstr "Utilisateur FTP"
 
-#: ../../mod/admin.php:464
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
+#: ../../mod/admin.php:1257
+msgid "FTP Password"
+msgstr "Mot de passe FTP"
 
-#: ../../mod/admin.php:465
-msgid "Allowed email domains"
-msgstr "Domaines courriel autorisés"
+#: ../../mod/item.php:108
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser l'article original."
 
-#: ../../mod/admin.php:465
-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/item.php:310
+msgid "Empty post discarded."
+msgstr "Article vide défaussé."
 
-#: ../../mod/admin.php:466
-msgid "Block public"
-msgstr "Interdire la publication globale"
+#: ../../mod/item.php:872
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvée."
 
-#: ../../mod/admin.php:466
+#: ../../mod/item.php:897
+#, php-format
 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."
+"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:467
-msgid "Force publish"
-msgstr "Forcer la publication globale"
+#: ../../mod/item.php:899
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: ../../mod/admin.php:467
+#: ../../mod/item.php:900
 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."
+"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:468
-msgid "Global directory update URL"
-msgstr "URL de mise-à-jour de l'annuaire global"
+#: ../../mod/item.php:904
+#, php-format
+msgid "%s posted an update."
+msgstr "%s a publié une mise à jour."
 
-#: ../../mod/admin.php:468
-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/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amis de %s"
 
-#: ../../mod/admin.php:469
-msgid "Allow threaded items"
-msgstr "Activer les commentaires imbriqués"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Pas d'amis à afficher."
 
-#: ../../mod/admin.php:469
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permettre une imbrication infinie des commentaires."
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: ../../mod/admin.php:470
-msgid "Private posts by default for new users"
-msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:89
+msgid "No results."
+msgstr "Aucun résultat."
 
-#: ../../mod/admin.php:470
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
 
-#: ../../mod/admin.php:472
-msgid "Block multiple registrations"
-msgstr "Interdire les inscriptions multiples"
+#: ../../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:472
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
 
-#: ../../mod/admin.php:473
-msgid "OpenID support"
-msgstr "Support OpenID"
+#: ../../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 notices et contacts, et/ou à créer des notices à votre place?"
 
-#: ../../mod/admin.php:473
-msgid "OpenID support for registration and logins."
-msgstr "Supporter OpenID pour les inscriptions et connexions."
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails d'inscription pour %s"
 
-#: ../../mod/admin.php:474
-msgid "Fullname check"
-msgstr "Vérification du \"Prénom Nom\""
-
-#: ../../mod/admin.php:474
+#: ../../mod/register.php:99
 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"
+"Registration successful. Please check your email for further instructions."
+msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
 
-#: ../../mod/admin.php:475
-msgid "UTF-8 Regular expressions"
-msgstr "Regex UTF-8"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Impossible d'envoyer un email. Voici le message qui a échoué."
 
-#: ../../mod/admin.php:475
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traitée."
 
-#: ../../mod/admin.php:476
-msgid "Show Community Page"
-msgstr "Montrer la \"Place publique\""
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Demande d'inscription à %s"
 
-#: ../../mod/admin.php:476
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription attend une validation du propriétaire du site."
+
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
 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."
+"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:477
-msgid "Enable OStatus support"
-msgstr "Activer le support d'OStatus"
+#: ../../mod/register.php:220
+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:477
+#: ../../mod/register.php:221
 msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile."
+"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:478
-msgid "Enable Diaspora support"
-msgstr "Activer le support de Diaspora"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Votre OpenID (facultatif): "
 
-#: ../../mod/admin.php:478
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fournir une compatibilité Diaspora intégrée."
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: ../../mod/admin.php:479
-msgid "Only allow Friendica contacts"
-msgstr "N'autoriser que les contacts Friendica"
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../mod/admin.php:479
-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/register.php:258
+msgid "Your invitation ID: "
+msgstr "Votre ID d'invitation: "
 
-#: ../../mod/admin.php:480
-msgid "Verify SSL"
-msgstr "Vérifier SSL"
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Votre nom complet (p.ex. Michel Dupont): "
+
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Votre adresse courriel: "
 
-#: ../../mod/admin.php:480
+#: ../../mod/register.php:271
 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é."
+"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:481
-msgid "Proxy user"
-msgstr "Utilisateur du proxy"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Choisir un pseudo: "
 
-#: ../../mod/admin.php:482
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Inscription validée."
 
-#: ../../mod/admin.php:483
-msgid "Network timeout"
-msgstr "Dépassement du délai d'attente du réseau"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
 
-#: ../../mod/admin.php:483
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Merci de vous connecter."
 
-#: ../../mod/admin.php:484
-msgid "Delivery interval"
-msgstr "Intervalle de transmission"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elément non disponible."
 
-#: ../../mod/admin.php:484
-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/attach.php:20
+msgid "Item was not found."
+msgstr "Element introuvable."
 
-#: ../../mod/admin.php:485
-msgid "Poll interval"
-msgstr "Intervalle de réception"
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Supprimer mon compte"
 
-#: ../../mod/admin.php:485
+#: ../../mod/removeme.php:46
 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."
+"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:486
-msgid "Maximum Load Average"
-msgstr "Plafond de la charge moyenne"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Merci de saisir votre mot de passe pour vérification:"
 
-#: ../../mod/admin.php:486
-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/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texte source (bbcode) :"
 
-#: ../../mod/admin.php:503
-msgid "Update has been marked successful"
-msgstr "Mise-à-jour validée comme 'réussie'"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texte source (Diaspora) à convertir en BBcode :"
 
-#: ../../mod/admin.php:513
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système."
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Source input: "
 
-#: ../../mod/admin.php:516
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Mise-à-jour %s appliquée avec succès."
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr ""
 
-#: ../../mod/admin.php:520
-#, 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/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../mod/admin.php:523
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/admin.php:538
-msgid "No failed updates."
-msgstr "Pas de mises-à-jour échouées."
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/admin.php:542
-msgid "Failed Updates"
-msgstr "Mises-à-jour échouées"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/admin.php:543
-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/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/admin.php:544
-msgid "Mark success (if update was manually applied)"
-msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/admin.php:545
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter d'éxecuter cette étape automatiquement"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Texte source (format Diaspora) :"
 
-#: ../../mod/admin.php:570
-#, 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/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb :"
 
-#: ../../mod/admin.php:577
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amis communs"
 
-#: ../../mod/admin.php:616
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Pas de contacts en commun."
 
-#: ../../mod/admin.php:624
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+#: ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr ""
 
-#: ../../mod/admin.php:624
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Applications"
 
-#: ../../mod/admin.php:690
-msgid "select all"
-msgstr "tout sélectionner"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Pas d'application installée."
 
-#: ../../mod/admin.php:691
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions d'utilisateurs en attente de confirmation"
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder à l'enregistrement du contact."
 
-#: ../../mod/admin.php:692
-msgid "Request date"
-msgstr "Date de la demande"
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil séléctionné."
 
-#: ../../mod/admin.php:692 ../../mod/admin.php:702
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "Courriel"
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Contact mis-à-jour."
 
-#: ../../mod/admin.php:693
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
+#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
+msgid "Failed to update contact record."
+msgstr "Échec de mise-à-jour du contact."
 
-#: ../../mod/admin.php:695
-msgid "Deny"
-msgstr "Rejetter"
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Le contact a été bloqué"
 
-#: ../../mod/admin.php:699
-msgid "Site admin"
-msgstr "Administration du Site"
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Le contact n'est plus bloqué"
 
-#: ../../mod/admin.php:702
-msgid "Register date"
-msgstr "Date d'inscription"
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Le contact a été ignoré"
 
-#: ../../mod/admin.php:702
-msgid "Last login"
-msgstr "Dernière connexion"
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Le contact n'est plus ignoré"
 
-#: ../../mod/admin.php:702
-msgid "Last item"
-msgstr "Dernier élément"
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Contact archivé"
 
-#: ../../mod/admin.php:702
-msgid "Account"
-msgstr "Compte"
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
+msgstr "Contact désarchivé"
 
-#: ../../mod/admin.php:704
-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 perdu!\\n\\nÊtes-vous certain?"
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr ""
 
-#: ../../mod/admin.php:705
-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/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Ce contact a été retiré."
 
-#: ../../mod/admin.php:746
+#: ../../mod/contacts.php:301
 #, php-format
-msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+msgid "You are mutual friends with %s"
+msgstr "Vous êtes ami (et réciproquement) avec %s"
 
-#: ../../mod/admin.php:750
+#: ../../mod/contacts.php:305
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
-
-#: ../../mod/admin.php:760 ../../mod/admin.php:958
-msgid "Disable"
-msgstr "Désactiver"
-
-#: ../../mod/admin.php:762 ../../mod/admin.php:960
-msgid "Enable"
-msgstr "Activer"
+msgid "You are sharing with %s"
+msgstr "Vous partagez avec %s"
 
-#: ../../mod/admin.php:784 ../../mod/admin.php:989
-msgid "Toggle"
-msgstr "Activer/Désactiver"
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s partage avec vous"
 
-#: ../../mod/admin.php:792 ../../mod/admin.php:999
-msgid "Author: "
-msgstr "Auteur: "
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Les communications privées ne sont pas disponibles pour ce contact."
 
-#: ../../mod/admin.php:793 ../../mod/admin.php:1000
-msgid "Maintainer: "
-msgstr "Mainteneur: "
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(Mise à jour effectuée avec succès)"
 
-#: ../../mod/admin.php:922
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(Mise à jour échouée)"
 
-#: ../../mod/admin.php:981
-msgid "Screenshot"
-msgstr "Capture d'écran"
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Suggérer amitié/contact"
 
-#: ../../mod/admin.php:1029
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: ../../mod/contacts.php:340
+#, php-format
+msgid "Network type: %s"
+msgstr "Type de réseau %s"
 
-#: ../../mod/admin.php:1030
-msgid "[Unsupported]"
-msgstr "[Non supporté]"
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Voir tous les contacts"
 
-#: ../../mod/admin.php:1057
-msgid "Log settings updated."
-msgstr "Réglages des journaux mis-à-jour."
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
+msgstr "(dés)activer l'état \"bloqué\""
 
-#: ../../mod/admin.php:1113
-msgid "Clear"
-msgstr "Effacer"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: ../../mod/admin.php:1119
-msgid "Debugging"
-msgstr "Déboguage"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../mod/admin.php:1120
-msgid "Log file"
-msgstr "Fichier de journaux"
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
+msgstr "(dés)activer l'état \"ignoré\""
 
-#: ../../mod/admin.php:1120
-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/contacts.php:366
+msgid "Unarchive"
+msgstr "Désarchiver"
 
-#: ../../mod/admin.php:1121
-msgid "Log level"
-msgstr "Niveau de journalisaton"
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Archiver"
 
-#: ../../mod/admin.php:1171
-msgid "Close"
-msgstr "Fermer"
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
+msgstr "(dés)activer l'état \"archivé\""
 
-#: ../../mod/admin.php:1177
-msgid "FTP Host"
-msgstr "Hôte FTP"
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Réparer"
 
-#: ../../mod/admin.php:1178
-msgid "FTP Path"
-msgstr "Chemin FTP"
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Réglages avancés du contact"
 
-#: ../../mod/admin.php:1179
-msgid "FTP User"
-msgstr "Utilisateur FTP"
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "Communications perdues avec ce contact !"
 
-#: ../../mod/admin.php:1180
-msgid "FTP Password"
-msgstr "Mot de passe FTP"
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Éditeur de contact"
 
-#: ../../mod/profile.php:21 ../../boot.php:1126
-msgid "Requested profile is not available."
-msgstr "Le profil demandé n'est pas disponible."
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
 
-#: ../../mod/profile.php:155 ../../mod/display.php:87
-msgid "Access to this profile has been restricted."
-msgstr "L'accès au profil a été restreint."
+#: ../../mod/contacts.php:388
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux venus"
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Informations de contact / Notes"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "Éditer les notes des contacts"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Bloquer/débloquer ce contact"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignorer ce contact"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} a commenté une notice de %s"
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "Réparer les réglages d'URL"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} a aimé une notice de %s"
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} n'a pas aimé une notice de %s"
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Effacer ce contact"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} est désormais ami(e) avec %s"
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "Dernière mise-à-jour :"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} a posté"
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "Met ses entrées publiques à jour: "
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} a taggué la notice de %s avec #%s"
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} vous a mentionné dans une publication"
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: ../../mod/nogroup.php:58
-msgid "Contacts who are not members of a group"
-msgstr "Contacts qui n’appartiennent à aucun groupe"
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
+#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Cacher ce contact aux autres"
 
-#: ../../mod/openid.php:53
+#: ../../mod/contacts.php:419
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et \"j'aime\" à vos contenus publics <strong>peuvent</strong> être toujours visibles"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:110
-#: ../../include/auth.php:173
-msgid "Login failed."
-msgstr "Échec de connexion."
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact ajouté"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Suggérer des amis potentiels"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amis communs"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Tous les contacts"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Pas de contacts en commun."
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Montrer tous les contacts"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Non-bloqués"
 
-#: ../../mod/share.php:28
-msgid "link"
-msgstr "lien"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Ne montrer que les contacts non-bloqués"
 
-#: ../../mod/display.php:162
-msgid "Item has been removed."
-msgstr "Cet élément a été enlevé."
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Bloqués"
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Applications"
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Ne montrer que les contacts bloqués"
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Ignorés"
 
-#: ../../mod/search.php:99 ../../include/text.php:685
-#: ../../include/text.php:686 ../../include/nav.php:91
-msgid "Search"
-msgstr "Recherche"
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Ne montrer que les contacts ignorés"
 
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:434
-#: ../../mod/profiles.php:548 ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "Archivés"
 
-#: ../../mod/profiles.php:31
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Ne montrer que les contacts archivés"
 
-#: ../../mod/profiles.php:171
-msgid "Marital Status"
-msgstr "Statut marital"
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Cachés"
 
-#: ../../mod/profiles.php:175
-msgid "Romantic Partner"
-msgstr "Partenaire/conjoint"
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Ne montrer que les contacts masqués"
 
-#: ../../mod/profiles.php:179
-msgid "Likes"
-msgstr "Derniers \"J'aime\""
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Relation réciproque"
 
-#: ../../mod/profiles.php:183
-msgid "Dislikes"
-msgstr "Derniers \"Je n'aime pas\""
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "Vous suit"
 
-#: ../../mod/profiles.php:187
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "Vous le/la suivez"
 
-#: ../../mod/profiles.php:190
-msgid "Religion"
-msgstr "Religion"
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Rechercher dans vos contacts"
 
-#: ../../mod/profiles.php:194
-msgid "Political Views"
-msgstr "Tendance politique"
+#: ../../mod/contacts.php:612 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Trouvé: "
 
-#: ../../mod/profiles.php:198
-msgid "Gender"
-msgstr "Sexe"
+#: ../../mod/settings.php:23 ../../mod/photos.php:79
+msgid "everybody"
+msgstr "tout le monde"
 
-#: ../../mod/profiles.php:202
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
+#: ../../mod/settings.php:35
+msgid "Additional features"
+msgstr ""
 
-#: ../../mod/profiles.php:206
-msgid "Homepage"
-msgstr "Site internet"
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Affichage"
 
-#: ../../mod/profiles.php:210
-msgid "Interests"
-msgstr "Centres d'intérêt"
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Connecteurs"
 
-#: ../../mod/profiles.php:214
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Extensions"
 
-#: ../../mod/profiles.php:221 ../../addon/dav/common/wdcal_edit.inc.php:183
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
-msgid "Location"
-msgstr "Localisation"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "Applications connectées"
 
-#: ../../mod/profiles.php:304
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Exporter"
 
-#: ../../mod/profiles.php:371
-msgid " and "
-msgstr " et "
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Supprimer le compte"
 
-#: ../../mod/profiles.php:379
-msgid "public profile"
-msgstr "profil public"
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "Il manque certaines informations importantes!"
 
-#: ../../mod/profiles.php:382
-#, 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/settings.php:121 ../../mod/settings.php:610
+msgid "Update"
+msgstr "Mises-à-jour"
 
-#: ../../mod/profiles.php:383
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "Visiter le %2$s de %1$s"
+#: ../../mod/settings.php:227
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Impossible de se connecter au compte courriel configuré."
 
-#: ../../mod/profiles.php:386
-#, 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/settings.php:232
+msgid "Email settings updated."
+msgstr "Réglages de courriel mis-à-jour."
 
-#: ../../mod/profiles.php:453
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: ../../mod/settings.php:247
+msgid "Features updated"
+msgstr ""
 
-#: ../../mod/profiles.php:471 ../../mod/profiles.php:505
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/settings.php:312
+msgid "Passwords do not match. Password unchanged."
+msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
 
-#: ../../mod/profiles.php:490 ../../mod/profiles.php:532
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: ../../mod/settings.php:317
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
 
-#: ../../mod/profiles.php:511
-msgid "Profile unavailable to clone."
-msgstr "Ce profil ne peut être cloné."
+#: ../../mod/settings.php:325
+msgid "Wrong password."
+msgstr ""
 
-#: ../../mod/profiles.php:576
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
+#: ../../mod/settings.php:336
+msgid "Password changed."
+msgstr "Mots de passe changés."
 
-#: ../../mod/profiles.php:596
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../mod/settings.php:338
+msgid "Password update failed. Please try again."
+msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/profiles.php:598
-msgid "View this profile"
-msgstr "Voir ce profil"
+#: ../../mod/settings.php:403
+msgid " Please use a shorter name."
+msgstr " Merci d'utiliser un nom plus court."
 
-#: ../../mod/profiles.php:599
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil en utilisant ces réglages"
+#: ../../mod/settings.php:405
+msgid " Name too short."
+msgstr " Nom trop court."
 
-#: ../../mod/profiles.php:600
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
+#: ../../mod/settings.php:414
+msgid "Wrong Password"
+msgstr ""
 
-#: ../../mod/profiles.php:601
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
+#: ../../mod/settings.php:419
+msgid " Not valid email."
+msgstr " Email invalide."
 
-#: ../../mod/profiles.php:602
-msgid "Profile Name:"
-msgstr "Nom du profil:"
+#: ../../mod/settings.php:422
+msgid " Cannot change to that email."
+msgstr " Impossible de changer pour cet email."
 
-#: ../../mod/profiles.php:603
-msgid "Your Full Name:"
-msgstr "Votre nom complet:"
+#: ../../mod/settings.php:476
+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/profiles.php:604
-msgid "Title/Description:"
-msgstr "Titre/Description:"
+#: ../../mod/settings.php:480
+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/profiles.php:605
-msgid "Your Gender:"
-msgstr "Votre genre:"
+#: ../../mod/settings.php:510
+msgid "Settings updated."
+msgstr "Réglages mis à jour."
 
-#: ../../mod/profiles.php:606
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Anniversaire (%s):"
+#: ../../mod/settings.php:583 ../../mod/settings.php:609
+#: ../../mod/settings.php:645
+msgid "Add application"
+msgstr "Ajouter une application"
 
-#: ../../mod/profiles.php:607
-msgid "Street Address:"
-msgstr "Adresse postale:"
+#: ../../mod/settings.php:587 ../../mod/settings.php:613
+msgid "Consumer Key"
+msgstr "Clé utilisateur"
 
-#: ../../mod/profiles.php:608
-msgid "Locality/City:"
-msgstr "Ville/Localité:"
+#: ../../mod/settings.php:588 ../../mod/settings.php:614
+msgid "Consumer Secret"
+msgstr "Secret utilisateur"
 
-#: ../../mod/profiles.php:609
-msgid "Postal/Zip Code:"
-msgstr "Code postal:"
+#: ../../mod/settings.php:589 ../../mod/settings.php:615
+msgid "Redirect"
+msgstr "Rediriger"
 
-#: ../../mod/profiles.php:610
-msgid "Country:"
-msgstr "Pays:"
+#: ../../mod/settings.php:590 ../../mod/settings.php:616
+msgid "Icon url"
+msgstr "URL de l'icône"
 
-#: ../../mod/profiles.php:611
-msgid "Region/State:"
-msgstr "Région/État:"
+#: ../../mod/settings.php:601
+msgid "You can't edit this application."
+msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/profiles.php:612
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
+#: ../../mod/settings.php:644
+msgid "Connected Apps"
+msgstr "Applications connectées"
 
-#: ../../mod/profiles.php:613
-msgid "Who: (if applicable)"
-msgstr "Qui: (si pertinent)"
+#: ../../mod/settings.php:646 ../../mod/editpost.php:109
+#: ../../mod/content.php:751 ../../object/Item.php:117
+msgid "Edit"
+msgstr "Éditer"
 
-#: ../../mod/profiles.php:614
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/settings.php:648
+msgid "Client key starts with"
+msgstr "La clé cliente commence par"
 
-#: ../../mod/profiles.php:615
-msgid "Since [date]:"
-msgstr "Depuis [date] :"
+#: ../../mod/settings.php:649
+msgid "No name"
+msgstr "Sans nom"
 
-#: ../../mod/profiles.php:616 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Préférence sexuelle:"
+#: ../../mod/settings.php:650
+msgid "Remove authorization"
+msgstr "Révoquer l'autorisation"
 
-#: ../../mod/profiles.php:617
-msgid "Homepage URL:"
-msgstr "Page personnelle:"
+#: ../../mod/settings.php:662
+msgid "No Plugin settings configured"
+msgstr "Pas de réglages d'extensions configurés"
 
-#: ../../mod/profiles.php:618 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr " Ville d'origine:"
+#: ../../mod/settings.php:670
+msgid "Plugin Settings"
+msgstr "Extensions"
 
-#: ../../mod/profiles.php:619 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Opinions politiques:"
+#: ../../mod/settings.php:684
+msgid "Off"
+msgstr ""
 
-#: ../../mod/profiles.php:620
-msgid "Religious Views:"
-msgstr "Opinions religieuses:"
+#: ../../mod/settings.php:684
+msgid "On"
+msgstr ""
 
-#: ../../mod/profiles.php:621
-msgid "Public Keywords:"
-msgstr "Mots-clés publics:"
+#: ../../mod/settings.php:692
+msgid "Additional Features"
+msgstr ""
 
-#: ../../mod/profiles.php:622
-msgid "Private Keywords:"
-msgstr "Mots-clés privés:"
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "J'aime :"
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+msgid "enabled"
+msgstr "activé"
 
-#: ../../mod/profiles.php:624 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Je n'aime pas :"
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+msgid "disabled"
+msgstr "désactivé"
 
-#: ../../mod/profiles.php:625
-msgid "Example: fishing photography software"
-msgstr "Exemple: football dessin programmation"
+#: ../../mod/settings.php:706
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../mod/profiles.php:626
-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/settings.php:738
+msgid "Email access is disabled on this site."
+msgstr "L'accès courriel est désactivé sur ce site."
 
-#: ../../mod/profiles.php:627
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
+#: ../../mod/settings.php:745
+msgid "Connector Settings"
+msgstr "Connecteurs"
 
-#: ../../mod/profiles.php:628
-msgid "Tell us about yourself..."
-msgstr "Parlez-nous de vous..."
+#: ../../mod/settings.php:750
+msgid "Email/Mailbox Setup"
+msgstr "Réglages de courriel/boîte à lettre"
 
-#: ../../mod/profiles.php:629
-msgid "Hobbies/Interests"
-msgstr "Passe-temps/Centres d'intérêt"
+#: ../../mod/settings.php:751
+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/profiles.php:630
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées/Réseaux sociaux"
+#: ../../mod/settings.php:752
+msgid "Last successful email check:"
+msgstr "Dernière vérification réussie des courriels:"
 
-#: ../../mod/profiles.php:631
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../mod/settings.php:754
+msgid "IMAP server name:"
+msgstr "Nom du serveur IMAP:"
 
-#: ../../mod/profiles.php:632
-msgid "Books, literature"
-msgstr "Lectures"
+#: ../../mod/settings.php:755
+msgid "IMAP port:"
+msgstr "Port IMAP:"
 
-#: ../../mod/profiles.php:633
-msgid "Television"
-msgstr "Télévision"
+#: ../../mod/settings.php:756
+msgid "Security:"
+msgstr "Sécurité:"
 
-#: ../../mod/profiles.php:634
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../mod/settings.php:756 ../../mod/settings.php:761
+msgid "None"
+msgstr "Aucun(e)"
 
-#: ../../mod/profiles.php:635
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../mod/settings.php:757
+msgid "Email login name:"
+msgstr "Nom de connexion:"
 
-#: ../../mod/profiles.php:636
-msgid "Work/employment"
-msgstr "Activité professionnelle/Occupation"
+#: ../../mod/settings.php:758
+msgid "Email password:"
+msgstr "Mot de passe:"
 
-#: ../../mod/profiles.php:637
-msgid "School/education"
-msgstr "Études/Formation"
+#: ../../mod/settings.php:759
+msgid "Reply-to address:"
+msgstr "Adresse de réponse:"
 
-#: ../../mod/profiles.php:642
-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/settings.php:760
+msgid "Send public posts to all email contacts:"
+msgstr "Les notices publiques vont à tous les contacts courriel:"
 
-#: ../../mod/profiles.php:652 ../../mod/directory.php:111
-#: ../../addon/forumdirectory/forumdirectory.php:133
-msgid "Age: "
-msgstr "Age: "
+#: ../../mod/settings.php:761
+msgid "Action after import:"
+msgstr "Action après import:"
 
-#: ../../mod/profiles.php:691
-msgid "Edit/Manage Profiles"
-msgstr "Editer/gérer les profils"
+#: ../../mod/settings.php:761
+msgid "Mark as seen"
+msgstr "Marquer comme vu"
 
-#: ../../mod/profiles.php:692 ../../boot.php:1244
-msgid "Change profile photo"
-msgstr "Changer de photo de profil"
+#: ../../mod/settings.php:761
+msgid "Move to folder"
+msgstr "Déplacer vers"
 
-#: ../../mod/profiles.php:693 ../../boot.php:1245
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../mod/settings.php:762
+msgid "Move to folder:"
+msgstr "Déplacer vers:"
 
-#: ../../mod/profiles.php:704 ../../boot.php:1255
-msgid "Profile Image"
-msgstr "Image du profil"
+#: ../../mod/settings.php:835
+msgid "Display Settings"
+msgstr "Affichage"
 
-#: ../../mod/profiles.php:706 ../../boot.php:1258
-msgid "visible to everybody"
-msgstr "visible par tous"
+#: ../../mod/settings.php:841 ../../mod/settings.php:853
+msgid "Display Theme:"
+msgstr "Thème d'affichage:"
 
-#: ../../mod/profiles.php:707 ../../boot.php:1259
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
+#: ../../mod/settings.php:842
+msgid "Mobile Theme:"
+msgstr "Thème mobile:"
 
-#: ../../mod/filer.php:29 ../../include/conversation.php:909
-#: ../../include/conversation.php:927
-msgid "Save to Folder:"
-msgstr "Sauver dans le Dossier:"
+#: ../../mod/settings.php:843
+msgid "Update browser every xx seconds"
+msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
 
-#: ../../mod/filer.php:29
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../mod/settings.php:843
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Délai minimum de 10 secondes, pas de maximum"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:265
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a taggué %3$s de %2$s avec %4$s"
+#: ../../mod/settings.php:844
+msgid "Number of items to display per page:"
+msgstr "Nombre d’éléments par page:"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Pas de délégataire potentiel."
+#: ../../mod/settings.php:844 ../../mod/settings.php:845
+msgid "Maximum of 100 items"
+msgstr "Maximum de 100 éléments"
 
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Déléguer la gestion de la page"
+#: ../../mod/settings.php:845
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr ""
 
-#: ../../mod/delegate.php:123
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
+#: ../../mod/settings.php:846
+msgid "Don't show emoticons"
+msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Gestionnaires existants"
+#: ../../mod/settings.php:922
+msgid "Normal Account Page"
+msgstr "Compte normal"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Délégataires existants"
+#: ../../mod/settings.php:923
+msgid "This account is a normal personal profile"
+msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Délégataires potentiels"
+#: ../../mod/settings.php:926
+msgid "Soapbox Page"
+msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Ajouter"
+#: ../../mod/settings.php:927
+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/delegate.php:132
-msgid "No entries."
-msgstr "Aucune entrée."
+#: ../../mod/settings.php:930
+msgid "Community Forum/Celebrity Account"
+msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texte source (bbcode) :"
+#: ../../mod/settings.php:931
+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/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texte source (Diaspora) à convertir en BBcode :"
+#: ../../mod/settings.php:934
+msgid "Automatic Friend Page"
+msgstr "Compte d'\"amitié automatique\""
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Source input: "
+#: ../../mod/settings.php:935
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"
 
-#: ../../mod/babel.php:35
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/settings.php:938
+msgid "Private Forum [Experimental]"
+msgstr "Forum privé [expérimental]"
 
-#: ../../mod/babel.php:39
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/settings.php:939
+msgid "Private forum - approved members only"
+msgstr "Forum privé - modéré en inscription"
 
-#: ../../mod/babel.php:43
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/settings.php:951
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/babel.php:47
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/settings.php:951
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: ../../mod/babel.php:51
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/settings.php:961
+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/babel.php:55
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/settings.php:967
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publier votre profil par défaut sur l'annuaire social global?"
 
-#: ../../mod/babel.php:65
-msgid "Source input (Diaspora format): "
-msgstr "Texte source (format Diaspora) :"
+#: ../../mod/settings.php:975
+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/babel.php:70
-msgid "diaspora2bb: "
-msgstr "diaspora2bb :"
+#: ../../mod/settings.php:979
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Cacher les détails du profil aux visiteurs inconnus?"
 
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:514
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Suggestions d'amitiés/contacts"
+#: ../../mod/settings.php:984
+msgid "Allow friends to post to your profile page?"
+msgstr "Autoriser vos amis à publier sur votre profil?"
 
-#: ../../mod/suggest.php:44
-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/settings.php:990
+msgid "Allow friends to tag your posts?"
+msgstr "Autoriser vos amis à tagguer vos notices?"
 
-#: ../../mod/suggest.php:61
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: ../../mod/settings.php:996
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
 
-#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
-#: ../../view/theme/diabook/theme.php:512
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: ../../mod/settings.php:1002
+msgid "Permit unknown people to send you private mail?"
+msgstr "Autoriser les messages privés d'inconnus?"
 
-#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: ../../mod/settings.php:1010
+msgid "Profile is <strong>not published</strong>."
+msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/directory.php:114
-#: ../../addon/forumdirectory/forumdirectory.php:136
-msgid "Gender: "
-msgstr "Genre: "
+#: ../../mod/settings.php:1018
+msgid "Your Identity Address is"
+msgstr "L'adresse de votre identité est"
 
-#: ../../mod/directory.php:136
-#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../boot.php:1280
-msgid "Gender:"
-msgstr "Genre:"
+#: ../../mod/settings.php:1029
+msgid "Automatically expire posts after this many days:"
+msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: ../../mod/directory.php:138
-#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../boot.php:1283
-msgid "Status:"
-msgstr "Statut:"
+#: ../../mod/settings.php:1029
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées"
 
-#: ../../mod/directory.php:140
-#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../boot.php:1285
-msgid "Homepage:"
-msgstr "Page personnelle:"
+#: ../../mod/settings.php:1030
+msgid "Advanced expiration settings"
+msgstr "Réglages avancés de l'expiration"
 
-#: ../../mod/directory.php:142
-#: ../../addon/forumdirectory/forumdirectory.php:164
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "À propos:"
+#: ../../mod/settings.php:1031
+msgid "Advanced Expiration"
+msgstr "Expiration (avancé)"
 
-#: ../../mod/directory.php:180
-#: ../../addon/forumdirectory/forumdirectory.php:202
-msgid "No entries (some entries may be hidden)."
-msgstr "Aucune entrée (certaines peuvent être cachées)."
+#: ../../mod/settings.php:1032
+msgid "Expire posts:"
+msgstr "Faire expirer les contenus:"
 
-#: ../../mod/invite.php:35
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+#: ../../mod/settings.php:1033
+msgid "Expire personal notes:"
+msgstr "Faire expirer les notes personnelles:"
 
-#: ../../mod/invite.php:59
-msgid "Please join us on Friendica"
-msgstr "Rejoignez-nous sur Friendica"
+#: ../../mod/settings.php:1034
+msgid "Expire starred posts:"
+msgstr "Faire expirer les contenus marqués:"
 
-#: ../../mod/invite.php:69
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
-
-#: ../../mod/invite.php:73
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+#: ../../mod/settings.php:1035
+msgid "Expire photos:"
+msgstr "Faire expirer les photos:"
 
-#: ../../mod/invite.php:92
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: ../../mod/settings.php:1036
+msgid "Only expire posts by others:"
+msgstr "Faire expirer seulement les messages des autres :"
 
-#: ../../mod/invite.php:100
-#, 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/settings.php:1062
+msgid "Account Settings"
+msgstr "Compte"
 
-#: ../../mod/invite.php:102
-#, 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/settings.php:1070
+msgid "Password Settings"
+msgstr "Réglages de mot de passe"
 
-#: ../../mod/invite.php:103
-#, 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/settings.php:1071
+msgid "New Password:"
+msgstr "Nouveau mot de passe:"
 
-#: ../../mod/invite.php:106
-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/settings.php:1072
+msgid "Confirm:"
+msgstr "Confirmer:"
 
-#: ../../mod/invite.php:111
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../mod/settings.php:1072
+msgid "Leave password fields blank unless changing"
+msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
 
-#: ../../mod/invite.php:112
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne:"
+#: ../../mod/settings.php:1073
+msgid "Current Password:"
+msgstr ""
 
-#: ../../mod/invite.php:114
-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/settings.php:1073 ../../mod/settings.php:1074
+msgid "Your current password to confirm the changes"
+msgstr ""
 
-#: ../../mod/invite.php:116
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Vous devrez fournir ce code d'invitation: $invite_code"
+#: ../../mod/settings.php:1074
+msgid "Password:"
+msgstr ""
 
-#: ../../mod/invite.php:116
-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/settings.php:1078
+msgid "Basic Settings"
+msgstr "Réglages basiques"
 
-#: ../../mod/invite.php:118
-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/settings.php:1080
+msgid "Email Address:"
+msgstr "Adresse courriel:"
 
-#: ../../mod/dfrn_confirm.php:119
-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/settings.php:1081
+msgid "Your Timezone:"
+msgstr "Votre fuseau horaire:"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Réponse du site distant incomprise."
+#: ../../mod/settings.php:1082
+msgid "Default Post Location:"
+msgstr "Publication par défaut depuis :"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Réponse inattendue du site distant: "
+#: ../../mod/settings.php:1083
+msgid "Use Browser Location:"
+msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Confirmation achevée avec succès."
+#: ../../mod/settings.php:1086
+msgid "Security and Privacy Settings"
+msgstr "Réglages de sécurité et vie privée"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Alerte du site distant: "
+#: ../../mod/settings.php:1088
+msgid "Maximum Friend Requests/Day:"
+msgstr "Nombre maximal de requêtes d'amitié/jour:"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Échec temporaire. Merci de recommencer ultérieurement."
+#: ../../mod/settings.php:1088 ../../mod/settings.php:1118
+msgid "(to prevent spam abuse)"
+msgstr "(pour limiter l'impact du spam)"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Introduction échouée ou annulée."
+#: ../../mod/settings.php:1089
+msgid "Default Post Permissions"
+msgstr "Permissions par défaut sur les articles"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Impossible de définir la photo du contact."
+#: ../../mod/settings.php:1090
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619
-#: ../../include/conversation.php:171
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s est désormais lié à %2$s"
+#: ../../mod/settings.php:1099 ../../mod/photos.php:1140
+#: ../../mod/photos.php:1506
+msgid "Show to Groups"
+msgstr "Montrer aux groupes"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pas d'utilisateur trouvé pour '%s' "
+#: ../../mod/settings.php:1100 ../../mod/photos.php:1141
+#: ../../mod/photos.php:1507
+msgid "Show to Contacts"
+msgstr "Montrer aux Contacts"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Notre clé de chiffrement de site est apparemment corrompue."
+#: ../../mod/settings.php:1101
+msgid "Default Private Post"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "URL de site absente ou indéchiffrable."
+#: ../../mod/settings.php:1102
+msgid "Default Public Post"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Pas d'entrée pour ce contact sur notre site."
+#: ../../mod/settings.php:1106
+msgid "Default Permissions for New Posts"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:618
-#, 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/settings.php:1118
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum de messages privés d'inconnus par jour:"
 
-#: ../../mod/dfrn_confirm.php:638
-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/settings.php:1121
+msgid "Notification Settings"
+msgstr "Réglages de notification"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossible de vous définir des permissions sur notre système."
+#: ../../mod/settings.php:1122
+msgid "By default post a status message when:"
+msgstr "Par défaut, poster un statut quand:"
 
-#: ../../mod/dfrn_confirm.php:716
-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/settings.php:1123
+msgid "accepting a friend request"
+msgstr "j'accepte un ami"
 
-#: ../../mod/dfrn_confirm.php:750
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Connexion acceptée chez %s"
+#: ../../mod/settings.php:1124
+msgid "joining a forum/community"
+msgstr "joignant un forum/une communauté"
 
-#: ../../mod/dfrn_confirm.php:799
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s a rejoint %2$s"
+#: ../../mod/settings.php:1125
+msgid "making an <em>interesting</em> profile change"
+msgstr "je fais une modification <em>intéressante</em> de mon profil"
 
-#: ../../addon/fromgplus/fromgplus.php:29
-#: ../../addon.old/fromgplus/fromgplus.php:29
-msgid "Google+ Import Settings"
-msgstr "Réglages G+"
-
-#: ../../addon/fromgplus/fromgplus.php:32
-#: ../../addon.old/fromgplus/fromgplus.php:32
-msgid "Enable Google+ Import"
-msgstr "Activer l'import G+"
-
-#: ../../addon/fromgplus/fromgplus.php:35
-#: ../../addon.old/fromgplus/fromgplus.php:35
-msgid "Google Account ID"
-msgstr "ID du compte Google"
-
-#: ../../addon/fromgplus/fromgplus.php:55
-#: ../../addon.old/fromgplus/fromgplus.php:55
-msgid "Google+ Import Settings saved."
-msgstr "Réglages G+ sauvés."
-
-#: ../../addon/facebook/facebook.php:523
-#: ../../addon.old/facebook/facebook.php:523
-msgid "Facebook disabled"
-msgstr "Connecteur Facebook désactivé"
-
-#: ../../addon/facebook/facebook.php:528
-#: ../../addon.old/facebook/facebook.php:528
-msgid "Updating contacts"
-msgstr "Mise-à-jour des contacts"
-
-#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
-#: ../../addon.old/facebook/facebook.php:551
-#: ../../addon.old/fbpost/fbpost.php:192
-msgid "Facebook API key is missing."
-msgstr "Clé d'API Facebook manquante."
-
-#: ../../addon/facebook/facebook.php:558
-#: ../../addon.old/facebook/facebook.php:558
-msgid "Facebook Connect"
-msgstr "Connecteur Facebook"
-
-#: ../../addon/facebook/facebook.php:564
-#: ../../addon.old/facebook/facebook.php:564
-msgid "Install Facebook connector for this account."
-msgstr "Installer le connecteur Facebook sur ce compte."
-
-#: ../../addon/facebook/facebook.php:571
-#: ../../addon.old/facebook/facebook.php:571
-msgid "Remove Facebook connector"
-msgstr "Désinstaller le connecteur Facebook"
-
-#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
-#: ../../addon.old/facebook/facebook.php:576
-#: ../../addon.old/fbpost/fbpost.php:217
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]"
-
-#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
-#: ../../addon.old/facebook/facebook.php:583
-#: ../../addon.old/fbpost/fbpost.php:224
-msgid "Post to Facebook by default"
-msgstr "Poster sur Facebook par défaut"
-
-#: ../../addon/facebook/facebook.php:589
-#: ../../addon.old/facebook/facebook.php:589
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
-msgstr "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet."
-
-#: ../../addon/facebook/facebook.php:593
-#: ../../addon.old/facebook/facebook.php:593
-msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
-msgstr "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer."
-
-#: ../../addon/facebook/facebook.php:596
-#: ../../addon.old/facebook/facebook.php:596
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr "Lier tous vos amis et conversations Facebook sur ce site"
-
-#: ../../addon/facebook/facebook.php:598
-#: ../../addon.old/facebook/facebook.php:598
-msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
-msgstr "Les conversations Facebook se composent du <em>mur du profil</em> et des <em>flux</em> de vos amis."
-
-#: ../../addon/facebook/facebook.php:599
-#: ../../addon.old/facebook/facebook.php:599
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous."
-
-#: ../../addon/facebook/facebook.php:600
-#: ../../addon.old/facebook/facebook.php:600
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
-msgstr "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site."
-
-#: ../../addon/facebook/facebook.php:604
-#: ../../addon.old/facebook/facebook.php:604
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous."
-
-#: ../../addon/facebook/facebook.php:609
-#: ../../addon.old/facebook/facebook.php:609
-msgid "Do not import your Facebook profile wall conversations"
-msgstr "Ne pas importer les conversations de votre mur Facebook."
-
-#: ../../addon/facebook/facebook.php:611
-#: ../../addon.old/facebook/facebook.php:611
-msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité."
-
-#: ../../addon/facebook/facebook.php:616
-#: ../../addon.old/facebook/facebook.php:616
-msgid "Comma separated applications to ignore"
-msgstr "Liste (séparée par des virgules) des applications à ignorer"
-
-#: ../../addon/facebook/facebook.php:700
-#: ../../addon.old/facebook/facebook.php:700
-msgid "Problems with Facebook Real-Time Updates"
-msgstr "Problème avec les mises-à-jour en temps réel de Facebook"
-
-#: ../../addon/facebook/facebook.php:729
-#: ../../addon.old/facebook/facebook.php:729
-msgid "Facebook Connector Settings"
-msgstr "Réglages du connecteur Facebook"
-
-#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
-#: ../../addon.old/facebook/facebook.php:744
-#: ../../addon.old/fbpost/fbpost.php:255
-msgid "Facebook API Key"
-msgstr "Clé d'API Facebook"
-
-#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
-#: ../../addon.old/facebook/facebook.php:754
-#: ../../addon.old/fbpost/fbpost.php:262
-msgid ""
-"Error: it appears that you have specified the App-ID and -Secret in your "
-".htconfig.php file. As long as they are specified there, they cannot be set "
-"using this form.<br><br>"
-msgstr "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.<br /><br />"
-
-#: ../../addon/facebook/facebook.php:759
-#: ../../addon.old/facebook/facebook.php:759
-msgid ""
-"Error: the given API Key seems to be incorrect (the application access token"
-" could not be retrieved)."
-msgstr "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)"
-
-#: ../../addon/facebook/facebook.php:761
-#: ../../addon.old/facebook/facebook.php:761
-msgid "The given API Key seems to work correctly."
-msgstr "La clé d'API semble fonctionner correctement."
-
-#: ../../addon/facebook/facebook.php:763
-#: ../../addon.old/facebook/facebook.php:763
-msgid ""
-"The correctness of the API Key could not be detected. Something strange's "
-"going on."
-msgstr "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe."
-
-#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
-#: ../../addon.old/facebook/facebook.php:766
-#: ../../addon.old/fbpost/fbpost.php:264
-msgid "App-ID / API-Key"
-msgstr "App-ID / Clé d'API"
-
-#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
-#: ../../addon.old/facebook/facebook.php:767
-#: ../../addon.old/fbpost/fbpost.php:265
-msgid "Application secret"
-msgstr "Secret de l'application"
-
-#: ../../addon/facebook/facebook.php:768
-#: ../../addon.old/facebook/facebook.php:768
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
-msgstr "Intervalle de 'polling' en minutes (minimum %1$s minutes)"
-
-#: ../../addon/facebook/facebook.php:769
-#: ../../addon.old/facebook/facebook.php:769
-msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
-msgstr "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)"
-
-#: ../../addon/facebook/facebook.php:773
-#: ../../addon.old/facebook/facebook.php:773
-msgid "Real-Time Updates"
-msgstr "Mises-à-jour en temps réel"
-
-#: ../../addon/facebook/facebook.php:777
-#: ../../addon.old/facebook/facebook.php:777
-msgid "Real-Time Updates are activated."
-msgstr "Mises-à-jour en temps réel activées."
-
-#: ../../addon/facebook/facebook.php:778
-#: ../../addon.old/facebook/facebook.php:778
-msgid "Deactivate Real-Time Updates"
-msgstr "Désactiver les mises-à-jour en temps réel"
-
-#: ../../addon/facebook/facebook.php:780
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Real-Time Updates not activated."
-msgstr "Mises-à-jour en temps réel désactivées."
-
-#: ../../addon/facebook/facebook.php:780
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Activate Real-Time Updates"
-msgstr "Activer les mises-à-jour en temps réel"
-
-#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
-#: ../../addon/dav/friendica/layout.fnk.php:361
-#: ../../addon.old/facebook/facebook.php:799
-#: ../../addon.old/fbpost/fbpost.php:282
-#: ../../addon.old/dav/friendica/layout.fnk.php:361
-msgid "The new values have been saved."
-msgstr "Les nouvelles valeurs ont été sauvées."
-
-#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
-#: ../../addon.old/facebook/facebook.php:823
-#: ../../addon.old/fbpost/fbpost.php:301
-msgid "Post to Facebook"
-msgstr "Poster sur Facebook"
-
-#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
-#: ../../addon.old/facebook/facebook.php:921
-#: ../../addon.old/fbpost/fbpost.php:399
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux."
-
-#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
-#: ../../addon.old/facebook/facebook.php:1149
-#: ../../addon.old/fbpost/fbpost.php:610
-msgid "View on Friendica"
-msgstr "Voir sur Friendica"
-
-#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
-#: ../../addon.old/facebook/facebook.php:1182
-#: ../../addon.old/fbpost/fbpost.php:643
-msgid "Facebook post failed. Queued for retry."
-msgstr "Publication sur Facebook échouée. En attente pour re-tentative."
-
-#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
-#: ../../addon.old/facebook/facebook.php:1222
-#: ../../addon.old/fbpost/fbpost.php:683
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
-msgstr "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier."
-
-#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
-#: ../../addon.old/facebook/facebook.php:1223
-#: ../../addon.old/fbpost/fbpost.php:684
-msgid "Facebook connection became invalid"
-msgstr "La connexion Facebook est devenue invalide"
-
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
-#: ../../addon.old/facebook/facebook.php:1224
-#: ../../addon.old/fbpost/fbpost.php:685
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr "Bonjour %1$s,\n\nLa connexion entre vos comptes sur %2$s et Facebook est devenue invalide. Ceci arrive généralement lorsque vous changez de mot de passe Facebook. Pour réactiver cette connexion, vous devrez %3$sré-authentifier le connecteur Facebook%4$s."
-
-#: ../../addon/snautofollow/snautofollow.php:32
-#: ../../addon.old/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
-msgstr "Réglages de suivi automatique sur StatusNet mis à jour."
-
-#: ../../addon/snautofollow/snautofollow.php:56
-#: ../../addon.old/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
-msgstr "Réglages de suivi automatique sur StatusNet"
-
-#: ../../addon/snautofollow/snautofollow.php:58
-#: ../../addon.old/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
-msgstr "Suivre automatiquement les personnes qui vous suivent ou vous mentionnent sur Statusnet"
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
-msgid "Lifetime of the cache (in hours)"
-msgstr "Durée de vie du cache (en heures)"
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
-msgid "Cache Statistics"
-msgstr "Statistiques du cache"
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
-msgid "Number of items"
-msgstr "Nombre d'éléments"
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
-msgid "Size of the cache"
-msgstr "Taille du cache"
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
-msgid "Delete the whole cache"
-msgstr "Vider le cache"
-
-#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
-msgid "Facebook Post disabled"
-msgstr "Publications Facebook désactivées"
-
-#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
-msgid "Facebook Post"
-msgstr "Publications Facebook"
-
-#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
-msgid "Install Facebook Post connector for this account."
-msgstr "Installer le connecteur Facebook pour ce compte."
-
-#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
-msgid "Remove Facebook Post connector"
-msgstr "Retirer le connecteur Facebook"
-
-#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
-msgid "Facebook Post Settings"
-msgstr "Réglages Facebook"
-
-#: ../../addon/widgets/widget_like.php:58
-#: ../../addon.old/widgets/widget_like.php:58
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] "%d personne aime ça"
-msgstr[1] "%d personnes aiment ça"
-
-#: ../../addon/widgets/widget_like.php:61
-#: ../../addon.old/widgets/widget_like.php:61
-#, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] "%d personne n'aime pas ça"
-msgstr[1] "%d personnes n'aiment pas ça"
-
-#: ../../addon/widgets/widget_friendheader.php:40
-#: ../../addon.old/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
-msgstr "Ajoutez-vous à cette liste!"
-
-#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
-msgid "Generate new key"
-msgstr "Générer une nouvelle clé"
-
-#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
-msgid "Widgets key"
-msgstr "Clé des widgets"
-
-#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
-msgid "Widgets available"
-msgstr "Widgets disponibles"
-
-#: ../../addon/widgets/widget_friends.php:40
-#: ../../addon.old/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
-msgstr "Se connecter sur Friendica!"
-
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr "faire un coup de pute"
-
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslapped"
-msgstr "a fait un coup de pute à"
-
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shag"
-msgstr "niquer"
-
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr "a niqué"
-
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "do something obscenely biological to"
-msgstr ""
-
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "did something obscenely biological to"
-msgstr ""
-
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "point out the poke feature to"
-msgstr "indiquer les sollicitations"
-
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "pointed out the poke feature to"
-msgstr "a indiqué les sollicitations à"
-
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declare undying love for"
-msgstr "déclarer sa flamme"
-
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declared undying love for"
-msgstr "a déclaré sa flamme à"
-
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patent"
-msgstr "faire breveter"
-
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patented"
-msgstr "a fait breveter"
-
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroke beard"
-msgstr "frotter sa barbe"
-
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroked their beard at"
-msgstr "a frotté sa barbe sur"
-
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoan the declining standards of modern secondary and tertiary education to"
-msgstr "se lamenter sur les valeurs qui se perdent"
-
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoans the declining standards of modern secondary and tertiary education "
-"to"
-msgstr "s'est lamenté du lent déclin des valeurs auprès de"
-
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hug"
-msgstr "faire un calin"
-
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hugged"
-msgstr "a fait un câlin à"
-
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kiss"
-msgstr "embrasser"
-
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kissed"
-msgstr "a embrassé"
-
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raise eyebrows at"
-msgstr "hausser le sourcil"
-
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raised their eyebrows at"
-msgstr "a haussé le sourcil à "
-
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insult"
-msgstr "insulter"
-
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insulted"
-msgstr "a insulté"
-
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praise"
-msgstr "louer"
-
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praised"
-msgstr "a loué"
-
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "be dubious of"
-msgstr "trouver douteux"
-
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "was dubious of"
-msgstr "a trouvé douteux "
-
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "eat"
-msgstr "manger"
-
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "ate"
-msgstr "a mangé "
-
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggle and fawn at"
-msgstr "se payer la tête"
-
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggled and fawned at"
-msgstr "s'est payé la tête de"
-
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubt"
-msgstr "mettre en doute"
-
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubted"
-msgstr "a mis en doute "
-
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glare"
-msgstr "fixer"
-
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glared at"
-msgstr "a fixé"
-
-#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
-msgid "YourLS Settings"
-msgstr "Réglages de YourLS"
-
-#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
-msgid "URL: http://"
-msgstr "URL: http://"
-
-#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
-msgid "Username:"
-msgstr "Nom d'utilisateur"
-
-#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
-msgid "Password:"
-msgstr "Mot de passe :"
+#: ../../mod/settings.php:1126
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand:"
 
-#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
-msgid "Use SSL "
-msgstr "Utiliser SSL "
+#: ../../mod/settings.php:1127
+msgid "You receive an introduction"
+msgstr "Vous recevez une introduction"
 
-#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
-msgid "yourls Settings saved."
-msgstr "Réglages yourls sauvés."
+#: ../../mod/settings.php:1128
+msgid "Your introductions are confirmed"
+msgstr "Vos introductions sont confirmées"
 
-#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
-msgstr "Poster vers LiveJournal"
+#: ../../mod/settings.php:1129
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
-msgstr "Réglages LiveJournal"
+#: ../../mod/settings.php:1130
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un vous commente"
 
-#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
-msgstr "Activer \"Poster vers LiveJournal\""
-
-#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
-msgid "LiveJournal username"
-msgstr "Nom d'utilisateur LiveJournal"
-
-#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
-msgid "LiveJournal password"
-msgstr "Mot de passe"
-
-#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
-msgstr "Poster vers LiveJournal par défaut"
-
-#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
-msgstr "Réglages de \"NSFW\" (filtrage de contenu)"
-
-#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
-msgid ""
-"This plugin looks in posts for the words/text you specify below, and "
-"collapses any content containing those keywords so it is not displayed at "
-"inappropriate times, such as sexual innuendo that may be improper in a work "
-"setting. It is polite and recommended to tag any content containing nudity "
-"with #NSFW.  This filter can also match any other word/text you specify, and"
-" can thereby be used as a general purpose content filter."
-msgstr "Cette extension va parcourir les publications à la recherche des mots (ou phrases) que vous spécifierez ci-dessous, et repliera automatiquement tout contenu qui les contiendrait, afin de ne pas risquer de les afficher à un moment inopportun. Comme par exemple des messages à caractère sexuel dans un contexte professionnel. Il est globalement considéré comme correct et poli de \"tagguer\" toute publication contenant de la nudité avec #NSFW (Not Safe For Work - pas pour le boulot).    Ce filtre peut également fonctionner pour tout autre texte que vous spécifierez, et pourra ainsi être utilisé comme filtre de contenu générique."
-
-#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
-msgid "Enable Content filter"
-msgstr "Activer le filtrage de contenu"
-
-#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
-msgid "Comma separated list of keywords to hide"
-msgstr "Liste de mots-clés - séparés par des virgules - à cacher"
-
-#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
-msgid "Use /expression/ to provide regular expressions"
-msgstr "Utilisez /expression/ pour les expressions rationnelles"
-
-#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
-msgid "NSFW Settings saved."
-msgstr "Réglages NSFW sauvegardés."
-
-#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
-#, php-format
-msgid "%s - Click to open/close"
-msgstr "%s - cliquer pour ouvrir/fermer"
-
-#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
-#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
-msgid "Forums"
-msgstr "Forums"
-
-#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
-#: ../../addon.old/page/page.php:130
-#: ../../addon.old/forumlist/forumlist.php:94
-msgid "Forums:"
-msgstr "Forums:"
-
-#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
-msgid "Page settings updated."
-msgstr "Paramètres des pages mis à jour."
-
-#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
-msgid "Page Settings"
-msgstr "Paramètres des pages"
-
-#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
-msgid "How many forums to display on sidebar without paging"
-msgstr "Nombre de forums à afficher sur la barre de côté sans changer de page"
-
-#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
-msgid "Randomise Page/Forum list"
-msgstr "Rendre aléatoire la liste des pages/forums"
-
-#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
-msgid "Show pages/forums on profile page"
-msgstr "Montrer les forums sur le profil"
-
-#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
-msgid "Planets Settings"
-msgstr "Réglages des Planets"
-
-#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
-msgid "Enable Planets Plugin"
-msgstr "Activer Planets"
-
-#: ../../addon/forumdirectory/forumdirectory.php:22
-msgid "Forum Directory"
-msgstr ""
-
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34
-#: ../../addon/communityhome/twillingham/communityhome.php:28
-#: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:949
-#: ../../addon.old/communityhome/communityhome.php:28
-#: ../../addon.old/communityhome/communityhome.php:34
-#: ../../addon.old/communityhome/twillingham/communityhome.php:28
-#: ../../addon.old/communityhome/twillingham/communityhome.php:34
-msgid "Login"
-msgstr "Connexion"
+#: ../../mod/settings.php:1131
+msgid "You receive a private message"
+msgstr "Vous recevez un message privé"
 
-#: ../../addon/communityhome/communityhome.php:29
-#: ../../addon/communityhome/twillingham/communityhome.php:29
-#: ../../addon.old/communityhome/communityhome.php:29
-#: ../../addon.old/communityhome/twillingham/communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../../addon/communityhome/communityhome.php:38
-#: ../../addon/communityhome/twillingham/communityhome.php:38
-#: ../../addon.old/communityhome/communityhome.php:38
-#: ../../addon.old/communityhome/twillingham/communityhome.php:38
-msgid "Latest users"
-msgstr "Derniers utilisateurs"
+#: ../../mod/settings.php:1132
+msgid "You receive a friend suggestion"
+msgstr "Vous avez reçu une suggestion d'ami"
 
-#: ../../addon/communityhome/communityhome.php:81
-#: ../../addon/communityhome/twillingham/communityhome.php:81
-#: ../../addon.old/communityhome/communityhome.php:81
-#: ../../addon.old/communityhome/twillingham/communityhome.php:81
-msgid "Most active users"
-msgstr "Utilisateurs les plus actifs"
+#: ../../mod/settings.php:1133
+msgid "You are tagged in a post"
+msgstr "Vous avez été repéré dans une publication"
 
-#: ../../addon/communityhome/communityhome.php:98
-#: ../../addon.old/communityhome/communityhome.php:98
-msgid "Latest photos"
-msgstr "Dernières photos"
+#: ../../mod/settings.php:1134
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous avez été sollicité dans une publication"
 
-#: ../../addon/communityhome/communityhome.php:133
-#: ../../addon.old/communityhome/communityhome.php:133
-msgid "Latest likes"
-msgstr "Dernières approbations"
+#: ../../mod/settings.php:1137
+msgid "Advanced Account/Page Type Settings"
+msgstr "Paramètres avancés de compte/page"
 
-#: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:450 ../../include/text.php:1440
-#: ../../include/conversation.php:117 ../../include/conversation.php:245
-#: ../../addon.old/communityhome/communityhome.php:155
-msgid "event"
-msgstr "évènement"
+#: ../../mod/settings.php:1138
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifier le comportement de ce compte dans certaines situations"
 
-#: ../../addon/dav/common/wdcal_backend.inc.php:92
-#: ../../addon/dav/common/wdcal_backend.inc.php:166
-#: ../../addon/dav/common/wdcal_backend.inc.php:178
-#: ../../addon/dav/common/wdcal_backend.inc.php:206
-#: ../../addon/dav/common/wdcal_backend.inc.php:214
-#: ../../addon/dav/common/wdcal_backend.inc.php:229
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
-msgid "No access"
-msgstr "Pas d'accès"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:30
-#: ../../addon/dav/common/wdcal_edit.inc.php:738
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
-msgid "Could not open component for editing"
-msgstr "Échec d'ouverture de l'élément pour édition"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:140
-#: ../../addon/dav/friendica/layout.fnk.php:143
-#: ../../addon/dav/friendica/layout.fnk.php:422
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
-#: ../../addon.old/dav/friendica/layout.fnk.php:143
-#: ../../addon.old/dav/friendica/layout.fnk.php:422
-msgid "Go back to the calendar"
-msgstr "Revenir au calendrier"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:144
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
-msgid "Event data"
-msgstr "Données de l'évènement"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:146
-#: ../../addon/dav/friendica/main.php:239
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
-#: ../../addon.old/dav/friendica/main.php:239
-msgid "Calendar"
-msgstr "Calendrier"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:163
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
-msgid "Special color"
-msgstr "Couleur spéciale"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:169
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
-msgid "Subject"
-msgstr "Sujet"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:173
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
-msgid "Starts"
-msgstr "Début"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:178
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
-msgid "Ends"
-msgstr "Fin"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:185
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
-msgid "Description"
-msgstr "Description"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:188
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
-msgid "Recurrence"
-msgstr "Récurrence"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:190
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
-msgid "Frequency"
-msgstr "Fréquence"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:194
-#: ../../include/contact_selectors.php:59
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
-msgid "Daily"
-msgstr "Chaque jour"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "lien"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:197
-#: ../../include/contact_selectors.php:60
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
-msgid "Weekly"
-msgstr "Chaque semaine"
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "Réglages du contact appliqués."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:200
-#: ../../include/contact_selectors.php:61
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
-msgid "Monthly"
-msgstr "Chaque mois"
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "Impossible d'appliquer les réglages."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:203
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
-msgid "Yearly"
-msgstr "Par an"
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Contact introuvable."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:214
-#: ../../include/datetime.php:288
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
-msgid "days"
-msgstr "jours"
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "Réglages du réparateur de contacts"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:215
-#: ../../include/datetime.php:287
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
-msgid "weeks"
-msgstr "semaines"
+#: ../../mod/crepair.php:137
+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."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:216
-#: ../../include/datetime.php:286
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
-msgid "months"
-msgstr "mois"
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "une photo"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:217
-#: ../../include/datetime.php:285
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
-msgid "years"
-msgstr "ans"
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Retour à l'éditeur de contact"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "Interval"
-msgstr "Intervalle"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "All %select% %time%"
-msgstr ""
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:222
-#: ../../addon/dav/common/wdcal_edit.inc.php:260
-#: ../../addon/dav/common/wdcal_edit.inc.php:481
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
-msgid "Days"
-msgstr "Jours"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:231
-#: ../../addon/dav/common/wdcal_edit.inc.php:254
-#: ../../addon/dav/common/wdcal_edit.inc.php:270
-#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
-msgid "Sunday"
-msgstr "Dimanche"
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "Pseudo du compte"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:235
-#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
-msgid "Monday"
-msgstr "Lundi"
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@NomDuTag - prend le pas sur Nom/Pseudo"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
-msgid "Tuesday"
-msgstr "Mardi"
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "URL du compte"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
-msgid "Wednesday"
-msgstr "Mercredi"
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "Echec du téléversement de l'image."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
-msgid "Thursday"
-msgstr "Jeudi"
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "Accès public refusé."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
-msgid "Friday"
-msgstr "Vendredi"
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
-msgid "Saturday"
-msgstr "Samedi"
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "Téléverser des photos"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:297
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
-msgid "First day of week:"
-msgstr "Premier jour de la semaine :"
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "Nouvelle photo depuis cette URL"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:350
-#: ../../addon/dav/common/wdcal_edit.inc.php:373
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
-msgid "Day of month"
-msgstr "Jour du mois"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Pas de délégataire potentiel."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:354
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
-msgid "#num#th of each month"
-msgstr "Le #num# de chaque mois"
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:357
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
-msgid "#num#th-last of each month"
-msgstr ""
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Gestionnaires existants"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:360
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
-msgid "#num#th #wkday# of each month"
-msgstr ""
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Délégataires existants"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:363
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
-msgid "#num#th-last #wkday# of each month"
-msgstr ""
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Délégataires potentiels"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:372
-#: ../../addon/dav/friendica/layout.fnk.php:255
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
-#: ../../addon.old/dav/friendica/layout.fnk.php:255
-msgid "Month"
-msgstr "Mois"
+#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:377
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
-msgid "#num#th of the given month"
-msgstr ""
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Ajouter"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:380
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
-msgid "#num#th-last of the given month"
-msgstr ""
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:383
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
-msgid "#num#th #wkday# of the given month"
-msgstr ""
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Solliciter"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:386
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
-msgid "#num#th-last #wkday# of the given month"
-msgstr ""
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "solliciter (poke/...) quelqu'un"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:413
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
-msgid "Repeat until"
-msgstr "Répéter jusqu'à"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinataire"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:417
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
-msgid "Infinite"
-msgstr "Infini"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisissez ce que vous voulez faire au destinataire"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:420
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
-msgid "Until the following date"
-msgstr "Jusqu'à cette date"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendez ce message privé"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:423
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
-msgid "Number of times"
-msgstr "Nombre de fois"
+#: ../../mod/dfrn_confirm.php:119
+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é."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:429
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
-msgid "Exceptions"
-msgstr "Exceptions"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Réponse du site distant incomprise."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:432
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
-msgid "none"
-msgstr "aucun"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Réponse inattendue du site distant: "
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:449
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
-msgid "Notification"
-msgstr "Notification"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Confirmation achevée avec succès."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:466
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
-msgid "Notify by"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Alerte du site distant: "
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:469
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
-msgid "E-Mail"
-msgstr "Courriel"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Échec temporaire. Merci de recommencer ultérieurement."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:470
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
-msgid "On Friendica / Display"
-msgstr "Sur Friendica / Afficher"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:474
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
-msgid "Time"
-msgstr "Heure"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:478
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
-msgid "Hours"
-msgstr "Heures"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:479
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
-msgid "Minutes"
-msgstr "Minutes"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:480
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
-msgid "Seconds"
-msgstr "Secondes"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:482
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
-msgid "Weeks"
-msgstr "Semaines"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:485
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
-msgid "before the"
-msgstr "avant le"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:486
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
-msgid "start of the event"
-msgstr "début de l'événement"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:487
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
-msgid "end of the event"
-msgstr "fin de l'événement"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:492
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
-msgid "Add a notification"
-msgstr "Ajouter une notification"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:687
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
-msgid "The event #name# will start at #date"
-msgstr "L'événement #name# commencera le #date#"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:696
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
-msgid "#name# is about to begin."
-msgstr "#name# va commencer"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:769
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
-msgid "Saved"
-msgstr "Sauvegardé"
-
-#: ../../addon/dav/common/wdcal_configuration.php:148
-#: ../../addon.old/dav/common/wdcal_configuration.php:148
-msgid "U.S. Time Format (mm/dd/YYYY)"
-msgstr "Date au format américain (mm/jj/AAAA)"
-
-#: ../../addon/dav/common/wdcal_configuration.php:243
-#: ../../addon.old/dav/common/wdcal_configuration.php:243
-msgid "German Time Format (dd.mm.YYYY)"
-msgstr "Date au format européen (jj.mm.AAAA)"
-
-#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
-#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
-msgid "Private Events"
-msgstr "Événements privés."
-
-#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
-#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
-msgid "Private Addressbooks"
-msgstr "Carnets d'adresses privés"
-
-#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-msgid "Friendica-Native events"
-msgstr "Événements natifs de Friendica"
-
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-msgid "Friendica-Contacts"
-msgstr "Contacts Friendica"
-
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-msgid "Your Friendica-Contacts"
-msgstr "Vos contacts Friendica"
-
-#: ../../addon/dav/friendica/layout.fnk.php:99
-#: ../../addon/dav/friendica/layout.fnk.php:136
-#: ../../addon.old/dav/friendica/layout.fnk.php:99
-#: ../../addon.old/dav/friendica/layout.fnk.php:136
-msgid ""
-"Something went wrong when trying to import the file. Sorry. Maybe some "
-"events were imported anyway."
-msgstr "Désolé, l'importation du fichier s'est mal passée. Toutefois, il se peut que certains événements aient tout de même été importés."
-
-#: ../../addon/dav/friendica/layout.fnk.php:131
-#: ../../addon.old/dav/friendica/layout.fnk.php:131
-msgid "Something went wrong when trying to import the file. Sorry."
-msgstr "Désolé, l'importation du fichier s'est mal passée."
-
-#: ../../addon/dav/friendica/layout.fnk.php:134
-#: ../../addon.old/dav/friendica/layout.fnk.php:134
-msgid "The ICS-File has been imported."
-msgstr "Le fichier ICS a été importé."
-
-#: ../../addon/dav/friendica/layout.fnk.php:138
-#: ../../addon.old/dav/friendica/layout.fnk.php:138
-msgid "No file was uploaded."
-msgstr "Aucun fichier n'a été téléchargé."
-
-#: ../../addon/dav/friendica/layout.fnk.php:147
-#: ../../addon.old/dav/friendica/layout.fnk.php:147
-msgid "Import a ICS-file"
-msgstr "Importer un fichier ICS"
-
-#: ../../addon/dav/friendica/layout.fnk.php:150
-#: ../../addon.old/dav/friendica/layout.fnk.php:150
-msgid "ICS-File"
-msgstr "Fichier ICS"
-
-#: ../../addon/dav/friendica/layout.fnk.php:151
-#: ../../addon.old/dav/friendica/layout.fnk.php:151
-msgid "Overwrite all #num# existing events"
-msgstr "Écraser les #num# événements existants"
-
-#: ../../addon/dav/friendica/layout.fnk.php:228
-#: ../../addon.old/dav/friendica/layout.fnk.php:228
-msgid "New event"
-msgstr "Nouvel événement"
-
-#: ../../addon/dav/friendica/layout.fnk.php:232
-#: ../../addon.old/dav/friendica/layout.fnk.php:232
-msgid "Today"
-msgstr "Aujourd'hui"
-
-#: ../../addon/dav/friendica/layout.fnk.php:241
-#: ../../addon.old/dav/friendica/layout.fnk.php:241
-msgid "Day"
-msgstr "Jour"
-
-#: ../../addon/dav/friendica/layout.fnk.php:248
-#: ../../addon.old/dav/friendica/layout.fnk.php:248
-msgid "Week"
-msgstr "Semaine"
-
-#: ../../addon/dav/friendica/layout.fnk.php:260
-#: ../../addon.old/dav/friendica/layout.fnk.php:260
-msgid "Reload"
-msgstr "Recharger"
-
-#: ../../addon/dav/friendica/layout.fnk.php:271
-#: ../../addon.old/dav/friendica/layout.fnk.php:271
-msgid "Date"
-msgstr "Date"
-
-#: ../../addon/dav/friendica/layout.fnk.php:313
-#: ../../addon.old/dav/friendica/layout.fnk.php:313
-msgid "Error"
-msgstr "Erreur"
-
-#: ../../addon/dav/friendica/layout.fnk.php:380
-#: ../../addon.old/dav/friendica/layout.fnk.php:380
-msgid "The calendar has been updated."
-msgstr "Le calendrier a été mis à jour."
-
-#: ../../addon/dav/friendica/layout.fnk.php:393
-#: ../../addon.old/dav/friendica/layout.fnk.php:393
-msgid "The new calendar has been created."
-msgstr "Le nouveau calendrier a été créé."
-
-#: ../../addon/dav/friendica/layout.fnk.php:417
-#: ../../addon.old/dav/friendica/layout.fnk.php:417
-msgid "The calendar has been deleted."
-msgstr "Le calendrier a été détruit."
-
-#: ../../addon/dav/friendica/layout.fnk.php:424
-#: ../../addon.old/dav/friendica/layout.fnk.php:424
-msgid "Calendar Settings"
-msgstr "Paramètres du calendrier"
-
-#: ../../addon/dav/friendica/layout.fnk.php:430
-#: ../../addon.old/dav/friendica/layout.fnk.php:430
-msgid "Date format"
-msgstr "Format de la date"
-
-#: ../../addon/dav/friendica/layout.fnk.php:439
-#: ../../addon.old/dav/friendica/layout.fnk.php:439
-msgid "Time zone"
-msgstr "Fuseau horaire"
-
-#: ../../addon/dav/friendica/layout.fnk.php:445
-#: ../../addon.old/dav/friendica/layout.fnk.php:445
-msgid "Calendars"
-msgstr "Calendriers."
-
-#: ../../addon/dav/friendica/layout.fnk.php:487
-#: ../../addon.old/dav/friendica/layout.fnk.php:487
-msgid "Create a new calendar"
-msgstr "Créer un nouveau calendrier."
-
-#: ../../addon/dav/friendica/layout.fnk.php:496
-#: ../../addon.old/dav/friendica/layout.fnk.php:496
-msgid "Limitations"
-msgstr "Limitations"
-
-#: ../../addon/dav/friendica/layout.fnk.php:500
-#: ../../addon/libravatar/libravatar.php:82
-#: ../../addon.old/dav/friendica/layout.fnk.php:500
-#: ../../addon.old/libravatar/libravatar.php:82
-msgid "Warning"
-msgstr "Avertissement"
-
-#: ../../addon/dav/friendica/layout.fnk.php:504
-#: ../../addon.old/dav/friendica/layout.fnk.php:504
-msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
-msgstr "Synchronisation (Iphone, Thunderbird Lightning, Android, ...)"
-
-#: ../../addon/dav/friendica/layout.fnk.php:511
-#: ../../addon.old/dav/friendica/layout.fnk.php:511
-msgid "Synchronizing this calendar with the iPhone"
-msgstr "Synchronisation avec l'Iphone en cours"
-
-#: ../../addon/dav/friendica/layout.fnk.php:522
-#: ../../addon.old/dav/friendica/layout.fnk.php:522
-msgid "Synchronizing your Friendica-Contacts with the iPhone"
-msgstr "Synchronisation de vos contacts Friendica avec l'Iphone en cours"
-
-#: ../../addon/dav/friendica/main.php:202
-#: ../../addon.old/dav/friendica/main.php:202
-msgid ""
-"The current version of this plugin has not been set up correctly. Please "
-"contact the system administrator of your installation of friendica to fix "
-"this."
-msgstr "La version actuelle de cette extension n'a pas été configurée correctement. Merci de contacter votre administrateur Friendica pour régler ce problème. "
-
-#: ../../addon/dav/friendica/main.php:242
-#: ../../addon.old/dav/friendica/main.php:242
-msgid "Extended calendar with CalDAV-support"
-msgstr "Calendrier étendu avec support CalDAV"
-
-#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
-#: ../../include/enotify.php:28 ../../include/notifier.php:778
-#: ../../addon.old/dav/friendica/main.php:279
-#: ../../addon.old/dav/friendica/main.php:280
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Introduction échouée ou annulée."
 
-#: ../../addon/dav/friendica/main.php:282
-#: ../../addon.old/dav/friendica/main.php:282
-msgid "Notification: "
-msgstr "Notification :"
-
-#: ../../addon/dav/friendica/main.php:309
-#: ../../addon.old/dav/friendica/main.php:309
-msgid "The database tables have been installed."
-msgstr "Les tables de la base de données ont été installées."
-
-#: ../../addon/dav/friendica/main.php:310
-#: ../../addon.old/dav/friendica/main.php:310
-msgid "An error occurred during the installation."
-msgstr "Une erreur est survenue lors de l'installation."
-
-#: ../../addon/dav/friendica/main.php:316
-#: ../../addon.old/dav/friendica/main.php:316
-msgid "The database tables have been updated."
-msgstr "Les tables de la base de données ont été mises à jour."
-
-#: ../../addon/dav/friendica/main.php:317
-#: ../../addon.old/dav/friendica/main.php:317
-msgid "An error occurred during the update."
-msgstr "Une erreur est survenue lors de la mise à jour."
-
-#: ../../addon/dav/friendica/main.php:333
-#: ../../addon.old/dav/friendica/main.php:333
-msgid "No system-wide settings yet."
-msgstr "Pas de paramètres globaux pour l'instant."
-
-#: ../../addon/dav/friendica/main.php:336
-#: ../../addon.old/dav/friendica/main.php:336
-msgid "Database status"
-msgstr "Etat de la base de données"
-
-#: ../../addon/dav/friendica/main.php:339
-#: ../../addon.old/dav/friendica/main.php:339
-msgid "Installed"
-msgstr "Installé"
-
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade needed"
-msgstr "Mise à jour nécessaire"
-
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid ""
-"Please back up all calendar data (the tables beginning with dav_*) before "
-"proceeding. While all calendar events <i>should</i> be converted to the new "
-"database structure, it's always safe to have a backup. Below, you can have a"
-" look at the database-queries that will be made when pressing the "
-"'update'-button."
-msgstr "Merci de sauvegarder toutes les données calendaires (les tables commençant par dav_*) avant de continuer. Bien que les évènements du calendrier <i>doivent</i> tous être convertis à la nouvelle structure, ça ne fait pas de mal d'avoir une sauvegarder. Ci-dessous, vous pouvez voir les requêtes qui seront faites lorsque vous lancerez la mise-à-jour."
-
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade"
-msgstr "Mettre à jour"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Impossible de définir la photo du contact."
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Not installed"
-msgstr "Non installé"
-
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Install"
-msgstr "Installer"
-
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid "Unknown"
-msgstr "Inconnu"
-
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid ""
-"Something really went wrong. I cannot recover from this state automatically,"
-" sorry. Please go to the database backend, back up the data, and delete all "
-"tables beginning with 'dav_' manually. Afterwards, this installation routine"
-" should be able to reinitialize the tables automatically."
-msgstr "Quelque-chose a vraiment déconné. Je ne vais pas pouvoir me rétablir automatiquement, désolé. Merci de contacter directement votre base de données, de sauvegarder les données, et de supprimer toutes les tables qui commencent par 'dav_' à l main. Puis, la routine d'installation devrait être en mesure de réinitialiser ces tables automatiquement."
-
-#: ../../addon/dav/friendica/main.php:355
-#: ../../addon.old/dav/friendica/main.php:355
-msgid "Troubleshooting"
-msgstr "Dépannage"
-
-#: ../../addon/dav/friendica/main.php:356
-#: ../../addon.old/dav/friendica/main.php:356
-msgid "Manual creation of the database tables:"
-msgstr "Création manuelle des tables de la base de données :"
-
-#: ../../addon/dav/friendica/main.php:357
-#: ../../addon.old/dav/friendica/main.php:357
-msgid "Show SQL-statements"
-msgstr "Montrer les requêtes SQL"
-
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
-msgid "Private Calendar"
-msgstr "Calendrier privé"
-
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
-msgid "Friendica Events: Mine"
-msgstr "Evénements Friendica : Personnels"
-
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
-msgid "Friendica Events: Contacts"
-msgstr "Evénements Friendica : Contacts"
-
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
-msgid "Private Addresses"
-msgstr "Adresses privées"
-
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
-msgid "Friendica Contacts"
-msgstr "Contacts Friendica"
-
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
-#, php-format
-msgid ""
-"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud). See <a "
-"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
-" WebFinger</a>"
-msgstr "Permet l'utilisation de votre ID Friendica (%s) pour vous connecter à des sites compatibles \"unhosted\" (comme ownCloud). Voyez <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
-
-#: ../../addon/uhremotestorage/uhremotestorage.php:85
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
-msgstr "Modèle d'URL (avec {catégorie})"
-
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
-msgstr "URL OAuth"
-
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
-msgstr "Type d'API"
-
-#: ../../addon/membersince/membersince.php:18
-#: ../../addon.old/membersince/membersince.php:18
-msgid "Member since:"
-msgstr "Membre depuis:"
-
-#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Morpion en trois dimensions"
-
-#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "Morpion 3D"
-
-#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
-msgid "New game"
-msgstr "Nouvelle partie"
-
-#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "Nouvelle partie avec handicap"
-
-#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr "Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur plusieurs étages en même temps."
-
-#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
-msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr "Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant trois coups dans n'importe quel étage, ainsi que verticalement ou en diagonale entre les étages."
-
-#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
-msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr "Le handicap interdit la position centrale de l'étage du milieu, parce que le joueur qui prend cette case obtient souvent un avantage."
-
-#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "À vous de jouer..."
-
-#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "Je commence..."
-
-#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
-msgid "You won!"
-msgstr "Vous avez gagné!"
-
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "Match nul!"
-
-#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
-msgid "I won!"
-msgstr "J'ai gagné!"
-
-#: ../../addon/randplace/randplace.php:169
-#: ../../addon.old/randplace/randplace.php:169
-msgid "Randplace Settings"
-msgstr "Réglages de Randplace"
-
-#: ../../addon/randplace/randplace.php:171
-#: ../../addon.old/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
-msgstr "Activer l'extension Randplace"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Pas d'utilisateur trouvé pour '%s' "
 
-#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
-msgstr "Poster vers Dreamwidth"
-
-#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
-msgstr "Réglages Dreamwidth"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Notre clé de chiffrement de site est apparemment corrompue."
 
-#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
-msgstr "Activer \"Poster vers Dreamwidth\""
-
-#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
-msgid "dreamwidth username"
-msgstr "Nom d'utilisateur Dreamwidth"
-
-#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
-msgid "dreamwidth password"
-msgstr "Mot de passe"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "URL de site absente ou indéchiffrable."
 
-#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
-msgstr "Poster vers Dreamwidth par défaut"
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Pas d'entrée pour ce contact sur notre site."
 
-#: ../../addon/remote_permissions/remote_permissions.php:44
-msgid "Remote Permissions Settings"
-msgstr "Permissions distantes"
-
-#: ../../addon/remote_permissions/remote_permissions.php:45
-msgid ""
-"Allow recipients of your private posts to see the other recipients of the "
-"posts"
-msgstr "Autoriser les destinataires de vos messages privés a voir les autres destinataires du message"
+#: ../../mod/dfrn_confirm.php:618
+#, 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."
 
-#: ../../addon/remote_permissions/remote_permissions.php:57
-msgid "Remote Permissions settings updated."
-msgstr "Permissions distantes mises-à-jour."
-
-#: ../../addon/remote_permissions/remote_permissions.php:177
-msgid "Visible to"
-msgstr "Visibilité"
-
-#: ../../addon/remote_permissions/remote_permissions.php:177
-msgid "may only be a partial list"
-msgstr "peut être une liste partielle"
-
-#: ../../addon/remote_permissions/remote_permissions.php:196
-msgid "Global"
-msgstr "Global"
-
-#: ../../addon/remote_permissions/remote_permissions.php:196
-msgid "The posts of every user on this server show the post recipients"
-msgstr "Les publications de tous les utilisateurs de ce serveur afficheront leurs destinataires"
-
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "Individual"
-msgstr "Individuel"
-
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "Each user chooses whether his/her posts show the post recipients"
-msgstr "Chaque utilisateur du serveur pourra choisir si ses publications affichent leurs destinataires"
-
-#: ../../addon/startpage/startpage.php:83
-#: ../../addon.old/startpage/startpage.php:83
-msgid "Startpage Settings"
-msgstr "Paramètres de la page d'accueil"
-
-#: ../../addon/startpage/startpage.php:85
-#: ../../addon.old/startpage/startpage.php:85
-msgid "Home page to load after login  - leave blank for profile wall"
-msgstr "Page d'accueil à charger après authentification - laisser ce champ vide pour charger votre mur"
-
-#: ../../addon/startpage/startpage.php:88
-#: ../../addon.old/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
-msgstr "Exemples : &quot;network&quot; ou &quot;notifications/system&quot;"
-
-#: ../../addon/geonames/geonames.php:143
-#: ../../addon.old/geonames/geonames.php:143
-msgid "Geonames settings updated."
-msgstr "Réglages Geonames sauvés."
-
-#: ../../addon/geonames/geonames.php:179
-#: ../../addon.old/geonames/geonames.php:179
-msgid "Geonames Settings"
-msgstr "Réglages Geonames"
-
-#: ../../addon/geonames/geonames.php:181
-#: ../../addon.old/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
-msgstr "Activer Geonames"
-
-#: ../../addon/public_server/public_server.php:126
-#: ../../addon/testdrive/testdrive.php:94
-#: ../../addon.old/public_server/public_server.php:126
-#: ../../addon.old/testdrive/testdrive.php:94
-#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr "Votre compte chez %s va expirer dans quelques jours."
-
-#: ../../addon/public_server/public_server.php:127
-#: ../../addon.old/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
-msgstr "Votre compte sur Friendica est sur le point d'expirer."
-
-#: ../../addon/public_server/public_server.php:128
-#: ../../addon.old/public_server/public_server.php:128
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
-msgstr "Bonjour %1$s,\n\nVotre compte sur %2$s expirera dans moins de cinq jours. Vous pouvez conserver ce compte en vous y connectant au moins une fois par mois."
-
-#: ../../addon/js_upload/js_upload.php:43
-#: ../../addon.old/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "Téléverser un fichier"
-
-#: ../../addon/js_upload/js_upload.php:44
-#: ../../addon.old/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "Déposer des fichiers ici pour les téléverser"
-
-#: ../../addon/js_upload/js_upload.php:46
-#: ../../addon.old/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "Échec"
-
-#: ../../addon/js_upload/js_upload.php:303
-#: ../../addon.old/js_upload/js_upload.php:297
-msgid "No files were uploaded."
-msgstr "Aucun fichier n'a été téléversé."
-
-#: ../../addon/js_upload/js_upload.php:309
-#: ../../addon.old/js_upload/js_upload.php:303
-msgid "Uploaded file is empty"
-msgstr "Le fichier téléversé est vide"
-
-#: ../../addon/js_upload/js_upload.php:332
-#: ../../addon.old/js_upload/js_upload.php:326
-msgid "File has an invalid extension, it should be one of "
-msgstr "Le fichier a une extension invalide, elle devrait être parmi "
-
-#: ../../addon/js_upload/js_upload.php:343
-#: ../../addon.old/js_upload/js_upload.php:337
-msgid "Upload was cancelled, or server error encountered"
-msgstr "Téléversement annulé, ou erreur de serveur"
-
-#: ../../addon/forumlist/forumlist.php:63
-#: ../../addon.old/forumlist/forumlist.php:63
-msgid "show/hide"
-msgstr "Montrer/cacher"
-
-#: ../../addon/forumlist/forumlist.php:77
-#: ../../addon.old/forumlist/forumlist.php:77
-msgid "No forum subscriptions"
-msgstr "Pas d'abonnement au forum"
-
-#: ../../addon/forumlist/forumlist.php:131
-#: ../../addon.old/forumlist/forumlist.php:131
-msgid "Forumlist settings updated."
-msgstr "Paramètres de la liste des forums mis à jour."
-
-#: ../../addon/forumlist/forumlist.php:159
-#: ../../addon.old/forumlist/forumlist.php:159
-msgid "Forumlist Settings"
-msgstr "Paramètres de la liste des forums"
-
-#: ../../addon/forumlist/forumlist.php:161
-#: ../../addon.old/forumlist/forumlist.php:161
-msgid "Randomise forum list"
-msgstr "Mélanger la liste de forums"
-
-#: ../../addon/forumlist/forumlist.php:164
-#: ../../addon.old/forumlist/forumlist.php:164
-msgid "Show forums on profile page"
-msgstr "Montrer les forums sur le profil"
-
-#: ../../addon/forumlist/forumlist.php:167
-#: ../../addon.old/forumlist/forumlist.php:167
-msgid "Show forums on network page"
-msgstr ""
-
-#: ../../addon/impressum/impressum.php:37
-#: ../../addon.old/impressum/impressum.php:37
-msgid "Impressum"
-msgstr "Impressum"
-
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:52
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:52
-#: ../../addon.old/impressum/impressum.php:84
-msgid "Site Owner"
-msgstr "Propriétaire du site"
-
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:88
-msgid "Email Address"
-msgstr "Adresse courriel"
-
-#: ../../addon/impressum/impressum.php:55
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:55
-#: ../../addon.old/impressum/impressum.php:86
-msgid "Postal Address"
-msgstr "Adresse postale"
-
-#: ../../addon/impressum/impressum.php:61
-#: ../../addon.old/impressum/impressum.php:61
-msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr "L'extension \"Impressum\" (ou <em>ours</em>) n'est pas configuré!<br />Merci d'ajouter au moins la variable <tt>owner</tt> à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension."
-
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:84
-msgid "The page operators name."
-msgstr "Le nom de l'administrateur de la page."
-
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Site Owners Profile"
-msgstr "Profil des propriétaires du site"
-
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Profile address of the operator."
-msgstr "L'adresse de profil de l'administrateur."
-
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:86
-msgid "How to contact the operator via snail mail. You can use BBCode here."
-msgstr "Comment contacter l'administrateur par courrier postal. Vous pouvez utiliser du BBCode."
-
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid "Notes"
-msgstr "Notes"
-
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid ""
-"Additional notes that are displayed beneath the contact information. You can"
-" use BBCode here."
-msgstr "Notes additionnelles à afficher sous les informations de contact. Vous pouvez utiliser du BBCode."
-
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:88
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
-msgstr "Comment contacter l'administrateur par courriel. (sera camouflée)"
-
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Footer note"
-msgstr "Note de bas de page"
-
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Text for the footer. You can use BBCode here."
-msgstr "Texte du pied de page. Vous pouvez utiliser du BBCode."
-
-#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr "Signaler un bug"
-
-#: ../../addon/notimeline/notimeline.php:32
-#: ../../addon.old/notimeline/notimeline.php:32
-msgid "No Timeline settings updated."
-msgstr "Pas de mise à jour de paramètres du calendrier."
-
-#: ../../addon/notimeline/notimeline.php:56
-#: ../../addon.old/notimeline/notimeline.php:56
-msgid "No Timeline Settings"
-msgstr "Pas de paramètres de calendrier"
-
-#: ../../addon/notimeline/notimeline.php:58
-#: ../../addon.old/notimeline/notimeline.php:58
-msgid "Disable Archive selector on profile wall"
-msgstr "Désactiver le sélecteur d'archives sur le mur"
-
-#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
-msgstr "Réglages de Blockem"
-
-#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
-msgstr "Liste d'URLS de profils à bloquer, séparés par des virgules"
-
-#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
-msgstr "Réglages Blockem sauvés."
-
-#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
-#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr "Bloqué %s - Cliquez pour ouvrir/fermer"
-
-#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr "Débloquer l'auteur"
-
-#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
-msgid "Block Author"
-msgstr "Bloquer l'auteur"
-
-#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
-msgid "blockem settings updated"
-msgstr "Réglages blockem sauvés"
-
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ":-)"
-
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ":-("
-
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid "lol"
-msgstr "mdr"
-
-#: ../../addon/qcomment/qcomment.php:54
-#: ../../addon.old/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr "Réglages de Quick Comment"
-
-#: ../../addon/qcomment/qcomment.php:56
-#: ../../addon.old/qcomment/qcomment.php:56
-msgid ""
-"Quick comments are found near comment boxes, sometimes hidden. Click them to"
-" provide simple replies."
-msgstr "Les commentaires rapides peuvent être trouvés à proximité des boîtes de commentaire, parfois cachés. Cliquez dessus pour fournir des réponses simples et lapidaires."
-
-#: ../../addon/qcomment/qcomment.php:57
-#: ../../addon.old/qcomment/qcomment.php:57
-msgid "Enter quick comments, one per line"
-msgstr "Entrez les réponses rapides, une par ligne"
-
-#: ../../addon/qcomment/qcomment.php:75
-#: ../../addon.old/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
-msgstr "Réglages de Quick Comment sauvés."
-
-#: ../../addon/openstreetmap/openstreetmap.php:71
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid "Tile Server URL"
-msgstr "URL du serveur de tuiles"
-
-#: ../../addon/openstreetmap/openstreetmap.php:71
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr "Une liste de <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">serveurs de tuiles publics</a>"
-
-#: ../../addon/openstreetmap/openstreetmap.php:72
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "Default zoom"
-msgstr "Zoom par défaut"
-
-#: ../../addon/openstreetmap/openstreetmap.php:72
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "The default zoom level. (1:world, 18:highest)"
-msgstr "Le niveau de zoom affiché par défaut. (1: monde entier, 18: détail maximum)"
-
-#: ../../addon/group_text/group_text.php:46
-#: ../../addon/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon.old/editplain/editplain.php:46
-msgid "Editplain settings updated."
-msgstr "Réglages editplain sauvés."
-
-#: ../../addon/group_text/group_text.php:76
-#: ../../addon.old/group_text/group_text.php:76
-msgid "Group Text"
-msgstr "Affichage textuel des groupes"
-
-#: ../../addon/group_text/group_text.php:78
-#: ../../addon.old/group_text/group_text.php:78
-msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
-msgstr "Utilisez un sélecteur de groupe purement textuel (sans image) dans le menu d'édition des groupes"
-
-#: ../../addon/libravatar/libravatar.php:14
-#: ../../addon.old/libravatar/libravatar.php:14
-msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
-msgstr "Libravatar n'a PAS pu être installé. <br>Il nécessite PHP >= 5.3"
-
-#: ../../addon/libravatar/libravatar.php:73
-#: ../../addon/gravatar/gravatar.php:71
-#: ../../addon.old/libravatar/libravatar.php:73
-#: ../../addon.old/gravatar/gravatar.php:71
-msgid "generic profile image"
-msgstr "image de profil générique"
-
-#: ../../addon/libravatar/libravatar.php:74
-#: ../../addon/gravatar/gravatar.php:72
-#: ../../addon.old/libravatar/libravatar.php:74
-#: ../../addon.old/gravatar/gravatar.php:72
-msgid "random geometric pattern"
-msgstr "motif géométrique aléatoire"
-
-#: ../../addon/libravatar/libravatar.php:75
-#: ../../addon/gravatar/gravatar.php:73
-#: ../../addon.old/libravatar/libravatar.php:75
-#: ../../addon.old/gravatar/gravatar.php:73
-msgid "monster face"
-msgstr "monstre"
-
-#: ../../addon/libravatar/libravatar.php:76
-#: ../../addon/gravatar/gravatar.php:74
-#: ../../addon.old/libravatar/libravatar.php:76
-#: ../../addon.old/gravatar/gravatar.php:74
-msgid "computer generated face"
-msgstr "généré par ordinateur"
-
-#: ../../addon/libravatar/libravatar.php:77
-#: ../../addon/gravatar/gravatar.php:75
-#: ../../addon.old/libravatar/libravatar.php:77
-#: ../../addon.old/gravatar/gravatar.php:75
-msgid "retro arcade style face"
-msgstr "vieux jeu d'arcade"
-
-#: ../../addon/libravatar/libravatar.php:83
-#: ../../addon.old/libravatar/libravatar.php:83
-#, php-format
-msgid "Your PHP version %s is lower than the required PHP >= 5.3."
-msgstr "La version de PHP doit être >= 5.3 ; la votre, %s, est antérieure. "
-
-#: ../../addon/libravatar/libravatar.php:84
-#: ../../addon.old/libravatar/libravatar.php:84
-msgid "This addon is not functional on your server."
-msgstr "Cette extension ne fonctionne pas sur votre serveur."
-
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid "Information"
-msgstr "Information"
-
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon.old/libravatar/libravatar.php:93
-msgid ""
-"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
-"Libravatar addon will fall back to Gravatar if nothing was found at "
-"Libravatar."
-msgstr "L'extension Gravatar est installée ; veuillez la désactiver. <br>L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé."
-
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Default avatar image"
-msgstr "Avatar par défaut"
-
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon.old/libravatar/libravatar.php:100
-msgid "Select default avatar image if none was found. See README"
-msgstr "Sélectionner une image d'avatar par défaut si aucune n'a été trouvée. Voir le fichier README"
-
-#: ../../addon/libravatar/libravatar.php:112
-#: ../../addon.old/libravatar/libravatar.php:112
-msgid "Libravatar settings updated."
-msgstr "Paramètres de Libravatar mis à jour."
-
-#: ../../addon/libertree/libertree.php:36
-#: ../../addon.old/libertree/libertree.php:36
-msgid "Post to libertree"
-msgstr "Publier sur libertree"
-
-#: ../../addon/libertree/libertree.php:67
-#: ../../addon.old/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr "Réglages des messages sur libertree"
-
-#: ../../addon/libertree/libertree.php:69
-#: ../../addon.old/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr "Activer le plugin de publication sur libertree"
-
-#: ../../addon/libertree/libertree.php:74
-#: ../../addon.old/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr "Clé de l'API libertree"
-
-#: ../../addon/libertree/libertree.php:79
-#: ../../addon.old/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr "URL du site libertree"
-
-#: ../../addon/libertree/libertree.php:84
-#: ../../addon.old/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr "Publier sur libertree par défaut"
-
-#: ../../addon/altpager/altpager.php:46
-#: ../../addon.old/altpager/altpager.php:46
-msgid "Altpager settings updated."
-msgstr "Paramètres d'Altpager mis à jour."
-
-#: ../../addon/altpager/altpager.php:79
-#: ../../addon.old/altpager/altpager.php:79
-msgid "Alternate Pagination Setting"
-msgstr "Paramètres de numérotation des pages"
-
-#: ../../addon/altpager/altpager.php:81
-#: ../../addon.old/altpager/altpager.php:81
-msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
-msgstr "Utiliser des liens vers \"plus récents\" et \"plus anciens\" au lieu de numéros de pages ?"
-
-#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
-msgid ""
-"The MathJax addon renders mathematical formulae written using the LaTeX "
-"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
-"your wall,network tab and private mail."
-msgstr "L'extension MathJax affiche les formules mathématiques écrites suivant la syntaxe LaTeX lorsqu'elles sont encadrés par les $$ habituels, ou dans un un bloc eqnarray. Ceci sur le mur, le Réseau et dans les messages privés."
-
-#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr "Utiliser le rendu MathJax"
-
-#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
-msgid "MathJax Base URL"
-msgstr "URL de base de MathJax"
-
-#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
-msgid ""
-"The URL for the javascript file that should be included to use MathJax. Can "
-"be either the MathJax CDN or another installation of MathJax."
-msgstr "L'URL du fichier Javascript qui doit être inclus pour utiliser MathJax. Ce peut être celle du CDN MathJax, ou bien de toute autre installation de MathJax."
-
-#: ../../addon/editplain/editplain.php:76
-#: ../../addon.old/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr "Réglages de editplain"
-
-#: ../../addon/editplain/editplain.php:78
-#: ../../addon.old/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr "Désactiver l'édition \"riche\""
-
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr "L'extension Libravatar est également installée. Veuillez désactiver celle-ci ou l'extension Gravatar. <br>L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé."
-
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr "Choisissez l'image de l'avatar par défaut si aucun n'est trouvé via Gravatar. Voir README"
-
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Rating of images"
-msgstr "Classe des avatars"
-
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Select the appropriate avatar rating for your site. See README"
-msgstr "Choisissez la classe des avatars appropriée pour votre site. Voir README"
-
-#: ../../addon/gravatar/gravatar.php:111
-#: ../../addon.old/gravatar/gravatar.php:111
-msgid "Gravatar settings updated."
-msgstr "Réglages Gravatar sauvés."
-
-#: ../../addon/testdrive/testdrive.php:95
-#: ../../addon.old/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
-msgstr "Votre compte de test Friendica est sur le point d'expirer."
-
-#: ../../addon/testdrive/testdrive.php:96
-#: ../../addon.old/testdrive/testdrive.php:96
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
-msgstr "Bonjour %1$s,\n\nVotre compte de test sur %2$s va expirer dans moins de cinq jours. Nous espérons que vous avez apprécié cette période d'essais, et que vous profiterez de l'occasion pour vous créer un compte permanent sur un serveur Friendica de votre choix. Une liste des serveurs Friendica ouverts au public peut être consultée sur http://dir.friendica.com/siteinfo - et pour plus d'information sur la meilleure manière de monter votre propre service Friendica, vous pouvez aller directement sur le site du projet http://friendica.com."
-
-#: ../../addon/pageheader/pageheader.php:50
-#: ../../addon.old/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr "Réglages de pageheader"
-
-#: ../../addon/pageheader/pageheader.php:68
-#: ../../addon.old/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
-msgstr "Réglages pageheader sauvés."
-
-#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr "Publier vers InsaneJournal"
-
-#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
-msgstr "Réglages InsaneJournal"
-
-#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr "Activer le connecteur InsaneJournal"
-
-#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
-msgstr "Utilisateur InsaneJournal"
-
-#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr "Mot de passe InsaneJournal"
-
-#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
-msgstr "Publier sur InsaneJournal par défaut"
-
-#: ../../addon/jappixmini/jappixmini.php:266
-#: ../../addon.old/jappixmini/jappixmini.php:266
-msgid "Jappix Mini addon settings"
-msgstr "Jappix Mini"
-
-#: ../../addon/jappixmini/jappixmini.php:268
-#: ../../addon.old/jappixmini/jappixmini.php:268
-msgid "Activate addon"
-msgstr "Activer"
+#: ../../mod/dfrn_confirm.php:638
+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."
 
-#: ../../addon/jappixmini/jappixmini.php:271
-#: ../../addon.old/jappixmini/jappixmini.php:271
-msgid ""
-"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
-msgstr "Ne <em>pas</em> insérer le widget JappixMini dans l'interface web"
-
-#: ../../addon/jappixmini/jappixmini.php:274
-#: ../../addon.old/jappixmini/jappixmini.php:274
-msgid "Jabber username"
-msgstr "Utilisateur Jabber"
-
-#: ../../addon/jappixmini/jappixmini.php:277
-#: ../../addon.old/jappixmini/jappixmini.php:277
-msgid "Jabber server"
-msgstr "Serveur Jabber"
-
-#: ../../addon/jappixmini/jappixmini.php:281
-#: ../../addon.old/jappixmini/jappixmini.php:281
-msgid "Jabber BOSH host"
-msgstr "Hôte BOSH (proxy) Jabber"
-
-#: ../../addon/jappixmini/jappixmini.php:285
-#: ../../addon.old/jappixmini/jappixmini.php:285
-msgid "Jabber password"
-msgstr "Mot de passe Jabber"
-
-#: ../../addon/jappixmini/jappixmini.php:290
-#: ../../addon.old/jappixmini/jappixmini.php:290
-msgid "Encrypt Jabber password with Friendica password (recommended)"
-msgstr "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)"
-
-#: ../../addon/jappixmini/jappixmini.php:293
-#: ../../addon.old/jappixmini/jappixmini.php:293
-msgid "Friendica password"
-msgstr "Mot de passe Friendica"
-
-#: ../../addon/jappixmini/jappixmini.php:296
-#: ../../addon.old/jappixmini/jappixmini.php:296
-msgid "Approve subscription requests from Friendica contacts automatically"
-msgstr "Approuver les contacts Friendica automatiquement"
-
-#: ../../addon/jappixmini/jappixmini.php:299
-#: ../../addon.old/jappixmini/jappixmini.php:299
-msgid "Subscribe to Friendica contacts automatically"
-msgstr "S'inscrire aux contacts Friendica automatiquement"
-
-#: ../../addon/jappixmini/jappixmini.php:302
-#: ../../addon.old/jappixmini/jappixmini.php:302
-msgid "Purge internal list of jabber addresses of contacts"
-msgstr "Purger la liste interne d'adresses Jabber"
-
-#: ../../addon/jappixmini/jappixmini.php:308
-#: ../../addon.old/jappixmini/jappixmini.php:308
-msgid "Add contact"
-msgstr "Ajouter un contact"
-
-#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
-msgid "View Source"
-msgstr "Voir la source"
-
-#: ../../addon/statusnet/statusnet.php:134
-#: ../../addon.old/statusnet/statusnet.php:134
-msgid "Post to StatusNet"
-msgstr "Poster sur StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:176
-#: ../../addon.old/statusnet/statusnet.php:176
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr "Merci de contacter l'administrateur du site.<br />L'URL d'API fournie est invalide."
-
-#: ../../addon/statusnet/statusnet.php:204
-#: ../../addon.old/statusnet/statusnet.php:204
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi."
-
-#: ../../addon/statusnet/statusnet.php:232
-#: ../../addon.old/statusnet/statusnet.php:232
-msgid "StatusNet settings updated."
-msgstr "Réglages StatusNet mis-à-jour."
-
-#: ../../addon/statusnet/statusnet.php:257
-#: ../../addon.old/statusnet/statusnet.php:257
-msgid "StatusNet Posting Settings"
-msgstr "Réglages du connecteur StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:271
-#: ../../addon.old/statusnet/statusnet.php:271
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "Clés OAuth StatusNet universelles"
-
-#: ../../addon/statusnet/statusnet.php:272
-#: ../../addon.old/statusnet/statusnet.php:272
-msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
-msgstr "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous)."
-
-#: ../../addon/statusnet/statusnet.php:280
-#: ../../addon.old/statusnet/statusnet.php:280
-msgid "Provide your own OAuth Credentials"
-msgstr "Fournissez vos propres paramètres OAuth"
-
-#: ../../addon/statusnet/statusnet.php:281
-#: ../../addon.old/statusnet/statusnet.php:281
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendica Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendica installation at your favorited StatusNet installation."
-msgstr "Pas de paire de clé trouvée pour StatusNet. Enregistrez votre compte Friendica comme un client \"desktop\" sur votre compte StatusNet, copiez la paire de clé ici et entrez la racine de l'API.<br />Avant d'enregistrer votre propre paire de clé, assurez-vous auprès de l'administrateur qu'il n'y a pas déjà une paire de clé pour cette instance de Friendica chez votre fournisseur StatusNet préféré."
-
-#: ../../addon/statusnet/statusnet.php:283
-#: ../../addon.old/statusnet/statusnet.php:283
-msgid "OAuth Consumer Key"
-msgstr "Clé de consommateur OAuth"
-
-#: ../../addon/statusnet/statusnet.php:286
-#: ../../addon.old/statusnet/statusnet.php:286
-msgid "OAuth Consumer Secret"
-msgstr "Secret d'utilisateur OAuth"
-
-#: ../../addon/statusnet/statusnet.php:289
-#: ../../addon.old/statusnet/statusnet.php:289
-msgid "Base API Path (remember the trailing /)"
-msgstr "Chemin de base de l'API (n'oubliez pas le / final)"
-
-#: ../../addon/statusnet/statusnet.php:310
-#: ../../addon.old/statusnet/statusnet.php:310
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles &lt;strong&gt;publics&lt;/strong&gt; seront postés sur StatusNet."
-
-#: ../../addon/statusnet/statusnet.php:311
-#: ../../addon.old/statusnet/statusnet.php:311
-msgid "Log in with StatusNet"
-msgstr "Se connecter à StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:313
-#: ../../addon.old/statusnet/statusnet.php:313
-msgid "Copy the security code from StatusNet here"
-msgstr "Coller le code de sécurité de StatusNet ici"
-
-#: ../../addon/statusnet/statusnet.php:319
-#: ../../addon.old/statusnet/statusnet.php:319
-msgid "Cancel Connection Process"
-msgstr "Annuler le processus de connexion"
-
-#: ../../addon/statusnet/statusnet.php:321
-#: ../../addon.old/statusnet/statusnet.php:321
-msgid "Current StatusNet API is"
-msgstr "L'API StatusNet courante est"
-
-#: ../../addon/statusnet/statusnet.php:322
-#: ../../addon.old/statusnet/statusnet.php:322
-msgid "Cancel StatusNet Connection"
-msgstr "Annuler la connexion à StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
-#: ../../addon.old/statusnet/statusnet.php:333
-#: ../../addon.old/twitter/twitter.php:189
-msgid "Currently connected to: "
-msgstr "Actuellement connecté à: "
-
-#: ../../addon/statusnet/statusnet.php:334
-#: ../../addon.old/statusnet/statusnet.php:334
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr "En cas d'activation, toutes vos notices <strong>publiques</strong> seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."
-
-#: ../../addon/statusnet/statusnet.php:336
-#: ../../addon.old/statusnet/statusnet.php:336
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to StatusNet will lead the visitor to a blank page "
-"informing the visitor that the access to your profile has been restricted."
-msgstr "<strong>Note</strong>: Du fait de vos réglages de vie privée (<em>Cacher les détails de votre profil des visiteurs inconnus?</em>), le lien potentiellement inclus dans les messages publics relayés vers StatusNet conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint."
-
-#: ../../addon/statusnet/statusnet.php:339
-#: ../../addon.old/statusnet/statusnet.php:339
-msgid "Allow posting to StatusNet"
-msgstr "Autoriser la publication sur StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:342
-#: ../../addon.old/statusnet/statusnet.php:342
-msgid "Send public postings to StatusNet by default"
-msgstr "Par défaut, envoyer les notices publiques à StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:345
-#: ../../addon.old/statusnet/statusnet.php:345
-msgid "Send linked #-tags and @-names to StatusNet"
-msgstr "Envoyer les liens vers les #-tags et les @-noms sur StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
-#: ../../addon.old/statusnet/statusnet.php:350
-#: ../../addon.old/twitter/twitter.php:206
-msgid "Clear OAuth configuration"
-msgstr "Effacer la configuration OAuth"
-
-#: ../../addon/statusnet/statusnet.php:677
-#: ../../addon.old/statusnet/statusnet.php:568
-msgid "API URL"
-msgstr "URL de l'API"
-
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
-msgstr "Générateur d'improbabilté infinie"
-
-#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
-msgid "Post to Tumblr"
-msgstr "Publier sur Tumblr"
-
-#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
-msgid "Tumblr Post Settings"
-msgstr "Réglages de Tumblr"
-
-#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
-msgid "Enable Tumblr Post Plugin"
-msgstr "Activer l'extension Tumblr"
-
-#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr "Login Tumblr"
-
-#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr "Mot de passe Tumblr"
-
-#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
-msgid "Post to Tumblr by default"
-msgstr "Publier sur Tumblr par défaut"
-
-#: ../../addon/numfriends/numfriends.php:46
-#: ../../addon.old/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
-msgstr "Réglages numfriends sauvés."
-
-#: ../../addon/numfriends/numfriends.php:77
-#: ../../addon.old/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
-msgstr "Réglages de numfriends"
-
-#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
-#: ../../addon.old/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr "Nombre de contacts à montrer sur le panneau latéral du profil"
-
-#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
-msgid "Gnot settings updated."
-msgstr "Réglages Gnot sauvés."
-
-#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
-msgid "Gnot Settings"
-msgstr "Réglages Gnot"
-
-#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
-msgid ""
-"Allows threading of email comment notifications on Gmail and anonymising the"
-" subject line."
-msgstr "Autorise l'arborescence des notifications de commentaires sur GMail, et rend la ligne 'Sujet' anonyme."
-
-#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
-msgid "Enable this plugin/addon?"
-msgstr "Activer cette extension?"
-
-#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d"
-msgstr "[Friendica:Notification] Commentaire sur la conversation #%d"
-
-#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr "Poster sur WordPress"
-
-#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr "Réglages WordPress"
-
-#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr "Activer l'extension WordPress"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Impossible de vous définir des permissions sur notre système."
 
-#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr "Utilisateur WordPress"
+#: ../../mod/dfrn_confirm.php:716
+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"
 
-#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr "Mot de passe WordPress"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Connexion acceptée chez %s"
 
-#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
-msgid "WordPress API URL"
-msgstr "URL de l'API WordPress"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s a rejoint %2$s"
 
-#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
-msgid "Post to WordPress by default"
-msgstr "Publier sur WordPress par défaut"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr ""
 
-#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
-msgstr "Fournir un rétrolien vers le message sur Friendica"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Cette introduction a déjà été acceptée."
 
-#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
-#: ../../addon/posterous/posterous.php:189
-#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
-#: ../../addon.old/blogger/blogger.php:172
-#: ../../addon.old/posterous/posterous.php:189
-msgid "Post from Friendica"
-msgstr "Publier depuis Friendica"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+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."
 
-#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
-msgid "Read the original post and comment stream on Friendica"
-msgstr "Lire le message d'origine et le flux des commentaires sur Friendica"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
 
-#: ../../addon/showmore/showmore.php:38
-#: ../../addon.old/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
-msgstr "Réglages de \"Show more\""
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
 
-#: ../../addon/showmore/showmore.php:41
-#: ../../addon.old/showmore/showmore.php:41
-msgid "Enable Show More"
-msgstr "Activer \"Show more\""
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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é"
 
-#: ../../addon/showmore/showmore.php:44
-#: ../../addon.old/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
-msgstr "Coupure après combien de caractères"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Phase d'introduction achevée."
 
-#: ../../addon/showmore/showmore.php:65
-#: ../../addon.old/showmore/showmore.php:65
-msgid "Show More Settings saved."
-msgstr "Réglages \"Show more\" sauvés."
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Erreur de protocole non-récupérable."
 
-#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr "Ce site collecte ses statistiques grâce à <a href='http://www.piwik.org'>Piwik</a>."
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil indisponible."
 
-#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
+#: ../../mod/dfrn_request.php:262
 #, php-format
-msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous <a href='%s'>pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures</a> (opt-out)."
-
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
-msgid "Piwik Base URL"
-msgstr "URL de base de Piwik"
-
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
-msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr "Chemin absolu vers votre installation Piwik. (sans protocole (http/s), avec un / terminal)"
+msgid "%s has received too many connection requests today."
+msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
 
-#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
-msgid "Site ID"
-msgstr "ID du site"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Des mesures de protection contre le spam ont été déclenchées."
 
-#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr "Montrer le lien d'opt-out?"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
 
-#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr "Suivi asynchrone"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Localisateur invalide"
 
-#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
-msgid "Post to Twitter"
-msgstr "Poster sur Twitter"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Adresse courriel invalide."
 
-#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
-msgid "Twitter settings updated."
-msgstr "Réglages de Twitter mis-à-jour."
+#: ../../mod/dfrn_request.php:362
+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."
 
-#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
-msgid "Twitter Posting Settings"
-msgstr "Réglages du connecteur Twitter"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
 
-#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site."
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Vous vous êtes déjà présenté ici."
 
-#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
-msgid ""
-"At this Friendica instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr "Sur cette instance de Friendica, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte local à votre compte Twitter. Pour ce faire, cliquer sur le bouton ci-dessous. Vous obtiendrez alors un 'PIN' de Twitter, que vous devrez copier dans le champ ci-dessous, puis soumettre le formulaire. Seuls vos messages <strong>publics</strong> seront transmis à Twitter."
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Il semblerait que vous soyez déjà ami avec %s."
 
-#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
-msgid "Log in with Twitter"
-msgstr "Se connecter à Twitter"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "URL de profil invalide."
 
-#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
-msgid "Copy the PIN from Twitter here"
-msgstr "Copier le PIN de Twitter ici"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Votre introduction a été envoyée."
 
-#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr "En cas d'activation, toutes vos notices <strong>publiques</strong> seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Connectez-vous pour confirmer l'introduction."
 
-#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
+#: ../../mod/dfrn_request.php:659
 msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to Twitter will lead the visitor to a blank page informing "
-"the visitor that the access to your profile has been restricted."
-msgstr "<strong>Note</strong>: Du fait de vos réglages de vie privée (<em>Cacher les détails de votre profil des visiteurs inconnus?</em>), le lien potentiellement inclus dans les messages publics relayés vers Twitter conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint."
+"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."
 
-#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
-msgid "Allow posting to Twitter"
-msgstr "Autoriser la publication sur Twitter"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Cacher ce contact"
 
-#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
-msgid "Send public postings to Twitter by default"
-msgstr "Envoyer les éléments publics sur Twitter par défaut"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bienvenue chez vous, %s."
 
-#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
-msgid "Send linked #-tags and @-names to Twitter"
-msgstr "Envoyer les liens vers les #-tags et les @-noms sur Twitter"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
 
-#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
-msgid "Consumer key"
-msgstr "Clé utilisateur"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Confirmer"
 
-#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
-msgid "Consumer secret"
-msgstr "Secret utilisateur"
+#: ../../mod/dfrn_request.php:811
+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:"
 
-#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
-msgid "IRC Settings"
-msgstr "Réglages IRC"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Connecter un utilisateur de courriel</strike> (bientôt)"
 
-#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
-msgstr "Canaux à rejoindre automatiquement (séparés par des virgules)"
-
-#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
-msgstr "Canaux populaires (séparés par des virgules)"
+#: ../../mod/dfrn_request.php:829
+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>."
 
-#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
-msgid "IRC settings saved."
-msgstr "Réglages IRC sauvés."
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Requête de relation/amitié"
 
-#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
-msgid "IRC Chatroom"
-msgstr "Salon IRC"
+#: ../../mod/dfrn_request.php:833
+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"
 
-#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
-msgid "Popular Channels"
-msgstr "Canaux populaires"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Merci de répondre à ce qui suit:"
 
-#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
-msgid "Fromapp settings updated."
-msgstr "Réglages FromApp mis-à-jour"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Est-ce que %s vous connaît?"
 
-#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
-msgid "FromApp Settings"
-msgstr "FromApp"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Ajouter une note personnelle:"
 
-#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
+
+#: ../../mod/dfrn_request.php:843
+#, php-format
 msgid ""
-"The application name you would like to show your posts originating from."
-msgstr "Le nom d'application que vous souhaiteriez que vos publications affichent comme source."
+" - 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."
 
-#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
-msgid "Use this application name even if another application was used."
-msgstr "Afficher ce nom d'application même si une autre a été utilisée."
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Votre adresse d'identité:"
 
-#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
-msgid "Post to blogger"
-msgstr "Poster vers Blogger"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Envoyer la requête"
 
-#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
-msgid "Blogger Post Settings"
-msgstr "Réglages Blogger"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
 
-#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
-msgstr "Activer le connecteur Blogger"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Annuaire global"
 
-#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
-msgid "Blogger username"
-msgstr "Utilisateur Blogger"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Trouver sur ce site"
 
-#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
-msgid "Blogger password"
-msgstr "Mot de passe Blogger"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Annuaire local"
 
-#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
-msgid "Blogger API URL"
-msgstr "URL de l'API Blogger"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Genre: "
 
-#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
-msgid "Post to Blogger by default"
-msgstr "Poster vers Blogger par défaut"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Aucune entrée (certaines peuvent être cachées)."
 
-#: ../../addon/posterous/posterous.php:37
-#: ../../addon.old/posterous/posterous.php:37
-msgid "Post to Posterous"
-msgstr "Envoyer à Posterous"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr ""
 
-#: ../../addon/posterous/posterous.php:70
-#: ../../addon.old/posterous/posterous.php:70
-msgid "Posterous Post Settings"
-msgstr "Réglages de l'envoi à Posterous"
+#: ../../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."
 
-#: ../../addon/posterous/posterous.php:72
-#: ../../addon.old/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
-msgstr "Activer l'envoi à Posterous"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorer/cacher"
 
-#: ../../addon/posterous/posterous.php:77
-#: ../../addon.old/posterous/posterous.php:77
-msgid "Posterous login"
-msgstr "Login Posterous"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Recherche de personnes"
 
-#: ../../addon/posterous/posterous.php:82
-#: ../../addon.old/posterous/posterous.php:82
-msgid "Posterous password"
-msgstr "Mot de passe"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Aucune correspondance"
 
-#: ../../addon/posterous/posterous.php:87
-#: ../../addon.old/posterous/posterous.php:87
-msgid "Posterous site ID"
-msgstr "ID du site Posterous"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr ""
 
-#: ../../addon/posterous/posterous.php:92
-#: ../../addon.old/posterous/posterous.php:92
-msgid "Posterous API token"
-msgstr "Clé d'API Posterous"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "Accès restreint à cet élément."
 
-#: ../../addon/posterous/posterous.php:97
-#: ../../addon.old/posterous/posterous.php:97
-msgid "Post to Posterous by default"
-msgstr "Envoyer à Posterous par défaut"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "Voir l'album"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
-msgstr "Réglages du thème graphique"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+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)"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette enlevée"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Largeur du thème"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Enlever l'étiquette de l'élément"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Palette de couleurs"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Choisir une étiquette à enlever: "
 
-#: ../../view/theme/diabook/theme.php:86 ../../include/nav.php:49
-#: ../../include/nav.php:116
-msgid "Your posts and conversations"
-msgstr "Vos notices et conversations"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:50
-msgid "Your profile page"
-msgstr "Votre page de profil"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Éditer la publication"
 
-#: ../../view/theme/diabook/theme.php:88
-msgid "Your contacts"
-msgstr "Vos contacts"
+#: ../../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."
 
-#: ../../view/theme/diabook/theme.php:89 ../../include/nav.php:51
-msgid "Your photos"
-msgstr "Vos photos"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:52
-msgid "Your events"
-msgstr "Vos événements"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editer l'événement"
 
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53
-msgid "Personal notes"
-msgstr "Notes personnelles"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Créer un nouvel événement"
 
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53
-msgid "Your personal photos"
-msgstr "Vos photos personnelles"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Précédent"
 
-#: ../../view/theme/diabook/theme.php:93
-#: ../../view/theme/diabook/config.php:163
-msgid "Community Pages"
-msgstr "Pages de Communauté"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Suivant"
 
-#: ../../view/theme/diabook/theme.php:378
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/config.php:165
-msgid "Community Profiles"
-msgstr "Profils communautaires"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "heures:minutes"
 
-#: ../../view/theme/diabook/theme.php:399
-#: ../../view/theme/diabook/theme.php:597
-#: ../../view/theme/diabook/config.php:170
-msgid "Last users"
-msgstr "Derniers utilisateurs"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Détails de l'événement"
 
-#: ../../view/theme/diabook/theme.php:428
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/config.php:172
-msgid "Last likes"
-msgstr "Dernièrement aimé"
+#: ../../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."
 
-#: ../../view/theme/diabook/theme.php:473
-#: ../../view/theme/diabook/theme.php:598
-#: ../../view/theme/diabook/config.php:171
-msgid "Last photos"
-msgstr "Dernières photos"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Début de l'événement:"
 
-#: ../../view/theme/diabook/theme.php:510
-#: ../../view/theme/diabook/theme.php:595
-#: ../../view/theme/diabook/config.php:168
-msgid "Find Friends"
-msgstr "Trouver des amis"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Requis"
 
-#: ../../view/theme/diabook/theme.php:511
-msgid "Local Directory"
-msgstr "Annuaire local"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date/heure de fin inconnue ou sans objet"
 
-#: ../../view/theme/diabook/theme.php:513 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Intérêts similaires"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Fin de l'événement:"
 
-#: ../../view/theme/diabook/theme.php:515 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster à la zone horaire du visiteur"
 
-#: ../../view/theme/diabook/theme.php:532
-#: ../../view/theme/diabook/theme.php:591
-#: ../../view/theme/diabook/config.php:164
-msgid "Earth Layers"
-msgstr "Géolocalisation"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Description:"
 
-#: ../../view/theme/diabook/theme.php:537
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Régler le niveau de zoom pour la géolocalisation"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titre :"
 
-#: ../../view/theme/diabook/theme.php:538
-#: ../../view/theme/diabook/config.php:161
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Régler la longitude (X) pour la géolocalisation"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Partager cet événement"
 
-#: ../../view/theme/diabook/theme.php:539
-#: ../../view/theme/diabook/config.php:162
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Régler la latitude (Y) pour la géolocalisation"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Fichiers"
 
-#: ../../view/theme/diabook/theme.php:552
-#: ../../view/theme/diabook/theme.php:593
-#: ../../view/theme/diabook/config.php:166
-msgid "Help or @NewHere ?"
-msgstr "Aide ou @NewHere?"
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr "Exporter le compte"
 
-#: ../../view/theme/diabook/theme.php:559
-#: ../../view/theme/diabook/theme.php:594
-#: ../../view/theme/diabook/config.php:167
-msgid "Connect Services"
-msgstr "Connecter des services"
+#: ../../mod/uexport.php:72
+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."
 
-#: ../../view/theme/diabook/theme.php:566
-#: ../../view/theme/diabook/theme.php:596
-msgid "Last Tweets"
-msgstr "Derniers tweets"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr "Tout exporter"
 
-#: ../../view/theme/diabook/theme.php:569
-#: ../../view/theme/diabook/config.php:159
-msgid "Set twitter search term"
-msgstr "Rechercher un terme twitter"
+#: ../../mod/uexport.php:73
+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)."
 
-#: ../../view/theme/diabook/theme.php:588
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
-msgid "don't show"
-msgstr "cacher"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- choisir -"
 
-#: ../../view/theme/diabook/theme.php:588
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
-msgid "show"
-msgstr "montrer"
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
 
-#: ../../view/theme/diabook/theme.php:589
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Migrer le compte"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../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/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr ""
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr "Réglez la résolution de la colonne centrale"
+#: ../../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 ""
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr "Choisir le schéma 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 ""
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Niveau de zoom"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Fichier du compte"
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr "Derniers tweets"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alignement"
+#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
+#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[contenu incorporé - rechargez la page pour le voir]"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Gauche"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact ajouté"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centre"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "Motorisé par Friendica version"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Taille de texte des messages"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "hébergé sur"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr ""
+#: ../../mod/friendica.php:58
+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."
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Pour les rapports de bugs: rendez vous sur"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/applications installées:"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Anniversaire:"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Aucune extension/greffon/application installée"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Age:"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/contact envoyée."
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer des amis/contacts"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tags :"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un ami/contact pour %s"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Groupe créé."
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt:"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossible de créer le groupe."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées/Réseaux sociaux:"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groupe introuvable."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Goûts musicaux:"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groupe renommé."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Lectures:"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Créez un groupe de contacts/amis."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Télévision:"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nom du groupe: "
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement:"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Groupe enlevé."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amour/Romance:"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossible d'enlever le groupe."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation:"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Éditeur de groupe"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Études/Formation:"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membres"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Inconnu | Non-classé"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Aucun profil"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquer immédiatement"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Aide:"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Douteux, spammeur, accro à l'auto-promotion"
+#: ../../mod/help.php:90 ../../index.php:231
+msgid "Not Found"
+msgstr "Non trouvé"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Connu de moi, mais sans opinion"
+#: ../../mod/help.php:93 ../../index.php:234
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probablement inoffensif"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Aucun contact."
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Réputé, a toute ma confiance"
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Fréquemment"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accès refusé."
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Toutes les heures"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "La taille du fichier dépasse la limite de %d"
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Deux fois par jour"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Le téléversement a échoué."
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "L'image dépasse la taille limite de %d"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Impossible de traiter l'image."
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr ""
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Adresse de courriel invalide."
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Rejoignez-nous sur Friendica"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculin"
-
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Féminin"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : L'envoi du message a échoué."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Actuellement masculin"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Actuellement féminin"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Vous n'avez plus d'invitations disponibles"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Principalement masculin"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Principalement féminin"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgenre"
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Inter-sexe"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuel"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses email, une par ligne:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutre"
+#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Votre message:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-spécifique"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Autre"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Vous devrez fournir ce code d'invitation: $invite_code"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indécis"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Hommes"
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmes"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Pas de destinataire sélectionné."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossible de vérifier votre localisation."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sans préférence"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Impossible d'envoyer le message."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuel"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Récupération des messages infructueuse."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Auto-sexuel"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Message envoyé."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Pas de destinataire."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vierge"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Déviant"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fétichiste"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "À:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Sujet:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Non-sexuel"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversion temporelle"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Célibataire"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Esseulé"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Temps UTC : %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponible"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Zone de temps courante : %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Indisponible"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Temps local converti : %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Attiré par quelqu'un"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Sélectionner votre zone :"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Entiché"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informations de confidentialité indisponibles."
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dans une relation"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visible par:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infidèle"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Impossible de trouver un compte valide."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Accro au sexe"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:278
-#: ../../include/user.php:282
-msgid "Friends"
-msgstr "Amis"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Requête de réinitialisation de mot de passe à %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amis par intérêt"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/lostpass.php:84 ../../boot.php:1151
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Fiancé"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Marié"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est "
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Se croit marié"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partenaire"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "En cohabitation"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Heureux"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié?"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Pas intéressé"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Échangiste"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Pseudo ou Courriel: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Trahi(e)"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Séparé"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instable"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gérer les identités et/ou les pages"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorcé"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Se croit divorcé"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Choisir une identité à gérer: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Veuf/Veuve"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correpondance de profils"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incertain"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "C'est compliqué"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "s'intéresse à:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "S'en désintéresse"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossible de localiser les informations du contact."
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Me demander"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Voulez-vous vraiment supprimer ce message ?"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
-msgid "Starts:"
-msgstr "Débute:"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Message supprimé."
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
-msgid "Finishes:"
-msgstr "Finit:"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:771
-msgid "(no subject)"
-msgstr "(sans titre)"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Aucun message."
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "sur Last.fm"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Émetteur inconnu - %s"
 
-#: ../../include/text.php:243
-msgid "prev"
-msgstr "précédent"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Vous et %s"
 
-#: ../../include/text.php:245
-msgid "first"
-msgstr "premier"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s et vous"
 
-#: ../../include/text.php:274
-msgid "last"
-msgstr "dernier"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Effacer conversation"
 
-#: ../../include/text.php:277
-msgid "next"
-msgstr "suivant"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/text.php:295
-msgid "newer"
-msgstr "Plus récent"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "Plus ancien"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Message indisponible."
 
-#: ../../include/text.php:604
-msgid "No contacts"
-msgstr "Aucun contact"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Effacer message"
 
-#: ../../include/text.php:613
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacts"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
 
-#: ../../include/text.php:726
-msgid "poke"
-msgstr "titiller"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Répondre"
 
-#: ../../include/text.php:726 ../../include/conversation.php:210
-msgid "poked"
-msgstr "a titillé"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humeur"
 
-#: ../../include/text.php:727
-msgid "ping"
-msgstr "attirer l'attention"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Spécifiez votre humeur du moment, et informez vos amis"
 
-#: ../../include/text.php:727
-msgid "pinged"
-msgstr "a attiré l'attention de"
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "Résultats pour:"
 
-#: ../../include/text.php:728
-msgid "prod"
-msgstr "aiguillonner"
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "Tri par commentaires"
 
-#: ../../include/text.php:728
-msgid "prodded"
-msgstr "a aiguillonné"
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "Trier par date de commentaire"
 
-#: ../../include/text.php:729
-msgid "slap"
-msgstr "gifler"
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "Tri par publications"
 
-#: ../../include/text.php:729
-msgid "slapped"
-msgstr "a giflé"
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: ../../include/text.php:730
-msgid "finger"
-msgstr "tripoter"
+#: ../../mod/network.php:444 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Personnel"
 
-#: ../../include/text.php:730
-msgid "fingered"
-msgstr "a tripoté"
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
 
-#: ../../include/text.php:731
-msgid "rebuff"
-msgstr "rabrouer"
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "Nouveau"
 
-#: ../../include/text.php:731
-msgid "rebuffed"
-msgstr "a rabroué"
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
+msgstr "Flux d'activités - par date"
 
-#: ../../include/text.php:743
-msgid "happy"
-msgstr "heureuse"
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "Liens partagés"
 
-#: ../../include/text.php:744
-msgid "sad"
-msgstr "triste"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "Liens intéressants"
 
-#: ../../include/text.php:745
-msgid "mellow"
-msgstr "suave"
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: ../../include/text.php:746
-msgid "tired"
-msgstr "fatiguée"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Publications favorites"
 
-#: ../../include/text.php:747
-msgid "perky"
-msgstr "guillerette"
+#: ../../mod/network.php:546
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
+msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
 
-#: ../../include/text.php:748
-msgid "angry"
-msgstr "colérique"
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
 
-#: ../../include/text.php:749
-msgid "stupified"
-msgstr "stupéfaite"
+#: ../../mod/network.php:596 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Groupe inexistant"
 
-#: ../../include/text.php:750
-msgid "puzzled"
-msgstr "perplexe"
+#: ../../mod/network.php:607 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Groupe vide"
 
-#: ../../include/text.php:751
-msgid "interested"
-msgstr "intéressée"
+#: ../../mod/network.php:611 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Groupe: "
 
-#: ../../include/text.php:752
-msgid "bitter"
-msgstr "amère"
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "Contact: "
 
-#: ../../include/text.php:753
-msgid "cheerful"
-msgstr "entraînante"
+#: ../../mod/network.php:623
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
 
-#: ../../include/text.php:754
-msgid "alive"
-msgstr "vivante"
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "Contact invalide."
 
-#: ../../include/text.php:755
-msgid "annoyed"
-msgstr "ennuyée"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de demande invalide."
 
-#: ../../include/text.php:756
-msgid "anxious"
-msgstr "anxieuse"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Rejeter"
 
-#: ../../include/text.php:757
-msgid "cranky"
-msgstr "excentrique"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Système"
 
-#: ../../include/text.php:758
-msgid "disturbed"
-msgstr "dérangée"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Voir les demandes ignorées"
 
-#: ../../include/text.php:759
-msgid "frustrated"
-msgstr "frustrée"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Cacher les demandes ignorées"
 
-#: ../../include/text.php:760
-msgid "motivated"
-msgstr "motivée"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Type de notification: "
 
-#: ../../include/text.php:761
-msgid "relaxed"
-msgstr "détendue"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Suggestion d'amitié/contact"
 
-#: ../../include/text.php:762
-msgid "surprised"
-msgstr "surprise"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "suggéré(e) par %s"
 
-#: ../../include/text.php:926
-msgid "January"
-msgstr "Janvier"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Poster concernant les nouvelles amitiés"
 
-#: ../../include/text.php:926
-msgid "February"
-msgstr "Février"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "si possible"
 
-#: ../../include/text.php:926
-msgid "March"
-msgstr "Mars"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Prétend que vous le connaissez: "
 
-#: ../../include/text.php:926
-msgid "April"
-msgstr "Avril"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "oui"
 
-#: ../../include/text.php:926
-msgid "May"
-msgstr "Mai"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "non"
 
-#: ../../include/text.php:926
-msgid "June"
-msgstr "Juin"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Approuver en tant que: "
 
-#: ../../include/text.php:926
-msgid "July"
-msgstr "Juillet"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Ami"
 
-#: ../../include/text.php:926
-msgid "August"
-msgstr "Août"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Initiateur du partage"
 
-#: ../../include/text.php:926
-msgid "September"
-msgstr "Septembre"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Admirateur"
 
-#: ../../include/text.php:926
-msgid "October"
-msgstr "Octobre"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Demande de connexion/relation"
 
-#: ../../include/text.php:926
-msgid "November"
-msgstr "Novembre"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nouvel abonné"
 
-#: ../../include/text.php:926
-msgid "December"
-msgstr "Décembre"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Aucune demande d'introduction."
 
-#: ../../include/text.php:1010
-msgid "bytes"
-msgstr "octets"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s a aimé la notice de %s"
 
-#: ../../include/text.php:1037 ../../include/text.php:1049
-msgid "Click to open/close"
-msgstr "Cliquer pour ouvrir/fermer"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s n'a pas aimé la notice de %s"
 
-#: ../../include/text.php:1222 ../../include/user.php:236
-msgid "default"
-msgstr "défaut"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s est désormais ami(e) avec %s"
 
-#: ../../include/text.php:1234
-msgid "Select an alternate language"
-msgstr "Choisir une langue alternative"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a publié une notice"
 
-#: ../../include/text.php:1444
-msgid "activity"
-msgstr "activité"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s a commenté une notice de %s"
 
-#: ../../include/text.php:1447
-msgid "post"
-msgstr "publication"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Aucune notification du réseau."
 
-#: ../../include/text.php:1602
-msgid "Item filed"
-msgstr "Élément classé"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Notifications du réseau"
 
-#: ../../include/diaspora.php:702
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Pas plus de notifications système."
 
-#: ../../include/diaspora.php:2236
-msgid "Attachments:"
-msgstr "Pièces jointes : "
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: ../../include/network.php:847
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Aucun notification personnelle."
 
-#: ../../include/oembed.php:137
-msgid "Embedded content"
-msgstr "Contenu incorporé"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Notifications personnelles"
 
-#: ../../include/oembed.php:146
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Aucune notification de la page d'accueil."
 
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr ""
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Notifications de page d'accueil"
 
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: ../../mod/photos.php:51 ../../boot.php:1957
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr ""
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
+msgid "Contact Photos"
+msgstr "Photos du contact"
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Téléverser de nouvelles photos"
 
-#: ../../include/uimport.php:85
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr ""
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "Informations de contact indisponibles"
 
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr ""
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr ""
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Effacer l'album"
 
-#: ../../include/uimport.php:167
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/photos.php:197
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr ""
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Effacer la photo"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tout le monde"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "une photo"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "éditer"
+#: ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "L'image dépasse la taille maximale de  "
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editer groupe"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Fichier image vide."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contacts n'appartenant à aucun groupe"
+#: ../../mod/photos.php:1088
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
 
-#: ../../include/nav.php:46 ../../boot.php:948
-msgid "Logout"
-msgstr "Se déconnecter"
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: ../../include/nav.php:46
-msgid "End this session"
-msgstr "Mettre fin à cette session"
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Nom du nouvel album: "
 
-#: ../../include/nav.php:49 ../../boot.php:1724
-msgid "Status"
-msgstr "Statut"
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "ou nom d'un album existant: "
 
-#: ../../include/nav.php:64
-msgid "Sign in"
-msgstr "Se connecter"
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de notice pour cet envoi"
 
-#: ../../include/nav.php:77
-msgid "Home Page"
-msgstr "Page d'accueil"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Permissions"
 
-#: ../../include/nav.php:81
-msgid "Create an account"
-msgstr "Créer un compte"
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "Photo privée"
 
-#: ../../include/nav.php:86
-msgid "Help and documentation"
-msgstr "Aide et documentation"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr ""
 
-#: ../../include/nav.php:89
-msgid "Apps"
-msgstr "Applications"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Éditer l'album"
 
-#: ../../include/nav.php:89
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, utilitaires, jeux"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Plus récent d'abord"
 
-#: ../../include/nav.php:91
-msgid "Search site content"
-msgstr "Rechercher dans le contenu du site"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Plus ancien d'abord"
 
-#: ../../include/nav.php:101
-msgid "Conversations on this site"
-msgstr "Conversations ayant cours sur ce site"
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Voir la photo"
 
-#: ../../include/nav.php:103
-msgid "Directory"
-msgstr "Annuaire"
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
 
-#: ../../include/nav.php:103
-msgid "People directory"
-msgstr "Annuaire des utilisateurs"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: ../../include/nav.php:113
-msgid "Conversations from your friends"
-msgstr "Conversations de vos amis"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Voir photo"
 
-#: ../../include/nav.php:114
-msgid "Network Reset"
-msgstr ""
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Éditer la photo"
 
-#: ../../include/nav.php:114
-msgid "Load Network page with no filters"
-msgstr ""
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../include/nav.php:122
-msgid "Friend Requests"
-msgstr "Demande d'amitié"
+#: ../../mod/photos.php:1351 ../../mod/content.php:643
+#: ../../object/Item.php:113
+msgid "Private Message"
+msgstr "Message privé"
 
-#: ../../include/nav.php:124
-msgid "See all notifications"
-msgstr "Voir toute notification"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
 
-#: ../../include/nav.php:125
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme 'vues'"
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Étiquettes: "
 
-#: ../../include/nav.php:129
-msgid "Private mail"
-msgstr "Messages privés"
-
-#: ../../include/nav.php:130
-msgid "Inbox"
-msgstr "Messages entrants"
-
-#: ../../include/nav.php:131
-msgid "Outbox"
-msgstr "Messages sortants"
-
-#: ../../include/nav.php:135
-msgid "Manage"
-msgstr "Gérer"
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Retirer toutes les étiquettes]"
 
-#: ../../include/nav.php:135
-msgid "Manage other pages"
-msgstr "Gérer les autres pages"
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: ../../include/nav.php:140 ../../boot.php:1238
-msgid "Profiles"
-msgstr "Profils"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: ../../include/nav.php:140
-msgid "Manage/Edit Profiles"
-msgstr ""
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Nom du nouvel album"
 
-#: ../../include/nav.php:142
-msgid "Manage/edit friends and contacts"
-msgstr "Gérer/éditer les amitiés et contacts"
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Titre"
 
-#: ../../include/nav.php:149
-msgid "Site setup and configuration"
-msgstr "Démarrage et configuration du site"
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: ../../include/nav.php:173
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Ajouter un nouveau contact"
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr ""
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Entrez son adresse ou sa localisation web"
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr ""
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple: bob@example.com, http://example.com/barbara"
+#: ../../mod/photos.php:1529 ../../mod/content.php:707
+#: ../../object/Item.php:232
+msgid "I like this (toggle)"
+msgstr "J'aime (bascule)"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation disponible"
-msgstr[1] "%d invitations disponibles"
+#: ../../mod/photos.php:1530 ../../mod/content.php:708
+#: ../../object/Item.php:233
+msgid "I don't like this (toggle)"
+msgstr "Je n'aime pas (bascule)"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Trouver des personnes"
+#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
+#: ../../mod/photos.php:1676 ../../mod/content.php:730
+#: ../../object/Item.php:650
+msgid "This is you"
+msgstr "C'est vous"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Entrez un nom ou un centre d'intérêt"
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732
+#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670
+msgid "Comment"
+msgstr "Commenter"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Connecter/Suivre"
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Pêche"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bienvenue sur Friendica"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Profil au hasard"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist du nouvel utilisateur"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Réseaux"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Tous réseaux"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Bien démarrer"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica pas-à-pas"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Tout"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Catégories"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Éditer vos Réglages"
 
-#: ../../include/auth.php:36
-msgid "Logged out."
-msgstr "Déconnecté."
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
 
-#: ../../include/auth.php:126
+#: ../../mod/newmember.php:28
 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."
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
 
-#: ../../include/auth.php:126
-msgid "The error message was:"
-msgstr "Le message d'erreur était :"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Divers"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "an"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Éditer votre Profil"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "mois"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "jour"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Mots-clés du profil"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "jamais"
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Connexions"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "semaine"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "heure"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "heures"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importer courriels"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minute"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutes"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Consulter vos Contacts"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "seconde"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "secondes"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Consulter l'Annuaire de votre Site"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s auparavant"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
 
-#: ../../include/datetime.php:472 ../../include/items.php:1695
-#, php-format
-msgid "%s's birthday"
-msgstr "Anniversaire de %s's"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trouver de nouvelles personnes"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1696
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Joyeux anniversaire, %s !"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
 
-#: ../../include/onepoll.php:414
-msgid "From: "
-msgstr "De: "
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grouper vos contacts"
 
-#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
 
-#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
-msgid "$1 wrote:"
-msgstr "$1 a écrit:"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Pourquoi mes éléments ne sont pas publics?"
 
-#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../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, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr ""
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtenir de l'aide"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Aller à la section Aide"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr ""
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr ""
+#: ../../mod/profile.php:21 ../../boot.php:1325
+msgid "Requested profile is not available."
+msgstr "Le profil demandé n'est pas disponible."
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr ""
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Conseils aux nouveaux venus"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr ""
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base."
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossible de créer une table."
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr ""
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "La base de données de votre site Friendica a bien été installée."
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr ""
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Référez-vous au fichier \"INSTALL.txt\"."
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Vérifications système"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr ""
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr ""
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr ""
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Serveur de base de données"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nom d'utilisateur de la base"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr ""
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Mot de passe de la base"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr ""
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nom de la base"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr ""
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adresse électronique de l'administrateur du site"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-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."
+msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr ""
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr ""
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr ""
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr ""
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr ""
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Chemin vers l'exécutable de PHP"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr ""
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr ""
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Version \"ligne de commande\" de PHP"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
 msgstr ""
 
-#: ../../include/dba.php:41
-#, 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/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[pas de sujet]"
-
-#: ../../include/acl_selectors.php:286
-msgid "Visible to everybody"
-msgstr "Visible par tout le monde"
-
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Notification Friendica"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr ""
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Merci, "
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "L'administrateur de %s"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Ceci est requis pour que la livraison des messages fonctionne."
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Générer les clés de chiffrement"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "un message privé"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Module libCurl de PHP"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Module GD (graphiques) de PHP"
 
-#: ../../include/enotify.php:89
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Module OpenSSL de PHP"
 
-#: ../../include/enotify.php:96
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Module Mysqli de PHP"
 
-#: ../../include/enotify.php:104
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Module mb_string de PHP"
 
-#: ../../include/enotify.php:114
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Module mod_rewrite Apache"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s a commenté un élément que vous suivez."
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
 
-#: ../../include/enotify.php:118 ../../include/enotify.php:133
-#: ../../include/enotify.php:146 ../../include/enotify.php:164
-#: ../../include/enotify.php:177
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
 
-#: ../../include/enotify.php:125
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
 
-#: ../../include/enotify.php:127
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s a publié sur votre mur à %2$s"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
 
-#: ../../include/enotify.php:129
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
 
-#: ../../include/enotify.php:140
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notification] %s vous a repéré"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s vous parle sur %2$s"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]vous a taggé[/url]."
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
 
-#: ../../include/enotify.php:154
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s vous a sollicité"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s vous a sollicité via %2$s"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Fichier .htconfig.php accessible en écriture"
 
-#: ../../include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notification] %s a repéré votre publication"
+#: ../../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 ""
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s a tagué votre contenu sur %2$s"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr ""
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr ""
 
-#: ../../include/enotify.php:184
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notification] Introduction reçue"
+#: ../../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 ""
 
-#: ../../include/enotify.php:185
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr ""
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
 
-#: ../../include/enotify.php:189 ../../include/enotify.php:207
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Vous pouvez visiter son profil sur %s"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne."
 
-#: ../../include/enotify.php:191
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
 
-#: ../../include/enotify.php:198
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Des erreurs ont été signalées lors de la création des tables."
 
-#: ../../include/enotify.php:199
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ensuite</h1>"
 
-#: ../../include/enotify.php:200
-#, php-format
+#: ../../mod/install.php:520
 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."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."
 
-#: ../../include/enotify.php:205
-msgid "Name:"
-msgstr "Nom :"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publication réussie."
 
-#: ../../include/enotify.php:206
-msgid "Photo:"
-msgstr "Photo :"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
 
-#: ../../include/enotify.php:209
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de connexion manquante."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Image envoyée, mais impossible de la retailler."
 
-#: ../../include/follow.php:59
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Réduction de la taille de l'image [%s] échouée."
+
+#: ../../mod/profile_photo.php:118
 msgid ""
-"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."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Fichier à téléverser:"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Choisir un profil:"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Téléverser"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "ignorer cette étape"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "choisissez une photo depuis vos albums"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "(Re)cadrer l'image"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Édition terminée"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "following"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: ../../include/items.php:3363
-msgid "A new person is sharing with you at "
-msgstr "Une nouvelle personne partage avec vous à "
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Indisponible."
 
-#: ../../include/items.php:3363
-msgid "You have a new follower at "
-msgstr "Vous avez un nouvel abonné à "
+#: ../../mod/content.php:626 ../../object/Item.php:362
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
 
-#: ../../include/items.php:4047
-msgid "Archives"
-msgstr "Archives"
+#: ../../mod/content.php:707 ../../object/Item.php:232
+msgid "like"
+msgstr "aime"
 
-#: ../../include/user.php:38
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
+#: ../../mod/content.php:708 ../../object/Item.php:233
+msgid "dislike"
+msgstr "n'aime pas"
 
-#: ../../include/user.php:43
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
+#: ../../mod/content.php:710 ../../object/Item.php:235
+msgid "Share this"
+msgstr "Partager"
 
-#: ../../include/user.php:51
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
+#: ../../mod/content.php:710 ../../object/Item.php:235
+msgid "share"
+msgstr "partager"
 
-#: ../../include/user.php:66
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
+#: ../../mod/content.php:734 ../../object/Item.php:654
+msgid "Bold"
+msgstr "Gras"
 
-#: ../../include/user.php:80
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
+#: ../../mod/content.php:735 ../../object/Item.php:655
+msgid "Italic"
+msgstr "Italique"
 
-#: ../../include/user.php:82
-msgid "Name too short."
-msgstr "Nom trop court."
+#: ../../mod/content.php:736 ../../object/Item.php:656
+msgid "Underline"
+msgstr "Souligné"
 
-#: ../../include/user.php:97
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
+#: ../../mod/content.php:737 ../../object/Item.php:657
+msgid "Quote"
+msgstr "Citation"
 
-#: ../../include/user.php:102
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
+#: ../../mod/content.php:738 ../../object/Item.php:658
+msgid "Code"
+msgstr "Code"
 
-#: ../../include/user.php:105
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
+#: ../../mod/content.php:739 ../../object/Item.php:659
+msgid "Image"
+msgstr "Image"
 
-#: ../../include/user.php:115
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
+#: ../../mod/content.php:740 ../../object/Item.php:660
+msgid "Link"
+msgstr "Lien"
 
-#: ../../include/user.php:121
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
+#: ../../mod/content.php:741 ../../object/Item.php:661
+msgid "Video"
+msgstr "Vidéo"
+
+#: ../../mod/content.php:776 ../../object/Item.php:211
+msgid "add star"
+msgstr "mett en avant"
+
+#: ../../mod/content.php:777 ../../object/Item.php:212
+msgid "remove star"
+msgstr "ne plus mettre en avant"
 
-#: ../../include/user.php:127 ../../include/user.php:225
-msgid "Nickname is already registered. Please choose another."
-msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
+#: ../../mod/content.php:778 ../../object/Item.php:213
+msgid "toggle star status"
+msgstr "mettre en avant"
 
-#: ../../include/user.php:137
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
+#: ../../mod/content.php:781 ../../object/Item.php:216
+msgid "starred"
+msgstr "mis en avant"
 
-#: ../../include/user.php:153
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
+#: ../../mod/content.php:782 ../../object/Item.php:221
+msgid "add tag"
+msgstr "ajouter un tag"
 
-#: ../../include/user.php:211
-msgid "An error occurred during registration. Please try again."
-msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+#: ../../mod/content.php:786 ../../object/Item.php:130
+msgid "save to folder"
+msgstr "sauver vers dossier"
 
-#: ../../include/user.php:246
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+#: ../../mod/content.php:877 ../../object/Item.php:308
+msgid "to"
+msgstr "à"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bienvenue "
+#: ../../mod/content.php:878 ../../object/Item.php:310
+msgid "Wall-to-Wall"
+msgstr "Inter-mur"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Merci d'illustrer votre profil d'une image."
+#: ../../mod/content.php:879 ../../object/Item.php:311
+msgid "via Wall-To-Wall:"
+msgstr "en Inter-mur:"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bienvenue à nouveau, "
+#: ../../object/Item.php:92
+msgid "This entry was edited"
+msgstr ""
 
-#: ../../include/security.php:357
-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é."
+#: ../../object/Item.php:309
+msgid "via"
+msgstr ""
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+msgid "Theme settings"
+msgstr "Réglages du thème graphique"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:795
-msgid "Poke"
-msgstr "Sollicitations (pokes)"
+#: ../../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/Contact.php:226 ../../include/conversation.php:789
-msgid "View Status"
-msgstr "Voir les statuts"
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:790
-msgid "View Profile"
-msgstr "Voir le profil"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Largeur du thème"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:791
-msgid "View Photos"
-msgstr "Voir les photos"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Palette de couleurs"
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:242
-#: ../../include/conversation.php:792
-msgid "Network Posts"
-msgstr "Posts du Réseau"
+#: ../../view/theme/diabook/config.php:156
+#: ../../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"
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:242
-#: ../../include/conversation.php:793
-msgid "Edit Contact"
-msgstr "Éditer le contact"
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr "Réglez la résolution de la colonne centrale"
 
-#: ../../include/Contact.php:231 ../../include/Contact.php:242
-#: ../../include/conversation.php:794
-msgid "Send PM"
-msgstr "Message privé"
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../include/conversation.php:206
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s a sollicité %2$s"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:609
+msgid "Set twitter search term"
+msgstr "Rechercher un terme twitter"
 
-#: ../../include/conversation.php:290
-msgid "post/item"
-msgstr "publication/élément"
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Niveau de zoom"
 
-#: ../../include/conversation.php:291
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s a marqué le %3$s de %2$s comme favori"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:578
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Régler la longitude (X) pour la géolocalisation"
 
-#: ../../include/conversation.php:599 ../../object/Item.php:225
-msgid "Categories:"
-msgstr "Catégories:"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:579
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Régler la latitude (Y) pour la géolocalisation"
 
-#: ../../include/conversation.php:600 ../../object/Item.php:226
-msgid "Filed under:"
-msgstr "Rangé sous:"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+msgid "Community Pages"
+msgstr "Pages de Communauté"
 
-#: ../../include/conversation.php:685
-msgid "remove"
-msgstr "enlever"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+msgid "Earth Layers"
+msgstr "Géolocalisation"
 
-#: ../../include/conversation.php:689
-msgid "Delete Selected Items"
-msgstr "Supprimer les éléments sélectionnés"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+msgid "Community Profiles"
+msgstr "Profils communautaires"
 
-#: ../../include/conversation.php:788
-msgid "Follow Thread"
-msgstr "Suivre le fil"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+msgid "Help or @NewHere ?"
+msgstr "Aide ou @NewHere?"
 
-#: ../../include/conversation.php:857
-#, php-format
-msgid "%s likes this."
-msgstr "%s aime ça."
+#: ../../view/theme/diabook/config.php:167
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+msgid "Connect Services"
+msgstr "Connecter des services"
 
-#: ../../include/conversation.php:857
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s n'aime pas ça."
+#: ../../view/theme/diabook/config.php:168
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+msgid "Find Friends"
+msgstr "Trouver des amis"
 
-#: ../../include/conversation.php:861
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this."
-msgstr "<span  %1$s>%2$d personnes</span> aiment ça."
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr "Derniers tweets"
 
-#: ../../include/conversation.php:863
-#, 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."
+#: ../../view/theme/diabook/config.php:170
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+msgid "Last users"
+msgstr "Derniers utilisateurs"
 
-#: ../../include/conversation.php:869
-msgid "and"
-msgstr "et"
+#: ../../view/theme/diabook/config.php:171
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+msgid "Last photos"
+msgstr "Dernières photos"
 
-#: ../../include/conversation.php:875
-#, php-format
-msgid ", and %d other people"
-msgstr ", et %d autres personnes"
+#: ../../view/theme/diabook/config.php:172
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+msgid "Last likes"
+msgstr "Dernièrement aimé"
 
-#: ../../include/conversation.php:877
-#, php-format
-msgid "%s like this."
-msgstr "%s aiment ça."
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "Vos contacts"
 
-#: ../../include/conversation.php:877
-#, php-format
-msgid "%s don't like this."
-msgstr "%s n'aiment pas ça."
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
+msgstr "Annuaire local"
 
-#: ../../include/conversation.php:904 ../../include/conversation.php:922
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible par <strong>tout le monde</strong>"
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Régler le niveau de zoom pour la géolocalisation"
 
-#: ../../include/conversation.php:906 ../../include/conversation.php:924
-msgid "Please enter a video link/URL:"
-msgstr "Entrez un lien/URL video :"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
+msgstr "Derniers tweets"
 
-#: ../../include/conversation.php:907 ../../include/conversation.php:925
-msgid "Please enter an audio link/URL:"
-msgstr "Entrez un lien/URL audio :"
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
 
-#: ../../include/conversation.php:908 ../../include/conversation.php:926
-msgid "Tag term:"
-msgstr "Tag : "
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../include/conversation.php:910 ../../include/conversation.php:928
-msgid "Where are you right now?"
-msgstr "Où êtes-vous présentemment?"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alignement"
 
-#: ../../include/conversation.php:911
-msgid "Delete item(s)?"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Gauche"
 
-#: ../../include/conversation.php:990
-msgid "permissions"
-msgstr "permissions"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centre"
 
-#: ../../include/plugin.php:389 ../../include/plugin.php:391
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Taille de texte des messages"
 
-#: ../../include/plugin.php:397
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Cette action dépasse les limites définies par votre abonnement."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr ""
 
-#: ../../include/plugin.php:402
-msgid "This action is not available under your subscription plan."
-msgstr "Cette action n'est pas disponible avec votre abonnement."
+#: ../../index.php:405
+msgid "toggle mobile"
+msgstr "activ. mobile"
 
-#: ../../boot.php:607
+#: ../../boot.php:669
 msgid "Delete this item?"
 msgstr "Effacer cet élément?"
 
-#: ../../boot.php:610
+#: ../../boot.php:672
 msgid "show fewer"
 msgstr "montrer moins"
 
-#: ../../boot.php:819
+#: ../../boot.php:999
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
 
-#: ../../boot.php:821
+#: ../../boot.php:1001
 #, php-format
 msgid "Update Error at %s"
 msgstr "Erreur de mise-à-jour à %s"
 
-#: ../../boot.php:922
+#: ../../boot.php:1111
 msgid "Create a New Account"
 msgstr "Créer un nouveau compte"
 
-#: ../../boot.php:951
+#: ../../boot.php:1139
 msgid "Nickname or Email address: "
 msgstr "Pseudo ou courriel: "
 
-#: ../../boot.php:952
+#: ../../boot.php:1140
 msgid "Password: "
 msgstr "Mot de passe: "
 
-#: ../../boot.php:953
+#: ../../boot.php:1141
 msgid "Remember me"
 msgstr ""
 
-#: ../../boot.php:956
+#: ../../boot.php:1144
 msgid "Or login using OpenID: "
 msgstr "Ou connectez-vous via OpenID: "
 
-#: ../../boot.php:962
+#: ../../boot.php:1150
 msgid "Forgot your password?"
 msgstr "Mot de passe oublié?"
 
-#: ../../boot.php:1087
+#: ../../boot.php:1153
+msgid "Website Terms of Service"
+msgstr ""
+
+#: ../../boot.php:1154
+msgid "terms of service"
+msgstr ""
+
+#: ../../boot.php:1156
+msgid "Website Privacy Policy"
+msgstr ""
+
+#: ../../boot.php:1157
+msgid "privacy policy"
+msgstr ""
+
+#: ../../boot.php:1286
 msgid "Requested account is not available."
 msgstr "Le compte demandé n'est pas disponible."
 
-#: ../../boot.php:1164
+#: ../../boot.php:1365 ../../boot.php:1469
 msgid "Edit profile"
 msgstr "Editer le profil"
 
-#: ../../boot.php:1230
+#: ../../boot.php:1431
 msgid "Message"
 msgstr "Message"
 
-#: ../../boot.php:1238
+#: ../../boot.php:1439
 msgid "Manage/edit profiles"
 msgstr "Gérer/éditer les profils"
 
-#: ../../boot.php:1352 ../../boot.php:1438
+#: ../../boot.php:1568 ../../boot.php:1654
 msgid "g A l F d"
 msgstr "g A | F d"
 
-#: ../../boot.php:1353 ../../boot.php:1439
+#: ../../boot.php:1569 ../../boot.php:1655
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1398 ../../boot.php:1479
+#: ../../boot.php:1614 ../../boot.php:1695
 msgid "[today]"
 msgstr "[aujourd'hui]"
 
-#: ../../boot.php:1410
+#: ../../boot.php:1626
 msgid "Birthday Reminders"
 msgstr "Rappels d'anniversaires"
 
-#: ../../boot.php:1411
+#: ../../boot.php:1627
 msgid "Birthdays this week:"
 msgstr "Anniversaires cette semaine:"
 
-#: ../../boot.php:1472
+#: ../../boot.php:1688
 msgid "[No description]"
 msgstr "[Sans description]"
 
-#: ../../boot.php:1490
+#: ../../boot.php:1706
 msgid "Event Reminders"
 msgstr "Rappels d'événements"
 
-#: ../../boot.php:1491
+#: ../../boot.php:1707
 msgid "Events this week:"
 msgstr "Evénements cette semaine:"
 
-#: ../../boot.php:1727
+#: ../../boot.php:1943
 msgid "Status Messages and Posts"
 msgstr "Messages d'état et publications"
 
-#: ../../boot.php:1734
+#: ../../boot.php:1950
 msgid "Profile Details"
 msgstr "Détails du profil"
 
-#: ../../boot.php:1751
+#: ../../boot.php:1961 ../../boot.php:1964
+msgid "Videos"
+msgstr ""
+
+#: ../../boot.php:1974
 msgid "Events and Calendar"
 msgstr "Événements et agenda"
 
-#: ../../boot.php:1758
+#: ../../boot.php:1981
 msgid "Only You Can See This"
 msgstr "Vous seul pouvez voir ça"
-
-#: ../../object/Item.php:237
-msgid "via"
-msgstr ""
-
-#: ../../index.php:398
-msgid "toggle mobile"
-msgstr "activ. mobile"
-
-#: ../../addon.old/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr "Réglages d'arrière-plan mis à jour."
-
-#: ../../addon.old/bg/bg.php:82
-msgid "Bg Settings"
-msgstr "Réglages d'arrière-plan"
-
-#: ../../addon.old/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr "Poster vers Drupal"
-
-#: ../../addon.old/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr "Réglages Drupal"
-
-#: ../../addon.old/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "Activer \"Poster vers Drupal\""
-
-#: ../../addon.old/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Nom d'utilisateur Drupal"
-
-#: ../../addon.old/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "Mot de passe Drupal"
-
-#: ../../addon.old/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr "Type de publication - article, page ou blog"
-
-#: ../../addon.old/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "URL du site Drupal"
-
-#: ../../addon.old/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr "Ce site utilise des URLs propres"
-
-#: ../../addon.old/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr "Poster vers Drupal par défaut"
-
-#: ../../addon.old/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "Réglage OEmbed mis-à-jour"
-
-#: ../../addon.old/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Utiliser OEmbed pour les vidéos Youtube"
-
-#: ../../addon.old/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL à incorporer:"
index 8a751c78b3801396d5f4a0dccbe2990ba855f789..4af028c050f0484209f2d787bf369222ec61ab4b 100644 (file)
@@ -5,134 +5,398 @@ function string_plural_select_fr($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["Post successful."] = "Publication réussie.";
-$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["Permission denied."] = "Permission refusée.";
-$a->strings["Contact not found."] = "Contact introuvable.";
-$a->strings["Repair Contact Settings"] = "Réglages du réparateur de 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["Name"] = "Nom";
-$a->strings["Account Nickname"] = "Pseudo du compte";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - 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["Submit"] = "Envoyer";
-$a->strings["Help:"] = "Aide:";
-$a->strings["Help"] = "Aide";
-$a->strings["Not Found"] = "Non trouvé";
-$a->strings["Page not found."] = "Page introuvable.";
-$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["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["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["Profile"] = "Profil";
+$a->strings["Full Name:"] = "Nom complet:";
+$a->strings["Gender:"] = "Genre:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Anniversaire:";
+$a->strings["Age:"] = "Age:";
+$a->strings["Status:"] = "Statut:";
+$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
+$a->strings["Homepage:"] = "Page personnelle:";
+$a->strings["Hometown:"] = " Ville d'origine:";
+$a->strings["Tags:"] = "Tags :";
+$a->strings["Political Views:"] = "Opinions politiques:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["About:"] = "À propos:";
+$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
+$a->strings["Likes:"] = "J'aime :";
+$a->strings["Dislikes:"] = "Je n'aime pas :";
+$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
+$a->strings["Musical interests:"] = "Goûts musicaux:";
+$a->strings["Books, literature:"] = "Lectures:";
+$a->strings["Television:"] = "Télévision:";
+$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
+$a->strings["Love/Romance:"] = "Amour/Romance:";
+$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
+$a->strings["School/education:"] = "Études/Formation:";
+$a->strings["Male"] = "Masculin";
+$a->strings["Female"] = "Féminin";
+$a->strings["Currently Male"] = "Actuellement masculin";
+$a->strings["Currently Female"] = "Actuellement féminin";
+$a->strings["Mostly Male"] = "Principalement masculin";
+$a->strings["Mostly Female"] = "Principalement féminin";
+$a->strings["Transgender"] = "Transgenre";
+$a->strings["Intersex"] = "Inter-sexe";
+$a->strings["Transsexual"] = "Transsexuel";
+$a->strings["Hermaphrodite"] = "Hermaphrodite";
+$a->strings["Neuter"] = "Neutre";
+$a->strings["Non-specific"] = "Non-spécifique";
+$a->strings["Other"] = "Autre";
+$a->strings["Undecided"] = "Indécis";
+$a->strings["Males"] = "Hommes";
+$a->strings["Females"] = "Femmes";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbienne";
+$a->strings["No Preference"] = "Sans préférence";
+$a->strings["Bisexual"] = "Bisexuel";
+$a->strings["Autosexual"] = "Auto-sexuel";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Vierge";
+$a->strings["Deviant"] = "Déviant";
+$a->strings["Fetish"] = "Fétichiste";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Non-sexuel";
+$a->strings["Single"] = "Célibataire";
+$a->strings["Lonely"] = "Esseulé";
+$a->strings["Available"] = "Disponible";
+$a->strings["Unavailable"] = "Indisponible";
+$a->strings["Has crush"] = "Attiré par quelqu'un";
+$a->strings["Infatuated"] = "Entiché";
+$a->strings["Dating"] = "Dans une relation";
+$a->strings["Unfaithful"] = "Infidèle";
+$a->strings["Sex Addict"] = "Accro au sexe";
+$a->strings["Friends"] = "Amis";
+$a->strings["Friends/Benefits"] = "Amis par intérêt";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Fiancé";
+$a->strings["Married"] = "Marié";
+$a->strings["Imaginarily married"] = "Se croit marié";
+$a->strings["Partners"] = "Partenaire";
+$a->strings["Cohabiting"] = "En cohabitation";
+$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)";
+$a->strings["Happy"] = "Heureux";
+$a->strings["Not looking"] = "Pas intéressé";
+$a->strings["Swinger"] = "Échangiste";
+$a->strings["Betrayed"] = "Trahi(e)";
+$a->strings["Separated"] = "Séparé";
+$a->strings["Unstable"] = "Instable";
+$a->strings["Divorced"] = "Divorcé";
+$a->strings["Imaginarily divorced"] = "Se croit divorcé";
+$a->strings["Widowed"] = "Veuf/Veuve";
+$a->strings["Uncertain"] = "Incertain";
+$a->strings["It's complicated"] = "C'est compliqué";
+$a->strings["Don't care"] = "S'en désintéresse";
+$a->strings["Ask me"] = "Me demander";
+$a->strings["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"] = "Posts du Réseau";
+$a->strings["Edit Contact"] = "Éditer le contact";
+$a->strings["Send PM"] = "Message privé";
+$a->strings["Image/photo"] = "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:"] = "$1 a écrit:";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["Visible to everybody"] = "Visible par tout le monde";
+$a->strings["show"] = "montrer";
+$a->strings["don't show"] = "cacher";
+$a->strings["Logged out."] = "Déconnecté.";
+$a->strings["Login failed."] = "Échec de connexion.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
+$a->strings["The error message was:"] = "Le message d'erreur était :";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Débute:";
+$a->strings["Finishes:"] = "Finit:";
 $a->strings["Location:"] = "Localisation:";
-$a->strings["Title:"] = "Titre :";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Cancel"] = "Annuler";
-$a->strings["Tag removed"] = "Étiquette enlevée";
-$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
-$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: ";
-$a->strings["Remove"] = "Utiliser comme photo de profil";
-$a->strings["%1\$s welcomes %2\$s"] = "";
-$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
-$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?";
-$a->strings["Yes"] = "Oui";
-$a->strings["No"] = "Non";
-$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["Disallowed profile URL."] = "URL de profil interdite.";
+$a->strings["Connect URL missing."] = "URL de connexion manquante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
+$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
+$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
+$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
+$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
+$a->strings["following"] = "following";
+$a->strings["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["default"] = "défaut";
+$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["Profile Photos"] = "Photos du profil";
-$a->strings["Album not found."] = "Album introuvable.";
-$a->strings["Delete Album"] = "Effacer l'album";
-$a->strings["Delete Photo"] = "Effacer la photo";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
-$a->strings["a photo"] = "";
-$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";
-$a->strings["Image file is empty."] = "Fichier image vide.";
-$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
-$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
-$a->strings["Public access denied."] = "Accès public refusé.";
-$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 pour cet envoi";
-$a->strings["Permissions"] = "Permissions";
-$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["Private Message"] = "Message privé";
-$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["I like this (toggle)"] = "J'aime (bascule)";
-$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
-$a->strings["Share"] = "Partager";
-$a->strings["Please wait"] = "Patientez";
-$a->strings["This is you"] = "C'est vous";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Preview"] = "Aperçu";
-$a->strings["Delete"] = "Supprimer";
-$a->strings["View Album"] = "Voir l'album";
-$a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["Not available."] = "Indisponible.";
-$a->strings["Community"] = "Communauté";
-$a->strings["No results."] = "Aucun résultat.";
-$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/applications installées:";
-$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée";
-$a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
+$a->strings["Block immediately"] = "Bloquer immédiatement";
+$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
+$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
+$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
+$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
+$a->strings["Frequently"] = "Fréquemment";
+$a->strings["Hourly"] = "Toutes les heures";
+$a->strings["Twice daily"] = "Deux fois par jour";
+$a->strings["Daily"] = "Chaque jour";
+$a->strings["Weekly"] = "Chaque semaine";
+$a->strings["Monthly"] = "Chaque mois";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "Courriel";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "";
+$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["Connect"] = "Relier";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation disponible",
+       1 => "%d invitations disponibles",
+);
+$a->strings["Find People"] = "Trouver des personnes";
+$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
+$a->strings["Connect/Follow"] = "Connecter/Suivre";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
+$a->strings["Find"] = "Trouver";
+$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
+$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["%d contact in common"] = array(
+       0 => "%d contact en commun",
+       1 => "%d contacts en commun",
+);
+$a->strings["show more"] = "montrer plus";
+$a->strings[" on Last.fm"] = "sur Last.fm";
+$a->strings["view full size"] = "voir en pleine taille";
+$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["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["(no subject)"] = "(sans titre)";
+$a->strings["noreply"] = "noreply";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
+$a->strings["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["Attachments:"] = "Pièces jointes : ";
+$a->strings["[Name Withheld]"] = "[Nom non-publié]";
+$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous à ";
+$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à ";
+$a->strings["Item not found."] = "Élément introuvable.";
+$a->strings["Do you really want to delete this item?"] = "";
+$a->strings["Yes"] = "Oui";
+$a->strings["Cancel"] = "Annuler";
+$a->strings["Permission denied."] = "Permission refusée.";
+$a->strings["Archives"] = "Archives";
+$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["Saved Searches"] = "Recherches";
+$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["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["prev"] = "précédent";
+$a->strings["first"] = "premier";
+$a->strings["last"] = "dernier";
+$a->strings["next"] = "suivant";
+$a->strings["newer"] = "Plus récent";
+$a->strings["older"] = "Plus ancien";
+$a->strings["No contacts"] = "Aucun contact";
+$a->strings["%d Contact"] = array(
+       0 => "%d contact",
+       1 => "%d contacts",
+);
+$a->strings["View Contacts"] = "Voir les contacts";
+$a->strings["Search"] = "Recherche";
+$a->strings["Save"] = "Sauver";
+$a->strings["poke"] = "titiller";
+$a->strings["poked"] = "a titillé";
+$a->strings["ping"] = "attirer l'attention";
+$a->strings["pinged"] = "a attiré l'attention de";
+$a->strings["prod"] = "aiguillonner";
+$a->strings["prodded"] = "a aiguillonné";
+$a->strings["slap"] = "gifler";
+$a->strings["slapped"] = "a giflé";
+$a->strings["finger"] = "tripoter";
+$a->strings["fingered"] = "a tripoté";
+$a->strings["rebuff"] = "rabrouer";
+$a->strings["rebuffed"] = "a rabroué";
+$a->strings["happy"] = "heureuse";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "suave";
+$a->strings["tired"] = "fatiguée";
+$a->strings["perky"] = "guillerette";
+$a->strings["angry"] = "colérique";
+$a->strings["stupified"] = "stupéfaite";
+$a->strings["puzzled"] = "perplexe";
+$a->strings["interested"] = "intéressée";
+$a->strings["bitter"] = "amère";
+$a->strings["cheerful"] = "entraînante";
+$a->strings["alive"] = "vivante";
+$a->strings["annoyed"] = "ennuyée";
+$a->strings["anxious"] = "anxieuse";
+$a->strings["cranky"] = "excentrique";
+$a->strings["disturbed"] = "dérangée";
+$a->strings["frustrated"] = "frustrée";
+$a->strings["motivated"] = "motivée";
+$a->strings["relaxed"] = "détendue";
+$a->strings["surprised"] = "surprise";
+$a->strings["Monday"] = "Lundi";
+$a->strings["Tuesday"] = "Mardi";
+$a->strings["Wednesday"] = "Mercredi";
+$a->strings["Thursday"] = "Jeudi";
+$a->strings["Friday"] = "Vendredi";
+$a->strings["Saturday"] = "Samedi";
+$a->strings["Sunday"] = "Dimanche";
+$a->strings["January"] = "Janvier";
+$a->strings["February"] = "Février";
+$a->strings["March"] = "Mars";
+$a->strings["April"] = "Avril";
+$a->strings["May"] = "Mai";
+$a->strings["June"] = "Juin";
+$a->strings["July"] = "Juillet";
+$a->strings["August"] = "Août";
+$a->strings["September"] = "Septembre";
+$a->strings["October"] = "Octobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Décembre";
+$a->strings["View Video"] = "";
+$a->strings["bytes"] = "octets";
+$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
+$a->strings["link to source"] = "lien original";
+$a->strings["Select an alternate language"] = "Choisir une langue alternative";
+$a->strings["event"] = "évènement";
+$a->strings["activity"] = "activité";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "commentaire",
+);
+$a->strings["post"] = "publication";
+$a->strings["Item filed"] = "Élément classé";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
+$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["edit"] = "éditer";
+$a->strings["Groups"] = "Groupes";
+$a->strings["Edit group"] = "Editer groupe";
+$a->strings["Create a new group"] = "Créer un nouveau groupe";
+$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
+$a->strings["add"] = "ajouter";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s";
+$a->strings["post/item"] = "publication/élément";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori";
+$a->strings["Select"] = "Sélectionner";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
+$a->strings["Categories:"] = "Catégories:";
+$a->strings["Filed under:"] = "Rangé sous:";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["View in context"] = "Voir dans le contexte";
+$a->strings["Please wait"] = "Patientez";
+$a->strings["remove"] = "enlever";
+$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
+$a->strings["Follow Thread"] = "Suivre le fil";
+$a->strings["%s likes this."] = "%s aime ça.";
+$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "";
+$a->strings["and"] = "et";
+$a->strings[", and %d other people"] = ", et %d autres personnes";
+$a->strings["%s like this."] = "%s aiment ça.";
+$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
+$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
+$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
+$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
+$a->strings["Tag term:"] = "Tag : ";
+$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
+$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
+$a->strings["Delete item(s)?"] = "";
 $a->strings["Post to Email"] = "Publier aussi par courriel";
-$a->strings["Edit"] = "Éditer";
+$a->strings["Share"] = "Partager";
 $a->strings["Upload photo"] = "Joindre photo";
 $a->strings["upload photo"] = "envoi image";
 $a->strings["Attach file"] = "Joindre fichier";
@@ -147,654 +411,263 @@ $a->strings["Set your location"] = "Définir votre localisation";
 $a->strings["set location"] = "spéc. localisation";
 $a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
 $a->strings["clear location"] = "supp. localisation";
+$a->strings["Set title"] = "Définir un titre";
+$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
 $a->strings["Permission settings"] = "Réglages des permissions";
+$a->strings["permissions"] = "permissions";
 $a->strings["CC: email addresses"] = "CC: adresses de courriel";
 $a->strings["Public post"] = "Notice 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 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["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["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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connecter un utilisateur de courriel</strike> (bientôt)";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
-$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
-$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
-$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
-$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
-$a->strings["Submit Request"] = "Envoyer la requête";
-$a->strings["Account settings"] = "Compte";
-$a->strings["Display settings"] = "Affichage";
-$a->strings["Connector settings"] = "Connecteurs";
-$a->strings["Plugin settings"] = "Extensions";
-$a->strings["Connected apps"] = "Applications connectées";
-$a->strings["Export personal data"] = "Exporter";
-$a->strings["Remove account"] = "Supprimer le compte";
-$a->strings["Settings"] = "Réglages";
-$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["Friendica Social Communications Server - Setup"] = "Serveur de communications sociales Friendica - Installation";
-$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["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["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["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
-$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["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["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["No matches"] = "Aucune correspondance";
-$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
-$a->strings["Visible to:"] = "Visible par:";
-$a->strings["No such group"] = "Groupe inexistant";
-$a->strings["Group is empty"] = "Groupe vide";
-$a->strings["Group: "] = "Groupe: ";
-$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["like"] = "aime";
-$a->strings["dislike"] = "n'aime pas";
-$a->strings["Share this"] = "Partager";
-$a->strings["share"] = "partager";
-$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["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 un tag";
-$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["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
-$a->strings["Discard"] = "Rejeter";
-$a->strings["Ignore"] = "Ignorer";
-$a->strings["System"] = "Système";
-$a->strings["Network"] = "Réseau";
-$a->strings["Personal"] = "Personnel";
+$a->strings["Preview"] = "Aperçu";
+$a->strings["Post to Groups"] = "";
+$a->strings["Post to Contacts"] = "";
+$a->strings["Private post"] = "";
+$a->strings["Friendica Notification"] = "Notification Friendica";
+$a->strings["Thank You,"] = "Merci, ";
+$a->strings["%s Administrator"] = "L'administrateur de %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
+$a->strings["a private message"] = "un message privé";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a repéré";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous parle sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a taggé[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a repéré votre publication";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a tagué votre contenu sur %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a tagué [url=%2\$s]votre contenu[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
+$a->strings["Name:"] = "Nom :";
+$a->strings["Photo:"] = "Photo :";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
+$a->strings["[no subject]"] = "[pas de sujet]";
+$a->strings["Wall Photos"] = "Photos du mur";
+$a->strings["Nothing new here"] = "Rien de neuf ici";
+$a->strings["Clear notifications"] = "";
+$a->strings["Logout"] = "Se déconnecter";
+$a->strings["End this session"] = "Mettre fin à cette session";
+$a->strings["Status"] = "Statut";
+$a->strings["Your posts and conversations"] = "Vos notices et conversations";
+$a->strings["Your profile page"] = "Votre page de profil";
+$a->strings["Photos"] = "Photos";
+$a->strings["Your photos"] = "Vos photos";
+$a->strings["Events"] = "Événements";
+$a->strings["Your events"] = "Vos événements";
+$a->strings["Personal notes"] = "Notes personnelles";
+$a->strings["Your personal photos"] = "Vos photos personnelles";
+$a->strings["Login"] = "Connexion";
+$a->strings["Sign in"] = "Se connecter";
 $a->strings["Home"] = "Profil";
+$a->strings["Home Page"] = "Page d'accueil";
+$a->strings["Register"] = "S'inscrire";
+$a->strings["Create an account"] = "Créer un compte";
+$a->strings["Help"] = "Aide";
+$a->strings["Help and documentation"] = "Aide et documentation";
+$a->strings["Apps"] = "Applications";
+$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux";
+$a->strings["Search site content"] = "Rechercher dans le contenu du site";
+$a->strings["Community"] = "Communauté";
+$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["Network"] = "Réseau";
+$a->strings["Conversations from your friends"] = "Conversations de vos amis";
+$a->strings["Network Reset"] = "";
+$a->strings["Load Network page with no filters"] = "";
 $a->strings["Introductions"] = "Introductions";
+$a->strings["Friend Requests"] = "Demande d'amitié";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["See all notifications"] = "Voir toute notification";
+$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'";
 $a->strings["Messages"] = "Messages";
-$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
-$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
-$a->strings["Notification type: "] = "Type de notification: ";
-$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
-$a->strings["suggested by %s"] = "suggéré(e) par %s";
-$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
-$a->strings["Post a new friend activity"] = "Poster concernant les nouvelles amitiés";
-$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 notice de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice 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 publié une notice";
-$a->strings["%s commented on %s's post"] = "%s a commenté une notice 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["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["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["Private mail"] = "Messages privés";
+$a->strings["Inbox"] = "Messages entrants";
+$a->strings["Outbox"] = "Messages sortants";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["Manage"] = "Gérer";
+$a->strings["Manage other pages"] = "Gérer les autres pages";
+$a->strings["Delegations"] = "";
+$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Account settings"] = "Compte";
+$a->strings["Profiles"] = "Profils";
+$a->strings["Manage/Edit Profiles"] = "";
+$a->strings["Contacts"] = "Contacts";
+$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
+$a->strings["Navigation"] = "";
+$a->strings["Site map"] = "";
+$a->strings["Embedded content"] = "Contenu incorporé";
+$a->strings["Embedding disabled"] = "Incorporation désactivée";
+$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["View all contacts"] = "Voir tous les contacts";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
-$a->strings["Unignore"] = "Ne plus ignorer";
-$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
-$a->strings["Unarchive"] = "Désarchiver";
-$a->strings["Archive"] = "Archiver";
-$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
-$a->strings["Repair"] = "Réparer";
-$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
-$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
-$a->strings["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["Done. You can now login with your username and password"] = "";
+$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["Profile not found."] = "Profil introuvable.";
+$a->strings["Profile deleted."] = "Profil supprimé.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Nouveau profil créé.";
+$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
+$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
+$a->strings["Marital Status"] = "Statut marital";
+$a->strings["Romantic Partner"] = "Partenaire/conjoint";
+$a->strings["Likes"] = "Derniers \"J'aime\"";
+$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
+$a->strings["Work/Employment"] = "Travail/Occupation";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Tendance politique";
+$a->strings["Gender"] = "Sexe";
+$a->strings["Sexual Preference"] = "Préférence sexuelle";
+$a->strings["Homepage"] = "Site internet";
+$a->strings["Interests"] = "Centres d'intérêt";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Localisation";
+$a->strings["Profile updated."] = "Profil mis à jour.";
+$a->strings[" and "] = " et ";
+$a->strings["public profile"] = "profil public";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?";
+$a->strings["No"] = "Non";
+$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
+$a->strings["Submit"] = "Envoyer";
+$a->strings["Change Profile Photo"] = "";
+$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["Profile Name:"] = "Nom du profil:";
+$a->strings["Your Full Name:"] = "Votre nom complet:";
+$a->strings["Title/Description:"] = "Titre/Description:";
+$a->strings["Your Gender:"] = "Votre genre:";
+$a->strings["Birthday (%s):"] = "Anniversaire (%s):";
+$a->strings["Street Address:"] = "Adresse postale:";
+$a->strings["Locality/City:"] = "Ville/Localité:";
+$a->strings["Postal/Zip Code:"] = "Code postal:";
+$a->strings["Country:"] = "Pays:";
+$a->strings["Region/State:"] = "Région/État:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Statut marital:";
+$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Depuis [date] :";
+$a->strings["Homepage URL:"] = "Page personnelle:";
+$a->strings["Religious Views:"] = "Opinions religieuses:";
+$a->strings["Public Keywords:"] = "Mots-clés publics:";
+$a->strings["Private Keywords:"] = "Mots-clés privés:";
+$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
+$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
+$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt";
+$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux";
+$a->strings["Musical interests"] = "Goûts musicaux";
+$a->strings["Books, literature"] = "Lectures";
+$a->strings["Television"] = "Télévision";
+$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
+$a->strings["Love/romance"] = "Amour/Romance";
+$a->strings["Work/employment"] = "Activité professionnelle/Occupation";
+$a->strings["School/education"] = "Études/Formation";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
+$a->strings["Age: "] = "Age: ";
+$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils";
+$a->strings["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["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["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["Personal Notes"] = "Notes personnelles";
+$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["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éparer les réglages d'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"] = "Met ses entrées publiques à jour: ";
-$a->strings["Update now"] = "Mettre à jour";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$a->strings["Currently archived"] = "Actuellement archivé";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos contenus publics <strong>peuvent</strong> être toujours visibles";
-$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["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["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
-$a->strings["Administrator"] = "Administrateur";
-$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["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["Additional features"] = "";
-$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
-$a->strings["Update"] = "Mises-à-jour";
-$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
-$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
-$a->strings["Features updated"] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
-$a->strings["Password changed."] = "Mots de passe changés.";
-$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
-$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
-$a->strings[" Name too short."] = " Nom trop court.";
-$a->strings[" Not valid email."] = " Email invalide.";
-$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
-$a->strings["Settings updated."] = "Réglages mis à jour.";
-$a->strings["Add application"] = "Ajouter une application";
-$a->strings["Consumer Key"] = "Clé utilisateur";
-$a->strings["Consumer Secret"] = "Secret utilisateur";
-$a->strings["Redirect"] = "Rediriger";
-$a->strings["Icon url"] = "URL de l'icône";
-$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
-$a->strings["Connected Apps"] = "Applications connectées";
-$a->strings["Client key starts with"] = "La clé cliente commence par";
-$a->strings["No name"] = "Sans nom";
-$a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
-$a->strings["Plugin Settings"] = "Extensions";
-$a->strings["Off"] = "";
-$a->strings["On"] = "";
-$a->strings["Additional Features"] = "";
-$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
-$a->strings["enabled"] = "activé";
-$a->strings["disabled"] = "désactivé";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
-$a->strings["Connector Settings"] = "Connecteurs";
-$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
-$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
-$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
-$a->strings["IMAP port:"] = "Port IMAP:";
-$a->strings["Security:"] = "Sécurité:";
-$a->strings["None"] = "Aucun(e)";
-$a->strings["Email login name:"] = "Nom de connexion:";
-$a->strings["Email password:"] = "Mot de passe:";
-$a->strings["Reply-to address:"] = "Adresse de réponse:";
-$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:";
-$a->strings["Action after import:"] = "Action après import:";
-$a->strings["Mark as seen"] = "Marquer comme vu";
-$a->strings["Move to folder"] = "Déplacer vers";
-$a->strings["Move to folder:"] = "Déplacer vers:";
+$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
+$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é une notice de %s";
+$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s";
+$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s";
+$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
+$a->strings["{0} posted"] = "{0} a posté";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
+$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["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["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["Display Settings"] = "Affichage";
-$a->strings["Display Theme:"] = "Thème d'affichage:";
-$a->strings["Mobile Theme:"] = "Thème mobile:";
-$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum";
-$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
-$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
-$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
-$a->strings["Normal Account Page"] = "Compte normal";
-$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
-$a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
-$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'";
-$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\"";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis";
-$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]";
-$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
-$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
-$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
-$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
-$a->strings["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 à tagguer vos notices?";
-$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 notices n'expireront pas. Les notices expirées seront supprimées";
-$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration";
-$a->strings["Advanced Expiration"] = "Expiration (avancé)";
-$a->strings["Expire posts:"] = "Faire expirer les contenus:";
-$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:";
-$a->strings["Expire starred posts:"] = "Faire expirer les contenus marqués:";
-$a->strings["Expire photos:"] = "Faire expirer les photos:";
-$a->strings["Only expire posts by others:"] = "Faire expirer seulement les messages 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["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:"] = "Publication par défaut depuis :";
-$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 par défaut sur les articles";
-$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
-$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é repéré 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["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["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 par publications";
-$a->strings["Sort by Post Date"] = "Trier par date de publication";
-$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
-$a->strings["New"] = "Nouveau";
-$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
-$a->strings["Shared Links"] = "Liens partagés";
-$a->strings["Interesting Links"] = "Liens intéressants";
-$a->strings["Starred"] = "Mis en avant";
-$a->strings["Favourite Posts"] = "Publications favorites";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
-       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
-$a->strings["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["Personal Notes"] = "Notes personnelles";
-$a->strings["Save"] = "Sauver";
-$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["Import"] = "Importer";
-$a->strings["Move account"] = "Migrer le compte";
-$a->strings["You can import an account from another Friendica server. <br>\r\n                            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.<br>\r\n                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
-$a->strings["Account file"] = "Fichier du compte";
-$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
-$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
-$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
-$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
-$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
-$a->strings["Message sent."] = "Message envoyé.";
-$a->strings["No recipient."] = "Pas de destinataire.";
-$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
-$a->strings["Send Private Message"] = "Envoyer un message privé";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
-$a->strings["To:"] = "À:";
-$a->strings["Subject:"] = "Sujet:";
-$a->strings["Your message:"] = "Votre message:";
-$a->strings["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, tous vos éléments 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["Item not available."] = "Elément non disponible.";
-$a->strings["Item was not found."] = "Element introuvable.";
-$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["Permission denied"] = "Permission refusée";
-$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
-$a->strings["Group Name: "] = "Nom du groupe: ";
-$a->strings["Group removed."] = "Groupe enlevé.";
-$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
-$a->strings["Group Editor"] = "Éditeur de groupe";
-$a->strings["Members"] = "Membres";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
-$a->strings["Visible To"] = "Visible par";
-$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
-$a->strings["No contacts."] = "Aucun contact.";
-$a->strings["View Contacts"] = "Voir les contacts";
-$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué.";
-$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
-$a->strings["Registration request at %s"] = "Demande d'inscription à %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
-$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["Never"] = "Jamais";
+$a->strings["Multi user instance"] = "Instance multi-utilisateurs";
+$a->strings["Closed"] = "Fermé";
+$a->strings["Requires approval"] = "Demande une apptrobation";
+$a->strings["Open"] = "Ouvert";
+$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page";
+$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
 $a->strings["Registration"] = "Inscription";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
-$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
-$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
-$a->strings["Register"] = "S'inscrire";
-$a->strings["People Search"] = "Recherche de personnes";
-$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["Item not found."] = "Élément introuvable.";
-$a->strings["Access denied."] = "Accès refusé.";
-$a->strings["Photos"] = "Photos";
-$a->strings["Files"] = "Fichiers";
-$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["Unable to locate original post."] = "Impossible de localiser l'article original.";
-$a->strings["Empty post discarded."] = "Article vide défaussé.";
-$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["%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["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["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
-$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["No profile"] = "Aucun profil";
-$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["New Message"] = "Nouveau message";
-$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
-$a->strings["Message deleted."] = "Message supprimé.";
-$a->strings["Conversation removed."] = "Conversation supprimée.";
-$a->strings["No messages."] = "Aucun message.";
-$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
-$a->strings["You and %s"] = "Vous et %s";
-$a->strings["%s and You"] = "%s et vous";
-$a->strings["Delete conversation"] = "Effacer conversation";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d message",
-       1 => "%d messages",
-);
-$a->strings["Message not available."] = "Message indisponible.";
-$a->strings["Delete message"] = "Effacer message";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
-$a->strings["Send Reply"] = "Répondre";
-$a->strings["Friends of %s"] = "Amis de %s";
-$a->strings["No friends to display."] = "Pas d'amis à afficher.";
-$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["Site settings updated."] = "Réglages du site mis-à-jour.";
-$a->strings["Closed"] = "Fermé";
-$a->strings["Requires approval"] = "Demande une apptrobation";
-$a->strings["Open"] = "Ouvert";
-$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page";
-$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
 $a->strings["File upload"] = "Téléversement de fichier";
 $a->strings["Policies"] = "Politiques";
 $a->strings["Advanced"] = "Avancé";
+$a->strings["Performance"] = "Performance";
 $a->strings["Site name"] = "Nom du site";
 $a->strings["Banner/Logo"] = "Bannière/Logo";
 $a->strings["System language"] = "Langue du système";
@@ -804,6 +677,12 @@ $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'usage de SSL";
+$a->strings["'Share' element"] = "";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
+$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
+$a->strings["Single user instance"] = "Instance mono-utilisateur";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "";
 $a->strings["Maximum image size"] = "Taille maximale des images";
 $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\".";
 $a->strings["Maximum image length"] = "Longueur maximale des images";
@@ -811,6 +690,8 @@ $a->strings["Maximum length in pixels of the longest side of uploaded images. De
 $a->strings["JPEG image quality"] = "Qualité JPEG des images";
 $a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.";
 $a->strings["Register policy"] = "Politique d'inscription";
+$a->strings["Maximum Daily Registrations"] = "";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "";
 $a->strings["Register text"] = "Texte d'inscription";
 $a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil.";
 $a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
@@ -829,6 +710,12 @@ $a->strings["Allow threaded items"] = "Activer les commentaires imbriqués";
 $a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires.";
 $a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
 $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
+$a->strings["Don't include post content in email notifications"] = "";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "";
+$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["Block multiple registrations"] = "Interdire les inscriptions multiples";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages.";
 $a->strings["OpenID support"] = "Support OpenID";
@@ -841,6 +728,8 @@ $a->strings["Show Community Page"] = "Montrer la \"Place publique\"";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Afficher une page Communauté avec toutes les publications publiques récentes du site.";
 $a->strings["Enable OStatus support"] = "Activer le support d'OStatus";
 $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."] = "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile.";
+$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"] = "Activer le support de Diaspora";
 $a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée.";
 $a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica";
@@ -857,6 +746,14 @@ $a->strings["Poll interval"] = "Intervalle de réception";
 $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission.";
 $a->strings["Maximum Load Average"] = "Plafond de la charge moyenne";
 $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50.";
+$a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus.";
+$a->strings["Path to item cache"] = "Chemin vers le cache des objets.";
+$a->strings["Cache duration in seconds"] = "Durée du cache en secondes";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
+$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage";
+$a->strings["Temp path"] = "Chemin des fichiers temporaires";
+$a->strings["Base path to installation"] = "Chemin de base de l'installation";
 $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'";
 $a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Vérifiez les journaux du système.";
 $a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès.";
@@ -881,10 +778,14 @@ $a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
 $a->strings["select all"] = "tout sélectionner";
 $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
 $a->strings["Request date"] = "Date de la demande";
-$a->strings["Email"] = "Courriel";
+$a->strings["Name"] = "Nom";
 $a->strings["No registrations."] = "Pas d'inscriptions.";
+$a->strings["Approve"] = "Approuver";
 $a->strings["Deny"] = "Rejetter";
+$a->strings["Block"] = "Bloquer";
+$a->strings["Unblock"] = "Débloquer";
 $a->strings["Site admin"] = "Administration du Site";
+$a->strings["Account expired"] = "Compte expiré";
 $a->strings["Register date"] = "Date d'inscription";
 $a->strings["Last login"] = "Dernière connexion";
 $a->strings["Last item"] = "Dernier élément";
@@ -904,130 +805,60 @@ $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["Debugging"] = "Déboguage";
+$a->strings["Enable Debugging"] = "";
 $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["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["{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é une notice de %s";
-$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s";
-$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s";
-$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
-$a->strings["{0} posted"] = "{0} a posté";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
-$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
-$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["Contact added"] = "Contact ajouté";
-$a->strings["Common Friends"] = "Amis communs";
-$a->strings["No contacts in common."] = "Pas de contacts en commun.";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["link"] = "lien";
-$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "Pas d'application installée.";
-$a->strings["Search"] = "Recherche";
-$a->strings["Profile not found."] = "Profil introuvable.";
-$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["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["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["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["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["Save to Folder:"] = "Sauver dans le Dossier:";
-$a->strings["- select -"] = "- choisir -";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s";
-$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["Unable to locate original post."] = "Impossible de localiser l'article original.";
+$a->strings["Empty post discarded."] = "Article vide défaussé.";
+$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["Friends of %s"] = "Amis de %s";
+$a->strings["No friends to display."] = "Pas d'amis à afficher.";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["No results."] = "Aucun résultat.";
+$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 notices et contacts, et/ou à créer des notices à votre place?";
+$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué.";
+$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
+$a->strings["Registration request at %s"] = "Demande d'inscription à %s";
+$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["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["Item not available."] = "Elément non disponible.";
+$a->strings["Item was not found."] = "Element introuvable.";
+$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["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): "] = "";
 $a->strings["bb2html: "] = "bb2html: ";
 $a->strings["bb2html2bb: "] = "bb2html2bb: ";
 $a->strings["bb2md: "] = "bb2md: ";
@@ -1036,36 +867,251 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
 $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
 $a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
 $a->strings["diaspora2bb: "] = "diaspora2bb :";
-$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["Global Directory"] = "Annuaire global";
-$a->strings["Find on this site"] = "Trouver sur ce site";
-$a->strings["Site Directory"] = "Annuaire local";
-$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["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
-$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
-$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["Common Friends"] = "Amis communs";
+$a->strings["No contacts in common."] = "Pas de contacts en commun.";
+$a->strings["You must be logged in to use addons. "] = "";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "Pas d'application installée.";
+$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
+$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
+$a->strings["Contact updated."] = "Contact mis-à-jour.";
+$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact.";
+$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
+$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
+$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
+$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
+$a->strings["Contact has been archived"] = "Contact archivé";
+$a->strings["Contact has been unarchived"] = "Contact désarchivé";
+$a->strings["Do you really want to delete this contact?"] = "";
+$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["View all contacts"] = "Voir tous les contacts";
+$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
+$a->strings["Unignore"] = "Ne plus ignorer";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
+$a->strings["Unarchive"] = "Désarchiver";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
+$a->strings["Repair"] = "Réparer";
+$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
+$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
+$a->strings["Contact Editor"] = "Éditeur de contact";
+$a->strings["Profile Visibility"] = "Visibilité du profil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
+$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
+$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
+$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
+$a->strings["Ignore contact"] = "Ignorer ce contact";
+$a->strings["Repair URL settings"] = "Réparer les réglages d'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"] = "Met ses entrées publiques à jour: ";
+$a->strings["Currently blocked"] = "Actuellement bloqué";
+$a->strings["Currently ignored"] = "Actuellement ignoré";
+$a->strings["Currently archived"] = "Actuellement archivé";
+$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos contenus publics <strong>peuvent</strong> être toujours visibles";
+$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["Search your contacts"] = "Rechercher dans vos contacts";
+$a->strings["Finding: "] = "Trouvé: ";
+$a->strings["everybody"] = "tout le monde";
+$a->strings["Additional features"] = "";
+$a->strings["Display settings"] = "Affichage";
+$a->strings["Connector settings"] = "Connecteurs";
+$a->strings["Plugin settings"] = "Extensions";
+$a->strings["Connected apps"] = "Applications connectées";
+$a->strings["Export personal data"] = "Exporter";
+$a->strings["Remove account"] = "Supprimer le compte";
+$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
+$a->strings["Update"] = "Mises-à-jour";
+$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
+$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
+$a->strings["Features updated"] = "";
+$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
+$a->strings["Wrong password."] = "";
+$a->strings["Password changed."] = "Mots de passe changés.";
+$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
+$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
+$a->strings[" Name too short."] = " Nom trop court.";
+$a->strings["Wrong Password"] = "";
+$a->strings[" Not valid email."] = " Email invalide.";
+$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
+$a->strings["Settings updated."] = "Réglages mis à jour.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Consumer Key"] = "Clé utilisateur";
+$a->strings["Consumer Secret"] = "Secret utilisateur";
+$a->strings["Redirect"] = "Rediriger";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
+$a->strings["Connected Apps"] = "Applications connectées";
+$a->strings["Edit"] = "Éditer";
+$a->strings["Client key starts with"] = "La clé cliente commence par";
+$a->strings["No name"] = "Sans nom";
+$a->strings["Remove authorization"] = "Révoquer l'autorisation";
+$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
+$a->strings["Plugin Settings"] = "Extensions";
+$a->strings["Off"] = "";
+$a->strings["On"] = "";
+$a->strings["Additional Features"] = "";
+$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
+$a->strings["enabled"] = "activé";
+$a->strings["disabled"] = "désactivé";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
+$a->strings["Connector Settings"] = "Connecteurs";
+$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
+$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
+$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
+$a->strings["IMAP port:"] = "Port IMAP:";
+$a->strings["Security:"] = "Sécurité:";
+$a->strings["None"] = "Aucun(e)";
+$a->strings["Email login name:"] = "Nom de connexion:";
+$a->strings["Email password:"] = "Mot de passe:";
+$a->strings["Reply-to address:"] = "Adresse de réponse:";
+$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:";
+$a->strings["Action after import:"] = "Action après import:";
+$a->strings["Mark as seen"] = "Marquer comme vu";
+$a->strings["Move to folder"] = "Déplacer vers";
+$a->strings["Move to folder:"] = "Déplacer vers:";
+$a->strings["Display Settings"] = "Affichage";
+$a->strings["Display Theme:"] = "Thème d'affichage:";
+$a->strings["Mobile Theme:"] = "Thème mobile:";
+$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum";
+$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
+$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "";
+$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
+$a->strings["Normal Account Page"] = "Compte normal";
+$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
+$a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
+$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'";
+$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\"";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis";
+$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]";
+$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
+$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
+$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
+$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
+$a->strings["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 à tagguer vos notices?";
+$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 notices n'expireront pas. Les notices expirées seront supprimées";
+$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration";
+$a->strings["Advanced Expiration"] = "Expiration (avancé)";
+$a->strings["Expire posts:"] = "Faire expirer les contenus:";
+$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:";
+$a->strings["Expire starred posts:"] = "Faire expirer les contenus marqués:";
+$a->strings["Expire photos:"] = "Faire expirer les photos:";
+$a->strings["Only expire posts by others:"] = "Faire expirer seulement les messages 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:"] = "";
+$a->strings["Your current password to confirm the changes"] = "";
+$a->strings["Password:"] = "";
+$a->strings["Basic Settings"] = "Réglages basiques";
+$a->strings["Email Address:"] = "Adresse courriel:";
+$a->strings["Your Timezone:"] = "Votre fuseau horaire:";
+$a->strings["Default Post Location:"] = "Publication par défaut depuis :";
+$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 par défaut sur les articles";
+$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"] = "";
+$a->strings["Default Public Post"] = "";
+$a->strings["Default Permissions for New Posts"] = "";
+$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é repéré 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["link"] = "lien";
+$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
+$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["Repair Contact Settings"] = "Réglages du réparateur de 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"] = "@NomDuTag - 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["No potential page delegates located."] = "Pas de délégataire potentiel.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
+$a->strings["Existing Page Managers"] = "Gestionnaires existants";
+$a->strings["Existing Page Delegates"] = "Délégataires existants";
+$a->strings["Potential Delegates"] = "Délégataires potentiels";
+$a->strings["Remove"] = "Utiliser comme photo de profil";
+$a->strings["Add"] = "Ajouter";
+$a->strings["No entries."] = "Aucune entrée.";
+$a->strings["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["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: ";
@@ -1074,7 +1120,6 @@ $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.";
@@ -1085,961 +1130,494 @@ $a->strings["Unable to set your contact credentials on our system."] = "Impossib
 $a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
 $a->strings["Connection accepted at %s"] = "Connexion acceptée chez %s";
 $a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
-$a->strings["Google+ Import Settings"] = "Réglages G+";
-$a->strings["Enable Google+ Import"] = "Activer l'import G+";
-$a->strings["Google Account ID"] = "ID du compte Google";
-$a->strings["Google+ Import Settings saved."] = "Réglages G+ sauvés.";
-$a->strings["Facebook disabled"] = "Connecteur Facebook désactivé";
-$a->strings["Updating contacts"] = "Mise-à-jour des contacts";
-$a->strings["Facebook API key is missing."] = "Clé d'API Facebook manquante.";
-$a->strings["Facebook Connect"] = "Connecteur Facebook";
-$a->strings["Install Facebook connector for this account."] = "Installer le connecteur Facebook sur ce compte.";
-$a->strings["Remove Facebook connector"] = "Désinstaller le connecteur Facebook";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]";
-$a->strings["Post to Facebook by default"] = "Poster sur Facebook par défaut";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet.";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer.";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "Lier tous vos amis et conversations Facebook sur ce site";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Les conversations Facebook se composent du <em>mur du profil</em> et des <em>flux</em> de vos amis.";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous.";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site.";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous.";
-$a->strings["Do not import your Facebook profile wall conversations"] = "Ne pas importer les conversations de votre mur Facebook.";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité.";
-$a->strings["Comma separated applications to ignore"] = "Liste (séparée par des virgules) des applications à ignorer";
-$a->strings["Problems with Facebook Real-Time Updates"] = "Problème avec les mises-à-jour en temps réel de Facebook";
-$a->strings["Facebook Connector Settings"] = "Réglages du connecteur Facebook";
-$a->strings["Facebook API Key"] = "Clé d'API Facebook";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.<br /><br />";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)";
-$a->strings["The given API Key seems to work correctly."] = "La clé d'API semble fonctionner correctement.";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe.";
-$a->strings["App-ID / API-Key"] = "App-ID / Clé d'API";
-$a->strings["Application secret"] = "Secret de l'application";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervalle de 'polling' en minutes (minimum %1\$s minutes)";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)";
-$a->strings["Real-Time Updates"] = "Mises-à-jour en temps réel";
-$a->strings["Real-Time Updates are activated."] = "Mises-à-jour en temps réel activées.";
-$a->strings["Deactivate Real-Time Updates"] = "Désactiver les mises-à-jour en temps réel";
-$a->strings["Real-Time Updates not activated."] = "Mises-à-jour en temps réel désactivées.";
-$a->strings["Activate Real-Time Updates"] = "Activer les mises-à-jour en temps réel";
-$a->strings["The new values have been saved."] = "Les nouvelles valeurs ont été sauvées.";
-$a->strings["Post to Facebook"] = "Poster sur Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux.";
-$a->strings["View on Friendica"] = "Voir sur Friendica";
-$a->strings["Facebook post failed. Queued for retry."] = "Publication sur Facebook échouée. En attente pour re-tentative.";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier.";
-$a->strings["Facebook connection became invalid"] = "La connexion Facebook est devenue invalide";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Bonjour %1\$s,\n\nLa connexion entre vos comptes sur %2\$s et Facebook est devenue invalide. Ceci arrive généralement lorsque vous changez de mot de passe Facebook. Pour réactiver cette connexion, vous devrez %3\$sré-authentifier le connecteur Facebook%4\$s.";
-$a->strings["StatusNet AutoFollow settings updated."] = "Réglages de suivi automatique sur StatusNet mis à jour.";
-$a->strings["StatusNet AutoFollow Settings"] = "Réglages de suivi automatique sur StatusNet";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Suivre automatiquement les personnes qui vous suivent ou vous mentionnent sur Statusnet";
-$a->strings["Lifetime of the cache (in hours)"] = "Durée de vie du cache (en heures)";
-$a->strings["Cache Statistics"] = "Statistiques du cache";
-$a->strings["Number of items"] = "Nombre d'éléments";
-$a->strings["Size of the cache"] = "Taille du cache";
-$a->strings["Delete the whole cache"] = "Vider le cache";
-$a->strings["Facebook Post disabled"] = "Publications Facebook désactivées";
-$a->strings["Facebook Post"] = "Publications Facebook";
-$a->strings["Install Facebook Post connector for this account."] = "Installer le connecteur Facebook pour ce compte.";
-$a->strings["Remove Facebook Post connector"] = "Retirer le connecteur Facebook";
-$a->strings["Facebook Post Settings"] = "Réglages Facebook";
-$a->strings["%d person likes this"] = array(
-       0 => "%d personne aime ça",
-       1 => "%d personnes aiment ça",
-);
-$a->strings["%d person doesn't like this"] = array(
-       0 => "%d personne n'aime pas ça",
-       1 => "%d personnes n'aiment pas ça",
-);
-$a->strings["Get added to this list!"] = "Ajoutez-vous à cette liste!";
-$a->strings["Generate new key"] = "Générer une nouvelle clé";
-$a->strings["Widgets key"] = "Clé des widgets";
-$a->strings["Widgets available"] = "Widgets disponibles";
-$a->strings["Connect on Friendica!"] = "Se connecter sur Friendica!";
-$a->strings["bitchslap"] = "faire un coup de pute";
-$a->strings["bitchslapped"] = "a fait un coup de pute à";
-$a->strings["shag"] = "niquer";
-$a->strings["shagged"] = "a niqué";
-$a->strings["do something obscenely biological to"] = "";
-$a->strings["did something obscenely biological to"] = "";
-$a->strings["point out the poke feature to"] = "indiquer les sollicitations";
-$a->strings["pointed out the poke feature to"] = "a indiqué les sollicitations à";
-$a->strings["declare undying love for"] = "déclarer sa flamme";
-$a->strings["declared undying love for"] = "a déclaré sa flamme à";
-$a->strings["patent"] = "faire breveter";
-$a->strings["patented"] = "a fait breveter";
-$a->strings["stroke beard"] = "frotter sa barbe";
-$a->strings["stroked their beard at"] = "a frotté sa barbe sur";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "se lamenter sur les valeurs qui se perdent";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "s'est lamenté du lent déclin des valeurs auprès de";
-$a->strings["hug"] = "faire un calin";
-$a->strings["hugged"] = "a fait un câlin à";
-$a->strings["kiss"] = "embrasser";
-$a->strings["kissed"] = "a embrassé";
-$a->strings["raise eyebrows at"] = "hausser le sourcil";
-$a->strings["raised their eyebrows at"] = "a haussé le sourcil à ";
-$a->strings["insult"] = "insulter";
-$a->strings["insulted"] = "a insulté";
-$a->strings["praise"] = "louer";
-$a->strings["praised"] = "a loué";
-$a->strings["be dubious of"] = "trouver douteux";
-$a->strings["was dubious of"] = "a trouvé douteux ";
-$a->strings["eat"] = "manger";
-$a->strings["ate"] = "a mangé ";
-$a->strings["giggle and fawn at"] = "se payer la tête";
-$a->strings["giggled and fawned at"] = "s'est payé la tête de";
-$a->strings["doubt"] = "mettre en doute";
-$a->strings["doubted"] = "a mis en doute ";
-$a->strings["glare"] = "fixer";
-$a->strings["glared at"] = "a fixé";
-$a->strings["YourLS Settings"] = "Réglages de YourLS";
-$a->strings["URL: http://"] = "URL: http://";
-$a->strings["Username:"] = "Nom d'utilisateur";
-$a->strings["Password:"] = "Mot de passe :";
-$a->strings["Use SSL "] = "Utiliser SSL ";
-$a->strings["yourls Settings saved."] = "Réglages yourls sauvés.";
-$a->strings["Post to LiveJournal"] = "Poster vers LiveJournal";
-$a->strings["LiveJournal Post Settings"] = "Réglages LiveJournal";
-$a->strings["Enable LiveJournal Post Plugin"] = "Activer \"Poster vers LiveJournal\"";
-$a->strings["LiveJournal username"] = "Nom d'utilisateur LiveJournal";
-$a->strings["LiveJournal password"] = "Mot de passe";
-$a->strings["Post to LiveJournal by default"] = "Poster vers LiveJournal par défaut";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Réglages de \"NSFW\" (filtrage de contenu)";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Cette extension va parcourir les publications à la recherche des mots (ou phrases) que vous spécifierez ci-dessous, et repliera automatiquement tout contenu qui les contiendrait, afin de ne pas risquer de les afficher à un moment inopportun. Comme par exemple des messages à caractère sexuel dans un contexte professionnel. Il est globalement considéré comme correct et poli de \"tagguer\" toute publication contenant de la nudité avec #NSFW (Not Safe For Work - pas pour le boulot).    Ce filtre peut également fonctionner pour tout autre texte que vous spécifierez, et pourra ainsi être utilisé comme filtre de contenu générique.";
-$a->strings["Enable Content filter"] = "Activer le filtrage de contenu";
-$a->strings["Comma separated list of keywords to hide"] = "Liste de mots-clés - séparés par des virgules - à cacher";
-$a->strings["Use /expression/ to provide regular expressions"] = "Utilisez /expression/ pour les expressions rationnelles";
-$a->strings["NSFW Settings saved."] = "Réglages NSFW sauvegardés.";
-$a->strings["%s - Click to open/close"] = "%s - cliquer pour ouvrir/fermer";
-$a->strings["Forums"] = "Forums";
-$a->strings["Forums:"] = "Forums:";
-$a->strings["Page settings updated."] = "Paramètres des pages mis à jour.";
-$a->strings["Page Settings"] = "Paramètres des pages";
-$a->strings["How many forums to display on sidebar without paging"] = "Nombre de forums à afficher sur la barre de côté sans changer de page";
-$a->strings["Randomise Page/Forum list"] = "Rendre aléatoire la liste des pages/forums";
-$a->strings["Show pages/forums on profile page"] = "Montrer les forums sur le profil";
-$a->strings["Planets Settings"] = "Réglages des Planets";
-$a->strings["Enable Planets Plugin"] = "Activer Planets";
-$a->strings["Forum Directory"] = "";
-$a->strings["Login"] = "Connexion";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Derniers utilisateurs";
-$a->strings["Most active users"] = "Utilisateurs les plus actifs";
-$a->strings["Latest photos"] = "Dernières photos";
-$a->strings["Latest likes"] = "Dernières approbations";
-$a->strings["event"] = "évènement";
-$a->strings["No access"] = "Pas d'accès";
-$a->strings["Could not open component for editing"] = "Échec d'ouverture de l'élément pour édition";
-$a->strings["Go back to the calendar"] = "Revenir au calendrier";
-$a->strings["Event data"] = "Données de l'évènement";
-$a->strings["Calendar"] = "Calendrier";
-$a->strings["Special color"] = "Couleur spéciale";
-$a->strings["Subject"] = "Sujet";
-$a->strings["Starts"] = "Début";
-$a->strings["Ends"] = "Fin";
-$a->strings["Description"] = "Description";
-$a->strings["Recurrence"] = "Récurrence";
-$a->strings["Frequency"] = "Fréquence";
-$a->strings["Daily"] = "Chaque jour";
-$a->strings["Weekly"] = "Chaque semaine";
-$a->strings["Monthly"] = "Chaque mois";
-$a->strings["Yearly"] = "Par an";
-$a->strings["days"] = "jours";
-$a->strings["weeks"] = "semaines";
-$a->strings["months"] = "mois";
-$a->strings["years"] = "ans";
-$a->strings["Interval"] = "Intervalle";
-$a->strings["All %select% %time%"] = "";
-$a->strings["Days"] = "Jours";
-$a->strings["Sunday"] = "Dimanche";
-$a->strings["Monday"] = "Lundi";
-$a->strings["Tuesday"] = "Mardi";
-$a->strings["Wednesday"] = "Mercredi";
-$a->strings["Thursday"] = "Jeudi";
-$a->strings["Friday"] = "Vendredi";
-$a->strings["Saturday"] = "Samedi";
-$a->strings["First day of week:"] = "Premier jour de la semaine :";
-$a->strings["Day of month"] = "Jour du mois";
-$a->strings["#num#th of each month"] = "Le #num# de chaque mois";
-$a->strings["#num#th-last of each month"] = "";
-$a->strings["#num#th #wkday# of each month"] = "";
-$a->strings["#num#th-last #wkday# of each month"] = "";
-$a->strings["Month"] = "Mois";
-$a->strings["#num#th of the given month"] = "";
-$a->strings["#num#th-last of the given month"] = "";
-$a->strings["#num#th #wkday# of the given month"] = "";
-$a->strings["#num#th-last #wkday# of the given month"] = "";
-$a->strings["Repeat until"] = "Répéter jusqu'à";
-$a->strings["Infinite"] = "Infini";
-$a->strings["Until the following date"] = "Jusqu'à cette date";
-$a->strings["Number of times"] = "Nombre de fois";
-$a->strings["Exceptions"] = "Exceptions";
-$a->strings["none"] = "aucun";
-$a->strings["Notification"] = "Notification";
-$a->strings["Notify by"] = "";
-$a->strings["E-Mail"] = "Courriel";
-$a->strings["On Friendica / Display"] = "Sur Friendica / Afficher";
-$a->strings["Time"] = "Heure";
-$a->strings["Hours"] = "Heures";
-$a->strings["Minutes"] = "Minutes";
-$a->strings["Seconds"] = "Secondes";
-$a->strings["Weeks"] = "Semaines";
-$a->strings["before the"] = "avant le";
-$a->strings["start of the event"] = "début de l'événement";
-$a->strings["end of the event"] = "fin de l'événement";
-$a->strings["Add a notification"] = "Ajouter une notification";
-$a->strings["The event #name# will start at #date"] = "L'événement #name# commencera le #date#";
-$a->strings["#name# is about to begin."] = "#name# va commencer";
-$a->strings["Saved"] = "Sauvegardé";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Date au format américain (mm/jj/AAAA)";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "Date au format européen (jj.mm.AAAA)";
-$a->strings["Private Events"] = "Événements privés.";
-$a->strings["Private Addressbooks"] = "Carnets d'adresses privés";
-$a->strings["Friendica-Native events"] = "Événements natifs de Friendica";
-$a->strings["Friendica-Contacts"] = "Contacts Friendica";
-$a->strings["Your Friendica-Contacts"] = "Vos contacts Friendica";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Désolé, l'importation du fichier s'est mal passée. Toutefois, il se peut que certains événements aient tout de même été importés.";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "Désolé, l'importation du fichier s'est mal passée.";
-$a->strings["The ICS-File has been imported."] = "Le fichier ICS a été importé.";
-$a->strings["No file was uploaded."] = "Aucun fichier n'a été téléchargé.";
-$a->strings["Import a ICS-file"] = "Importer un fichier ICS";
-$a->strings["ICS-File"] = "Fichier ICS";
-$a->strings["Overwrite all #num# existing events"] = "Écraser les #num# événements existants";
-$a->strings["New event"] = "Nouvel événement";
-$a->strings["Today"] = "Aujourd'hui";
-$a->strings["Day"] = "Jour";
-$a->strings["Week"] = "Semaine";
-$a->strings["Reload"] = "Recharger";
-$a->strings["Date"] = "Date";
-$a->strings["Error"] = "Erreur";
-$a->strings["The calendar has been updated."] = "Le calendrier a été mis à jour.";
-$a->strings["The new calendar has been created."] = "Le nouveau calendrier a été créé.";
-$a->strings["The calendar has been deleted."] = "Le calendrier a été détruit.";
-$a->strings["Calendar Settings"] = "Paramètres du calendrier";
-$a->strings["Date format"] = "Format de la date";
-$a->strings["Time zone"] = "Fuseau horaire";
-$a->strings["Calendars"] = "Calendriers.";
-$a->strings["Create a new calendar"] = "Créer un nouveau calendrier.";
-$a->strings["Limitations"] = "Limitations";
-$a->strings["Warning"] = "Avertissement";
-$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (Iphone, Thunderbird Lightning, Android, ...)";
-$a->strings["Synchronizing this calendar with the iPhone"] = "Synchronisation avec l'Iphone en cours";
-$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Synchronisation de vos contacts Friendica avec l'Iphone en cours";
-$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "La version actuelle de cette extension n'a pas été configurée correctement. Merci de contacter votre administrateur Friendica pour régler ce problème. ";
-$a->strings["Extended calendar with CalDAV-support"] = "Calendrier étendu avec support CalDAV";
-$a->strings["noreply"] = "noreply";
-$a->strings["Notification: "] = "Notification :";
-$a->strings["The database tables have been installed."] = "Les tables de la base de données ont été installées.";
-$a->strings["An error occurred during the installation."] = "Une erreur est survenue lors de l'installation.";
-$a->strings["The database tables have been updated."] = "Les tables de la base de données ont été mises à jour.";
-$a->strings["An error occurred during the update."] = "Une erreur est survenue lors de la mise à jour.";
-$a->strings["No system-wide settings yet."] = "Pas de paramètres globaux pour l'instant.";
-$a->strings["Database status"] = "Etat de la base de données";
-$a->strings["Installed"] = "Installé";
-$a->strings["Upgrade needed"] = "Mise à jour nécessaire";
-$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Merci de sauvegarder toutes les données calendaires (les tables commençant par dav_*) avant de continuer. Bien que les évènements du calendrier <i>doivent</i> tous être convertis à la nouvelle structure, ça ne fait pas de mal d'avoir une sauvegarder. Ci-dessous, vous pouvez voir les requêtes qui seront faites lorsque vous lancerez la mise-à-jour.";
-$a->strings["Upgrade"] = "Mettre à jour";
-$a->strings["Not installed"] = "Non installé";
-$a->strings["Install"] = "Installer";
-$a->strings["Unknown"] = "Inconnu";
-$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Quelque-chose a vraiment déconné. Je ne vais pas pouvoir me rétablir automatiquement, désolé. Merci de contacter directement votre base de données, de sauvegarder les données, et de supprimer toutes les tables qui commencent par 'dav_' à l main. Puis, la routine d'installation devrait être en mesure de réinitialiser ces tables automatiquement.";
-$a->strings["Troubleshooting"] = "Dépannage";
-$a->strings["Manual creation of the database tables:"] = "Création manuelle des tables de la base de données :";
-$a->strings["Show SQL-statements"] = "Montrer les requêtes SQL";
-$a->strings["Private Calendar"] = "Calendrier privé";
-$a->strings["Friendica Events: Mine"] = "Evénements Friendica : Personnels";
-$a->strings["Friendica Events: Contacts"] = "Evénements Friendica : Contacts";
-$a->strings["Private Addresses"] = "Adresses privées";
-$a->strings["Friendica Contacts"] = "Contacts Friendica";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Permet l'utilisation de votre ID Friendica (%s) pour vous connecter à des sites compatibles \"unhosted\" (comme ownCloud). Voyez <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
-$a->strings["Template URL (with {category})"] = "Modèle d'URL (avec {catégorie})";
-$a->strings["OAuth end-point"] = "URL OAuth";
-$a->strings["Api"] = "Type d'API";
-$a->strings["Member since:"] = "Membre depuis:";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Morpion en trois dimensions";
-$a->strings["3D Tic-Tac-Toe"] = "Morpion 3D";
-$a->strings["New game"] = "Nouvelle partie";
-$a->strings["New game with handicap"] = "Nouvelle partie avec handicap";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur plusieurs étages en même temps.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant trois coups dans n'importe quel étage, ainsi que verticalement ou en diagonale entre les étages.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Le handicap interdit la position centrale de l'étage du milieu, parce que le joueur qui prend cette case obtient souvent un avantage.";
-$a->strings["You go first..."] = "À vous de jouer...";
-$a->strings["I'm going first this time..."] = "Je commence...";
-$a->strings["You won!"] = "Vous avez gagné!";
-$a->strings["\"Cat\" game!"] = "Match nul!";
-$a->strings["I won!"] = "J'ai gagné!";
-$a->strings["Randplace Settings"] = "Réglages de Randplace";
-$a->strings["Enable Randplace Plugin"] = "Activer l'extension Randplace";
-$a->strings["Post to Dreamwidth"] = "Poster vers Dreamwidth";
-$a->strings["Dreamwidth Post Settings"] = "Réglages Dreamwidth";
-$a->strings["Enable dreamwidth Post Plugin"] = "Activer \"Poster vers Dreamwidth\"";
-$a->strings["dreamwidth username"] = "Nom d'utilisateur Dreamwidth";
-$a->strings["dreamwidth password"] = "Mot de passe";
-$a->strings["Post to dreamwidth by default"] = "Poster vers Dreamwidth par défaut";
-$a->strings["Remote Permissions Settings"] = "Permissions distantes";
-$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Autoriser les destinataires de vos messages privés a voir les autres destinataires du message";
-$a->strings["Remote Permissions settings updated."] = "Permissions distantes mises-à-jour.";
-$a->strings["Visible to"] = "Visibilité";
-$a->strings["may only be a partial list"] = "peut être une liste partielle";
-$a->strings["Global"] = "Global";
-$a->strings["The posts of every user on this server show the post recipients"] = "Les publications de tous les utilisateurs de ce serveur afficheront leurs destinataires";
-$a->strings["Individual"] = "Individuel";
-$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Chaque utilisateur du serveur pourra choisir si ses publications affichent leurs destinataires";
-$a->strings["Startpage Settings"] = "Paramètres de la page d'accueil";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "Page d'accueil à charger après authentification - laisser ce champ vide pour charger votre mur";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Exemples : &quot;network&quot; ou &quot;notifications/system&quot;";
-$a->strings["Geonames settings updated."] = "Réglages Geonames sauvés.";
-$a->strings["Geonames Settings"] = "Réglages Geonames";
-$a->strings["Enable Geonames Plugin"] = "Activer Geonames";
-$a->strings["Your account on %s will expire in a few days."] = "Votre compte chez %s va expirer dans quelques jours.";
-$a->strings["Your Friendica account is about to expire."] = "Votre compte sur Friendica est sur le point d'expirer.";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Bonjour %1\$s,\n\nVotre compte sur %2\$s expirera dans moins de cinq jours. Vous pouvez conserver ce compte en vous y connectant au moins une fois par mois.";
-$a->strings["Upload a file"] = "Téléverser un fichier";
-$a->strings["Drop files here to upload"] = "Déposer des fichiers ici pour les téléverser";
-$a->strings["Failed"] = "Échec";
-$a->strings["No files were uploaded."] = "Aucun fichier n'a été téléversé.";
-$a->strings["Uploaded file is empty"] = "Le fichier téléversé est vide";
-$a->strings["File has an invalid extension, it should be one of "] = "Le fichier a une extension invalide, elle devrait être parmi ";
-$a->strings["Upload was cancelled, or server error encountered"] = "Téléversement annulé, ou erreur de serveur";
-$a->strings["show/hide"] = "Montrer/cacher";
-$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum";
-$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour.";
-$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums";
-$a->strings["Randomise forum list"] = "Mélanger la liste de forums";
-$a->strings["Show forums on profile page"] = "Montrer les forums sur le profil";
-$a->strings["Show forums on network page"] = "";
-$a->strings["Impressum"] = "Impressum";
-$a->strings["Site Owner"] = "Propriétaire du site";
-$a->strings["Email Address"] = "Adresse courriel";
-$a->strings["Postal Address"] = "Adresse postale";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "L'extension \"Impressum\" (ou <em>ours</em>) n'est pas configuré!<br />Merci d'ajouter au moins la variable <tt>owner</tt> à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension.";
-$a->strings["The page operators name."] = "Le nom de l'administrateur de la page.";
-$a->strings["Site Owners Profile"] = "Profil des propriétaires du site";
-$a->strings["Profile address of the operator."] = "L'adresse de profil de l'administrateur.";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Comment contacter l'administrateur par courrier postal. Vous pouvez utiliser du BBCode.";
-$a->strings["Notes"] = "Notes";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Notes additionnelles à afficher sous les informations de contact. Vous pouvez utiliser du BBCode.";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Comment contacter l'administrateur par courriel. (sera camouflée)";
-$a->strings["Footer note"] = "Note de bas de page";
-$a->strings["Text for the footer. You can use BBCode here."] = "Texte du pied de page. Vous pouvez utiliser du BBCode.";
-$a->strings["Report Bug"] = "Signaler un bug";
-$a->strings["No Timeline settings updated."] = "Pas de mise à jour de paramètres du calendrier.";
-$a->strings["No Timeline Settings"] = "Pas de paramètres de calendrier";
-$a->strings["Disable Archive selector on profile wall"] = "Désactiver le sélecteur d'archives sur le mur";
-$a->strings["\"Blockem\" Settings"] = "Réglages de Blockem";
-$a->strings["Comma separated profile URLS to block"] = "Liste d'URLS de profils à bloquer, séparés par des virgules";
-$a->strings["BLOCKEM Settings saved."] = "Réglages Blockem sauvés.";
-$a->strings["Blocked %s - Click to open/close"] = "Bloqué %s - Cliquez pour ouvrir/fermer";
-$a->strings["Unblock Author"] = "Débloquer l'auteur";
-$a->strings["Block Author"] = "Bloquer l'auteur";
-$a->strings["blockem settings updated"] = "Réglages blockem sauvés";
-$a->strings[":-)"] = ":-)";
-$a->strings[":-("] = ":-(";
-$a->strings["lol"] = "mdr";
-$a->strings["Quick Comment Settings"] = "Réglages de Quick Comment";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Les commentaires rapides peuvent être trouvés à proximité des boîtes de commentaire, parfois cachés. Cliquez dessus pour fournir des réponses simples et lapidaires.";
-$a->strings["Enter quick comments, one per line"] = "Entrez les réponses rapides, une par ligne";
-$a->strings["Quick Comment settings saved."] = "Réglages de Quick Comment sauvés.";
-$a->strings["Tile Server URL"] = "URL du serveur de tuiles";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Une liste de <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">serveurs de tuiles publics</a>";
-$a->strings["Default zoom"] = "Zoom par défaut";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "Le niveau de zoom affiché par défaut. (1: monde entier, 18: détail maximum)";
-$a->strings["Editplain settings updated."] = "Réglages editplain sauvés.";
-$a->strings["Group Text"] = "Affichage textuel des groupes";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Utilisez un sélecteur de groupe purement textuel (sans image) dans le menu d'édition des groupes";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Libravatar n'a PAS pu être installé. <br>Il nécessite PHP >= 5.3";
-$a->strings["generic profile image"] = "image de profil générique";
-$a->strings["random geometric pattern"] = "motif géométrique aléatoire";
-$a->strings["monster face"] = "monstre";
-$a->strings["computer generated face"] = "généré par ordinateur";
-$a->strings["retro arcade style face"] = "vieux jeu d'arcade";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "La version de PHP doit être >= 5.3 ; la votre, %s, est antérieure. ";
-$a->strings["This addon is not functional on your server."] = "Cette extension ne fonctionne pas sur votre serveur.";
-$a->strings["Information"] = "Information";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extension Gravatar est installée ; veuillez la désactiver. <br>L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé.";
-$a->strings["Default avatar image"] = "Avatar par défaut";
-$a->strings["Select default avatar image if none was found. See README"] = "Sélectionner une image d'avatar par défaut si aucune n'a été trouvée. Voir le fichier README";
-$a->strings["Libravatar settings updated."] = "Paramètres de Libravatar mis à jour.";
-$a->strings["Post to libertree"] = "Publier sur libertree";
-$a->strings["libertree Post Settings"] = "Réglages des messages sur libertree";
-$a->strings["Enable Libertree Post Plugin"] = "Activer le plugin de publication sur libertree";
-$a->strings["Libertree API token"] = "Clé de l'API libertree";
-$a->strings["Libertree site URL"] = "URL du site libertree";
-$a->strings["Post to Libertree by default"] = "Publier sur libertree par défaut";
-$a->strings["Altpager settings updated."] = "Paramètres d'Altpager mis à jour.";
-$a->strings["Alternate Pagination Setting"] = "Paramètres de numérotation des pages";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Utiliser des liens vers \"plus récents\" et \"plus anciens\" au lieu de numéros de pages ?";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "L'extension MathJax affiche les formules mathématiques écrites suivant la syntaxe LaTeX lorsqu'elles sont encadrés par les $$ habituels, ou dans un un bloc eqnarray. Ceci sur le mur, le Réseau et dans les messages privés.";
-$a->strings["Use the MathJax renderer"] = "Utiliser le rendu MathJax";
-$a->strings["MathJax Base URL"] = "URL de base de MathJax";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "L'URL du fichier Javascript qui doit être inclus pour utiliser MathJax. Ce peut être celle du CDN MathJax, ou bien de toute autre installation de MathJax.";
-$a->strings["Editplain Settings"] = "Réglages de editplain";
-$a->strings["Disable richtext status editor"] = "Désactiver l'édition \"riche\"";
-$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extension Libravatar est également installée. Veuillez désactiver celle-ci ou l'extension Gravatar. <br>L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé.";
-$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Choisissez l'image de l'avatar par défaut si aucun n'est trouvé via Gravatar. Voir README";
-$a->strings["Rating of images"] = "Classe des avatars";
-$a->strings["Select the appropriate avatar rating for your site. See README"] = "Choisissez la classe des avatars appropriée pour votre site. Voir README";
-$a->strings["Gravatar settings updated."] = "Réglages Gravatar sauvés.";
-$a->strings["Your Friendica test account is about to expire."] = "Votre compte de test Friendica est sur le point d'expirer.";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Bonjour %1\$s,\n\nVotre compte de test sur %2\$s va expirer dans moins de cinq jours. Nous espérons que vous avez apprécié cette période d'essais, et que vous profiterez de l'occasion pour vous créer un compte permanent sur un serveur Friendica de votre choix. Une liste des serveurs Friendica ouverts au public peut être consultée sur http://dir.friendica.com/siteinfo - et pour plus d'information sur la meilleure manière de monter votre propre service Friendica, vous pouvez aller directement sur le site du projet http://friendica.com.";
-$a->strings["\"pageheader\" Settings"] = "Réglages de pageheader";
-$a->strings["pageheader Settings saved."] = "Réglages pageheader sauvés.";
-$a->strings["Post to Insanejournal"] = "Publier vers InsaneJournal";
-$a->strings["InsaneJournal Post Settings"] = "Réglages InsaneJournal";
-$a->strings["Enable InsaneJournal Post Plugin"] = "Activer le connecteur InsaneJournal";
-$a->strings["InsaneJournal username"] = "Utilisateur InsaneJournal";
-$a->strings["InsaneJournal password"] = "Mot de passe InsaneJournal";
-$a->strings["Post to InsaneJournal by default"] = "Publier sur InsaneJournal par défaut";
-$a->strings["Jappix Mini addon settings"] = "Jappix Mini";
-$a->strings["Activate addon"] = "Activer";
-$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "Ne <em>pas</em> insérer le widget JappixMini dans l'interface web";
-$a->strings["Jabber username"] = "Utilisateur Jabber";
-$a->strings["Jabber server"] = "Serveur Jabber";
-$a->strings["Jabber BOSH host"] = "Hôte BOSH (proxy) Jabber";
-$a->strings["Jabber password"] = "Mot de passe Jabber";
-$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)";
-$a->strings["Friendica password"] = "Mot de passe Friendica";
-$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Approuver les contacts Friendica automatiquement";
-$a->strings["Subscribe to Friendica contacts automatically"] = "S'inscrire aux contacts Friendica automatiquement";
-$a->strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne d'adresses Jabber";
-$a->strings["Add contact"] = "Ajouter un contact";
-$a->strings["View Source"] = "Voir la source";
-$a->strings["Post to StatusNet"] = "Poster sur StatusNet";
-$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Merci de contacter l'administrateur du site.<br />L'URL d'API fournie est invalide.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi.";
-$a->strings["StatusNet settings updated."] = "Réglages StatusNet mis-à-jour.";
-$a->strings["StatusNet Posting Settings"] = "Réglages du connecteur StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "Clés OAuth StatusNet universelles";
-$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous).";
-$a->strings["Provide your own OAuth Credentials"] = "Fournissez vos propres paramètres OAuth";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Pas de paire de clé trouvée pour StatusNet. Enregistrez votre compte Friendica comme un client \"desktop\" sur votre compte StatusNet, copiez la paire de clé ici et entrez la racine de l'API.<br />Avant d'enregistrer votre propre paire de clé, assurez-vous auprès de l'administrateur qu'il n'y a pas déjà une paire de clé pour cette instance de Friendica chez votre fournisseur StatusNet préféré.";
-$a->strings["OAuth Consumer Key"] = "Clé de consommateur OAuth";
-$a->strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth";
-$a->strings["Base API Path (remember the trailing /)"] = "Chemin de base de l'API (n'oubliez pas le / final)";
-$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles &lt;strong&gt;publics&lt;/strong&gt; seront postés sur StatusNet.";
-$a->strings["Log in with StatusNet"] = "Se connecter à StatusNet";
-$a->strings["Copy the security code from StatusNet here"] = "Coller le code de sécurité de StatusNet ici";
-$a->strings["Cancel Connection Process"] = "Annuler le processus de connexion";
-$a->strings["Current StatusNet API is"] = "L'API StatusNet courante est";
-$a->strings["Cancel StatusNet Connection"] = "Annuler la connexion à StatusNet";
-$a->strings["Currently connected to: "] = "Actuellement connecté à: ";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "En cas d'activation, toutes vos notices <strong>publiques</strong> seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Note</strong>: Du fait de vos réglages de vie privée (<em>Cacher les détails de votre profil des visiteurs inconnus?</em>), le lien potentiellement inclus dans les messages publics relayés vers StatusNet conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint.";
-$a->strings["Allow posting to StatusNet"] = "Autoriser la publication sur StatusNet";
-$a->strings["Send public postings to StatusNet by default"] = "Par défaut, envoyer les notices publiques à StatusNet";
-$a->strings["Send linked #-tags and @-names to StatusNet"] = "Envoyer les liens vers les #-tags et les @-noms sur StatusNet";
-$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth";
-$a->strings["API URL"] = "URL de l'API";
-$a->strings["Infinite Improbability Drive"] = "Générateur d'improbabilté infinie";
-$a->strings["Post to Tumblr"] = "Publier sur Tumblr";
-$a->strings["Tumblr Post Settings"] = "Réglages de Tumblr";
-$a->strings["Enable Tumblr Post Plugin"] = "Activer l'extension Tumblr";
-$a->strings["Tumblr login"] = "Login Tumblr";
-$a->strings["Tumblr password"] = "Mot de passe Tumblr";
-$a->strings["Post to Tumblr by default"] = "Publier sur Tumblr par défaut";
-$a->strings["Numfriends settings updated."] = "Réglages numfriends sauvés.";
-$a->strings["Numfriends Settings"] = "Réglages de numfriends";
-$a->strings["How many contacts to display on profile sidebar"] = "Nombre de contacts à montrer sur le panneau latéral du profil";
-$a->strings["Gnot settings updated."] = "Réglages Gnot sauvés.";
-$a->strings["Gnot Settings"] = "Réglages Gnot";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Autorise l'arborescence des notifications de commentaires sur GMail, et rend la ligne 'Sujet' anonyme.";
-$a->strings["Enable this plugin/addon?"] = "Activer cette extension?";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notification] Commentaire sur la conversation #%d";
-$a->strings["Post to Wordpress"] = "Poster sur WordPress";
-$a->strings["WordPress Post Settings"] = "Réglages WordPress";
-$a->strings["Enable WordPress Post Plugin"] = "Activer l'extension WordPress";
-$a->strings["WordPress username"] = "Utilisateur WordPress";
-$a->strings["WordPress password"] = "Mot de passe WordPress";
-$a->strings["WordPress API URL"] = "URL de l'API WordPress";
-$a->strings["Post to WordPress by default"] = "Publier sur WordPress par défaut";
-$a->strings["Provide a backlink to the Friendica post"] = "Fournir un rétrolien vers le message sur Friendica";
-$a->strings["Post from Friendica"] = "Publier depuis Friendica";
-$a->strings["Read the original post and comment stream on Friendica"] = "Lire le message d'origine et le flux des commentaires sur Friendica";
-$a->strings["\"Show more\" Settings"] = "Réglages de \"Show more\"";
-$a->strings["Enable Show More"] = "Activer \"Show more\"";
-$a->strings["Cutting posts after how much characters"] = "Coupure après combien de caractères";
-$a->strings["Show More Settings saved."] = "Réglages \"Show more\" sauvés.";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Ce site collecte ses statistiques grâce à <a href='http://www.piwik.org'>Piwik</a>.";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous <a href='%s'>pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures</a> (opt-out).";
-$a->strings["Piwik Base URL"] = "URL de base de Piwik";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Chemin absolu vers votre installation Piwik. (sans protocole (http/s), avec un / terminal)";
-$a->strings["Site ID"] = "ID du site";
-$a->strings["Show opt-out cookie link?"] = "Montrer le lien d'opt-out?";
-$a->strings["Asynchronous tracking"] = "Suivi asynchrone";
-$a->strings["Post to Twitter"] = "Poster sur Twitter";
-$a->strings["Twitter settings updated."] = "Réglages de Twitter mis-à-jour.";
-$a->strings["Twitter Posting Settings"] = "Réglages du connecteur Twitter";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site.";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Sur cette instance de Friendica, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte local à votre compte Twitter. Pour ce faire, cliquer sur le bouton ci-dessous. Vous obtiendrez alors un 'PIN' de Twitter, que vous devrez copier dans le champ ci-dessous, puis soumettre le formulaire. Seuls vos messages <strong>publics</strong> seront transmis à Twitter.";
-$a->strings["Log in with Twitter"] = "Se connecter à Twitter";
-$a->strings["Copy the PIN from Twitter here"] = "Copier le PIN de Twitter ici";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "En cas d'activation, toutes vos notices <strong>publiques</strong> seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Note</strong>: Du fait de vos réglages de vie privée (<em>Cacher les détails de votre profil des visiteurs inconnus?</em>), le lien potentiellement inclus dans les messages publics relayés vers Twitter conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint.";
-$a->strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter";
-$a->strings["Send public postings to Twitter by default"] = "Envoyer les éléments publics sur Twitter par défaut";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "Envoyer les liens vers les #-tags et les @-noms sur Twitter";
-$a->strings["Consumer key"] = "Clé utilisateur";
-$a->strings["Consumer secret"] = "Secret utilisateur";
-$a->strings["IRC Settings"] = "Réglages IRC";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "Canaux à rejoindre automatiquement (séparés par des virgules)";
-$a->strings["Popular Channels (comma separated)"] = "Canaux populaires (séparés par des virgules)";
-$a->strings["IRC settings saved."] = "Réglages IRC sauvés.";
-$a->strings["IRC Chatroom"] = "Salon IRC";
-$a->strings["Popular Channels"] = "Canaux populaires";
-$a->strings["Fromapp settings updated."] = "Réglages FromApp mis-à-jour";
-$a->strings["FromApp Settings"] = "FromApp";
-$a->strings["The application name you would like to show your posts originating from."] = "Le nom d'application que vous souhaiteriez que vos publications affichent comme source.";
-$a->strings["Use this application name even if another application was used."] = "Afficher ce nom d'application même si une autre a été utilisée.";
-$a->strings["Post to blogger"] = "Poster vers Blogger";
-$a->strings["Blogger Post Settings"] = "Réglages Blogger";
-$a->strings["Enable Blogger Post Plugin"] = "Activer le connecteur Blogger";
-$a->strings["Blogger username"] = "Utilisateur Blogger";
-$a->strings["Blogger password"] = "Mot de passe Blogger";
-$a->strings["Blogger API URL"] = "URL de l'API Blogger";
-$a->strings["Post to Blogger by default"] = "Poster vers Blogger par défaut";
-$a->strings["Post to Posterous"] = "Envoyer à Posterous";
-$a->strings["Posterous Post Settings"] = "Réglages de l'envoi à Posterous";
-$a->strings["Enable Posterous Post Plugin"] = "Activer l'envoi à Posterous";
-$a->strings["Posterous login"] = "Login Posterous";
-$a->strings["Posterous password"] = "Mot de passe";
-$a->strings["Posterous site ID"] = "ID du site Posterous";
-$a->strings["Posterous API token"] = "Clé d'API Posterous";
-$a->strings["Post to Posterous by default"] = "Envoyer à Posterous par défaut";
-$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["Your posts and conversations"] = "Vos notices 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["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["Last Tweets"] = "Derniers tweets";
-$a->strings["Set twitter search term"] = "Rechercher un terme twitter";
-$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["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["Last tweets"] = "Derniers tweets";
-$a->strings["Alignment"] = "Alignement";
-$a->strings["Left"] = "Gauche";
-$a->strings["Center"] = "Centre";
-$a->strings["Posts font size"] = "Taille de texte des messages";
-$a->strings["Textareas font size"] = "";
-$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
-$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:"] = "Tags :";
-$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["Unknown | Not categorised"] = "Inconnu | Non-classé";
-$a->strings["Block immediately"] = "Bloquer immédiatement";
-$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
-$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
-$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
-$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
-$a->strings["Frequently"] = "Fréquemment";
-$a->strings["Hourly"] = "Toutes les heures";
-$a->strings["Twice daily"] = "Deux fois par jour";
-$a->strings["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+"] = "";
-$a->strings["Male"] = "Masculin";
-$a->strings["Female"] = "Féminin";
-$a->strings["Currently Male"] = "Actuellement masculin";
-$a->strings["Currently Female"] = "Actuellement féminin";
-$a->strings["Mostly Male"] = "Principalement masculin";
-$a->strings["Mostly Female"] = "Principalement féminin";
-$a->strings["Transgender"] = "Transgenre";
-$a->strings["Intersex"] = "Inter-sexe";
-$a->strings["Transsexual"] = "Transsexuel";
-$a->strings["Hermaphrodite"] = "Hermaphrodite";
-$a->strings["Neuter"] = "Neutre";
-$a->strings["Non-specific"] = "Non-spécifique";
-$a->strings["Other"] = "Autre";
-$a->strings["Undecided"] = "Indécis";
-$a->strings["Males"] = "Hommes";
-$a->strings["Females"] = "Femmes";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbienne";
-$a->strings["No Preference"] = "Sans préférence";
-$a->strings["Bisexual"] = "Bisexuel";
-$a->strings["Autosexual"] = "Auto-sexuel";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Vierge";
-$a->strings["Deviant"] = "Déviant";
-$a->strings["Fetish"] = "Fétichiste";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Non-sexuel";
-$a->strings["Single"] = "Célibataire";
-$a->strings["Lonely"] = "Esseulé";
-$a->strings["Available"] = "Disponible";
-$a->strings["Unavailable"] = "Indisponible";
-$a->strings["Has crush"] = "Attiré par quelqu'un";
-$a->strings["Infatuated"] = "Entiché";
-$a->strings["Dating"] = "Dans une relation";
-$a->strings["Unfaithful"] = "Infidèle";
-$a->strings["Sex Addict"] = "Accro au sexe";
-$a->strings["Friends"] = "Amis";
-$a->strings["Friends/Benefits"] = "Amis par intérêt";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Fiancé";
-$a->strings["Married"] = "Marié";
-$a->strings["Imaginarily married"] = "Se croit marié";
-$a->strings["Partners"] = "Partenaire";
-$a->strings["Cohabiting"] = "En cohabitation";
-$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)";
-$a->strings["Happy"] = "Heureux";
-$a->strings["Not looking"] = "Pas intéressé";
-$a->strings["Swinger"] = "Échangiste";
-$a->strings["Betrayed"] = "Trahi(e)";
-$a->strings["Separated"] = "Séparé";
-$a->strings["Unstable"] = "Instable";
-$a->strings["Divorced"] = "Divorcé";
-$a->strings["Imaginarily divorced"] = "Se croit divorcé";
-$a->strings["Widowed"] = "Veuf/Veuve";
-$a->strings["Uncertain"] = "Incertain";
-$a->strings["It's complicated"] = "C'est compliqué";
-$a->strings["Don't care"] = "S'en désintéresse";
-$a->strings["Ask me"] = "Me demander";
-$a->strings["Starts:"] = "Débute:";
-$a->strings["Finishes:"] = "Finit:";
-$a->strings["(no subject)"] = "(sans titre)";
-$a->strings[" on Last.fm"] = "sur Last.fm";
-$a->strings["prev"] = "précédent";
-$a->strings["first"] = "premier";
-$a->strings["last"] = "dernier";
-$a->strings["next"] = "suivant";
-$a->strings["newer"] = "Plus récent";
-$a->strings["older"] = "Plus ancien";
-$a->strings["No contacts"] = "Aucun contact";
-$a->strings["%d Contact"] = array(
-       0 => "%d contact",
-       1 => "%d contacts",
+$a->strings["%1\$s welcomes %2\$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["poke"] = "titiller";
-$a->strings["poked"] = "a titillé";
-$a->strings["ping"] = "attirer l'attention";
-$a->strings["pinged"] = "a attiré l'attention de";
-$a->strings["prod"] = "aiguillonner";
-$a->strings["prodded"] = "a aiguillonné";
-$a->strings["slap"] = "gifler";
-$a->strings["slapped"] = "a giflé";
-$a->strings["finger"] = "tripoter";
-$a->strings["fingered"] = "a tripoté";
-$a->strings["rebuff"] = "rabrouer";
-$a->strings["rebuffed"] = "a rabroué";
-$a->strings["happy"] = "heureuse";
-$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "suave";
-$a->strings["tired"] = "fatiguée";
-$a->strings["perky"] = "guillerette";
-$a->strings["angry"] = "colérique";
-$a->strings["stupified"] = "stupéfaite";
-$a->strings["puzzled"] = "perplexe";
-$a->strings["interested"] = "intéressée";
-$a->strings["bitter"] = "amère";
-$a->strings["cheerful"] = "entraînante";
-$a->strings["alive"] = "vivante";
-$a->strings["annoyed"] = "ennuyée";
-$a->strings["anxious"] = "anxieuse";
-$a->strings["cranky"] = "excentrique";
-$a->strings["disturbed"] = "dérangée";
-$a->strings["frustrated"] = "frustrée";
-$a->strings["motivated"] = "motivée";
-$a->strings["relaxed"] = "détendue";
-$a->strings["surprised"] = "surprise";
-$a->strings["January"] = "Janvier";
-$a->strings["February"] = "Février";
-$a->strings["March"] = "Mars";
-$a->strings["April"] = "Avril";
-$a->strings["May"] = "Mai";
-$a->strings["June"] = "Juin";
-$a->strings["July"] = "Juillet";
-$a->strings["August"] = "Août";
-$a->strings["September"] = "Septembre";
-$a->strings["October"] = "Octobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Décembre";
-$a->strings["bytes"] = "octets";
-$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
-$a->strings["default"] = "défaut";
-$a->strings["Select an alternate language"] = "Choisir une langue alternative";
-$a->strings["activity"] = "activité";
-$a->strings["post"] = "publication";
-$a->strings["Item filed"] = "Élément classé";
-$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
-$a->strings["Attachments:"] = "Pièces jointes : ";
-$a->strings["view full size"] = "voir en pleine taille";
-$a->strings["Embedded content"] = "Contenu incorporé";
-$a->strings["Embedding disabled"] = "Incorporation désactivée";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
-$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["Introduction complete."] = "Phase d'introduction achevée.";
+$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
+$a->strings["Profile unavailable."] = "Profil indisponible.";
+$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
+$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
+$a->strings["Invalid locator"] = "Localisateur invalide";
+$a->strings["Invalid email address."] = "Adresse courriel invalide.";
+$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
+$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
+$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
+$a->strings["Invalid profile URL."] = "URL de profil invalide.";
+$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
+$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
+$a->strings["Hide this contact"] = "Cacher ce contact";
+$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
+$a->strings["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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connecter un utilisateur de courriel</strike> (bientôt)";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
+$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
+$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
+$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
+$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
+$a->strings["Submit Request"] = "Envoyer la requête";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
+$a->strings["Global Directory"] = "Annuaire global";
+$a->strings["Find on this site"] = "Trouver sur ce site";
+$a->strings["Site Directory"] = "Annuaire local";
+$a->strings["Gender: "] = "Genre: ";
+$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
+$a->strings["Do you really want to delete this suggestion?"] = "";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
+$a->strings["Ignore/Hide"] = "Ignorer/cacher";
+$a->strings["People Search"] = "Recherche de personnes";
+$a->strings["No matches"] = "Aucune correspondance";
+$a->strings["No videos selected"] = "";
+$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
+$a->strings["View Album"] = "Voir l'album";
+$a->strings["Recent Videos"] = "";
+$a->strings["Upload New Videos"] = "";
+$a->strings["Tag removed"] = "Étiquette enlevée";
+$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
+$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: ";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editer l'événement";
+$a->strings["Create New Event"] = "Créer un nouvel événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["Next"] = "Suivant";
+$a->strings["hour:minute"] = "heures:minutes";
+$a->strings["Event details"] = "Détails de l'événement";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
+$a->strings["Event Starts:"] = "Début de l'événement:";
+$a->strings["Required"] = "Requis";
+$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
+$a->strings["Event Finishes:"] = "Fin de l'événement:";
+$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Titre :";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["Files"] = "Fichiers";
+$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["- select -"] = "- choisir -";
+$a->strings["Import"] = "Importer";
+$a->strings["Move account"] = "Migrer le compte";
+$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"] = "Fichier du compte";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
+$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
+$a->strings["Contact added"] = "Contact ajouté";
+$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/applications installées:";
+$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée";
+$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["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["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 profile"] = "Aucun profil";
+$a->strings["Help:"] = "Aide:";
+$a->strings["Not Found"] = "Non trouvé";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["No contacts."] = "Aucun contact.";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["Access denied."] = "Accès refusé.";
+$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["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
+$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
+$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
+$a->strings["Total invitation limit exceeded."] = "";
+$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."] = "";
+$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["Your message:"] = "Votre message:";
+$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["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
+$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
+$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
+$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
+$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
+$a->strings["Message sent."] = "Message envoyé.";
+$a->strings["No recipient."] = "Pas de destinataire.";
+$a->strings["Send Private Message"] = "Envoyer un message privé";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
+$a->strings["To:"] = "À:";
+$a->strings["Subject:"] = "Sujet:";
+$a->strings["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["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
+$a->strings["Visible to:"] = "Visible par:";
+$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["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["Your password has been changed at %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"] = "";
+$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["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 contact information."] = "Impossible de localiser les informations du contact.";
+$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
+$a->strings["Message deleted."] = "Message supprimé.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["No messages."] = "Aucun message.";
+$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
+$a->strings["You and %s"] = "Vous et %s";
+$a->strings["%s and You"] = "%s et vous";
+$a->strings["Delete conversation"] = "Effacer conversation";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
 );
-$a->strings["Done. You can now login with your username and password"] = "";
-$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["Logout"] = "Se déconnecter";
-$a->strings["End this session"] = "Mettre fin à cette session";
-$a->strings["Status"] = "Statut";
-$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["Conversations from your friends"] = "Conversations de vos amis";
-$a->strings["Network Reset"] = "";
-$a->strings["Load Network page with no filters"] = "";
-$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["Profiles"] = "Profils";
-$a->strings["Manage/Edit 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["Nothing new here"] = "Rien de neuf ici";
-$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["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["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["Commented Order"] = "Tri par commentaires";
+$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
+$a->strings["Posted Order"] = "Tri par publications";
+$a->strings["Sort by Post Date"] = "Trier par date de publication";
+$a->strings["Personal"] = "Personnel";
+$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
+$a->strings["New"] = "Nouveau";
+$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
+$a->strings["Shared Links"] = "Liens partagés";
+$a->strings["Interesting Links"] = "Liens intéressants";
+$a->strings["Starred"] = "Mis en avant";
+$a->strings["Favourite Posts"] = "Publications favorites";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
+       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
+$a->strings["No such group"] = "Groupe inexistant";
+$a->strings["Group is empty"] = "Groupe vide";
+$a->strings["Group: "] = "Groupe: ";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
+$a->strings["Invalid contact."] = "Contact invalide.";
+$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
+$a->strings["Discard"] = "Rejeter";
+$a->strings["System"] = "Système";
+$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 concernant les nouvelles amitiés";
+$a->strings["if applicable"] = "si possible";
+$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
+$a->strings["yes"] = "oui";
+$a->strings["no"] = "non";
+$a->strings["Approve as: "] = "Approuver en tant que: ";
+$a->strings["Friend"] = "Ami";
+$a->strings["Sharer"] = "Initiateur du partage";
+$a->strings["Fan/Admirer"] = "Fan/Admirateur";
+$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
+$a->strings["New Follower"] = "Nouvel abonné";
+$a->strings["No introductions."] = "Aucune demande d'introduction.";
+$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s";
+$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice 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 publié une notice";
+$a->strings["%s commented on %s's post"] = "%s a commenté une notice 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 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"] = "";
+$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 pour cet envoi";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Private Photo"] = "Photo privée";
+$a->strings["Public Photo"] = "";
+$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["Private Message"] = "Message privé";
+$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"] = "";
+$a->strings["Public photo"] = "";
+$a->strings["I like this (toggle)"] = "J'aime (bascule)";
+$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
+$a->strings["This is you"] = "C'est vous";
+$a->strings["Comment"] = "Commenter";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
+$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
+$a->strings["Getting Started"] = "Bien démarrer";
+$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
+$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
+$a->strings["Edit Your Profile"] = "Éditer votre Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
+$a->strings["Profile Keywords"] = "Mots-clés du profil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
+$a->strings["Connecting"] = "Connexions";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre.";
+$a->strings["Importing Emails"] = "Importer courriels";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
+$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
+$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
+$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
+$a->strings["Group Your Contacts"] = "Grouper vos contacts";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
+$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, tous vos éléments 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["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
+$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
+$a->strings["Friendica Communications Server - Setup"] = "";
+$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)"] = "";
+$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."] = "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."] = "";
+$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."] = "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["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
+$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["Post successful."] = "Publication réussie.";
+$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["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["Not available."] = "Indisponible.";
+$a->strings["%d comment"] = array(
+       0 => "%d commentaire",
+       1 => "%d commentaires",
 );
-$a->strings["Find People"] = "Trouver des personnes";
-$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
-$a->strings["Connect/Follow"] = "Connecter/Suivre";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
-$a->strings["Random Profile"] = "Profil au hasard";
-$a->strings["Networks"] = "Réseaux";
-$a->strings["All Networks"] = "Tous réseaux";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Categories"] = "Catégories";
-$a->strings["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["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["week"] = "semaine";
-$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["From: "] = "De: ";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["$1 wrote:"] = "$1 a écrit:";
-$a->strings["Encrypted content"] = "Contenu chiffré";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$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["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 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["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["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
-$a->strings["[no subject]"] = "[pas de sujet]";
-$a->strings["Visible to everybody"] = "Visible par tout le monde";
-$a->strings["Friendica Notification"] = "Notification Friendica";
-$a->strings["Thank You,"] = "Merci, ";
-$a->strings["%s Administrator"] = "L'administrateur de %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
-$a->strings["a private message"] = "un message privé";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a repéré";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous parle sur %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a taggé[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a repéré votre publication";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a tagué votre contenu sur %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a tagué [url=%2\$s]votre contenu[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
-$a->strings["Name:"] = "Nom :";
-$a->strings["Photo:"] = "Photo :";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
-$a->strings["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 new person is sharing with you at "] = "Une nouvelle personne partage avec vous à ";
-$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à ";
-$a->strings["Archives"] = "Archives";
-$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["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["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"] = "Posts du Réseau";
-$a->strings["Edit Contact"] = "Éditer le contact";
-$a->strings["Send PM"] = "Message privé";
-$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["Categories:"] = "Catégories:";
-$a->strings["Filed under:"] = "Rangé sous:";
-$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:"] = "Tag : ";
-$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
-$a->strings["Delete item(s)?"] = "";
-$a->strings["permissions"] = "permissions";
-$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["like"] = "aime";
+$a->strings["dislike"] = "n'aime pas";
+$a->strings["Share this"] = "Partager";
+$a->strings["share"] = "partager";
+$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["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 un tag";
+$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["This entry was edited"] = "";
+$a->strings["via"] = "";
+$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 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 twitter search term"] = "Rechercher un terme twitter";
+$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 tweets"] = "Derniers tweets";
+$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["Local Directory"] = "Annuaire local";
+$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
+$a->strings["Last Tweets"] = "Derniers tweets";
+$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
+$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 messages";
+$a->strings["Textareas font size"] = "";
+$a->strings["toggle mobile"] = "activ. mobile";
 $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.";
@@ -2050,6 +1628,10 @@ $a->strings["Password: "] = "Mot de passe: ";
 $a->strings["Remember me"] = "";
 $a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
 $a->strings["Forgot your password?"] = "Mot de passe oublié?";
+$a->strings["Website Terms of Service"] = "";
+$a->strings["terms of service"] = "";
+$a->strings["Website Privacy Policy"] = "";
+$a->strings["privacy policy"] = "";
 $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
 $a->strings["Edit profile"] = "Editer le profil";
 $a->strings["Message"] = "Message";
@@ -2064,21 +1646,6 @@ $a->strings["Event Reminders"] = "Rappels d'événements";
 $a->strings["Events this week:"] = "Evénements cette semaine:";
 $a->strings["Status Messages and Posts"] = "Messages d'état et publications";
 $a->strings["Profile Details"] = "Détails du profil";
+$a->strings["Videos"] = "";
 $a->strings["Events and Calendar"] = "Événements et agenda";
 $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
-$a->strings["via"] = "";
-$a->strings["toggle mobile"] = "activ. mobile";
-$a->strings["Bg settings updated."] = "Réglages d'arrière-plan mis à jour.";
-$a->strings["Bg Settings"] = "Réglages d'arrière-plan";
-$a->strings["Post to Drupal"] = "Poster vers Drupal";
-$a->strings["Drupal Post Settings"] = "Réglages Drupal";
-$a->strings["Enable Drupal Post Plugin"] = "Activer \"Poster vers Drupal\"";
-$a->strings["Drupal username"] = "Nom d'utilisateur Drupal";
-$a->strings["Drupal password"] = "Mot de passe Drupal";
-$a->strings["Post Type - article,page,or blog"] = "Type de publication - article, page ou blog";
-$a->strings["Drupal site URL"] = "URL du site Drupal";
-$a->strings["Drupal site uses clean URLS"] = "Ce site utilise des URLs propres";
-$a->strings["Post to Drupal by default"] = "Poster vers Drupal par défaut";
-$a->strings["OEmbed settings updated"] = "Réglage OEmbed mis-à-jour";
-$a->strings["Use OEmbed for YouTube videos"] = "Utiliser OEmbed pour les vidéos Youtube";
-$a->strings["URL to embed:"] = "URL à incorporer:";
index 7e5a1123505079ee4d009f749406c1861cbd4a47..f6bcea0138e71e5b64308dd5475344f0d9342d73 100644 (file)
@@ -3,19 +3,19 @@
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
-# fabrixxm <fabrix.xm@gmail.com>, 2011.
-#  <fabrix.xm@gmail.com>, 2013.
-#   <fabrix.xm@gmail.com>, 2011-2012.
-# Francesco Apruzzese <cescoap@gmail.com>, 2012.
-#   <marco@carnazzo.it>, 2012.
-# Paolo Pa <pynolo@tarine.net>, 2012.
+# fabrixxm <fabrix.xm@gmail.com>, 2011
+# fabrixxm <fabrix.xm@gmail.com>, 2013
+# fabrixxm <fabrix.xm@gmail.com>, 2011-2012
+# Francesco Apruzzese <cescoap@gmail.com>, 2012-2013
+# ufic <marco@carnazzo.it>, 2012
+# Paolo Pa <pynolo@tarine.net>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-02-28 10:13-0500\n"
-"PO-Revision-Date: 2013-03-01 16:22+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2013-06-12 00:01-0700\n"
+"PO-Revision-Date: 2013-06-20 08:54+0000\n"
+"Last-Translator: Francesco Apruzzese <cescoap@gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,4901 +23,4618 @@ msgstr ""
 "Language: it\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../object/Item.php:106 ../../mod/photos.php:1351
-#: ../../mod/content.php:643
-msgid "Private Message"
-msgstr "Messaggio privato"
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
+#: ../../boot.php:1947
+msgid "Profile"
+msgstr "Profilo"
 
-#: ../../object/Item.php:110 ../../mod/editpost.php:109
-#: ../../mod/settings.php:622 ../../mod/content.php:751
-msgid "Edit"
-msgstr "Modifica"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079
+msgid "Full Name:"
+msgstr "Nome completo:"
 
-#: ../../object/Item.php:119 ../../mod/content.php:461
-#: ../../mod/content.php:763 ../../include/conversation.php:587
-msgid "Select"
-msgstr "Seleziona"
+#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
+#: ../../boot.php:1487
+msgid "Gender:"
+msgstr "Genere:"
 
-#: ../../object/Item.php:120 ../../mod/admin.php:755 ../../mod/photos.php:1637
-#: ../../mod/settings.php:623 ../../mod/group.php:171
-#: ../../mod/content.php:462 ../../mod/content.php:764
-#: ../../include/conversation.php:588
-msgid "Delete"
-msgstr "Rimuovi"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F Y"
 
-#: ../../object/Item.php:123 ../../mod/content.php:786
-msgid "save to folder"
-msgstr "salva nella cartella"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../object/Item.php:202 ../../mod/content.php:776
-msgid "add star"
-msgstr "aggiungi a speciali"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Compleanno:"
 
-#: ../../object/Item.php:203 ../../mod/content.php:777
-msgid "remove star"
-msgstr "rimuovi da speciali"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Età:"
 
-#: ../../object/Item.php:204 ../../mod/content.php:778
-msgid "toggle star status"
-msgstr "Inverti stato preferito"
+#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
+#: ../../boot.php:1490
+msgid "Status:"
+msgstr "Stato:"
 
-#: ../../object/Item.php:207 ../../mod/content.php:781
-msgid "starred"
-msgstr "preferito"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "per %1$d %2$s"
 
-#: ../../object/Item.php:212 ../../mod/content.php:782
-msgid "add tag"
-msgstr "aggiungi tag"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650
+msgid "Sexual Preference:"
+msgstr "Preferenze sessuali:"
 
-#: ../../object/Item.php:223 ../../mod/photos.php:1529
-#: ../../mod/content.php:707
-msgid "I like this (toggle)"
-msgstr "Mi piace (clic per cambiare)"
+#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
+#: ../../boot.php:1492
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../object/Item.php:223 ../../mod/content.php:707
-msgid "like"
-msgstr "mi piace"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652
+msgid "Hometown:"
+msgstr "Paese natale:"
 
-#: ../../object/Item.php:224 ../../mod/photos.php:1530
-#: ../../mod/content.php:708
-msgid "I don't like this (toggle)"
-msgstr "Non mi piace (clic per cambiare)"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tag:"
 
-#: ../../object/Item.php:224 ../../mod/content.php:708
-msgid "dislike"
-msgstr "non mi piace"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653
+msgid "Political Views:"
+msgstr "Orientamento politico:"
 
-#: ../../object/Item.php:226 ../../mod/content.php:710
-msgid "Share this"
-msgstr "Condividi questo"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religione:"
 
-#: ../../object/Item.php:226 ../../mod/content.php:710
-msgid "share"
-msgstr "condividi"
+#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
+msgid "About:"
+msgstr "Informazioni:"
 
-#: ../../object/Item.php:288 ../../include/conversation.php:639
-msgid "Categories:"
-msgstr "Categorie:"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Interessi:"
 
-#: ../../object/Item.php:289 ../../include/conversation.php:640
-msgid "Filed under:"
-msgstr "Archiviato in:"
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657
+msgid "Likes:"
+msgstr "Mi piace:"
 
-#: ../../object/Item.php:297 ../../object/Item.php:298
-#: ../../mod/content.php:495 ../../mod/content.php:875
-#: ../../mod/content.php:876 ../../include/conversation.php:627
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vedi il profilo di %s @ %s"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658
+msgid "Dislikes:"
+msgstr "Non mi piace:"
 
-#: ../../object/Item.php:299 ../../mod/content.php:877
-msgid "to"
-msgstr "a"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informazioni su contatti e social network:"
 
-#: ../../object/Item.php:300
-msgid "via"
-msgstr "via"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Interessi musicali:"
 
-#: ../../object/Item.php:301 ../../mod/content.php:878
-msgid "Wall-to-Wall"
-msgstr "Da bacheca a bacheca"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Libri, letteratura:"
 
-#: ../../object/Item.php:302 ../../mod/content.php:879
-msgid "via Wall-To-Wall:"
-msgstr "da bacheca a bacheca"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisione:"
 
-#: ../../object/Item.php:311 ../../mod/content.php:505
-#: ../../mod/content.php:887 ../../include/conversation.php:647
-#, php-format
-msgid "%s from %s"
-msgstr "%s da %s"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/danza/cultura/intrattenimento:"
 
-#: ../../object/Item.php:329 ../../object/Item.php:642
-#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
-#: ../../mod/photos.php:1678 ../../mod/content.php:732 ../../boot.php:651
-msgid "Comment"
-msgstr "Commento"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amore:"
 
-#: ../../object/Item.php:332 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../mod/editpost.php:124
-#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1532
-#: ../../mod/content.php:522 ../../mod/content.php:906
-#: ../../include/conversation.php:664 ../../include/conversation.php:1060
-msgid "Please wait"
-msgstr "Attendi"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Lavoro:"
 
-#: ../../object/Item.php:352 ../../mod/content.php:626
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commento"
-msgstr[1] "%d commenti"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Scuola:"
 
-#: ../../object/Item.php:354 ../../object/Item.php:367
-#: ../../mod/content.php:628 ../../include/text.php:1560
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commento"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Maschio"
 
-#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652
-#: ../../include/contact_widgets.php:204
-msgid "show more"
-msgstr "mostra di più"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Femmina"
 
-#: ../../object/Item.php:640 ../../mod/photos.php:1549
-#: ../../mod/photos.php:1593 ../../mod/photos.php:1676
-#: ../../mod/content.php:730
-msgid "This is you"
-msgstr "Questo sei tu"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Al momento maschio"
 
-#: ../../object/Item.php:643 ../../mod/fsuggest.php:107
-#: ../../mod/admin.php:478 ../../mod/admin.php:748 ../../mod/admin.php:887
-#: ../../mod/admin.php:1087 ../../mod/admin.php:1174 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/events.php:478
-#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
-#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
-#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
-#: ../../mod/contacts.php:386 ../../mod/invite.php:140
-#: ../../mod/settings.php:560 ../../mod/settings.php:670
-#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/profiles.php:626
-#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/group.php:87
-#: ../../mod/content.php:733 ../../mod/mood.php:137 ../../mod/crepair.php:166
-#: ../../view/theme/diabook/theme.php:642
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/cleanzero/config.php:80
-msgid "Submit"
-msgstr "Invia"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Al momento femmina"
 
-#: ../../object/Item.php:644 ../../mod/content.php:734
-msgid "Bold"
-msgstr "Grassetto"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Prevalentemente maschio"
 
-#: ../../object/Item.php:645 ../../mod/content.php:735
-msgid "Italic"
-msgstr "Corsivo"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Prevalentemente femmina"
 
-#: ../../object/Item.php:646 ../../mod/content.php:736
-msgid "Underline"
-msgstr "Sottolineato"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../object/Item.php:647 ../../mod/content.php:737
-msgid "Quote"
-msgstr "Citazione"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../object/Item.php:648 ../../mod/content.php:738
-msgid "Code"
-msgstr "Codice"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transessuale"
 
-#: ../../object/Item.php:649 ../../mod/content.php:739
-msgid "Image"
-msgstr "Immagine"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Ermafrodito"
 
-#: ../../object/Item.php:650 ../../mod/content.php:740
-msgid "Link"
-msgstr "Link"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../object/Item.php:651 ../../mod/content.php:741
-msgid "Video"
-msgstr "Video"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non specificato"
 
-#: ../../object/Item.php:652 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
-#: ../../mod/photos.php:1680 ../../mod/content.php:742
-#: ../../include/conversation.php:1077
-msgid "Preview"
-msgstr "Anteprima"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Altro"
 
-#: ../../index.php:227 ../../mod/help.php:90
-msgid "Not Found"
-msgstr "Non trovato"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../index.php:230 ../../mod/help.php:93
-msgid "Page not found."
-msgstr "Pagina non trovata."
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Maschi"
 
-#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72
-msgid "Permission denied"
-msgstr "Permesso negato"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmine"
 
-#: ../../index.php:342 ../../mod/fsuggest.php:78
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/editpost.php:10
-#: ../../mod/dfrn_confirm.php:53 ../../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:133 ../../mod/photos.php:1044
-#: ../../mod/register.php:40 ../../mod/attach.php:33
-#: ../../mod/contacts.php:147 ../../mod/follow.php:9 ../../mod/uimport.php:23
-#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/display.php:180
-#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
-#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
-#: ../../mod/manage.php:96 ../../mod/delegate.php:6
-#: ../../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:118
-#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/mood.php:114
-#: ../../mod/network.php:6 ../../mod/crepair.php:115
-#: ../../include/items.php:4090
-msgid "Permission denied."
-msgstr "Permesso negato."
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../index.php:401
-msgid "toggle mobile"
-msgstr "commuta tema mobile"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbica"
 
-#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
-#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
-msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Nessuna preferenza"
 
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
-msgid "Contact not found."
-msgstr "Contatto non trovato."
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisessuale"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggerimento di amicizia inviato."
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosessuale"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggerisci amici"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Astinente"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggerisci un amico a %s"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vergine"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Questa presentazione è già stata accettata."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviato"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Un sacco"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Asessuato"
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, 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 parametro richiesto non è stato trovato all'indirizzo dato"
-msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Presentazione completa."
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitario"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Errore di comunicazione."
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponibile"
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profilo non disponibile."
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Non disponibile"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "è cotto/a"
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Sono state attivate le misure di protezione contro lo spam."
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "infatuato/a"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Gli amici sono pregati di riprovare tra 24 ore."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Disponibile a un incontro"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infedele"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Indirizzo email non valido."
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sesso-dipendente"
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Questo account non è stato configurato per l'email. Richiesta fallita."
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "Amici"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amici con benefici"
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Ti sei già presentato qui."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Pare che tu e %s siate già amici."
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Impegnato"
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Indirizzo profilo non valido."
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Sposato"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Indirizzo profilo non permesso."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "immaginariamente sposato/a"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Errore nell'aggiornamento del contatto."
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "La tua presentazione è stata inviata."
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coinquilino"
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Accedi per confermare la presentazione."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "diritto comune"
 
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Felice"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Nascondi questo contatto"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Non guarda"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bentornato a casa %s."
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Scambista"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Conferma la tua richiesta di connessione con %s."
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Tradito"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Conferma"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separato"
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439
-msgid "[Name Withheld]"
-msgstr "[Nome Nascosto]"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instabile"
 
-#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:914
-#: ../../mod/search.php:89 ../../mod/display.php:19 ../../mod/community.php:18
-#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:31
-msgid "Public access denied."
-msgstr "Accesso negato."
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorziato"
 
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "immaginariamente divorziato/a"
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Connetti un email come follower</strike> (in arrivo)"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Vedovo"
 
-#: ../../mod/dfrn_request.php:829
-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 "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto"
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Richieste di amicizia/connessione"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "E' complicato"
 
-#: ../../mod/dfrn_request.php:833
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Non interessa"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Rispondi:"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Chiedimelo"
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s ti conosce?"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "tolto dai seguiti"
 
-#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
-#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/profiles.php:606
-#: ../../mod/suggest.php:29 ../../include/items.php:3967
-msgid "Yes"
-msgstr "Si"
+#: ../../include/Contact.php:225 ../../include/conversation.php:878
+msgid "Poke"
+msgstr "Stuzzica"
 
-#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
-#: ../../mod/register.php:240 ../../mod/settings.php:934
-#: ../../mod/settings.php:940 ../../mod/settings.php:948
-#: ../../mod/settings.php:952 ../../mod/settings.php:957
-#: ../../mod/settings.php:963 ../../mod/settings.php:969
-#: ../../mod/settings.php:975 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
-#: ../../mod/profiles.php:607
-msgid "No"
-msgstr "No"
+#: ../../include/Contact.php:226 ../../include/conversation.php:872
+msgid "View Status"
+msgstr "Visualizza stato"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Aggiungi una nota personale:"
+#: ../../include/Contact.php:227 ../../include/conversation.php:873
+msgid "View Profile"
+msgstr "Visualizza profilo"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../include/Contact.php:228 ../../include/conversation.php:874
+msgid "View Photos"
+msgstr "Visualizza foto"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../include/Contact.php:229 ../../include/Contact.php:251
+#: ../../include/conversation.php:875
+msgid "Network Posts"
+msgstr "Post della Rete"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/Contact.php:230 ../../include/Contact.php:251
+#: ../../include/conversation.php:876
+msgid "Edit Contact"
+msgstr "Modifica contatti"
 
-#: ../../mod/dfrn_request.php:843
+#: ../../include/Contact.php:231 ../../include/Contact.php:251
+#: ../../include/conversation.php:877
+msgid "Send PM"
+msgstr "Invia messaggio privato"
+
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:550
+#: ../../include/bbcode.php:551
+msgid "Image/photo"
+msgstr "Immagine/foto"
+
+#: ../../include/bbcode.php:272
 #, php-format
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"external-link\">post</a>"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "L'indirizzo della tua identità:"
+#: ../../include/bbcode.php:514 ../../include/bbcode.php:534
+msgid "$1 wrote:"
+msgstr "$1 ha scritto:"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Invia richiesta"
+#: ../../include/bbcode.php:559 ../../include/bbcode.php:560
+msgid "Encrypted content"
+msgstr "Contenuto criptato"
 
-#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
-#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/photos.php:202
-#: ../../mod/photos.php:290 ../../mod/contacts.php:249 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/suggest.php:32
-#: ../../include/items.php:3970 ../../include/conversation.php:1080
-msgid "Cancel"
-msgstr "Annulla"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Visibile a tutti"
 
-#: ../../mod/profile.php:21 ../../boot.php:1246
-msgid "Requested profile is not available."
-msgstr "Profilo richiesto non disponibile."
+#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "show"
+msgstr "mostra"
 
-#: ../../mod/profile.php:155 ../../mod/display.php:99
-msgid "Access to this profile has been restricted."
-msgstr "L'accesso a questo profilo è stato limitato."
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "don't show"
+msgstr "non mostrare"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Consigli per i Nuovi Utenti"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Uscita effettuata."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "L'identificativo della richiesta non è valido."
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Accesso fallito."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Scarta"
+#: ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
-#: ../../mod/contacts.php:413
-msgid "Ignore"
-msgstr "Ignora"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Il messaggio riportato era:"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
+#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\@ G:i"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Rete"
+#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Inizia:"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:444
-msgid "Personal"
-msgstr "Personale"
+#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Finisce:"
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-#: ../../include/nav.php:104 ../../include/nav.php:143
-msgid "Home"
-msgstr "Home"
+#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485
+msgid "Location:"
+msgstr "Posizione:"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Presentazioni"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
+msgid "Disallowed profile URL."
+msgstr "Indirizzo profilo non permesso."
 
-#: ../../mod/notifications.php:103 ../../mod/message.php:182
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Messaggi"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL di connessione mancante."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Mostra richieste ignorate"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Nascondi richieste ignorate"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo di notifica: "
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Amico suggerito"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Non è stato trovato un nome o un autore"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerito da %s"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Nessun URL puo' essere associato a questo indirizzo."
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:419
-msgid "Hide this contact from others"
-msgstr "Nascondi questo contatto agli altri"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Invia una attività \"è ora amico con\""
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se applicabile"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:753
-msgid "Approve"
-msgstr "Approva"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Dice di conoscerti: "
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossibile recuperare informazioni sul contatto."
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "si"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "segue"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "no"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "E' richiesto un invito."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Approva come: "
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "L'invito non puo' essere verificato."
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amico"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Url OpenID non valido"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Condivisore"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "Inserisci le informazioni richieste."
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Ammiratore"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "Usa un nome più corto."
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Richiesta amicizia/connessione"
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "Il nome è troppo corto."
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Qualcuno inizia a seguirti"
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Nessuna presentazione."
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Notifiche"
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "L'indirizzo email non è valido."
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "a %s è piaciuto il messaggio di %s"
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "Non puoi usare quell'email."
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "a %s non è piaciuto il messaggio di %s"
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s è ora amico di %s"
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "Nome utente già registrato. Scegline un altro."
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a creato un nuovo messaggio"
+#: ../../include/user.php:138
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s ha commentato il messaggio di %s"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Nessuna nuova."
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "C'è stato un errore durante la registrazione. Prova ancora."
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Notifiche dalla rete"
+#: ../../include/user.php:237 ../../include/text.php:1596
+msgid "default"
+msgstr "default"
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr "Nessuna nuova notifica di sistema."
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr "Notifiche di sistema"
+#: ../../include/user.php:325 ../../include/user.php:332
+#: ../../include/user.php:339 ../../mod/photos.php:154
+#: ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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:493
+msgid "Profile Photos"
+msgstr "Foto del profilo"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Nessuna nuova."
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Sconosciuto | non categorizzato"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Notifiche personali"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Blocca immediatamente"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Nessuna nuova."
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Shady, spammer, self-marketer"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Notifiche bacheca"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Lo conosco, ma non ho un'opinione particolare"
 
-#: ../../mod/like.php:151 ../../mod/tagger.php:62 ../../mod/subthread.php:87
-#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1556
-#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
-#: ../../include/conversation.php:254
-msgid "photo"
-msgstr "foto"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "E' ok, probabilmente innocuo"
 
-#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/tagger.php:62
-#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1874
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-msgid "status"
-msgstr "stato"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Rispettabile, ha la mia fiducia"
 
-#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
-#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s piace %3$s di %2$s"
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
+msgid "Frequently"
+msgstr "Frequentemente"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "A %1$s non piace %3$s di %2$s"
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
+msgid "Hourly"
+msgstr "Ogni ora"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
+msgid "Twice daily"
+msgstr "Due volte al dì"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
+msgid "Daily"
+msgstr "Giornalmente"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Accesso fallito."
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Settimanalmente"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Testo sorgente (bbcode):"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Mensilmente"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:"
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Sorgente:"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "Ostatus"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML grezzo):"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS / Atom"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
+#: ../../mod/admin.php:777
+msgid "Email"
+msgstr "Email"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705
+#: ../../mod/dfrn_request.php:842
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Sorgente (formato Diaspora):"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Impostazioni del tema aggiornate."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Aggiungi nuovo contatto"
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:477
-msgid "Site"
-msgstr "Sito"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Inserisci posizione o indirizzo web"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761
-msgid "Users"
-msgstr "Utenti"
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Esempio: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886
-msgid "Plugins"
-msgstr "Plugin"
+#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
+#: ../../mod/match.php:58 ../../boot.php:1417
+msgid "Connect"
+msgstr "Connetti"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086
-msgid "Themes"
-msgstr "Temi"
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invito disponibile"
+msgstr[1] "%d inviti disponibili"
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr "Aggiornamenti Database"
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Trova persone"
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173
-msgid "Logs"
-msgstr "Log"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Inserisci un nome o un interesse"
 
-#: ../../mod/admin.php:120 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Amministrazione"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Connetti/segui"
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "Impostazioni Plugins"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Esempi: Mario Rossi, Pesca"
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Utenti registrati in attesa di conferma"
+#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
+#: ../../mod/directory.php:61
+msgid "Find"
+msgstr "Trova"
 
-#: ../../mod/admin.php:158 ../../mod/admin.php:794 ../../mod/admin.php:994
-#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:184
-#: ../../mod/viewsrc.php:15 ../../include/items.php:3926
-msgid "Item not found."
-msgstr "Elemento non trovato."
+#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
+#: ../../view/theme/diabook/theme.php:520
+msgid "Friend Suggestions"
+msgstr "Contatti suggeriti"
 
-#: ../../mod/admin.php:182 ../../mod/admin.php:718
-msgid "Normal Account"
-msgstr "Account normale"
+#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
+msgid "Similar Interests"
+msgstr "Interessi simili"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:719
-msgid "Soapbox Account"
-msgstr "Account per comunicati e annunci"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Profilo causale"
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:720
-msgid "Community/Celebrity Account"
-msgstr "Account per celebrità o per comunità"
+#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
+msgid "Invite Friends"
+msgstr "Invita amici"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:721
-msgid "Automatic Friend Account"
-msgstr "Account per amicizia automatizzato"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Reti"
 
-#: ../../mod/admin.php:186
-msgid "Blog Account"
-msgstr "Account Blog"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Tutte le Reti"
 
-#: ../../mod/admin.php:187
-msgid "Private Forum"
-msgstr "Forum Privato"
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "Cartelle Salvate"
 
-#: ../../mod/admin.php:206
-msgid "Message queues"
-msgstr "Code messaggi"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Tutto"
 
-#: ../../mod/admin.php:211 ../../mod/admin.php:476 ../../mod/admin.php:746
-#: ../../mod/admin.php:843 ../../mod/admin.php:885 ../../mod/admin.php:1051
-#: ../../mod/admin.php:1085 ../../mod/admin.php:1172
-msgid "Administration"
-msgstr "Amministrazione"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorie"
 
-#: ../../mod/admin.php:212
-msgid "Summary"
-msgstr "Sommario"
+#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contatto in comune"
+msgstr[1] "%d contatti in comune"
 
-#: ../../mod/admin.php:214
-msgid "Registered users"
-msgstr "Utenti registrati"
+#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
+#: ../../object/Item.php:365 ../../boot.php:671
+msgid "show more"
+msgstr "mostra di più"
 
-#: ../../mod/admin.php:216
-msgid "Pending registrations"
-msgstr "Registrazioni in attesa"
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "su Last.fm"
 
-#: ../../mod/admin.php:217
-msgid "Version"
-msgstr "Versione"
+#: ../../include/network.php:877
+msgid "view full size"
+msgstr "vedi a schermo intero"
 
-#: ../../mod/admin.php:219
-msgid "Active plugins"
-msgstr "Plugin attivi"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Varie"
 
-#: ../../mod/admin.php:401
-msgid "Site settings updated."
-msgstr "Impostazioni del sito aggiornate."
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "anno"
 
-#: ../../mod/admin.php:430 ../../mod/settings.php:769
-msgid "No special theme for mobile devices"
-msgstr "Nessun tema speciale per i dispositivi mobili"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "mese"
 
-#: ../../mod/admin.php:447
-msgid "Multi user instance"
-msgstr "Istanza multi utente"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "giorno"
 
-#: ../../mod/admin.php:463
-msgid "Closed"
-msgstr "Chiusa"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "mai"
 
-#: ../../mod/admin.php:464
-msgid "Requires approval"
-msgstr "Richiede l'approvazione"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "meno di un secondo fa"
 
-#: ../../mod/admin.php:465
-msgid "Open"
-msgstr "Aperta"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "anni"
 
-#: ../../mod/admin.php:469
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "mesi"
 
-#: ../../mod/admin.php:470
-msgid "Force all links to use SSL"
-msgstr "Forza tutti i linki ad usare SSL"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "settimana"
 
-#: ../../mod/admin.php:471
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "settimane"
 
-#: ../../mod/admin.php:479 ../../mod/register.php:261
-msgid "Registration"
-msgstr "Registrazione"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "giorni"
 
-#: ../../mod/admin.php:480
-msgid "File upload"
-msgstr "Caricamento file"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "ora"
 
-#: ../../mod/admin.php:481
-msgid "Policies"
-msgstr "Politiche"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "ore"
 
-#: ../../mod/admin.php:482
-msgid "Advanced"
-msgstr "Avanzate"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuto"
 
-#: ../../mod/admin.php:483
-msgid "Performance"
-msgstr "Performance"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minuti"
 
-#: ../../mod/admin.php:487
-msgid "Site name"
-msgstr "Nome del sito"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "secondo"
 
-#: ../../mod/admin.php:488
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "secondi"
 
-#: ../../mod/admin.php:489
-msgid "System language"
-msgstr "Lingua di sistema"
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s fa"
 
-#: ../../mod/admin.php:490
-msgid "System theme"
-msgstr "Tema di sistema"
+#: ../../include/datetime.php:472 ../../include/items.php:1813
+#, php-format
+msgid "%s's birthday"
+msgstr "Compleanno di %s"
 
-#: ../../mod/admin.php:490
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>"
+#: ../../include/datetime.php:473 ../../include/items.php:1814
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Buon compleanno %s"
 
-#: ../../mod/admin.php:491
-msgid "Mobile system theme"
-msgstr "Tema mobile di sistema"
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "Clicca qui per aggiornare."
 
-#: ../../mod/admin.php:491
-msgid "Theme for mobile devices"
-msgstr "Tema per dispositivi mobili"
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione."
 
-#: ../../mod/admin.php:492
-msgid "SSL link policy"
-msgstr "Gestione link SSL"
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione."
 
-#: ../../mod/admin.php:492
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se i link generati devono essere forzati a usare SSL"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "(nessun oggetto)"
 
-#: ../../mod/admin.php:493
-msgid "'Share' element"
-msgstr "Elemento 'Share'"
+#: ../../include/delivery.php:468 ../../include/enotify.php:28
+#: ../../include/notifier.php:785
+msgid "noreply"
+msgstr "nessuna risposta"
 
-#: ../../mod/admin.php:493
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr "Attiva l'elemento bbcode 'share' per i post condivisi."
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s e %2$s adesso sono amici"
 
-#: ../../mod/admin.php:494
-msgid "Hide help entry from navigation menu"
-msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Notifica di condivisione dal network Diaspora*"
 
-#: ../../mod/admin.php:494
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."
+#: ../../include/diaspora.php:1874 ../../include/text.php:1862
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../view/theme/diabook/theme.php:464
+msgid "photo"
+msgstr "foto"
 
-#: ../../mod/admin.php:495
-msgid "Single user instance"
-msgstr "Instanza a singolo utente"
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468
+msgid "status"
+msgstr "stato"
 
-#: ../../mod/admin.php:495
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"
+#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
+#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "A %1$s piace %3$s di %2$s"
 
-#: ../../mod/admin.php:496
-msgid "Maximum image size"
-msgstr "Massima dimensione immagini"
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "Allegati:"
 
-#: ../../mod/admin.php:496
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
+#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[Nome Nascosto]"
 
-#: ../../mod/admin.php:497
-msgid "Maximum image length"
-msgstr "Massima lunghezza immagine"
+#: ../../include/items.php:3495
+msgid "A new person is sharing with you at "
+msgstr "Una nuova persona sta condividendo con te da "
 
-#: ../../mod/admin.php:497
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
+#: ../../include/items.php:3495
+msgid "You have a new follower at "
+msgstr "Una nuova persona ti segue su "
 
-#: ../../mod/admin.php:498
-msgid "JPEG image quality"
-msgstr "Qualità immagini JPEG"
+#: ../../include/items.php:3979 ../../mod/display.php:51
+#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809
+#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
+msgid "Item not found."
+msgstr "Elemento non trovato."
 
-#: ../../mod/admin.php:498
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
+#: ../../include/items.php:4018
+msgid "Do you really want to delete this item?"
+msgstr "Vuoi veramente cancellare questo elemento?"
 
-#: ../../mod/admin.php:500
-msgid "Register policy"
-msgstr "Politica di registrazione"
+#: ../../include/items.php:4020 ../../mod/profiles.php:610
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "Si"
 
-#: ../../mod/admin.php:501
-msgid "Maximum Daily Registrations"
-msgstr "Massime registrazioni giornaliere"
+#: ../../include/items.php:4023 ../../include/conversation.php:1120
+#: ../../mod/contacts.php:249 ../../mod/settings.php:585
+#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848
+#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
+#: ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "Annulla"
 
-#: ../../mod/admin.php:501
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
+#: ../../include/items.php:4143 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242
+#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159
+#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/settings.php:91
+#: ../../mod/settings.php:566 ../../mod/settings.php:571
+#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
+#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
+#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/notifications.php:66
+#: ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/install.php:151 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../index.php:346
+msgid "Permission denied."
+msgstr "Permesso negato."
 
-#: ../../mod/admin.php:502
-msgid "Register text"
-msgstr "Testo registrazione"
-
-#: ../../mod/admin.php:502
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
+#: ../../include/items.php:4213
+msgid "Archives"
+msgstr "Archivi"
 
-#: ../../mod/admin.php:503
-msgid "Accounts abandoned after x days"
-msgstr "Account abbandonati dopo x giorni"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funzionalità generali"
 
-#: ../../mod/admin.php:503
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profili multipli"
 
-#: ../../mod/admin.php:504
-msgid "Allowed friend domains"
-msgstr "Domini amici consentiti"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Possibilità di creare profili multipli"
 
-#: ../../mod/admin.php:504
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funzionalità di composizione dei post"
 
-#: ../../mod/admin.php:505
-msgid "Allowed email domains"
-msgstr "Domini email consentiti"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor visuale"
 
-#: ../../mod/admin.php:505
-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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Abilita l'editor visuale"
 
-#: ../../mod/admin.php:506
-msgid "Block public"
-msgstr "Blocca pagine pubbliche"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Anteprima dei post"
 
-#: ../../mod/admin.php:506
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"
 
-#: ../../mod/admin.php:507
-msgid "Force publish"
-msgstr "Forza publicazione"
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr "Widget della barra laterale nella pagina Rete"
 
-#: ../../mod/admin.php:507
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "Cerca per data"
 
-#: ../../mod/admin.php:508
-msgid "Global directory update URL"
-msgstr "URL aggiornamento Elenco Globale"
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr "Permette di filtrare i post per data"
 
-#: ../../mod/admin.php:508
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "Filtra gruppi"
 
-#: ../../mod/admin.php:509
-msgid "Allow threaded items"
-msgstr "Permetti commenti nidificati"
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato"
 
-#: ../../mod/admin.php:509
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito."
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr "Filtro reti"
 
-#: ../../mod/admin.php:510
-msgid "Private posts by default for new users"
-msgstr "Post privati di default per i nuovi utenti"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Abilita il widget per mostare i post solo per la rete selezionata"
 
-#: ../../mod/admin.php:510
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."
+#: ../../include/features.php:41 ../../mod/search.php:30
+#: ../../mod/network.php:233
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
 
-#: ../../mod/admin.php:511
-msgid "Don't include post content in email notifications"
-msgstr "Non includere il contenuto dei post nelle notifiche via email"
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr "Salva i termini cercati per riutilizzarli"
 
-#: ../../mod/admin.php:511
-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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr "Schede pagina Rete"
 
-#: ../../mod/admin.php:513
-msgid "Block multiple registrations"
-msgstr "Blocca registrazioni multiple"
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr "Scheda Personali"
 
-#: ../../mod/admin.php:513
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Non permette all'utente di registrare account extra da usare come pagine."
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato"
 
-#: ../../mod/admin.php:514
-msgid "OpenID support"
-msgstr "Supporto OpenID"
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr "Scheda Nuovi"
 
-#: ../../mod/admin.php:514
-msgid "OpenID support for registration and logins."
-msgstr "Supporta OpenID per la registrazione e il login"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"
 
-#: ../../mod/admin.php:515
-msgid "Fullname check"
-msgstr "Controllo nome completo"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr "Scheda Link Condivisi"
 
-#: ../../mod/admin.php:515
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Abilita la scheda per mostrare solo i post che contengono link"
 
-#: ../../mod/admin.php:516
-msgid "UTF-8 Regular expressions"
-msgstr "Espressioni regolari UTF-8"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr "Strumenti per mesasggi/commenti"
 
-#: ../../mod/admin.php:516
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Usa le espressioni regolari PHP in UTF8"
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr "Eliminazione multipla"
 
-#: ../../mod/admin.php:517
-msgid "Show Community Page"
-msgstr "Mostra pagina Comunità"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola"
 
-#: ../../mod/admin.php:517
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr "Modifica i post inviati"
 
-#: ../../mod/admin.php:518
-msgid "Enable OStatus support"
-msgstr "Abilita supporto OStatus"
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr "Modifica e correggi messaggi e commenti dopo averli inviati"
 
-#: ../../mod/admin.php:518
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "Aggiunta tag"
 
-#: ../../mod/admin.php:519
-msgid "Enable Diaspora support"
-msgstr "Abilita il supporto a Diaspora"
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr "Permette di aggiungere tag ai post già esistenti"
 
-#: ../../mod/admin.php:519
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornisce compatibilità con il network Diaspora."
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr "Cateorie post"
 
-#: ../../mod/admin.php:520
-msgid "Only allow Friendica contacts"
-msgstr "Permetti solo contatti Friendica"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "Aggiungi categorie ai tuoi post"
 
-#: ../../mod/admin.php:520
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr "Permette di archiviare i post in cartelle"
 
-#: ../../mod/admin.php:521
-msgid "Verify SSL"
-msgstr "Verifica SSL"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr "Non mi piace"
 
-#: ../../mod/admin.php:521
-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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr "Permetti di inviare \"non mi piace\" ai messaggi"
 
-#: ../../mod/admin.php:522
-msgid "Proxy user"
-msgstr "Utente Proxy"
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "Post preferiti"
 
-#: ../../mod/admin.php:523
-msgid "Proxy URL"
-msgstr "URL Proxy"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Permette di segnare i post preferiti con una stella"
 
-#: ../../mod/admin.php:524
-msgid "Network timeout"
-msgstr "Timeout rete"
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Non trovo le informazioni DNS per il database server '%s'"
 
-#: ../../mod/admin.php:524
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
+#: ../../include/text.php:294
+msgid "prev"
+msgstr "prec"
 
-#: ../../mod/admin.php:525
-msgid "Delivery interval"
-msgstr "Intervallo di invio"
+#: ../../include/text.php:296
+msgid "first"
+msgstr "primo"
 
-#: ../../mod/admin.php:525
-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 "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."
+#: ../../include/text.php:325
+msgid "last"
+msgstr "ultimo"
 
-#: ../../mod/admin.php:526
-msgid "Poll interval"
-msgstr "Intervallo di poll"
+#: ../../include/text.php:328
+msgid "next"
+msgstr "succ"
 
-#: ../../mod/admin.php:526
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."
+#: ../../include/text.php:352
+msgid "newer"
+msgstr "nuovi"
 
-#: ../../mod/admin.php:527
-msgid "Maximum Load Average"
-msgstr "Massimo carico medio"
+#: ../../include/text.php:356
+msgid "older"
+msgstr "vecchi"
 
-#: ../../mod/admin.php:527
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."
+#: ../../include/text.php:807
+msgid "No contacts"
+msgstr "Nessun contatto"
 
-#: ../../mod/admin.php:529
-msgid "Use MySQL full text engine"
-msgstr "Usa il motore MySQL full text"
+#: ../../include/text.php:816
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contatto"
+msgstr[1] "%d contatti"
 
-#: ../../mod/admin.php:529
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."
+#: ../../include/text.php:828 ../../mod/viewcontacts.php:76
+msgid "View Contacts"
+msgstr "Visualizza i contatti"
 
-#: ../../mod/admin.php:530
-msgid "Path to item cache"
-msgstr "Percorso cache elementi"
+#: ../../include/text.php:905 ../../include/text.php:906
+#: ../../include/nav.php:118 ../../mod/search.php:99
+msgid "Search"
+msgstr "Cerca"
 
-#: ../../mod/admin.php:531
-msgid "Cache duration in seconds"
-msgstr "Durata della cache in secondi"
+#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Salva"
 
-#: ../../mod/admin.php:531
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."
+#: ../../include/text.php:957
+msgid "poke"
+msgstr "stuzzica"
 
-#: ../../mod/admin.php:532
-msgid "Path for lock file"
-msgstr "Percorso al file di lock"
+#: ../../include/text.php:957 ../../include/conversation.php:211
+msgid "poked"
+msgstr "toccato"
 
-#: ../../mod/admin.php:533
-msgid "Temp path"
-msgstr "Percorso file temporanei"
+#: ../../include/text.php:958
+msgid "ping"
+msgstr "invia un ping"
 
-#: ../../mod/admin.php:534
-msgid "Base path to installation"
-msgstr "Percorso base all'installazione"
+#: ../../include/text.php:958
+msgid "pinged"
+msgstr "inviato un ping"
 
-#: ../../mod/admin.php:552
-msgid "Update has been marked successful"
-msgstr "L'aggiornamento è stato segnato come  di successo"
+#: ../../include/text.php:959
+msgid "prod"
+msgstr "pungola"
 
-#: ../../mod/admin.php:562
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema."
+#: ../../include/text.php:959
+msgid "prodded"
+msgstr "pungolato"
 
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "L'aggiornamento %s è stato applicato con successo"
+#: ../../include/text.php:960
+msgid "slap"
+msgstr "schiaffeggia"
 
-#: ../../mod/admin.php:569
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
+#: ../../include/text.php:960
+msgid "slapped"
+msgstr "schiaffeggiato"
 
-#: ../../mod/admin.php:572
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "La funzione di aggiornamento %s non puo' essere trovata."
+#: ../../include/text.php:961
+msgid "finger"
+msgstr "tocca"
 
-#: ../../mod/admin.php:587
-msgid "No failed updates."
-msgstr "Nessun aggiornamento fallito."
+#: ../../include/text.php:961
+msgid "fingered"
+msgstr "toccato"
 
-#: ../../mod/admin.php:591
-msgid "Failed Updates"
-msgstr "Aggiornamenti falliti"
+#: ../../include/text.php:962
+msgid "rebuff"
+msgstr "respingi"
 
-#: ../../mod/admin.php:592
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."
+#: ../../include/text.php:962
+msgid "rebuffed"
+msgstr "respinto"
 
-#: ../../mod/admin.php:593
-msgid "Mark success (if update was manually applied)"
-msgstr "Segna completato (se l'update è stato applicato manualmente)"
+#: ../../include/text.php:976
+msgid "happy"
+msgstr "felice"
 
-#: ../../mod/admin.php:594
-msgid "Attempt to execute this update step automatically"
-msgstr "Cerco di eseguire questo aggiornamento in automatico"
+#: ../../include/text.php:977
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/admin.php:619
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utente bloccato/sbloccato"
-msgstr[1] "%s utenti bloccati/sbloccati"
+#: ../../include/text.php:978
+msgid "mellow"
+msgstr "rilassato"
 
-#: ../../mod/admin.php:626
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utente cancellato"
-msgstr[1] "%s utenti cancellati"
+#: ../../include/text.php:979
+msgid "tired"
+msgstr "stanco"
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utente '%s' cancellato"
+#: ../../include/text.php:980
+msgid "perky"
+msgstr "vivace"
 
-#: ../../mod/admin.php:673
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utente '%s' sbloccato"
+#: ../../include/text.php:981
+msgid "angry"
+msgstr "arrabbiato"
 
-#: ../../mod/admin.php:673
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utente '%s' bloccato"
+#: ../../include/text.php:982
+msgid "stupified"
+msgstr "stupefatto"
 
-#: ../../mod/admin.php:749
-msgid "select all"
-msgstr "seleziona tutti"
+#: ../../include/text.php:983
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../mod/admin.php:750
-msgid "User registrations waiting for confirm"
-msgstr "Richieste di registrazione in attesa di conferma"
+#: ../../include/text.php:984
+msgid "interested"
+msgstr "interessato"
 
-#: ../../mod/admin.php:751
-msgid "Request date"
-msgstr "Data richiesta"
+#: ../../include/text.php:985
+msgid "bitter"
+msgstr "risentito"
 
-#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/crepair.php:148
-msgid "Name"
-msgstr "Nome"
+#: ../../include/text.php:986
+msgid "cheerful"
+msgstr "giocoso"
 
-#: ../../mod/admin.php:751 ../../mod/admin.php:762
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "Email"
+#: ../../include/text.php:987
+msgid "alive"
+msgstr "vivo"
 
-#: ../../mod/admin.php:752
-msgid "No registrations."
-msgstr "Nessuna registrazione."
+#: ../../include/text.php:988
+msgid "annoyed"
+msgstr "annoiato"
 
-#: ../../mod/admin.php:754
-msgid "Deny"
-msgstr "Nega"
+#: ../../include/text.php:989
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../mod/admin.php:756 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
-msgstr "Blocca"
+#: ../../include/text.php:990
+msgid "cranky"
+msgstr "irritabile"
 
-#: ../../mod/admin.php:757 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
-msgstr "Sblocca"
+#: ../../include/text.php:991
+msgid "disturbed"
+msgstr "disturbato"
 
-#: ../../mod/admin.php:758
-msgid "Site admin"
-msgstr "Amministrazione sito"
+#: ../../include/text.php:992
+msgid "frustrated"
+msgstr "frustato"
 
-#: ../../mod/admin.php:759
-msgid "Account expired"
-msgstr "Account scaduto"
+#: ../../include/text.php:993
+msgid "motivated"
+msgstr "motivato"
 
-#: ../../mod/admin.php:762
-msgid "Register date"
-msgstr "Data registrazione"
+#: ../../include/text.php:994
+msgid "relaxed"
+msgstr "rilassato"
 
-#: ../../mod/admin.php:762
-msgid "Last login"
-msgstr "Ultimo accesso"
+#: ../../include/text.php:995
+msgid "surprised"
+msgstr "sorpreso"
 
-#: ../../mod/admin.php:762
-msgid "Last item"
-msgstr "Ultimo elemento"
+#: ../../include/text.php:1163
+msgid "Monday"
+msgstr "Lunedì"
 
-#: ../../mod/admin.php:762
-msgid "Account"
-msgstr "Account"
+#: ../../include/text.php:1163
+msgid "Tuesday"
+msgstr "Martedì"
 
-#: ../../mod/admin.php:764
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
+#: ../../include/text.php:1163
+msgid "Wednesday"
+msgstr "Mercoledì"
 
-#: ../../mod/admin.php:765
-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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
+#: ../../include/text.php:1163
+msgid "Thursday"
+msgstr "Giovedì"
 
-#: ../../mod/admin.php:806
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s disabilitato."
-
-#: ../../mod/admin.php:810
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s abilitato."
-
-#: ../../mod/admin.php:820 ../../mod/admin.php:1023
-msgid "Disable"
-msgstr "Disabilita"
+#: ../../include/text.php:1163
+msgid "Friday"
+msgstr "Venerdì"
 
-#: ../../mod/admin.php:822 ../../mod/admin.php:1025
-msgid "Enable"
-msgstr "Abilita"
+#: ../../include/text.php:1163
+msgid "Saturday"
+msgstr "Sabato"
 
-#: ../../mod/admin.php:845 ../../mod/admin.php:1053
-msgid "Toggle"
-msgstr "Inverti"
+#: ../../include/text.php:1163
+msgid "Sunday"
+msgstr "Domenica"
 
-#: ../../mod/admin.php:846 ../../mod/admin.php:1054 ../../mod/newmember.php:22
-#: ../../mod/settings.php:74 ../../mod/uexport.php:48
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
-msgid "Settings"
-msgstr "Impostazioni"
+#: ../../include/text.php:1167
+msgid "January"
+msgstr "Gennaio"
 
-#: ../../mod/admin.php:853 ../../mod/admin.php:1063
-msgid "Author: "
-msgstr "Autore: "
+#: ../../include/text.php:1167
+msgid "February"
+msgstr "Febbraio"
 
-#: ../../mod/admin.php:854 ../../mod/admin.php:1064
-msgid "Maintainer: "
-msgstr "Manutentore: "
+#: ../../include/text.php:1167
+msgid "March"
+msgstr "Marzo"
 
-#: ../../mod/admin.php:983
-msgid "No themes found."
-msgstr "Nessun tema trovato."
+#: ../../include/text.php:1167
+msgid "April"
+msgstr "Aprile"
 
-#: ../../mod/admin.php:1045
-msgid "Screenshot"
-msgstr "Anteprima"
+#: ../../include/text.php:1167
+msgid "May"
+msgstr "Maggio"
 
-#: ../../mod/admin.php:1091
-msgid "[Experimental]"
-msgstr "[Sperimentale]"
+#: ../../include/text.php:1167
+msgid "June"
+msgstr "Giugno"
 
-#: ../../mod/admin.php:1092
-msgid "[Unsupported]"
-msgstr "[Non supportato]"
+#: ../../include/text.php:1167
+msgid "July"
+msgstr "Luglio"
 
-#: ../../mod/admin.php:1119
-msgid "Log settings updated."
-msgstr "Impostazioni Log aggiornate."
+#: ../../include/text.php:1167
+msgid "August"
+msgstr "Agosto"
 
-#: ../../mod/admin.php:1175
-msgid "Clear"
-msgstr "Pulisci"
+#: ../../include/text.php:1167
+msgid "September"
+msgstr "Settembre"
 
-#: ../../mod/admin.php:1181
-msgid "Debugging"
-msgstr "Debugging"
+#: ../../include/text.php:1167
+msgid "October"
+msgstr "Ottobre"
 
-#: ../../mod/admin.php:1182
-msgid "Log file"
-msgstr "File di Log"
+#: ../../include/text.php:1167
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/admin.php:1182
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
+#: ../../include/text.php:1167
+msgid "December"
+msgstr "Dicembre"
 
-#: ../../mod/admin.php:1183
-msgid "Log level"
-msgstr "Livello di Log"
+#: ../../include/text.php:1323 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Guarda Video"
 
-#: ../../mod/admin.php:1232 ../../mod/contacts.php:409
-msgid "Update now"
-msgstr "Aggiorna adesso"
+#: ../../include/text.php:1355
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/admin.php:1233
-msgid "Close"
-msgstr "Chiudi"
+#: ../../include/text.php:1379 ../../include/text.php:1391
+msgid "Click to open/close"
+msgstr "Clicca per aprire/chiudere"
 
-#: ../../mod/admin.php:1239
-msgid "FTP Host"
-msgstr "Indirizzo FTP"
+#: ../../include/text.php:1553 ../../mod/events.php:335
+msgid "link to source"
+msgstr "Collegamento all'originale"
 
-#: ../../mod/admin.php:1240
-msgid "FTP Path"
-msgstr "Percorso FTP"
+#: ../../include/text.php:1608
+msgid "Select an alternate language"
+msgstr "Seleziona una diversa lingua"
 
-#: ../../mod/admin.php:1241
-msgid "FTP User"
-msgstr "Utente FTP"
+#: ../../include/text.php:1860 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
+msgid "event"
+msgstr "l'evento"
 
-#: ../../mod/admin.php:1242
-msgid "FTP Password"
-msgstr "Pasword FTP"
+#: ../../include/text.php:1864
+msgid "activity"
+msgstr "attività"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nuovo messaggio"
+#: ../../include/text.php:1866 ../../mod/content.php:628
+#: ../../object/Item.php:364 ../../object/Item.php:377
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commento"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Nessun destinatario selezionato."
+#: ../../include/text.php:1867
+msgid "post"
+msgstr "messaggio"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossibile trovare le informazioni del contatto."
+#: ../../include/text.php:2022
+msgid "Item filed"
+msgstr "Messaggio salvato"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Il messaggio non puo' essere inviato."
+#: ../../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 gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Errore recuperando il messaggio."
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Gruppo predefinito per i nuovi contatti"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Messaggio inviato."
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tutti"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Vuoi veramente cancellare questo messaggio?"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "modifica"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Messaggio eliminato."
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Gruppi"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Conversazione rimossa."
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Modifica gruppo"
 
-#: ../../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:958 ../../include/conversation.php:976
-msgid "Please enter a link URL:"
-msgstr "Inserisci l'indirizzo del link:"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Crea un nuovo gruppo"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Invia un messaggio privato"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contatti in nessun gruppo."
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "A:"
+#: ../../include/group.php:275 ../../mod/network.php:234
+msgid "add"
+msgstr "aggiungi"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Oggetto:"
+#: ../../include/conversation.php:140 ../../mod/like.php:170
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "A %1$s non piace %3$s di %2$s"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Il tuo messaggio:"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s ha stuzzicato %2$s"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
-#: ../../include/conversation.php:1042
-msgid "Upload photo"
-msgstr "Carica foto"
+#: ../../include/conversation.php:227 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s al momento è %2$s"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
-#: ../../include/conversation.php:1046
-msgid "Insert web link"
-msgstr "Inserisci link"
+#: ../../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 ha taggato %3$s di %2$s con %4$s"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nessun messaggio."
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "post/elemento"
 
-#: ../../mod/message.php:378
+#: ../../include/conversation.php:292
 #, php-format
-msgid "Unknown sender - %s"
-msgstr "Mittente sconosciuto - %s"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Tu e %s"
+#: ../../include/conversation.php:612 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../object/Item.php:126
+msgid "Select"
+msgstr "Seleziona"
 
-#: ../../mod/message.php:384
+#: ../../include/conversation.php:613 ../../mod/admin.php:770
+#: ../../mod/settings.php:647 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:127
+msgid "Delete"
+msgstr "Rimuovi"
+
+#: ../../include/conversation.php:652 ../../mod/content.php:495
+#: ../../mod/content.php:875 ../../mod/content.php:876
+#: ../../object/Item.php:306 ../../object/Item.php:307
 #, php-format
-msgid "%s and You"
-msgstr "%s e Tu"
+msgid "View %s's profile @ %s"
+msgstr "Vedi il profilo di %s @ %s"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Elimina la conversazione"
+#: ../../include/conversation.php:664 ../../object/Item.php:297
+msgid "Categories:"
+msgstr "Categorie:"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D d M Y - G:i"
+#: ../../include/conversation.php:665 ../../object/Item.php:298
+msgid "Filed under:"
+msgstr "Archiviato in:"
 
-#: ../../mod/message.php:411
+#: ../../include/conversation.php:672 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../object/Item.php:320
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d messaggio"
-msgstr[1] "%d messaggi"
+msgid "%s from %s"
+msgstr "%s da %s"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Messaggio non disponibile."
+#: ../../include/conversation.php:687 ../../mod/content.php:520
+msgid "View in context"
+msgstr "Vedi nel contesto"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Elimina il messaggio"
+#: ../../include/conversation.php:689 ../../include/conversation.php:1100
+#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/photos.php:1532 ../../mod/content.php:522
+#: ../../mod/content.php:906 ../../object/Item.php:341
+msgid "Please wait"
+msgstr "Attendi"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
+#: ../../include/conversation.php:768
+msgid "remove"
+msgstr "rimuovi"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Invia la risposta"
+#: ../../include/conversation.php:772
+msgid "Delete Selected Items"
+msgstr "Cancella elementi selezionati"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Oggetto non trovato"
+#: ../../include/conversation.php:871
+msgid "Follow Thread"
+msgstr "Segui la discussione"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Modifica messaggio"
+#: ../../include/conversation.php:940
+#, php-format
+msgid "%s likes this."
+msgstr "Piace a %s."
+
+#: ../../include/conversation.php:940
+#, php-format
+msgid "%s doesn't like this."
+msgstr "Non piace a %s."
+
+#: ../../include/conversation.php:945
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "Piace a <span %1$s>%2$d persone</span>."
+
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "Non piace a <span %1$s>%2$d persone</span>."
+
+#: ../../include/conversation.php:962
+msgid "and"
+msgstr "e"
+
+#: ../../include/conversation.php:968
+#, php-format
+msgid ", and %d other people"
+msgstr "e altre %d persone"
+
+#: ../../include/conversation.php:970
+#, php-format
+msgid "%s like this."
+msgstr "Piace a %s."
+
+#: ../../include/conversation.php:970
+#, php-format
+msgid "%s don't like this."
+msgstr "Non piace a %s."
+
+#: ../../include/conversation.php:997 ../../include/conversation.php:1015
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visibile a <strong>tutti</strong>"
+
+#: ../../include/conversation.php:998 ../../include/conversation.php:1016
+#: ../../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 "Inserisci l'indirizzo del link:"
+
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Please enter a video link/URL:"
+msgstr "Inserisci un collegamento video / URL:"
+
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter an audio link/URL:"
+msgstr "Inserisci un collegamento audio / URL:"
+
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Tag term:"
+msgstr "Tag:"
+
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Salva nella Cartella:"
+
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Where are you right now?"
+msgstr "Dove sei ora?"
+
+#: ../../include/conversation.php:1004
+msgid "Delete item(s)?"
+msgstr "Cancellare questo elemento/i?"
+
+#: ../../include/conversation.php:1046
+msgid "Post to Email"
+msgstr "Invia a email"
+
+#: ../../include/conversation.php:1081 ../../mod/photos.php:1531
+msgid "Share"
+msgstr "Condividi"
+
+#: ../../include/conversation.php:1082 ../../mod/editpost.php:110
+#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Carica foto"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1043
+#: ../../include/conversation.php:1083 ../../mod/editpost.php:111
 msgid "upload photo"
 msgstr "carica foto"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1044
+#: ../../include/conversation.php:1084 ../../mod/editpost.php:112
 msgid "Attach file"
 msgstr "Allega file"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1045
+#: ../../include/conversation.php:1085 ../../mod/editpost.php:113
 msgid "attach file"
 msgstr "allega file"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1047
+#: ../../include/conversation.php:1086 ../../mod/editpost.php:114
+#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Inserisci link"
+
+#: ../../include/conversation.php:1087 ../../mod/editpost.php:115
 msgid "web link"
 msgstr "link web"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1048
+#: ../../include/conversation.php:1088 ../../mod/editpost.php:116
 msgid "Insert video link"
 msgstr "Inserire collegamento video"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1049
+#: ../../include/conversation.php:1089 ../../mod/editpost.php:117
 msgid "video link"
 msgstr "link video"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1050
+#: ../../include/conversation.php:1090 ../../mod/editpost.php:118
 msgid "Insert audio link"
 msgstr "Inserisci collegamento audio"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1051
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:119
 msgid "audio link"
 msgstr "link audio"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1052
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:120
 msgid "Set your location"
 msgstr "La tua posizione"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1053
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:121
 msgid "set location"
 msgstr "posizione"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1054
+#: ../../include/conversation.php:1094 ../../mod/editpost.php:122
 msgid "Clear browser location"
 msgstr "Rimuovi la localizzazione data dal browser"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1055
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:123
 msgid "clear location"
 msgstr "canc. pos."
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1061
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Scegli un titolo"
+
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Categorie (lista separata da virgola)"
+
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:125
 msgid "Permission settings"
 msgstr "Impostazioni permessi"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1070
+#: ../../include/conversation.php:1102
+msgid "permissions"
+msgstr "permessi"
+
+#: ../../include/conversation.php:1110 ../../mod/editpost.php:133
 msgid "CC: email addresses"
 msgstr "CC: indirizzi email"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1071
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:134
 msgid "Public post"
 msgstr "Messaggio pubblico"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1057
-msgid "Set title"
-msgstr "Scegli un titolo"
-
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1059
-msgid "Categories (comma-separated list)"
-msgstr "Categorie (lista separata da virgola)"
-
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1073
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:140
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Esempio: bob@example.com, mary@example.com"
 
-#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:579
-msgid "Profile not found."
-msgstr "Profilo non trovato."
-
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata."
+#: ../../include/conversation.php:1117 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../object/Item.php:662
+msgid "Preview"
+msgstr "Anteprima"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Errore di comunicazione con l'altro sito."
+#: ../../include/conversation.php:1126
+msgid "Post to Groups"
+msgstr "Invia ai Gruppi"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "La risposta dell'altro sito non può essere gestita: "
+#: ../../include/conversation.php:1127
+msgid "Post to Contacts"
+msgstr "Invia ai Contatti"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Conferma completata con successo."
+#: ../../include/conversation.php:1128
+msgid "Private post"
+msgstr "Post privato"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Il sito remoto riporta: "
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Notifica Friendica"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Problema temporaneo. Attendi e riprova."
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Grazie,"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "La presentazione ha generato un errore o è stata revocata."
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "Amministratore %s"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Impossibile impostare la foto del contatto."
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
-#: ../../include/conversation.php:172
+#: ../../include/enotify.php:44
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s e %2$s adesso sono amici"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
 
-#: ../../mod/dfrn_confirm.php:562
+#: ../../include/enotify.php:46
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Nessun utente trovato '%s'"
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s."
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s ti ha inviato %2$s"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "un messaggio privato"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Il contatto non è stato trovato sul nostro sito."
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
 
-#: ../../mod/dfrn_confirm.php:618
+#: ../../include/enotify.php:90
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]"
 
-#: ../../mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d"
 
-#: ../../mod/dfrn_confirm.php:751
+#: ../../include/enotify.php:116
 #, php-format
-msgid "Connection accepted at %s"
-msgstr "Connession accettata su %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s ha commentato un elemento che stavi seguendo."
 
-#: ../../mod/dfrn_confirm.php:800
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s si è unito a %2$s"
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Visita %s per vedere e/o commentare la conversazione"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Titolo e ora di inizio dell'evento sono richiesti."
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l j F"
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s ha scritto sulla tua bacheca su %2$s"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Modifca l'evento"
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]"
 
-#: ../../mod/events.php:335 ../../include/text.php:1304
-msgid "link to source"
-msgstr "Collegamento all'originale"
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notifica] %s ti ha taggato"
 
-#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
-#: ../../boot.php:1885 ../../include/nav.php:79
-msgid "Events"
-msgstr "Eventi"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s ti ha taggato su %2$s"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Crea un nuovo evento"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]ti ha taggato[/url]."
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Precendente"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Successivo"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s ti ha stuzzicato su %2$s"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "ora:minuti"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]."
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Dettagli dell'evento"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
 
-#: ../../mod/events.php:457
+#: ../../include/enotify.php:173
 #, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti."
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s ha taggato il tuo post su %2$s"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "L'evento inizia:"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Richiesto"
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "La data/ora di fine non è definita"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "L'evento finisce:"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s."
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Visualizza con il fuso orario di chi legge"
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Puoi visitare il suo profilo presso %s"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrizione:"
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Visita %s per approvare o rifiutare la presentazione."
 
-#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-msgid "Location:"
-msgstr "Posizione:"
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titolo:"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Condividi questo evento"
+#: ../../include/enotify.php:201
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s"
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
-#: ../../boot.php:1875 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Foto"
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "File"
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../mod/home.php:34
+#: ../../include/enotify.php:210
 #, php-format
-msgid "Welcome to %s"
-msgstr "Benvenuto su %s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Visita %s per approvare o rifiutare il suggerimento."
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informazioni remote sulla privacy non disponibili."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[nessun oggetto]"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visibile a:"
+#: ../../include/message.php:144 ../../mod/item.php:446
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151
+msgid "Wall Photos"
+msgstr "Foto della bacheca"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "Niente di nuovo qui"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Impossibile controllare la tua posizione di origine."
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
+msgstr "Pulisci le notifiche"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nessun destinatario."
+#: ../../include/nav.php:73 ../../boot.php:1136
+msgid "Logout"
+msgstr "Esci"
 
-#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Finisci questa sessione"
 
-#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
-#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visita il profilo di %s [%s]"
+#: ../../include/nav.php:76 ../../boot.php:1940
+msgid "Status"
+msgstr "Stato"
 
-#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
-msgid "Edit contact"
-msgstr "Modifca contatto"
+#: ../../include/nav.php:76 ../../include/nav.php:143
+#: ../../view/theme/diabook/theme.php:87
+msgid "Your posts and conversations"
+msgstr "I tuoi messaggi e le tue conversazioni"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contatti che non sono membri di un gruppo"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
+msgid "Your profile page"
+msgstr "Pagina del tuo profilo"
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "Questo è Friendica, versione"
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954
+msgid "Photos"
+msgstr "Foto"
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "in esecuzione all'indirizzo web"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
+msgid "Your photos"
+msgstr "Le tue foto"
 
-#: ../../mod/friendica.php:58
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
+#: ../../include/nav.php:79 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971
+msgid "Events"
+msgstr "Eventi"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Segnalazioni di bug e problemi: visita"
+#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
+msgid "Your events"
+msgstr "I tuoi eventi"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Personal notes"
+msgstr "Note personali"
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugin/addon/applicazioni instalate"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Your personal photos"
+msgstr "Le tue foto personali"
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Nessun plugin/addons/applicazione installata"
+#: ../../include/nav.php:91 ../../boot.php:1137
+msgid "Login"
+msgstr "Accedi"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Rimuovi il mio account"
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Entra"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
+#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+msgid "Home"
+msgstr "Home"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Inserisci la tua password per verifica:"
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Home Page"
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "La dimensione dell'immagine supera il limite di %d"
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112
+msgid "Register"
+msgstr "Registrati"
 
-#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Impossibile caricare l'immagine."
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Crea un account"
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:443
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Foto della bacheca"
+#: ../../include/nav.php:113 ../../mod/help.php:84
+msgid "Help"
+msgstr "Guida"
 
-#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Caricamento immagine fallito."
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Guida e documentazione"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizza la connessione dell'applicazione"
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Applicazioni"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
-
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Effettua il login per continuare."
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Applicazioni, utilità e giochi aggiuntivi"
 
-#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Cerca nel contenuto del sito"
 
-#: ../../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 ha taggato %3$s di %2$s con %4$s"
+#: ../../include/nav.php:128 ../../mod/community.php:32
+#: ../../view/theme/diabook/theme.php:93
+msgid "Community"
+msgstr "Comunità"
 
-#: ../../mod/photos.php:51 ../../boot.php:1878
-msgid "Photo Albums"
-msgstr "Album foto"
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Conversazioni su questo sito"
 
-#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
-#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
-#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
-#: ../../view/theme/diabook/theme.php:492
-msgid "Contact Photos"
-msgstr "Foto dei contatti"
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Elenco"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Carica nuove foto"
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "Elenco delle persone"
 
-#: ../../mod/photos.php:79 ../../mod/settings.php:23
-msgid "everybody"
-msgstr "tutti"
+#: ../../include/nav.php:140 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Rete"
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "I dati di questo contatto non sono disponibili"
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Conversazioni dai tuoi amici"
 
-#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
-#: ../../mod/photos.php:1206 ../../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:493
-#: ../../include/user.php:325 ../../include/user.php:332
-#: ../../include/user.php:339
-msgid "Profile Photos"
-msgstr "Foto del profilo"
+#: ../../include/nav.php:141
+msgid "Network Reset"
+msgstr "Reset pagina Rete"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album non trovato."
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr "Carica la pagina Rete senza nessun filtro"
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Rimuovi album"
+#: ../../include/nav.php:149 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Presentazioni"
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Richieste di amicizia"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Rimuovi foto"
+#: ../../include/nav.php:150 ../../mod/notifications.php:220
+msgid "Notifications"
+msgstr "Notifiche"
 
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Vuoi veramente cancellare questa foto?"
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Vedi tutte le notifiche"
 
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s è stato taggato in %2$s da %3$s"
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "Segna tutte le notifiche come viste"
 
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "una foto"
+#: ../../include/nav.php:156 ../../mod/message.php:182
+#: ../../mod/notifications.php:103
+msgid "Messages"
+msgstr "Messaggi"
 
-#: ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "L'immagine supera il limite di"
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Posta privata"
 
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "Il file dell'immagine è vuoto."
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "In arrivo"
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Nessuna foto selezionata"
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Inviati"
 
-#: ../../mod/photos.php:1025
-msgid "Access to this item is restricted."
-msgstr "Questo oggetto non è visibile a tutti."
+#: ../../include/nav.php:159 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nuovo messaggio"
 
-#: ../../mod/photos.php:1088
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili."
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Gestisci"
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Carica foto"
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Gestisci altre pagine"
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Nome nuovo album: "
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr "Delegazioni"
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "o nome di un album esistente: "
+#: ../../include/nav.php:165 ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Gestione delegati per la pagina"
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Non creare un post per questo upload"
+#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
+#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658
+msgid "Settings"
+msgstr "Impostazioni"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Permessi"
+#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
+msgid "Account settings"
+msgstr "Parametri account"
 
-#: ../../mod/photos.php:1140 ../../mod/photos.php:1506
-#: ../../mod/settings.php:1070
-msgid "Show to Groups"
-msgstr "Mostra ai gruppi"
+#: ../../include/nav.php:169 ../../boot.php:1439
+msgid "Profiles"
+msgstr "Profili"
 
-#: ../../mod/photos.php:1141 ../../mod/photos.php:1507
-#: ../../mod/settings.php:1071
-msgid "Show to Contacts"
-msgstr "Mostra ai contatti"
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr "Gestisci/Modifica i profili"
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Foto privata"
+#: ../../include/nav.php:171 ../../mod/contacts.php:607
+#: ../../view/theme/diabook/theme.php:89
+msgid "Contacts"
+msgstr "Contatti"
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Foto pubblica"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Gestisci/modifica amici e contatti"
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Modifica album"
+#: ../../include/nav.php:178 ../../mod/admin.php:120
+msgid "Admin"
+msgstr "Amministrazione"
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Mostra nuove foto per prime"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Configurazione del sito"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Mostra vecchie foto per prime"
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr "Navigazione"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Vedi foto"
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr "Mappa del sito"
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Contenuto incorporato"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "Foto non disponibile"
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Embed disabilitato"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Vedi foto"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Errore decodificando il file account"
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Modifica foto"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Usa come foto del profilo"
+#: ../../include/uimport.php:116
+msgid "Error! Cannot check nickname"
+msgstr "Errore! Non posso controllare il nickname"
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Vedi dimensione intera"
+#: ../../include/uimport.php:120
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utente '%s' esiste già su questo server!"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Tag: "
+#: ../../include/uimport.php:139
+msgid "User creation error"
+msgstr "Errore creando l'utente"
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Rimuovi tutti i tag]"
+#: ../../include/uimport.php:157
+msgid "User profile creation error"
+msgstr "Errore creando il profile dell'utente"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Ruota a destra"
+#: ../../include/uimport.php:202
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contatto non importato"
+msgstr[1] "%d contatti non importati"
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Ruota a sinistra"
+#: ../../include/uimport.php:272
+msgid "Done. You can now login with your username and password"
+msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Nuovo nome dell'album"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Ciao"
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Titolo"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Carica una foto per il profilo."
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Aggiungi tag"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Ciao "
 
-#: ../../mod/photos.php:1499
+#: ../../include/security.php:366
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Foto privata"
-
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Foto pubblica"
+"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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1041
-msgid "Share"
-msgstr "Condividi"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:160 ../../mod/profiles.php:583
+#: ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
+msgstr "Profilo non trovato."
 
-#: ../../mod/photos.php:1784
-msgid "View Album"
-msgstr "Sfoglia l'album"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profilo elminato."
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Foto recenti"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profilo-"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nessun profilo"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Il nuovo profilo è stato creato."
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Dettagli della registrazione di %s"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Impossibile duplicare il profilo."
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni."
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Il nome profilo è obbligatorio ."
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr "Stato civile"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "La tua registrazione non puo' essere elaborata."
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr "Partner romantico"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Richiesta di registrazione su %s"
+#: ../../mod/profiles.php:325
+msgid "Likes"
+msgstr "Mi piace"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr "Non mi piace"
 
-#: ../../mod/register.php:192 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "Lavoro/Impiego"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "Religione"
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Orientamento Politico"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Il tuo OpenID (opzionale): "
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "Sesso"
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Includi il tuo profilo nell'elenco pubblico?"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Preferenza sessuale"
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "La registrazione su questo sito è solo su invito."
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Homepage"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "L'ID del tuo invito:"
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Interessi"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Il tuo nome completo (es. Mario Rossi): "
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Indirizzo"
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "Il tuo indirizzo email: "
+#: ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Posizione"
 
-#: ../../mod/register.php:271
-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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@$sitename</strong>'."
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr "Profilo aggiornato."
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "Scegli un nome utente: "
+#: ../../mod/profiles.php:521
+msgid " and "
+msgstr "e "
 
-#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrati"
+#: ../../mod/profiles.php:529
+msgid "public profile"
+msgstr "profilo pubblico"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Nessun account valido trovato."
+#: ../../mod/profiles.php:532
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
+#: ../../mod/profiles.php:533
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "- Visita  %2$s di %1$s"
 
-#: ../../mod/lostpass.php:44
+#: ../../mod/profiles.php:536
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Richiesta reimpostazione password su %s"
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s"
 
-#: ../../mod/lostpass.php:66
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
+#: ../../mod/profiles.php:609
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"
 
-#: ../../mod/lostpass.php:84 ../../boot.php:1072
-msgid "Password Reset"
-msgstr "Reimpostazione password"
+#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837
+msgid "No"
+msgstr "No"
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "La tua password è stata reimpostata come richiesto."
+#: ../../mod/profiles.php:629
+msgid "Edit Profile Details"
+msgstr "Modifica i dettagli del profilo"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "La tua nuova password è"
+#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763
+#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
+#: ../../mod/contacts.php:386 ../../mod/settings.php:584
+#: ../../mod/settings.php:694 ../../mod/settings.php:763
+#: ../../mod/settings.php:837 ../../mod/settings.php:1064
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:733 ../../object/Item.php:653
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
+#: ../../view/theme/quattro/config.php:64
+msgid "Submit"
+msgstr "Invia"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Salva o copia la tua nuova password, quindi"
+#: ../../mod/profiles.php:631
+msgid "Change Profile Photo"
+msgstr "Cambia la foto del profilo"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "clicca qui per entrare"
+#: ../../mod/profiles.php:632
+msgid "View this profile"
+msgstr "Visualizza questo profilo"
 
-#: ../../mod/lostpass.php:89
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
+#: ../../mod/profiles.php:633
+msgid "Create a new profile using these settings"
+msgstr "Crea un nuovo profilo usando queste impostazioni"
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "La tua password presso %s è stata cambiata"
+#: ../../mod/profiles.php:634
+msgid "Clone this profile"
+msgstr "Clona questo profilo"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Hai dimenticato la password?"
+#: ../../mod/profiles.php:635
+msgid "Delete this profile"
+msgstr "Elimina questo profilo"
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Inserisci il tuo indirizzo email per reimpostare la password."
-
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Nome utente o email: "
+#: ../../mod/profiles.php:636
+msgid "Profile Name:"
+msgstr "Nome del profilo:"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Reimposta"
+#: ../../mod/profiles.php:637
+msgid "Your Full Name:"
+msgstr "Il tuo nome completo:"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Sistema in manutenzione"
+#: ../../mod/profiles.php:638
+msgid "Title/Description:"
+msgstr "Breve descrizione (es. titolo, posizione, altro):"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Oggetto non disponibile."
+#: ../../mod/profiles.php:639
+msgid "Your Gender:"
+msgstr "Il tuo sesso:"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Oggetto non trovato."
+#: ../../mod/profiles.php:640
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Compleanno (%s)"
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Applicazioni"
+#: ../../mod/profiles.php:641
+msgid "Street Address:"
+msgstr "Indirizzo (via/piazza):"
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Nessuna applicazione installata."
+#: ../../mod/profiles.php:642
+msgid "Locality/City:"
+msgstr "Località:"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Guida:"
+#: ../../mod/profiles.php:643
+msgid "Postal/Zip Code:"
+msgstr "CAP:"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Guida"
+#: ../../mod/profiles.php:644
+msgid "Country:"
+msgstr "Nazione:"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Non è possibile accedere al contatto."
+#: ../../mod/profiles.php:645
+msgid "Region/State:"
+msgstr "Regione/Stato:"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Non riesco a trovare il profilo selezionato."
+#: ../../mod/profiles.php:646
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Contatto aggiornato."
+#: ../../mod/profiles.php:647
+msgid "Who: (if applicable)"
+msgstr "Con chi: (se possibile)"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Il contatto è stato bloccato"
+#: ../../mod/profiles.php:648
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Il contatto è stato sbloccato"
+#: ../../mod/profiles.php:649
+msgid "Since [date]:"
+msgstr "Dal [data]:"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Il contatto è ignorato"
+#: ../../mod/profiles.php:651
+msgid "Homepage URL:"
+msgstr "Homepage:"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Il contatto non è più ignorato"
+#: ../../mod/profiles.php:654
+msgid "Religious Views:"
+msgstr "Orientamento religioso:"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "Il contatto è stato archiviato"
+#: ../../mod/profiles.php:655
+msgid "Public Keywords:"
+msgstr "Parole chiave visibili a tutti:"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "Il contatto è stato dearchiviato"
+#: ../../mod/profiles.php:656
+msgid "Private Keywords:"
+msgstr "Parole chiave private:"
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr "Vuoi veramente cancellare questo contatto?"
+#: ../../mod/profiles.php:659
+msgid "Example: fishing photography software"
+msgstr "Esempio: pesca fotografia programmazione"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "Il contatto è stato rimosso."
+#: ../../mod/profiles.php:660
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Sei amico reciproco con %s"
+#: ../../mod/profiles.php:661
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)"
 
-#: ../../mod/contacts.php:305
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Stai condividendo con %s"
+#: ../../mod/profiles.php:662
+msgid "Tell us about yourself..."
+msgstr "Raccontaci di te..."
 
-#: ../../mod/contacts.php:310
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s sta condividendo con te"
+#: ../../mod/profiles.php:663
+msgid "Hobbies/Interests"
+msgstr "Hobby/interessi"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "Le comunicazioni private non sono disponibili per questo contatto."
+#: ../../mod/profiles.php:664
+msgid "Contact information and Social Networks"
+msgstr "Informazioni su contatti e social network"
 
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Mai"
+#: ../../mod/profiles.php:665
+msgid "Musical interests"
+msgstr "Interessi musicali"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(L'aggiornamento è stato completato)"
+#: ../../mod/profiles.php:666
+msgid "Books, literature"
+msgstr "Libri, letteratura"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(L'aggiornamento non è stato completato)"
+#: ../../mod/profiles.php:667
+msgid "Television"
+msgstr "Televisione"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Suggerisci amici"
+#: ../../mod/profiles.php:668
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/danza/cultura/intrattenimento"
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo di rete: %s"
+#: ../../mod/profiles.php:669
+msgid "Love/romance"
+msgstr "Amore"
 
-#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contatto in comune"
-msgstr[1] "%d contatti in comune"
+#: ../../mod/profiles.php:670
+msgid "Work/employment"
+msgstr "Lavoro/impiego"
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Vedi tutti i contatti"
+#: ../../mod/profiles.php:671
+msgid "School/education"
+msgstr "Scuola/educazione"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr "Inverti stato \"Blocca\""
+#: ../../mod/profiles.php:676
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Non ignorare"
+#: ../../mod/profiles.php:686 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Età : "
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
-msgstr "Inverti stato \"Ignora\""
+#: ../../mod/profiles.php:725
+msgid "Edit/Manage Profiles"
+msgstr "Modifica / Gestisci profili"
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "Dearchivia"
+#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471
+msgid "Change profile photo"
+msgstr "Cambia la foto del profilo"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Archivia"
+#: ../../mod/profiles.php:727 ../../boot.php:1446
+msgid "Create New Profile"
+msgstr "Crea un nuovo profilo"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
-msgstr "Inverti stato \"Archiviato\""
+#: ../../mod/profiles.php:738 ../../boot.php:1456
+msgid "Profile Image"
+msgstr "Immagine del Profilo"
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Ripara"
+#: ../../mod/profiles.php:740 ../../boot.php:1459
+msgid "visible to everybody"
+msgstr "visibile a tutti"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Impostazioni avanzate Contatto"
+#: ../../mod/profiles.php:741 ../../boot.php:1460
+msgid "Edit visibility"
+msgstr "Modifica visibilità"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr "Comunicazione con questo contatto persa!"
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
+msgid "Permission denied"
+msgstr "Permesso negato"
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Editor dei Contatti"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Indentificativo del profilo non valido."
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Visibilità del profilo"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Modifica visibilità del profilo"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Informazioni / Note sul contatto"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visibile a"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Modifica note contatto"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Blocca/Sblocca contatto"
+#: ../../mod/notes.php:44 ../../boot.php:1978
+msgid "Personal Notes"
+msgstr "Note personali"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignora il contatto"
+#: ../../mod/display.php:19 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
+#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17
+#: ../../mod/photos.php:914 ../../mod/community.php:18
+msgid "Public access denied."
+msgstr "Accesso negato."
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "Impostazioni riparazione URL"
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "L'accesso a questo profilo è stato limitato."
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Vedi conversazioni"
+#: ../../mod/display.php:239
+msgid "Item has been removed."
+msgstr "L'oggetto è stato rimosso."
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Rimuovi contatto"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visita il profilo di %s [%s]"
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "Ultimo aggiornamento:"
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "Modifca contatto"
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Aggiorna messaggi pubblici"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatti che non sono membri di un gruppo"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Bloccato"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} vuole essere tuo amico"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Ignorato"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} ti ha inviato un messaggio"
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Al momento archiviato"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} chiede la registrazione"
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} ha commentato il post di %s"
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Suggerimenti"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "a {0} piace il post di  %s"
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Suggerisci potenziali amici"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "a {0} non piace il post di %s"
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tutti i contatti"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ora è amico di %s"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Mostra tutti i contatti"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} ha inviato un nuovo messaggio"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Sbloccato"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} ha taggato il post di %s con #%s"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Mostra solo contatti non bloccati"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} ti ha citato in un post"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Bloccato"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Impostazioni del tema aggiornate."
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Mostra solo contatti bloccati"
+#: ../../mod/admin.php:96 ../../mod/admin.php:490
+msgid "Site"
+msgstr "Sito"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Ignorato"
+#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776
+msgid "Users"
+msgstr "Utenti"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Mostra solo contatti ignorati"
+#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901
+msgid "Plugins"
+msgstr "Plugin"
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "Achiviato"
+#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101
+msgid "Themes"
+msgstr "Temi"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Mostra solo contatti archiviati"
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "Aggiornamenti Database"
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Nascosto"
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188
+msgid "Logs"
+msgstr "Log"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Mostra solo contatti nascosti"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Impostazioni Plugins"
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Amicizia reciproca"
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Utenti registrati in attesa di conferma"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "è un tuo fan"
+#: ../../mod/admin.php:182 ../../mod/admin.php:733
+msgid "Normal Account"
+msgstr "Account normale"
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "sei un fan di"
+#: ../../mod/admin.php:183 ../../mod/admin.php:734
+msgid "Soapbox Account"
+msgstr "Account per comunicati e annunci"
 
-#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Contatti"
+#: ../../mod/admin.php:184 ../../mod/admin.php:735
+msgid "Community/Celebrity Account"
+msgstr "Account per celebrità o per comunità"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Cerca nei tuoi contatti"
+#: ../../mod/admin.php:185 ../../mod/admin.php:736
+msgid "Automatic Friend Account"
+msgstr "Account per amicizia automatizzato"
 
-#: ../../mod/contacts.php:612 ../../mod/directory.php:59
-msgid "Finding: "
-msgstr "Ricerca: "
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "Account Blog"
 
-#: ../../mod/contacts.php:613 ../../mod/directory.php:61
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Trova"
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "Forum Privato"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amici in comune"
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "Code messaggi"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Nessun contatto in comune."
+#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761
+#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066
+#: ../../mod/admin.php:1100 ../../mod/admin.php:1187
+msgid "Administration"
+msgstr "Amministrazione"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contatto aggiunto"
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Sommario"
 
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importa"
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "Utenti registrati"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Muovi account"
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "Registrazioni in attesa"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Puoi importare un account da un altro server Friendica."
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Versione"
 
-#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "Plugin attivi"
 
-#: ../../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 "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"
+#: ../../mod/admin.php:405
+msgid "Site settings updated."
+msgstr "Impostazioni del sito aggiornate."
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "File account"
+#: ../../mod/admin.php:434 ../../mod/settings.php:793
+msgid "No special theme for mobile devices"
+msgstr "Nessun tema speciale per i dispositivi mobili"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
-msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""
-
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s sta seguendo %3$s di %2$s"
-
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amici di %s"
+#: ../../mod/admin.php:451 ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Mai"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nessun amico da visualizzare."
+#: ../../mod/admin.php:460
+msgid "Multi user instance"
+msgstr "Istanza multi utente"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag rimosso"
+#: ../../mod/admin.php:476
+msgid "Closed"
+msgstr "Chiusa"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Rimuovi il tag"
+#: ../../mod/admin.php:477
+msgid "Requires approval"
+msgstr "Richiede l'approvazione"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Seleziona un tag da rimuovere: "
+#: ../../mod/admin.php:478
+msgid "Open"
+msgstr "Aperta"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Rimuovi"
+#: ../../mod/admin.php:482
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Benvenuto su Friendica"
+#: ../../mod/admin.php:483
+msgid "Force all links to use SSL"
+msgstr "Forza tutti i linki ad usare SSL"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Cose da fare per i Nuovi Utenti"
+#: ../../mod/admin.php:484
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
 
-#: ../../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 "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
+#: ../../mod/admin.php:492 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Registrazione"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Come Iniziare"
+#: ../../mod/admin.php:493
+msgid "File upload"
+msgstr "Caricamento file"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Passo-Passo"
+#: ../../mod/admin.php:494
+msgid "Policies"
+msgstr "Politiche"
 
-#: ../../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 "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."
+#: ../../mod/admin.php:495
+msgid "Advanced"
+msgstr "Avanzate"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Vai alle tue Impostazioni"
+#: ../../mod/admin.php:496
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../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 "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
+#: ../../mod/admin.php:500
+msgid "Site name"
+msgstr "Nome del sito"
 
-#: ../../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 "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
+#: ../../mod/admin.php:501
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:88 ../../boot.php:1868
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
-#: ../../include/nav.php:77
-msgid "Profile"
-msgstr "Profilo"
+#: ../../mod/admin.php:502
+msgid "System language"
+msgstr "Lingua di sistema"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Carica la foto del profilo"
+#: ../../mod/admin.php:503
+msgid "System theme"
+msgstr "Tema di sistema"
 
-#: ../../mod/newmember.php:36
+#: ../../mod/admin.php:503
 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 "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Modifica il tuo Profilo"
+#: ../../mod/admin.php:504
+msgid "Mobile system theme"
+msgstr "Tema mobile di sistema"
 
-#: ../../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 "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
+#: ../../mod/admin.php:504
+msgid "Theme for mobile devices"
+msgstr "Tema per dispositivi mobili"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Parole chiave del profilo"
+#: ../../mod/admin.php:505
+msgid "SSL link policy"
+msgstr "Gestione link SSL"
 
-#: ../../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 "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
+#: ../../mod/admin.php:505
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se i link generati devono essere forzati a usare SSL"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Collegarsi"
+#: ../../mod/admin.php:506
+msgid "'Share' element"
+msgstr "Elemento 'Share'"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:506
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr "Attiva l'elemento bbcode 'share' per i post condivisi."
 
-#: ../../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 "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
+#: ../../mod/admin.php:507
+msgid "Hide help entry from navigation menu"
+msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
 
-#: ../../mod/newmember.php:51
+#: ../../mod/admin.php:507
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importare le Email"
+#: ../../mod/admin.php:508
+msgid "Single user instance"
+msgstr "Instanza a singolo utente"
 
-#: ../../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 "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
+#: ../../mod/admin.php:508
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Vai alla tua pagina Contatti"
+#: ../../mod/admin.php:509
+msgid "Maximum image size"
+msgstr "Massima dimensione immagini"
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:509
 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 "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Vai all'Elenco del tuo sito"
+#: ../../mod/admin.php:510
+msgid "Maximum image length"
+msgstr "Massima lunghezza immagine"
 
-#: ../../mod/newmember.php:60
+#: ../../mod/admin.php:510
 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 pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Trova nuove persone"
+#: ../../mod/admin.php:511
+msgid "JPEG image quality"
+msgstr "Qualità immagini JPEG"
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:511
 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 "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Gruppi"
+#: ../../mod/admin.php:513
+msgid "Register policy"
+msgstr "Politica di registrazione"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Raggruppa i tuoi contatti"
+#: ../../mod/admin.php:514
+msgid "Maximum Daily Registrations"
+msgstr "Massime registrazioni giornaliere"
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:514
 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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
-
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Perchè i miei post non sono pubblici?"
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
 
-#: ../../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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."
+#: ../../mod/admin.php:515
+msgid "Register text"
+msgstr "Testo registrazione"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Ottenere Aiuto"
+#: ../../mod/admin.php:515
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Vai alla sezione Guida"
+#: ../../mod/admin.php:516
+msgid "Accounts abandoned after x days"
+msgstr "Account abbandonati dopo x giorni"
 
-#: ../../mod/newmember.php:82
+#: ../../mod/admin.php:516
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
 
-#: ../../mod/search.php:21 ../../mod/network.php:224
-msgid "Remove term"
-msgstr "Rimuovi termine"
+#: ../../mod/admin.php:517
+msgid "Allowed friend domains"
+msgstr "Domini amici consentiti"
 
-#: ../../mod/search.php:30 ../../mod/network.php:233
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
+#: ../../mod/admin.php:517
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: ../../mod/search.php:99 ../../include/text.php:778
-#: ../../include/text.php:779 ../../include/nav.php:118
-msgid "Search"
-msgstr "Cerca"
+#: ../../mod/admin.php:518
+msgid "Allowed email domains"
+msgstr "Domini email consentiti"
 
-#: ../../mod/search.php:180 ../../mod/search.php:206
-#: ../../mod/community.php:61 ../../mod/community.php:88
-msgid "No results."
-msgstr "Nessun risultato."
+#: ../../mod/admin.php:518
+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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite totale degli inviti superato."
+#: ../../mod/admin.php:519
+msgid "Block public"
+msgstr "Blocca pagine pubbliche"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: non è un indirizzo email valido."
+#: ../../mod/admin.php:519
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Unisiciti a noi su Friendica"
+#: ../../mod/admin.php:520
+msgid "Force publish"
+msgstr "Forza publicazione"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito."
+#: ../../mod/admin.php:520
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: la consegna del messaggio fallita."
+#: ../../mod/admin.php:521
+msgid "Global directory update URL"
+msgstr "URL aggiornamento Elenco Globale"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d messaggio inviato."
-msgstr[1] "%d messaggi inviati."
+#: ../../mod/admin.php:521
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Non hai altri inviti disponibili"
+#: ../../mod/admin.php:522
+msgid "Allow threaded items"
+msgstr "Permetti commenti nidificati"
 
-#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."
+#: ../../mod/admin.php:522
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito."
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."
+#: ../../mod/admin.php:523
+msgid "Private posts by default for new users"
+msgstr "Post privati di default per i nuovi utenti"
 
-#: ../../mod/invite.php:123
-#, php-format
+#: ../../mod/admin.php:523
 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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."
+#: ../../mod/admin.php:524
+msgid "Don't include post content in email notifications"
+msgstr "Non includere il contenuto dei post nelle notifiche via email"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Invia inviti"
+#: ../../mod/admin.php:524
+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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Inserisci gli indirizzi email, uno per riga:"
+#: ../../mod/admin.php:525
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."
 
-#: ../../mod/invite.php:135
+#: ../../mod/admin.php:525
 msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Sarà necessario fornire questo codice invito: $invite_code"
+#: ../../mod/admin.php:526
+msgid "Don't embed private images in posts"
+msgstr "Non inglobare immagini private nei post"
 
-#: ../../mod/invite.php:137
+#: ../../mod/admin.php:526
 msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Una volta registrato, connettiti con me dal mio profilo:"
+"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/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"
+#: ../../mod/admin.php:528
+msgid "Block multiple registrations"
+msgstr "Blocca registrazioni multiple"
 
-#: ../../mod/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Parametri account"
+#: ../../mod/admin.php:528
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Non permette all'utente di registrare account extra da usare come pagine."
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr "Funzionalità aggiuntive"
+#: ../../mod/admin.php:529
+msgid "OpenID support"
+msgstr "Supporto OpenID"
 
-#: ../../mod/settings.php:40 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Impostazioni grafiche"
+#: ../../mod/admin.php:529
+msgid "OpenID support for registration and logins."
+msgstr "Supporta OpenID per la registrazione e il login"
 
-#: ../../mod/settings.php:46 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Impostazioni connettori"
+#: ../../mod/admin.php:530
+msgid "Fullname check"
+msgstr "Controllo nome completo"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Impostazioni plugin"
+#: ../../mod/admin.php:530
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Applicazioni collegate"
+#: ../../mod/admin.php:531
+msgid "UTF-8 Regular expressions"
+msgstr "Espressioni regolari UTF-8"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Esporta dati personali"
+#: ../../mod/admin.php:531
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Usa le espressioni regolari PHP in UTF8"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Rimuovi account"
+#: ../../mod/admin.php:532
+msgid "Show Community Page"
+msgstr "Mostra pagina Comunità"
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "Mancano alcuni dati importanti!"
+#: ../../mod/admin.php:532
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:586
-msgid "Update"
-msgstr "Aggiorna"
+#: ../../mod/admin.php:533
+msgid "Enable OStatus support"
+msgstr "Abilita supporto OStatus"
 
-#: ../../mod/settings.php:227
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Impossibile collegarsi all'account email con i parametri forniti."
-
-#: ../../mod/settings.php:232
-msgid "Email settings updated."
-msgstr "Impostazioni e-mail aggiornate."
+#: ../../mod/admin.php:533
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."
 
-#: ../../mod/settings.php:247
-msgid "Features updated"
-msgstr "Funzionalità aggiornate"
+#: ../../mod/admin.php:534
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: ../../mod/settings.php:307
-msgid "Passwords do not match. Password unchanged."
-msgstr "Le password non corrispondono. Password non cambiata."
+#: ../../mod/admin.php:534
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
 
-#: ../../mod/settings.php:312
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Le password non possono essere vuote. Password non cambiata."
+#: ../../mod/admin.php:535
+msgid "Enable Diaspora support"
+msgstr "Abilita il supporto a Diaspora"
 
-#: ../../mod/settings.php:323
-msgid "Password changed."
-msgstr "Password cambiata."
+#: ../../mod/admin.php:535
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornisce compatibilità con il network Diaspora."
 
-#: ../../mod/settings.php:325
-msgid "Password update failed. Please try again."
-msgstr "Aggiornamento password fallito. Prova ancora."
+#: ../../mod/admin.php:536
+msgid "Only allow Friendica contacts"
+msgstr "Permetti solo contatti Friendica"
 
-#: ../../mod/settings.php:390
-msgid " Please use a shorter name."
-msgstr " Usa un nome più corto."
+#: ../../mod/admin.php:536
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
 
-#: ../../mod/settings.php:392
-msgid " Name too short."
-msgstr " Nome troppo corto."
+#: ../../mod/admin.php:537
+msgid "Verify SSL"
+msgstr "Verifica SSL"
 
-#: ../../mod/settings.php:398
-msgid " Not valid email."
-msgstr " Email non valida."
+#: ../../mod/admin.php:537
+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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
 
-#: ../../mod/settings.php:400
-msgid " Cannot change to that email."
-msgstr "Non puoi usare quella email."
+#: ../../mod/admin.php:538
+msgid "Proxy user"
+msgstr "Utente Proxy"
 
-#: ../../mod/settings.php:454
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."
+#: ../../mod/admin.php:539
+msgid "Proxy URL"
+msgstr "URL Proxy"
 
-#: ../../mod/settings.php:458
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."
+#: ../../mod/admin.php:540
+msgid "Network timeout"
+msgstr "Timeout rete"
 
-#: ../../mod/settings.php:488
-msgid "Settings updated."
-msgstr "Impostazioni aggiornate."
+#: ../../mod/admin.php:540
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
 
-#: ../../mod/settings.php:559 ../../mod/settings.php:585
-#: ../../mod/settings.php:621
-msgid "Add application"
-msgstr "Aggiungi applicazione"
+#: ../../mod/admin.php:541
+msgid "Delivery interval"
+msgstr "Intervallo di invio"
 
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/admin.php:541
+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 "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."
 
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/admin.php:542
+msgid "Poll interval"
+msgstr "Intervallo di poll"
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Redirect"
-msgstr "Redirect"
+#: ../../mod/admin.php:542
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."
 
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
-msgid "Icon url"
-msgstr "Url icona"
+#: ../../mod/admin.php:543
+msgid "Maximum Load Average"
+msgstr "Massimo carico medio"
 
-#: ../../mod/settings.php:577
-msgid "You can't edit this application."
-msgstr "Non puoi modificare questa applicazione."
+#: ../../mod/admin.php:543
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."
 
-#: ../../mod/settings.php:620
-msgid "Connected Apps"
-msgstr "Applicazioni Collegate"
+#: ../../mod/admin.php:545
+msgid "Use MySQL full text engine"
+msgstr "Usa il motore MySQL full text"
 
-#: ../../mod/settings.php:624
-msgid "Client key starts with"
-msgstr "Chiave del client inizia con"
+#: ../../mod/admin.php:545
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."
 
-#: ../../mod/settings.php:625
-msgid "No name"
-msgstr "Nessun nome"
+#: ../../mod/admin.php:546
+msgid "Path to item cache"
+msgstr "Percorso cache elementi"
 
-#: ../../mod/settings.php:626
-msgid "Remove authorization"
-msgstr "Rimuovi l'autorizzazione"
+#: ../../mod/admin.php:547
+msgid "Cache duration in seconds"
+msgstr "Durata della cache in secondi"
 
-#: ../../mod/settings.php:638
-msgid "No Plugin settings configured"
-msgstr "Nessun plugin ha impostazioni modificabili"
+#: ../../mod/admin.php:547
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."
 
-#: ../../mod/settings.php:646
-msgid "Plugin Settings"
-msgstr "Impostazioni plugin"
+#: ../../mod/admin.php:548
+msgid "Path for lock file"
+msgstr "Percorso al file di lock"
 
-#: ../../mod/settings.php:660
-msgid "Off"
-msgstr "Spento"
+#: ../../mod/admin.php:549
+msgid "Temp path"
+msgstr "Percorso file temporanei"
 
-#: ../../mod/settings.php:660
-msgid "On"
-msgstr "Acceso"
+#: ../../mod/admin.php:550
+msgid "Base path to installation"
+msgstr "Percorso base all'installazione"
 
-#: ../../mod/settings.php:668
-msgid "Additional Features"
-msgstr "Funzionalità aggiuntive"
+#: ../../mod/admin.php:567
+msgid "Update has been marked successful"
+msgstr "L'aggiornamento è stato segnato come  di successo"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#: ../../mod/admin.php:577
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Il supporto integrato per la connettività con %s è %s"
-
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "abilitato"
+msgid "Executing %s failed. Check system logs."
+msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema."
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "disabilitato"
+#: ../../mod/admin.php:580
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "L'aggiornamento %s è stato applicato con successo"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/admin.php:584
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
 
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "L'accesso email è disabilitato su questo sito."
+#: ../../mod/admin.php:587
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "La funzione di aggiornamento %s non puo' essere trovata."
 
-#: ../../mod/settings.php:721
-msgid "Connector Settings"
-msgstr "Impostazioni Connettore"
+#: ../../mod/admin.php:602
+msgid "No failed updates."
+msgstr "Nessun aggiornamento fallito."
 
-#: ../../mod/settings.php:726
-msgid "Email/Mailbox Setup"
-msgstr "Impostazioni email"
+#: ../../mod/admin.php:606
+msgid "Failed Updates"
+msgstr "Aggiornamenti falliti"
 
-#: ../../mod/settings.php:727
+#: ../../mod/admin.php:607
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"
-
-#: ../../mod/settings.php:728
-msgid "Last successful email check:"
-msgstr "Ultimo controllo email eseguito con successo:"
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."
 
-#: ../../mod/settings.php:730
-msgid "IMAP server name:"
-msgstr "Nome server IMAP:"
+#: ../../mod/admin.php:608
+msgid "Mark success (if update was manually applied)"
+msgstr "Segna completato (se l'update è stato applicato manualmente)"
 
-#: ../../mod/settings.php:731
-msgid "IMAP port:"
-msgstr "Porta IMAP:"
+#: ../../mod/admin.php:609
+msgid "Attempt to execute this update step automatically"
+msgstr "Cerco di eseguire questo aggiornamento in automatico"
 
-#: ../../mod/settings.php:732
-msgid "Security:"
-msgstr "Sicurezza:"
+#: ../../mod/admin.php:634
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utente bloccato/sbloccato"
+msgstr[1] "%s utenti bloccati/sbloccati"
 
-#: ../../mod/settings.php:732 ../../mod/settings.php:737
-msgid "None"
-msgstr "Nessuna"
+#: ../../mod/admin.php:641
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utente cancellato"
+msgstr[1] "%s utenti cancellati"
 
-#: ../../mod/settings.php:733
-msgid "Email login name:"
-msgstr "Nome utente email:"
+#: ../../mod/admin.php:680
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utente '%s' cancellato"
 
-#: ../../mod/settings.php:734
-msgid "Email password:"
-msgstr "Password email:"
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utente '%s' sbloccato"
 
-#: ../../mod/settings.php:735
-msgid "Reply-to address:"
-msgstr "Indirizzo di risposta:"
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utente '%s' bloccato"
 
-#: ../../mod/settings.php:736
-msgid "Send public posts to all email contacts:"
-msgstr "Invia i messaggi pubblici ai contatti email:"
+#: ../../mod/admin.php:764
+msgid "select all"
+msgstr "seleziona tutti"
 
-#: ../../mod/settings.php:737
-msgid "Action after import:"
-msgstr "Azione post importazione:"
+#: ../../mod/admin.php:765
+msgid "User registrations waiting for confirm"
+msgstr "Richieste di registrazione in attesa di conferma"
 
-#: ../../mod/settings.php:737
-msgid "Mark as seen"
-msgstr "Segna come letto"
+#: ../../mod/admin.php:766
+msgid "Request date"
+msgstr "Data richiesta"
 
-#: ../../mod/settings.php:737
-msgid "Move to folder"
-msgstr "Sposta nella cartella"
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586
+#: ../../mod/settings.php:612 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Nome"
 
-#: ../../mod/settings.php:738
-msgid "Move to folder:"
-msgstr "Sposta nella cartella:"
+#: ../../mod/admin.php:767
+msgid "No registrations."
+msgstr "Nessuna registrazione."
 
-#: ../../mod/settings.php:809
-msgid "Display Settings"
-msgstr "Impostazioni Grafiche"
+#: ../../mod/admin.php:768 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Approva"
 
-#: ../../mod/settings.php:815 ../../mod/settings.php:826
-msgid "Display Theme:"
-msgstr "Tema:"
+#: ../../mod/admin.php:769
+msgid "Deny"
+msgstr "Nega"
 
-#: ../../mod/settings.php:816
-msgid "Mobile Theme:"
-msgstr "Tema mobile:"
+#: ../../mod/admin.php:771 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Blocca"
 
-#: ../../mod/settings.php:817
-msgid "Update browser every xx seconds"
-msgstr "Aggiorna il browser ogni x secondi"
+#: ../../mod/admin.php:772 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Sblocca"
 
-#: ../../mod/settings.php:817
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimo 10 secondi, nessun limite massimo"
-
-#: ../../mod/settings.php:818
-msgid "Number of items to display per page:"
-msgstr "Numero di elementi da mostrare per pagina:"
-
-#: ../../mod/settings.php:818
-msgid "Maximum of 100 items"
-msgstr "Massimo 100 voci"
+#: ../../mod/admin.php:773
+msgid "Site admin"
+msgstr "Amministrazione sito"
 
-#: ../../mod/settings.php:819
-msgid "Don't show emoticons"
-msgstr "Non mostrare le emoticons"
+#: ../../mod/admin.php:774
+msgid "Account expired"
+msgstr "Account scaduto"
 
-#: ../../mod/settings.php:895
-msgid "Normal Account Page"
-msgstr "Pagina Account Normale"
+#: ../../mod/admin.php:777
+msgid "Register date"
+msgstr "Data registrazione"
 
-#: ../../mod/settings.php:896
-msgid "This account is a normal personal profile"
-msgstr "Questo account è un normale profilo personale"
+#: ../../mod/admin.php:777
+msgid "Last login"
+msgstr "Ultimo accesso"
 
-#: ../../mod/settings.php:899
-msgid "Soapbox Page"
-msgstr "Pagina Sandbox"
+#: ../../mod/admin.php:777
+msgid "Last item"
+msgstr "Ultimo elemento"
 
-#: ../../mod/settings.php:900
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"
+#: ../../mod/admin.php:777
+msgid "Account"
+msgstr "Account"
 
-#: ../../mod/settings.php:903
-msgid "Community Forum/Celebrity Account"
-msgstr "Account Celebrità/Forum comunitario"
+#: ../../mod/admin.php:779
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
 
-#: ../../mod/settings.php:904
+#: ../../mod/admin.php:780
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"
+"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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
 
-#: ../../mod/settings.php:907
-msgid "Automatic Friend Page"
-msgstr "Pagina con amicizia automatica"
+#: ../../mod/admin.php:821
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s disabilitato."
 
-#: ../../mod/settings.php:908
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"
+#: ../../mod/admin.php:825
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s abilitato."
 
-#: ../../mod/settings.php:911
-msgid "Private Forum [Experimental]"
-msgstr "Forum privato [sperimentale]"
+#: ../../mod/admin.php:835 ../../mod/admin.php:1038
+msgid "Disable"
+msgstr "Disabilita"
 
-#: ../../mod/settings.php:912
-msgid "Private forum - approved members only"
-msgstr "Forum privato - solo membri approvati"
+#: ../../mod/admin.php:837 ../../mod/admin.php:1040
+msgid "Enable"
+msgstr "Abilita"
 
-#: ../../mod/settings.php:924
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/admin.php:860 ../../mod/admin.php:1068
+msgid "Toggle"
+msgstr "Inverti"
 
-#: ../../mod/settings.php:924
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
+#: ../../mod/admin.php:868 ../../mod/admin.php:1078
+msgid "Author: "
+msgstr "Autore: "
 
-#: ../../mod/settings.php:934
-msgid "Publish your default profile in your local site directory?"
-msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
+#: ../../mod/admin.php:869 ../../mod/admin.php:1079
+msgid "Maintainer: "
+msgstr "Manutentore: "
 
-#: ../../mod/settings.php:940
-msgid "Publish your default profile in the global social directory?"
-msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
+#: ../../mod/admin.php:998
+msgid "No themes found."
+msgstr "Nessun tema trovato."
 
-#: ../../mod/settings.php:948
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"
+#: ../../mod/admin.php:1060
+msgid "Screenshot"
+msgstr "Anteprima"
 
-#: ../../mod/settings.php:952
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
+#: ../../mod/admin.php:1106
+msgid "[Experimental]"
+msgstr "[Sperimentale]"
 
-#: ../../mod/settings.php:957
-msgid "Allow friends to post to your profile page?"
-msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
+#: ../../mod/admin.php:1107
+msgid "[Unsupported]"
+msgstr "[Non supportato]"
 
-#: ../../mod/settings.php:963
-msgid "Allow friends to tag your posts?"
-msgstr "Permetti agli amici di taggare i tuoi messaggi?"
+#: ../../mod/admin.php:1134
+msgid "Log settings updated."
+msgstr "Impostazioni Log aggiornate."
 
-#: ../../mod/settings.php:969
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"
+#: ../../mod/admin.php:1190
+msgid "Clear"
+msgstr "Pulisci"
 
-#: ../../mod/settings.php:975
-msgid "Permit unknown people to send you private mail?"
-msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?"
+#: ../../mod/admin.php:1196
+msgid "Enable Debugging"
+msgstr "Abilita Debugging"
 
-#: ../../mod/settings.php:983
-msgid "Profile is <strong>not published</strong>."
-msgstr "Il profilo <strong>non è pubblicato</strong>."
+#: ../../mod/admin.php:1197
+msgid "Log file"
+msgstr "File di Log"
 
-#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "o"
+#: ../../mod/admin.php:1197
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
 
-#: ../../mod/settings.php:991
-msgid "Your Identity Address is"
-msgstr "L'indirizzo della tua identità è"
+#: ../../mod/admin.php:1198
+msgid "Log level"
+msgstr "Livello di Log"
 
-#: ../../mod/settings.php:1002
-msgid "Automatically expire posts after this many days:"
-msgstr "Fai scadere i post automaticamente dopo x giorni:"
+#: ../../mod/admin.php:1247 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Aggiorna adesso"
 
-#: ../../mod/settings.php:1002
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
+#: ../../mod/admin.php:1248
+msgid "Close"
+msgstr "Chiudi"
 
-#: ../../mod/settings.php:1003
-msgid "Advanced expiration settings"
-msgstr "Impostazioni avanzate di scandenza"
+#: ../../mod/admin.php:1254
+msgid "FTP Host"
+msgstr "Indirizzo FTP"
 
-#: ../../mod/settings.php:1004
-msgid "Advanced Expiration"
-msgstr "Scadenza avanzata"
+#: ../../mod/admin.php:1255
+msgid "FTP Path"
+msgstr "Percorso FTP"
 
-#: ../../mod/settings.php:1005
-msgid "Expire posts:"
-msgstr "Fai scadere i post:"
+#: ../../mod/admin.php:1256
+msgid "FTP User"
+msgstr "Utente FTP"
 
-#: ../../mod/settings.php:1006
-msgid "Expire personal notes:"
-msgstr "Fai scadere le Note personali:"
+#: ../../mod/admin.php:1257
+msgid "FTP Password"
+msgstr "Pasword FTP"
 
-#: ../../mod/settings.php:1007
-msgid "Expire starred posts:"
-msgstr "Fai scadere i post Speciali:"
+#: ../../mod/item.php:108
+msgid "Unable to locate original post."
+msgstr "Impossibile trovare il messaggio originale."
 
-#: ../../mod/settings.php:1008
-msgid "Expire photos:"
-msgstr "Fai scadere le foto:"
+#: ../../mod/item.php:310
+msgid "Empty post discarded."
+msgstr "Messaggio vuoto scartato."
 
-#: ../../mod/settings.php:1009
-msgid "Only expire posts by others:"
-msgstr "Fai scadere solo i post degli altri:"
+#: ../../mod/item.php:872
+msgid "System error. Post not saved."
+msgstr "Errore di sistema. Messaggio non salvato."
 
-#: ../../mod/settings.php:1035
-msgid "Account Settings"
-msgstr "Impostazioni account"
+#: ../../mod/item.php:897
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
 
-#: ../../mod/settings.php:1043
-msgid "Password Settings"
-msgstr "Impostazioni password"
+#: ../../mod/item.php:899
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Puoi visitarli online su %s"
 
-#: ../../mod/settings.php:1044
-msgid "New Password:"
-msgstr "Nuova password:"
+#: ../../mod/item.php:900
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
 
-#: ../../mod/settings.php:1045
-msgid "Confirm:"
-msgstr "Conferma:"
+#: ../../mod/item.php:904
+#, php-format
+msgid "%s posted an update."
+msgstr "%s ha inviato un aggiornamento."
 
-#: ../../mod/settings.php:1045
-msgid "Leave password fields blank unless changing"
-msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amici di %s"
 
-#: ../../mod/settings.php:1049
-msgid "Basic Settings"
-msgstr "Impostazioni base"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nessun amico da visualizzare."
 
-#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nome completo:"
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "Rimuovi termine"
 
-#: ../../mod/settings.php:1051
-msgid "Email Address:"
-msgstr "Indirizzo Email:"
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:89
+msgid "No results."
+msgstr "Nessun risultato."
 
-#: ../../mod/settings.php:1052
-msgid "Your Timezone:"
-msgstr "Il tuo fuso orario:"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizza la connessione dell'applicazione"
 
-#: ../../mod/settings.php:1053
-msgid "Default Post Location:"
-msgstr "Località predefinita:"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
 
-#: ../../mod/settings.php:1054
-msgid "Use Browser Location:"
-msgstr "Usa la località rilevata dal browser:"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Effettua il login per continuare."
 
-#: ../../mod/settings.php:1057
-msgid "Security and Privacy Settings"
-msgstr "Impostazioni di sicurezza e privacy"
+#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
 
-#: ../../mod/settings.php:1059
-msgid "Maximum Friend Requests/Day:"
-msgstr "Numero massimo di richieste di amicizia al giorno:"
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Dettagli della registrazione di %s"
 
-#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
-msgid "(to prevent spam abuse)"
-msgstr "(per prevenire lo spam)"
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni."
 
-#: ../../mod/settings.php:1060
-msgid "Default Post Permissions"
-msgstr "Permessi predefiniti per i messaggi"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."
 
-#: ../../mod/settings.php:1061
-msgid "(click to open/close)"
-msgstr "(clicca per aprire/chiudere)"
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "La tua registrazione non puo' essere elaborata."
 
-#: ../../mod/settings.php:1072
-msgid "Default Private Post"
-msgstr ""
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Richiesta di registrazione su %s"
 
-#: ../../mod/settings.php:1073
-msgid "Default Public Post"
-msgstr ""
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."
 
-#: ../../mod/settings.php:1077
-msgid "Default Permissions for New Posts"
-msgstr "Permessi predefiniti per i nuovi post"
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."
 
-#: ../../mod/settings.php:1089
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"
+#: ../../mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."
 
-#: ../../mod/settings.php:1092
-msgid "Notification Settings"
-msgstr "Impostazioni notifiche"
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."
 
-#: ../../mod/settings.php:1093
-msgid "By default post a status message when:"
-msgstr "Invia un messaggio di stato quando:"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Il tuo OpenID (opzionale): "
 
-#: ../../mod/settings.php:1094
-msgid "accepting a friend request"
-msgstr "accetti una richiesta di amicizia"
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Includi il tuo profilo nell'elenco pubblico?"
 
-#: ../../mod/settings.php:1095
-msgid "joining a forum/community"
-msgstr "ti unisci a un forum/comunità"
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "La registrazione su questo sito è solo su invito."
 
-#: ../../mod/settings.php:1096
-msgid "making an <em>interesting</em> profile change"
-msgstr "fai un <em>interessante</em> modifica al profilo"
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "L'ID del tuo invito:"
 
-#: ../../mod/settings.php:1097
-msgid "Send a notification email when:"
-msgstr "Invia una mail di notifica quando:"
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Il tuo nome completo (es. Mario Rossi): "
 
-#: ../../mod/settings.php:1098
-msgid "You receive an introduction"
-msgstr "Ricevi una presentazione"
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Il tuo indirizzo email: "
 
-#: ../../mod/settings.php:1099
-msgid "Your introductions are confirmed"
-msgstr "Le tue presentazioni sono confermate"
+#: ../../mod/register.php:271
+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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@$sitename</strong>'."
 
-#: ../../mod/settings.php:1100
-msgid "Someone writes on your profile wall"
-msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Scegli un nome utente: "
 
-#: ../../mod/settings.php:1101
-msgid "Someone writes a followup comment"
-msgstr "Qualcuno scrive un commento a un tuo messaggio"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Account approvato."
 
-#: ../../mod/settings.php:1102
-msgid "You receive a private message"
-msgstr "Ricevi un messaggio privato"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrazione revocata per %s"
 
-#: ../../mod/settings.php:1103
-msgid "You receive a friend suggestion"
-msgstr "Hai ricevuto un suggerimento di amicizia"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Accedi."
 
-#: ../../mod/settings.php:1104
-msgid "You are tagged in a post"
-msgstr "Sei stato taggato in un post"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Oggetto non disponibile."
 
-#: ../../mod/settings.php:1105
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Sei 'toccato'/'spronato'/ecc. in un post"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Oggetto non trovato."
 
-#: ../../mod/settings.php:1108
-msgid "Advanced Account/Page Type Settings"
-msgstr "Impostazioni avanzate Account/Tipo di pagina"
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Rimuovi il mio account"
 
-#: ../../mod/settings.php:1109
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifica il comportamento di questo account in situazioni speciali"
+#: ../../mod/removeme.php:46
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
 
-#: ../../mod/display.php:177
-msgid "Item has been removed."
-msgstr "L'oggetto è stato rimosso."
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Inserisci la tua password per verifica:"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Cerca persone"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Testo sorgente (bbcode):"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nessun risultato"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profilo elminato."
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Sorgente:"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profilo-"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML grezzo):"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Il nuovo profilo è stato creato."
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Impossibile duplicare il profilo."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Il nome profilo è obbligatorio ."
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Stato civile"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Partner romantico"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Mi piace"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Non mi piace"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Sorgente (formato Diaspora):"
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Lavoro/Impiego"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religione"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amici in comune"
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Orientamento Politico"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nessun contatto in comune."
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Sesso"
+#: ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Devi aver effettuato il login per usare gli addons."
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Preferenza sessuale"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Applicazioni"
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Homepage"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nessuna applicazione installata."
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interessi"
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "Non è possibile accedere al contatto."
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Indirizzo"
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Non riesco a trovare il profilo selezionato."
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Posizione"
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Contatto aggiornato."
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Profilo aggiornato."
+#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
+msgid "Failed to update contact record."
+msgstr "Errore nell'aggiornamento del contatto."
 
-#: ../../mod/profiles.php:517
-msgid " and "
-msgstr ""
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Il contatto è stato bloccato"
 
-#: ../../mod/profiles.php:525
-msgid "public profile"
-msgstr "profilo pubblico"
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Il contatto è stato sbloccato"
 
-#: ../../mod/profiles.php:528
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Il contatto è ignorato"
 
-#: ../../mod/profiles.php:529
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "- Visita  %2$s di %1$s"
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Il contatto non è più ignorato"
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s"
-
-#: ../../mod/profiles.php:605
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Il contatto è stato archiviato"
 
-#: ../../mod/profiles.php:625
-msgid "Edit Profile Details"
-msgstr "Modifica i dettagli del profilo"
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
+msgstr "Il contatto è stato dearchiviato"
 
-#: ../../mod/profiles.php:627
-msgid "Change Profile Photo"
-msgstr "Cambia la foto del profilo"
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr "Vuoi veramente cancellare questo contatto?"
 
-#: ../../mod/profiles.php:628
-msgid "View this profile"
-msgstr "Visualizza questo profilo"
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Il contatto è stato rimosso."
 
-#: ../../mod/profiles.php:629
-msgid "Create a new profile using these settings"
-msgstr "Crea un nuovo profilo usando queste impostazioni"
+#: ../../mod/contacts.php:301
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Sei amico reciproco con %s"
 
-#: ../../mod/profiles.php:630
-msgid "Clone this profile"
-msgstr "Clona questo profilo"
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Stai condividendo con %s"
 
-#: ../../mod/profiles.php:631
-msgid "Delete this profile"
-msgstr "Elimina questo profilo"
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s sta condividendo con te"
 
-#: ../../mod/profiles.php:632
-msgid "Profile Name:"
-msgstr "Nome del profilo:"
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Le comunicazioni private non sono disponibili per questo contatto."
 
-#: ../../mod/profiles.php:633
-msgid "Your Full Name:"
-msgstr "Il tuo nome completo:"
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(L'aggiornamento è stato completato)"
 
-#: ../../mod/profiles.php:634
-msgid "Title/Description:"
-msgstr "Breve descrizione (es. titolo, posizione, altro):"
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(L'aggiornamento non è stato completato)"
 
-#: ../../mod/profiles.php:635
-msgid "Your Gender:"
-msgstr "Il tuo sesso:"
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Suggerisci amici"
 
-#: ../../mod/profiles.php:636
+#: ../../mod/contacts.php:340
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Compleanno (%s)"
+msgid "Network type: %s"
+msgstr "Tipo di rete: %s"
 
-#: ../../mod/profiles.php:637
-msgid "Street Address:"
-msgstr "Indirizzo (via/piazza):"
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Vedi tutti i contatti"
 
-#: ../../mod/profiles.php:638
-msgid "Locality/City:"
-msgstr "Località:"
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
+msgstr "Inverti stato \"Blocca\""
 
-#: ../../mod/profiles.php:639
-msgid "Postal/Zip Code:"
-msgstr "CAP:"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Non ignorare"
 
-#: ../../mod/profiles.php:640
-msgid "Country:"
-msgstr "Nazione:"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignora"
 
-#: ../../mod/profiles.php:641
-msgid "Region/State:"
-msgstr "Regione/Stato:"
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
+msgstr "Inverti stato \"Ignora\""
 
-#: ../../mod/profiles.php:642
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
+msgstr "Dearchivia"
 
-#: ../../mod/profiles.php:643
-msgid "Who: (if applicable)"
-msgstr "Con chi: (se possibile)"
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Archivia"
 
-#: ../../mod/profiles.php:644
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
+msgstr "Inverti stato \"Archiviato\""
 
-#: ../../mod/profiles.php:645
-msgid "Since [date]:"
-msgstr "Dal [data]:"
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Ripara"
 
-#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Preferenze sessuali:"
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Impostazioni avanzate Contatto"
 
-#: ../../mod/profiles.php:647
-msgid "Homepage URL:"
-msgstr "Homepage:"
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "Comunicazione con questo contatto persa!"
 
-#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Paese natale:"
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Editor dei Contatti"
 
-#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Orientamento politico:"
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Visibilità del profilo"
 
-#: ../../mod/profiles.php:650
-msgid "Religious Views:"
-msgstr "Orientamento religioso:"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
 
-#: ../../mod/profiles.php:651
-msgid "Public Keywords:"
-msgstr "Parole chiave visibili a tutti:"
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Informazioni / Note sul contatto"
 
-#: ../../mod/profiles.php:652
-msgid "Private Keywords:"
-msgstr "Parole chiave private:"
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "Modifica note contatto"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Mi piace:"
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Blocca/Sblocca contatto"
 
-#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Non mi piace:"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignora il contatto"
 
-#: ../../mod/profiles.php:655
-msgid "Example: fishing photography software"
-msgstr "Esempio: pesca fotografia programmazione"
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "Impostazioni riparazione URL"
 
-#: ../../mod/profiles.php:656
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Vedi conversazioni"
 
-#: ../../mod/profiles.php:657
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)"
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Rimuovi contatto"
 
-#: ../../mod/profiles.php:658
-msgid "Tell us about yourself..."
-msgstr "Raccontaci di te..."
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "Ultimo aggiornamento:"
 
-#: ../../mod/profiles.php:659
-msgid "Hobbies/Interests"
-msgstr "Hobby/interessi"
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "Aggiorna messaggi pubblici"
 
-#: ../../mod/profiles.php:660
-msgid "Contact information and Social Networks"
-msgstr "Informazioni su contatti e social network"
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Bloccato"
 
-#: ../../mod/profiles.php:661
-msgid "Musical interests"
-msgstr "Interessi musicali"
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Ignorato"
 
-#: ../../mod/profiles.php:662
-msgid "Books, literature"
-msgstr "Libri, letteratura"
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "Al momento archiviato"
 
-#: ../../mod/profiles.php:663
-msgid "Television"
-msgstr "Televisione"
+#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Nascondi questo contatto agli altri"
 
-#: ../../mod/profiles.php:664
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/danza/cultura/intrattenimento"
+#: ../../mod/contacts.php:419
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
 
-#: ../../mod/profiles.php:665
-msgid "Love/romance"
-msgstr "Amore"
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Suggerimenti"
 
-#: ../../mod/profiles.php:666
-msgid "Work/employment"
-msgstr "Lavoro/impiego"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Suggerisci potenziali amici"
 
-#: ../../mod/profiles.php:667
-msgid "School/education"
-msgstr "Scuola/educazione"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Tutti i contatti"
 
-#: ../../mod/profiles.php:672
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Mostra tutti i contatti"
 
-#: ../../mod/profiles.php:682 ../../mod/directory.php:111
-msgid "Age: "
-msgstr "Età : "
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Sbloccato"
 
-#: ../../mod/profiles.php:721
-msgid "Edit/Manage Profiles"
-msgstr "Modifica / Gestisci profili"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Mostra solo contatti non bloccati"
 
-#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
-msgid "Change profile photo"
-msgstr "Cambia la foto del profilo"
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Bloccato"
 
-#: ../../mod/profiles.php:723 ../../boot.php:1367
-msgid "Create New Profile"
-msgstr "Crea un nuovo profilo"
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Mostra solo contatti bloccati"
 
-#: ../../mod/profiles.php:734 ../../boot.php:1377
-msgid "Profile Image"
-msgstr "Immagine del Profilo"
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Ignorato"
 
-#: ../../mod/profiles.php:736 ../../boot.php:1380
-msgid "visible to everybody"
-msgstr "visibile a tutti"
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Mostra solo contatti ignorati"
 
-#: ../../mod/profiles.php:737 ../../boot.php:1381
-msgid "Edit visibility"
-msgstr "Modifica visibilità"
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "Achiviato"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "collegamento"
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Mostra solo contatti archiviati"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Esporta account"
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Nascosto"
 
-#: ../../mod/uexport.php:72
-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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Mostra solo contatti nascosti"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Esporta tutto"
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Amicizia reciproca"
 
-#: ../../mod/uexport.php:73
-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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "è un tuo fan"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} vuole essere tuo amico"
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "sei un fan di"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} ti ha inviato un messaggio"
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Cerca nei tuoi contatti"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} chiede la registrazione"
+#: ../../mod/contacts.php:612 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Ricerca: "
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} ha commentato il post di %s"
+#: ../../mod/settings.php:23 ../../mod/photos.php:79
+msgid "everybody"
+msgstr "tutti"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "a {0} piace il post di  %s"
+#: ../../mod/settings.php:35
+msgid "Additional features"
+msgstr "Funzionalità aggiuntive"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "a {0} non piace il post di %s"
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Impostazioni grafiche"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ora è amico di %s"
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Impostazioni connettori"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} ha inviato un nuovo messaggio"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Impostazioni plugin"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} ha taggato il post di %s con #%s"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "Applicazioni collegate"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} ti ha citato in un post"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Esporta dati personali"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Niente di nuovo qui"
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Rimuovi account"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Pulisci le notifiche"
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "Mancano alcuni dati importanti!"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Non disponibile."
+#: ../../mod/settings.php:121 ../../mod/settings.php:610
+msgid "Update"
+msgstr "Aggiorna"
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Comunità"
+#: ../../mod/settings.php:227
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Impossibile collegarsi all'account email con i parametri forniti."
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:962
-#: ../../include/conversation.php:980
-msgid "Save to Folder:"
-msgstr "Salva nella Cartella:"
+#: ../../mod/settings.php:232
+msgid "Email settings updated."
+msgstr "Impostazioni e-mail aggiornate."
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- seleziona -"
+#: ../../mod/settings.php:247
+msgid "Features updated"
+msgstr "Funzionalità aggiornate"
 
-#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781
-msgid "Save"
-msgstr "Salva"
+#: ../../mod/settings.php:312
+msgid "Passwords do not match. Password unchanged."
+msgstr "Le password non corrispondono. Password non cambiata."
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Il file supera la dimensione massima di %d"
+#: ../../mod/settings.php:317
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le password non possono essere vuote. Password non cambiata."
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Caricamento del file non riuscito."
+#: ../../mod/settings.php:325
+msgid "Wrong password."
+msgstr "Password sbagliata."
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Indentificativo del profilo non valido."
+#: ../../mod/settings.php:336
+msgid "Password changed."
+msgstr "Password cambiata."
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Modifica visibilità del profilo"
+#: ../../mod/settings.php:338
+msgid "Password update failed. Please try again."
+msgstr "Aggiornamento password fallito. Prova ancora."
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
+#: ../../mod/settings.php:403
+msgid " Please use a shorter name."
+msgstr " Usa un nome più corto."
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visibile a"
+#: ../../mod/settings.php:405
+msgid " Name too short."
+msgstr " Nome troppo corto."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
+#: ../../mod/settings.php:414
+msgid "Wrong Password"
+msgstr "Password Sbagliata"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Vuoi veramente cancellare questo suggerimento?"
+#: ../../mod/settings.php:419
+msgid " Not valid email."
+msgstr " Email non valida."
 
-#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Contatti suggeriti"
+#: ../../mod/settings.php:422
+msgid " Cannot change to that email."
+msgstr "Non puoi usare quella email."
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
+#: ../../mod/settings.php:476
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."
 
-#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Connetti"
+#: ../../mod/settings.php:480
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignora / Nascondi"
+#: ../../mod/settings.php:510
+msgid "Settings updated."
+msgstr "Impostazioni aggiornate."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accesso negato."
+#: ../../mod/settings.php:583 ../../mod/settings.php:609
+#: ../../mod/settings.php:645
+msgid "Add application"
+msgstr "Aggiungi applicazione"
 
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%s dà il benvenuto a %s"
+#: ../../mod/settings.php:587 ../../mod/settings.php:613
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gestisci indentità e/o pagine"
+#: ../../mod/settings.php:588 ../../mod/settings.php:614
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../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 "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
+#: ../../mod/settings.php:589 ../../mod/settings.php:615
+msgid "Redirect"
+msgstr "Redirect"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Seleziona un'identità da gestire:"
+#: ../../mod/settings.php:590 ../../mod/settings.php:616
+msgid "Icon url"
+msgstr "Url icona"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Nessun potenziale delegato per la pagina è stato trovato."
+#: ../../mod/settings.php:601
+msgid "You can't edit this application."
+msgstr "Non puoi modificare questa applicazione."
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "Gestione delegati per la pagina"
+#: ../../mod/settings.php:644
+msgid "Connected Apps"
+msgstr "Applicazioni Collegate"
 
-#: ../../mod/delegate.php:123
-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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
+#: ../../mod/settings.php:646 ../../mod/editpost.php:109
+#: ../../mod/content.php:751 ../../object/Item.php:117
+msgid "Edit"
+msgstr "Modifica"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Gestori Pagina Esistenti"
+#: ../../mod/settings.php:648
+msgid "Client key starts with"
+msgstr "Chiave del client inizia con"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Delegati Pagina Esistenti"
+#: ../../mod/settings.php:649
+msgid "No name"
+msgstr "Nessun nome"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Delegati Potenziali"
+#: ../../mod/settings.php:650
+msgid "Remove authorization"
+msgstr "Rimuovi l'autorizzazione"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Aggiungi"
+#: ../../mod/settings.php:662
+msgid "No Plugin settings configured"
+msgstr "Nessun plugin ha impostazioni modificabili"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Nessun articolo."
+#: ../../mod/settings.php:670
+msgid "Plugin Settings"
+msgstr "Impostazioni plugin"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Nessun contatto."
+#: ../../mod/settings.php:684
+msgid "Off"
+msgstr "Spento"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:718
-msgid "View Contacts"
-msgstr "Visualizza i contatti"
+#: ../../mod/settings.php:684
+msgid "On"
+msgstr "Acceso"
 
-#: ../../mod/notes.php:44 ../../boot.php:1892
-msgid "Personal Notes"
-msgstr "Note personali"
+#: ../../mod/settings.php:692
+msgid "Additional Features"
+msgstr "Funzionalità aggiuntive"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Tocca/Pungola"
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Il supporto integrato per la connettività con %s è %s"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "tocca, pungola o fai altre cose a qualcuno"
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+msgid "enabled"
+msgstr "abilitato"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatario"
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+msgid "disabled"
+msgstr "disabilitato"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Scegli cosa vuoi fare al destinatario"
+#: ../../mod/settings.php:706
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendi questo post privato"
+#: ../../mod/settings.php:738
+msgid "Email access is disabled on this site."
+msgstr "L'accesso email è disabilitato su questo sito."
 
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Elenco globale"
+#: ../../mod/settings.php:745
+msgid "Connector Settings"
+msgstr "Impostazioni Connettore"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Cerca nel sito"
+#: ../../mod/settings.php:750
+msgid "Email/Mailbox Setup"
+msgstr "Impostazioni email"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Elenco del sito"
+#: ../../mod/settings.php:751
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Genere:"
+#: ../../mod/settings.php:752
+msgid "Last successful email check:"
+msgstr "Ultimo controllo email eseguito con successo:"
 
-#: ../../mod/directory.php:136 ../../boot.php:1408
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Genere:"
+#: ../../mod/settings.php:754
+msgid "IMAP server name:"
+msgstr "Nome server IMAP:"
 
-#: ../../mod/directory.php:138 ../../boot.php:1411
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Stato:"
+#: ../../mod/settings.php:755
+msgid "IMAP port:"
+msgstr "Porta IMAP:"
 
-#: ../../mod/directory.php:140 ../../boot.php:1413
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/settings.php:756
+msgid "Security:"
+msgstr "Sicurezza:"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Informazioni:"
+#: ../../mod/settings.php:756 ../../mod/settings.php:761
+msgid "None"
+msgstr "Nessuna"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
+#: ../../mod/settings.php:757
+msgid "Email login name:"
+msgstr "Nome utente email:"
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d F Y \\@ G:i"
+#: ../../mod/settings.php:758
+msgid "Email password:"
+msgstr "Password email:"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversione Ora"
+#: ../../mod/settings.php:759
+msgid "Reply-to address:"
+msgstr "Indirizzo di risposta:"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."
+#: ../../mod/settings.php:760
+msgid "Send public posts to all email contacts:"
+msgstr "Invia i messaggi pubblici ai contatti email:"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Ora UTC: %s"
+#: ../../mod/settings.php:761
+msgid "Action after import:"
+msgstr "Azione post importazione:"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso orario corrente: %s"
+#: ../../mod/settings.php:761
+msgid "Mark as seen"
+msgstr "Segna come letto"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Ora locale convertita: %s"
+#: ../../mod/settings.php:761
+msgid "Move to folder"
+msgstr "Sposta nella cartella"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selezionare il tuo fuso orario:"
+#: ../../mod/settings.php:762
+msgid "Move to folder:"
+msgstr "Sposta nella cartella:"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Inviato!"
+#: ../../mod/settings.php:835
+msgid "Display Settings"
+msgstr "Impostazioni Grafiche"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
+#: ../../mod/settings.php:841 ../../mod/settings.php:853
+msgid "Display Theme:"
+msgstr "Tema:"
 
-#: ../../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 "Il ridimensionamento del'immagine [%s] è fallito."
+#: ../../mod/settings.php:842
+msgid "Mobile Theme:"
+msgstr "Tema mobile:"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
+#: ../../mod/settings.php:843
+msgid "Update browser every xx seconds"
+msgstr "Aggiorna il browser ogni x secondi"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossibile elaborare l'immagine"
+#: ../../mod/settings.php:843
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimo 10 secondi, nessun limite massimo"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Carica un file:"
+#: ../../mod/settings.php:844
+msgid "Number of items to display per page:"
+msgstr "Numero di elementi da mostrare per pagina:"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Seleziona un profilo:"
+#: ../../mod/settings.php:844 ../../mod/settings.php:845
+msgid "Maximum of 100 items"
+msgstr "Massimo 100 voci"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Carica"
+#: ../../mod/settings.php:845
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "salta questo passaggio"
+#: ../../mod/settings.php:846
+msgid "Don't show emoticons"
+msgstr "Non mostrare le emoticons"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "seleziona una foto dai tuoi album"
+#: ../../mod/settings.php:922
+msgid "Normal Account Page"
+msgstr "Pagina Account Normale"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Ritaglia immagine"
+#: ../../mod/settings.php:923
+msgid "This account is a normal personal profile"
+msgstr "Questo account è un normale profilo personale"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ritaglia l'imagine per una visualizzazione migliore."
+#: ../../mod/settings.php:926
+msgid "Soapbox Page"
+msgstr "Pagina Sandbox"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Finito"
+#: ../../mod/settings.php:927
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Immagine caricata con successo."
+#: ../../mod/settings.php:930
+msgid "Community Forum/Celebrity Account"
+msgstr "Account Celebrità/Forum comunitario"
 
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Friendica Social Communications Server - Setup"
+#: ../../mod/settings.php:931
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr " Impossibile collegarsi con il database."
+#: ../../mod/settings.php:934
+msgid "Automatic Friend Page"
+msgstr "Pagina con amicizia automatica"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossibile creare le tabelle."
+#: ../../mod/settings.php:935
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Il tuo Friendica è stato installato."
+#: ../../mod/settings.php:938
+msgid "Private Forum [Experimental]"
+msgstr "Forum privato [sperimentale]"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
+#: ../../mod/settings.php:939
+msgid "Private forum - approved members only"
+msgstr "Forum privato - solo membri approvati"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:506
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Leggi il file \"INSTALL.txt\"."
+#: ../../mod/settings.php:951
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Controllo sistema"
+#: ../../mod/settings.php:951
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Controlla ancora"
+#: ../../mod/settings.php:961
+msgid "Publish your default profile in your local site directory?"
+msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connessione al database"
+#: ../../mod/settings.php:967
+msgid "Publish your default profile in the global social directory?"
+msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
+#: ../../mod/settings.php:975
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
+#: ../../mod/settings.php:979
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
+#: ../../mod/settings.php:984
+msgid "Allow friends to post to your profile page?"
+msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome del database server"
+#: ../../mod/settings.php:990
+msgid "Allow friends to tag your posts?"
+msgstr "Permetti agli amici di taggare i tuoi messaggi?"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome utente database"
+#: ../../mod/settings.php:996
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Password utente database"
+#: ../../mod/settings.php:1002
+msgid "Permit unknown people to send you private mail?"
+msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome database"
+#: ../../mod/settings.php:1010
+msgid "Profile is <strong>not published</strong>."
+msgstr "Il profilo <strong>non è pubblicato</strong>."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Indirizzo email dell'amministratore del sito"
+#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "o"
 
-#: ../../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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
+#: ../../mod/settings.php:1018
+msgid "Your Identity Address is"
+msgstr "L'indirizzo della tua identità è"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
+#: ../../mod/settings.php:1029
+msgid "Automatically expire posts after this many days:"
+msgstr "Fai scadere i post automaticamente dopo x giorni:"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Impostazioni sito"
+#: ../../mod/settings.php:1029
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
 
-#: ../../mod/install.php:320
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
+#: ../../mod/settings.php:1030
+msgid "Advanced expiration settings"
+msgstr "Impostazioni avanzate di scandenza"
 
-#: ../../mod/install.php:321
-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 "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/settings.php:1031
+msgid "Advanced Expiration"
+msgstr "Scadenza avanzata"
 
-#: ../../mod/install.php:325
-msgid "PHP executable path"
-msgstr "Percorso eseguibile PHP"
+#: ../../mod/settings.php:1032
+msgid "Expire posts:"
+msgstr "Fai scadere i post:"
 
-#: ../../mod/install.php:325
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
+#: ../../mod/settings.php:1033
+msgid "Expire personal notes:"
+msgstr "Fai scadere le Note personali:"
 
-#: ../../mod/install.php:330
-msgid "Command line PHP"
-msgstr "PHP da riga di comando"
+#: ../../mod/settings.php:1034
+msgid "Expire starred posts:"
+msgstr "Fai scadere i post Speciali:"
 
-#: ../../mod/install.php:339
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
+#: ../../mod/settings.php:1035
+msgid "Expire photos:"
+msgstr "Fai scadere le foto:"
 
-#: ../../mod/install.php:340
-msgid "This is required for message delivery to work."
-msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
+#: ../../mod/settings.php:1036
+msgid "Only expire posts by others:"
+msgstr "Fai scadere solo i post degli altri:"
 
-#: ../../mod/install.php:342
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/settings.php:1062
+msgid "Account Settings"
+msgstr "Impostazioni account"
 
-#: ../../mod/install.php:363
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
+#: ../../mod/settings.php:1070
+msgid "Password Settings"
+msgstr "Impostazioni password"
 
-#: ../../mod/install.php:364
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/settings.php:1071
+msgid "New Password:"
+msgstr "Nuova password:"
 
-#: ../../mod/install.php:366
-msgid "Generate encryption keys"
-msgstr "Genera chiavi di criptazione"
+#: ../../mod/settings.php:1072
+msgid "Confirm:"
+msgstr "Conferma:"
 
-#: ../../mod/install.php:373
-msgid "libCurl PHP module"
-msgstr "modulo PHP libCurl"
+#: ../../mod/settings.php:1072
+msgid "Leave password fields blank unless changing"
+msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password"
 
-#: ../../mod/install.php:374
-msgid "GD graphics PHP module"
-msgstr "modulo PHP GD graphics"
+#: ../../mod/settings.php:1073
+msgid "Current Password:"
+msgstr "Password Attuale:"
 
-#: ../../mod/install.php:375
-msgid "OpenSSL PHP module"
-msgstr "modulo PHP OpenSSL"
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+msgid "Your current password to confirm the changes"
+msgstr "La tua password attuale per confermare le modifiche"
 
-#: ../../mod/install.php:376
-msgid "mysqli PHP module"
-msgstr "modulo PHP mysqli"
+#: ../../mod/settings.php:1074
+msgid "Password:"
+msgstr "Password:"
 
-#: ../../mod/install.php:377
-msgid "mb_string PHP module"
-msgstr "modulo PHP mb_string"
+#: ../../mod/settings.php:1078
+msgid "Basic Settings"
+msgstr "Impostazioni base"
 
-#: ../../mod/install.php:382 ../../mod/install.php:384
-msgid "Apache mod_rewrite module"
-msgstr "Modulo mod_rewrite di Apache"
+#: ../../mod/settings.php:1080
+msgid "Email Address:"
+msgstr "Indirizzo Email:"
 
-#: ../../mod/install.php:382
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
+#: ../../mod/settings.php:1081
+msgid "Your Timezone:"
+msgstr "Il tuo fuso orario:"
 
-#: ../../mod/install.php:390
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
+#: ../../mod/settings.php:1082
+msgid "Default Post Location:"
+msgstr "Località predefinita:"
 
-#: ../../mod/install.php:394
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
+#: ../../mod/settings.php:1083
+msgid "Use Browser Location:"
+msgstr "Usa la località rilevata dal browser:"
 
-#: ../../mod/install.php:398
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
+#: ../../mod/settings.php:1086
+msgid "Security and Privacy Settings"
+msgstr "Impostazioni di sicurezza e privacy"
 
-#: ../../mod/install.php:402
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
+#: ../../mod/settings.php:1088
+msgid "Maximum Friend Requests/Day:"
+msgstr "Numero massimo di richieste di amicizia al giorno:"
 
-#: ../../mod/install.php:406
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
+#: ../../mod/settings.php:1088 ../../mod/settings.php:1118
+msgid "(to prevent spam abuse)"
+msgstr "(per prevenire lo spam)"
 
-#: ../../mod/install.php:423
-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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
+#: ../../mod/settings.php:1089
+msgid "Default Post Permissions"
+msgstr "Permessi predefiniti per i messaggi"
 
-#: ../../mod/install.php:424
-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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
+#: ../../mod/settings.php:1090
+msgid "(click to open/close)"
+msgstr "(clicca per aprire/chiudere)"
 
-#: ../../mod/install.php:425
-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 "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"
+#: ../../mod/settings.php:1099 ../../mod/photos.php:1140
+#: ../../mod/photos.php:1506
+msgid "Show to Groups"
+msgstr "Mostra ai gruppi"
 
-#: ../../mod/install.php:426
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."
+#: ../../mod/settings.php:1100 ../../mod/photos.php:1141
+#: ../../mod/photos.php:1507
+msgid "Show to Contacts"
+msgstr "Mostra ai contatti"
 
-#: ../../mod/install.php:429
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php è scrivibile"
+#: ../../mod/settings.php:1101
+msgid "Default Private Post"
+msgstr "Default Post Privato"
 
-#: ../../mod/install.php:439
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."
+#: ../../mod/settings.php:1102
+msgid "Default Public Post"
+msgstr "Default Post Pubblico"
 
-#: ../../mod/install.php:440
-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 "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."
+#: ../../mod/settings.php:1106
+msgid "Default Permissions for New Posts"
+msgstr "Permessi predefiniti per i nuovi post"
 
-#: ../../mod/install.php:441
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."
+#: ../../mod/settings.php:1118
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"
 
-#: ../../mod/install.php:442
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."
-
-#: ../../mod/install.php:445
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 è scrivibile"
-
-#: ../../mod/install.php:457
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."
-
-#: ../../mod/install.php:459
-msgid "Url rewrite is working"
-msgstr "La riscrittura degli url funziona"
-
-#: ../../mod/install.php:469
-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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."
-
-#: ../../mod/install.php:493
-msgid "Errors encountered creating database tables."
-msgstr "La creazione delle tabelle del database ha generato errori."
-
-#: ../../mod/install.php:504
-msgid "<h1>What next</h1>"
-msgstr "<h1>Cosa fare ora</h1>"
-
-#: ../../mod/install.php:505
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
-
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppo creato."
-
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
-
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppo non trovato."
-
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Il nome del gruppo è cambiato."
-
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
-
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
-
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppo rimosso."
-
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
-
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Modifica gruppo"
-
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membri"
-
-#: ../../mod/content.php:119 ../../mod/network.php:596
-msgid "No such group"
-msgstr "Nessun gruppo"
-
-#: ../../mod/content.php:130 ../../mod/network.php:607
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
-
-#: ../../mod/content.php:134 ../../mod/network.php:611
-msgid "Group: "
-msgstr "Gruppo: "
-
-#: ../../mod/content.php:520 ../../include/conversation.php:662
-msgid "View in context"
-msgstr "Vedi nel contesto"
-
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Account approvato."
-
-#: ../../mod/regmod.php:100
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrazione revocata per %s"
-
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Accedi."
-
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profili corrispondenti"
-
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
-
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "è interessato a:"
-
-#: ../../mod/item.php:105
-msgid "Unable to locate original post."
-msgstr "Impossibile trovare il messaggio originale."
-
-#: ../../mod/item.php:307
-msgid "Empty post discarded."
-msgstr "Messaggio vuoto scartato."
-
-#: ../../mod/item.php:869
-msgid "System error. Post not saved."
-msgstr "Errore di sistema. Messaggio non salvato."
-
-#: ../../mod/item.php:894
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
-
-#: ../../mod/item.php:896
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Puoi visitarli online su %s"
-
-#: ../../mod/item.php:897
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
-
-#: ../../mod/item.php:901
-#, php-format
-msgid "%s posted an update."
-msgstr "%s ha inviato un aggiornamento."
-
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s al momento è %2$s"
-
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Umore"
-
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Condividi il tuo umore con i tuoi amici"
-
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr "Cerca risultati per:"
-
-#: ../../mod/network.php:234 ../../include/group.php:275
-msgid "add"
-msgstr "aggiungi"
+#: ../../mod/settings.php:1121
+msgid "Notification Settings"
+msgstr "Impostazioni notifiche"
 
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "Ordina per commento"
+#: ../../mod/settings.php:1122
+msgid "By default post a status message when:"
+msgstr "Invia un messaggio di stato quando:"
 
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr "Ordina per data commento"
+#: ../../mod/settings.php:1123
+msgid "accepting a friend request"
+msgstr "accetti una richiesta di amicizia"
 
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "Ordina per invio"
+#: ../../mod/settings.php:1124
+msgid "joining a forum/community"
+msgstr "ti unisci a un forum/comunità"
 
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr "Ordina per data messaggio"
+#: ../../mod/settings.php:1125
+msgid "making an <em>interesting</em> profile change"
+msgstr "fai un <em>interessante</em> modifica al profilo"
 
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr "Messaggi che ti citano o coinvolgono"
+#: ../../mod/settings.php:1126
+msgid "Send a notification email when:"
+msgstr "Invia una mail di notifica quando:"
 
-#: ../../mod/network.php:453
-msgid "New"
-msgstr "Nuovo"
+#: ../../mod/settings.php:1127
+msgid "You receive an introduction"
+msgstr "Ricevi una presentazione"
 
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - per data"
+#: ../../mod/settings.php:1128
+msgid "Your introductions are confirmed"
+msgstr "Le tue presentazioni sono confermate"
 
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr "Links condivisi"
+#: ../../mod/settings.php:1129
+msgid "Someone writes on your profile wall"
+msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
 
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr "Link Interessanti"
+#: ../../mod/settings.php:1130
+msgid "Someone writes a followup comment"
+msgstr "Qualcuno scrive un commento a un tuo messaggio"
 
-#: ../../mod/network.php:471
-msgid "Starred"
-msgstr "Preferiti"
+#: ../../mod/settings.php:1131
+msgid "You receive a private message"
+msgstr "Ricevi un messaggio privato"
 
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr "Messaggi preferiti"
+#: ../../mod/settings.php:1132
+msgid "You receive a friend suggestion"
+msgstr "Hai ricevuto un suggerimento di amicizia"
 
-#: ../../mod/network.php:546
-#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
-msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
+#: ../../mod/settings.php:1133
+msgid "You are tagged in a post"
+msgstr "Sei stato taggato in un post"
 
-#: ../../mod/network.php:549
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
+#: ../../mod/settings.php:1134
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Sei 'toccato'/'spronato'/ecc. in un post"
 
-#: ../../mod/network.php:621
-msgid "Contact: "
-msgstr "Contatto:"
+#: ../../mod/settings.php:1137
+msgid "Advanced Account/Page Type Settings"
+msgstr "Impostazioni avanzate Account/Tipo di pagina"
 
-#: ../../mod/network.php:623
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
+#: ../../mod/settings.php:1138
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifica il comportamento di questo account in situazioni speciali"
 
-#: ../../mod/network.php:628
-msgid "Invalid contact."
-msgstr "Contatto non valido."
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "collegamento"
 
 #: ../../mod/crepair.php:102
 msgid "Contact settings applied."
@@ -4927,6 +4644,11 @@ msgstr "Contatto modificato."
 msgid "Contact update failed."
 msgstr "Le modifiche al contatto non sono state salvate."
 
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Contatto non trovato."
+
 #: ../../mod/crepair.php:135
 msgid "Repair Contact Settings"
 msgstr "Ripara il contatto"
@@ -4979,2049 +4701,2420 @@ msgstr "URL Feed"
 msgid "New photo from this URL"
 msgstr "Nuova foto da questo URL"
 
-#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
-#: ../../include/nav.php:143
-msgid "Your posts and conversations"
-msgstr "I tuoi messaggi e le tue conversazioni"
-
-#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Pagina del tuo profilo"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nessun potenziale delegato per la pagina è stato trovato."
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr "I tuoi contatti"
+#: ../../mod/delegate.php:123
+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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
 
-#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Le tue foto"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Gestori Pagina Esistenti"
 
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
-msgid "Your events"
-msgstr "I tuoi eventi"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Delegati Pagina Esistenti"
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Note personali"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Delegati Potenziali"
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Le tue foto personali"
+#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Rimuovi"
 
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:163
-msgid "Community Pages"
-msgstr "Pagine Comunitarie"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Aggiungi"
 
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-#: ../../view/theme/diabook/config.php:165
-msgid "Community Profiles"
-msgstr "Profili Comunità"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Nessun articolo."
 
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
-#: ../../view/theme/diabook/config.php:170
-msgid "Last users"
-msgstr "Ultimi utenti"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Tocca/Pungola"
 
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-#: ../../view/theme/diabook/config.php:172
-msgid "Last likes"
-msgstr "Ultimi \"mi piace\""
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "tocca, pungola o fai altre cose a qualcuno"
 
-#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-msgid "event"
-msgstr "l'evento"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatario"
 
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
-#: ../../view/theme/diabook/config.php:171
-msgid "Last photos"
-msgstr "Ultime foto"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Scegli cosa vuoi fare al destinatario"
 
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-#: ../../view/theme/diabook/config.php:168
-msgid "Find Friends"
-msgstr "Trova Amici"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendi questo post privato"
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr "Elenco Locale"
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata."
 
-#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Interessi simili"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Errore di comunicazione con l'altro sito."
 
-#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Invita amici"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "La risposta dell'altro sito non può essere gestita: "
 
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:164
-msgid "Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Conferma completata con successo."
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Il sito remoto riporta: "
 
-#: ../../view/theme/diabook/theme.php:578
-#: ../../view/theme/diabook/config.php:161
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Problema temporaneo. Attendi e riprova."
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/config.php:162
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "La presentazione ha generato un errore o è stata revocata."
 
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-#: ../../view/theme/diabook/config.php:166
-msgid "Help or @NewHere ?"
-msgstr "Serve aiuto? Sei nuovo?"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Impossibile impostare la foto del contatto."
+
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nessun utente trovato '%s'"
+
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
+
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
+
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Il contatto non è stato trovato sul nostro sito."
+
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
+
+#: ../../mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
+
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
+
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
+
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Connession accettata su %s"
+
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s si è unito a %2$s"
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%s dà il benvenuto a %s"
+
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Questa presentazione è già stata accettata."
+
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
+
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
+
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
+
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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 parametro richiesto non è stato trovato all'indirizzo dato"
+msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
+
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Presentazione completa."
+
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Errore di comunicazione."
+
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profilo non disponibile."
+
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
+
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Sono state attivate le misure di protezione contro lo spam."
+
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Gli amici sono pregati di riprovare tra 24 ore."
+
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Invalid locator"
+
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Indirizzo email non valido."
+
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Questo account non è stato configurato per l'email. Richiesta fallita."
+
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
+
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Ti sei già presentato qui."
+
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Pare che tu e %s siate già amici."
+
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Indirizzo profilo non valido."
+
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "La tua presentazione è stata inviata."
+
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Accedi per confermare la presentazione."
+
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
+
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Nascondi questo contatto"
+
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bentornato a casa %s."
+
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Conferma la tua richiesta di connessione con %s."
+
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Conferma"
+
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
+
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Connetti un email come follower</strike> (in arrivo)"
+
+#: ../../mod/dfrn_request.php:829
+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 "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
+
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Richieste di amicizia/connessione"
+
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Rispondi:"
+
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s ti conosce?"
+
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Aggiungi una nota personale:"
+
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
+
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
+
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "L'indirizzo della tua identità:"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
-#: ../../view/theme/diabook/config.php:167
-msgid "Connect Services"
-msgstr "Servizi di conessione"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Invia richiesta"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr ""
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s sta seguendo %3$s di %2$s"
 
-#: ../../view/theme/diabook/theme.php:609
-#: ../../view/theme/diabook/config.php:159
-msgid "Set twitter search term"
-msgstr ""
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Elenco globale"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
-msgid "don't show"
-msgstr "non mostrare"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Cerca nel sito"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
-msgid "show"
-msgstr "mostra"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Elenco del sito"
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Genere:"
 
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/cleanzero/config.php:82
-msgid "Theme settings"
-msgstr "Impostazioni tema"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
 
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/cleanzero/config.php:84
-msgid "Set font-size for posts and comments"
-msgstr "Dimensione del carattere di messaggi e commenti"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Vuoi veramente cancellare questo suggerimento?"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "Altezza della linea di testo di messaggi e commenti"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr ""
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignora / Nascondi"
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr ""
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Cerca persone"
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nessun risultato"
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr ""
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nessun video selezionato"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Imposta schema colori"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "Questo oggetto non è visibile a tutti."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Allineamento"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "Sfoglia l'album"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Sinistra"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Video Recenti"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centrato"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Carica Nuovo Video"
 
-#: ../../view/theme/quattro/config.php:68
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Schema colori"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag rimosso"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Dimensione caratteri post"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Rimuovi il tag"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Dimensione caratteri nelle aree di testo"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Seleziona un tag da rimuovere: "
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Oggetto non trovato"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Imposta la larghezza del tema"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Modifica messaggio"
 
-#: ../../boot.php:650
-msgid "Delete this item?"
-msgstr "Cancellare questo elemento?"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Titolo e ora di inizio dell'evento sono richiesti."
 
-#: ../../boot.php:653
-msgid "show fewer"
-msgstr "mostra di meno"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l j F"
 
-#: ../../boot.php:920
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "aggiornamento %s fallito. Guarda i log di errore."
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Modifca l'evento"
 
-#: ../../boot.php:922
-#, php-format
-msgid "Update Error at %s"
-msgstr "Errore aggiornamento a %s"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Crea un nuovo evento"
 
-#: ../../boot.php:1032
-msgid "Create a New Account"
-msgstr "Crea un nuovo account"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Precendente"
 
-#: ../../boot.php:1057 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Esci"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Successivo"
 
-#: ../../boot.php:1058 ../../include/nav.php:91
-msgid "Login"
-msgstr "Accedi"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "ora:minuti"
 
-#: ../../boot.php:1060
-msgid "Nickname or Email address: "
-msgstr "Nome utente o indirizzo email: "
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Dettagli dell'evento"
 
-#: ../../boot.php:1061
-msgid "Password: "
-msgstr "Password: "
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti."
 
-#: ../../boot.php:1062
-msgid "Remember me"
-msgstr "Ricordati di me"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "L'evento inizia:"
 
-#: ../../boot.php:1065
-msgid "Or login using OpenID: "
-msgstr "O entra con OpenID:"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Richiesto"
 
-#: ../../boot.php:1071
-msgid "Forgot your password?"
-msgstr "Hai dimenticato la password?"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "La data/ora di fine non è definita"
 
-#: ../../boot.php:1074
-msgid "Website Terms of Service"
-msgstr "Condizioni di servizio del sito web "
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "L'evento finisce:"
 
-#: ../../boot.php:1075
-msgid "terms of service"
-msgstr "condizioni del servizio"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Visualizza con il fuso orario di chi legge"
 
-#: ../../boot.php:1077
-msgid "Website Privacy Policy"
-msgstr "Politiche di privacy del sito"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descrizione:"
 
-#: ../../boot.php:1078
-msgid "privacy policy"
-msgstr "politiche di privacy"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titolo:"
 
-#: ../../boot.php:1207
-msgid "Requested account is not available."
-msgstr "L'account richiesto non è disponibile."
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Condividi questo evento"
 
-#: ../../boot.php:1286 ../../boot.php:1390
-msgid "Edit profile"
-msgstr "Modifica il profilo"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "File"
 
-#: ../../boot.php:1352
-msgid "Message"
-msgstr "Messaggio"
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr "Esporta account"
 
-#: ../../boot.php:1360 ../../include/nav.php:169
-msgid "Profiles"
-msgstr "Profili"
+#: ../../mod/uexport.php:72
+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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."
 
-#: ../../boot.php:1360
-msgid "Manage/edit profiles"
-msgstr "Gestisci/modifica i profili"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr "Esporta tutto"
 
-#: ../../boot.php:1489 ../../boot.php:1575
-msgid "g A l F d"
-msgstr "g A l d F"
+#: ../../mod/uexport.php:73
+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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"
+
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- seleziona -"
 
-#: ../../boot.php:1490 ../../boot.php:1576
-msgid "F d"
-msgstr "d F"
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importa"
 
-#: ../../boot.php:1535 ../../boot.php:1616
-msgid "[today]"
-msgstr "[oggi]"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Muovi account"
 
-#: ../../boot.php:1547
-msgid "Birthday Reminders"
-msgstr "Promemoria compleanni"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Puoi importare un account da un altro server Friendica."
 
-#: ../../boot.php:1548
-msgid "Birthdays this week:"
-msgstr "Compleanni questa settimana:"
+#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."
 
-#: ../../boot.php:1609
-msgid "[No description]"
-msgstr "[Nessuna descrizione]"
+#: ../../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 "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"
 
-#: ../../boot.php:1627
-msgid "Event Reminders"
-msgstr "Promemoria"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "File account"
 
-#: ../../boot.php:1628
-msgid "Events this week:"
-msgstr "Eventi di questa settimana:"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""
 
-#: ../../boot.php:1861 ../../include/nav.php:76
-msgid "Status"
-msgstr "Stato"
+#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
+#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
 
-#: ../../boot.php:1864
-msgid "Status Messages and Posts"
-msgstr "Messaggi di stato e post"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contatto aggiunto"
 
-#: ../../boot.php:1871
-msgid "Profile Details"
-msgstr "Dettagli del profilo"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "Questo è Friendica, versione"
 
-#: ../../boot.php:1888
-msgid "Events and Calendar"
-msgstr "Eventi e calendario"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "in esecuzione all'indirizzo web"
 
-#: ../../boot.php:1895
-msgid "Only You Can See This"
-msgstr "Solo tu puoi vedere questo"
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Funzionalità generali"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Segnalazioni di bug e problemi: visita"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Profili multipli"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Possibilità di creare profili multipli"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugin/addon/applicazioni instalate"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funzionalità di composizione dei post"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Nessun plugin/addons/applicazione installata"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Editor visuale"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggerimento di amicizia inviato."
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Abilita l'editor visuale"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggerisci amici"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Anteprima dei post"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggerisci un amico a %s"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppo creato."
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Widget della barra laterale nella pagina Rete"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossibile creare il gruppo."
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Cerca per data"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppo non trovato."
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Permette di filtrare i post per data"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Il nome del gruppo è cambiato."
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Filtra gruppi"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Crea un gruppo di amici/contatti."
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nome del gruppo:"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Filtro reti"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppo rimosso."
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Abilita il widget per mostare i post solo per la rete selezionata"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossibile rimuovere il gruppo."
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Salva i termini cercati per riutilizzarli"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Modifica gruppo"
 
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Schede pagina Rete"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membri"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Scheda Personali"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nessun profilo"
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Guida:"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Scheda Nuovi"
+#: ../../mod/help.php:90 ../../index.php:231
+msgid "Not Found"
+msgstr "Non trovato"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"
+#: ../../mod/help.php:93 ../../index.php:234
+msgid "Page not found."
+msgstr "Pagina non trovata."
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr "Scheda Link Condivisi"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Nessun contatto."
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Abilita la scheda per mostrare solo i post che contengono link"
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Benvenuto su %s"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Strumenti per mesasggi/commenti"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accesso negato."
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Eliminazione multipla"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Il file supera la dimensione massima di %d"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Caricamento del file non riuscito."
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Modifica i post inviati"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "La dimensione dell'immagine supera il limite di %d"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Modifica e correggi messaggi e commenti dopo averli inviati"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Impossibile caricare l'immagine."
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Aggiunta tag"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Caricamento immagine fallito."
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Permette di aggiungere tag ai post già esistenti"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite totale degli inviti superato."
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Cateorie post"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: non è un indirizzo email valido."
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Aggiungi categorie ai tuoi post"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Unisiciti a noi su Friendica"
 
-#: ../../include/features.php:59 ../../include/contact_widgets.php:103
-msgid "Saved Folders"
-msgstr "Cartelle Salvate"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito."
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Permette di archiviare i post in cartelle"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: la consegna del messaggio fallita."
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Non mi piace"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d messaggio inviato."
+msgstr[1] "%d messaggi inviati."
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Permetti di inviare \"non mi piace\" ai messaggi"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Non hai altri inviti disponibili"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Post preferiti"
+#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Permette di segnare i post preferiti con una stella"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Uscita effettuata."
+#: ../../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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."
 
-#: ../../include/auth.php:128
+#: ../../mod/invite.php:126
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."
 
-#: ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Il messaggio riportato era:"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Invia inviti"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Inizia:"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Inserisci gli indirizzi email, uno per riga:"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Finisce:"
+#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Il tuo messaggio:"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F Y"
+#: ../../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 "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Sarà necessario fornire questo codice invito: $invite_code"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Compleanno:"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Una volta registrato, connettiti con me dal mio profilo:"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Età:"
+#: ../../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 "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "per %1$d %2$s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tag:"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Nessun destinatario selezionato."
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religione:"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossibile controllare la tua posizione di origine."
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Interessi:"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Il messaggio non puo' essere inviato."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informazioni su contatti e social network:"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Errore recuperando il messaggio."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Interessi musicali:"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Messaggio inviato."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Libri, letteratura:"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nessun destinatario."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisione:"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Invia un messaggio privato"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/danza/cultura/intrattenimento:"
+#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amore:"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "A:"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Lavoro:"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Oggetto:"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Scuola:"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversione Ora"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[nessun oggetto]"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "su Last.fm"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Ora UTC: %s"
 
-#: ../../include/text.php:276
-msgid "prev"
-msgstr "prec"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso orario corrente: %s"
 
-#: ../../include/text.php:278
-msgid "first"
-msgstr "primo"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Ora locale convertita: %s"
 
-#: ../../include/text.php:307
-msgid "last"
-msgstr "ultimo"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selezionare il tuo fuso orario:"
 
-#: ../../include/text.php:310
-msgid "next"
-msgstr "succ"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informazioni remote sulla privacy non disponibili."
 
-#: ../../include/text.php:328
-msgid "newer"
-msgstr "nuovi"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visibile a:"
 
-#: ../../include/text.php:332
-msgid "older"
-msgstr "vecchi"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nessun account valido trovato."
+
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
+
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Richiesta reimpostazione password su %s"
+
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
 
-#: ../../include/text.php:697
-msgid "No contacts"
-msgstr "Nessun contatto"
+#: ../../mod/lostpass.php:84 ../../boot.php:1151
+msgid "Password Reset"
+msgstr "Reimpostazione password"
 
-#: ../../include/text.php:706
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contatto"
-msgstr[1] "%d contatti"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "La tua password è stata reimpostata come richiesto."
 
-#: ../../include/text.php:819
-msgid "poke"
-msgstr "stuzzica"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "La tua nuova password è"
 
-#: ../../include/text.php:819 ../../include/conversation.php:211
-msgid "poked"
-msgstr "toccato"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Salva o copia la tua nuova password, quindi"
 
-#: ../../include/text.php:820
-msgid "ping"
-msgstr "invia un ping"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "clicca qui per entrare"
 
-#: ../../include/text.php:820
-msgid "pinged"
-msgstr "inviato un ping"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
 
-#: ../../include/text.php:821
-msgid "prod"
-msgstr "pungola"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "La tua password presso %s è stata cambiata"
 
-#: ../../include/text.php:821
-msgid "prodded"
-msgstr "pungolato"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Hai dimenticato la password?"
 
-#: ../../include/text.php:822
-msgid "slap"
-msgstr "schiaffeggia"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Inserisci il tuo indirizzo email per reimpostare la password."
 
-#: ../../include/text.php:822
-msgid "slapped"
-msgstr "schiaffeggiato"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Nome utente o email: "
 
-#: ../../include/text.php:823
-msgid "finger"
-msgstr "tocca"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reimposta"
 
-#: ../../include/text.php:823
-msgid "fingered"
-msgstr "toccato"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistema in manutenzione"
 
-#: ../../include/text.php:824
-msgid "rebuff"
-msgstr "respingi"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gestisci indentità e/o pagine"
 
-#: ../../include/text.php:824
-msgid "rebuffed"
-msgstr "respinto"
+#: ../../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 "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
 
-#: ../../include/text.php:836
-msgid "happy"
-msgstr "felice"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Seleziona un'identità da gestire:"
 
-#: ../../include/text.php:837
-msgid "sad"
-msgstr "triste"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profili corrispondenti"
 
-#: ../../include/text.php:838
-msgid "mellow"
-msgstr "rilassato"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
 
-#: ../../include/text.php:839
-msgid "tired"
-msgstr "stanco"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "è interessato a:"
 
-#: ../../include/text.php:840
-msgid "perky"
-msgstr "vivace"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossibile trovare le informazioni del contatto."
 
-#: ../../include/text.php:841
-msgid "angry"
-msgstr "arrabbiato"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Vuoi veramente cancellare questo messaggio?"
 
-#: ../../include/text.php:842
-msgid "stupified"
-msgstr "stupefatto"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Messaggio eliminato."
 
-#: ../../include/text.php:843
-msgid "puzzled"
-msgstr "confuso"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversazione rimossa."
 
-#: ../../include/text.php:844
-msgid "interested"
-msgstr "interessato"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nessun messaggio."
 
-#: ../../include/text.php:845
-msgid "bitter"
-msgstr "risentito"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Mittente sconosciuto - %s"
 
-#: ../../include/text.php:846
-msgid "cheerful"
-msgstr "giocoso"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Tu e %s"
 
-#: ../../include/text.php:847
-msgid "alive"
-msgstr "vivo"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e Tu"
 
-#: ../../include/text.php:848
-msgid "annoyed"
-msgstr "annoiato"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Elimina la conversazione"
 
-#: ../../include/text.php:849
-msgid "anxious"
-msgstr "ansioso"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D d M Y - G:i"
 
-#: ../../include/text.php:850
-msgid "cranky"
-msgstr "irritabile"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d messaggio"
+msgstr[1] "%d messaggi"
 
-#: ../../include/text.php:851
-msgid "disturbed"
-msgstr "disturbato"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Messaggio non disponibile."
 
-#: ../../include/text.php:852
-msgid "frustrated"
-msgstr "frustato"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Elimina il messaggio"
 
-#: ../../include/text.php:853
-msgid "motivated"
-msgstr "motivato"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
 
-#: ../../include/text.php:854
-msgid "relaxed"
-msgstr "rilassato"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Invia la risposta"
 
-#: ../../include/text.php:855
-msgid "surprised"
-msgstr "sorpreso"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Umore"
 
-#: ../../include/text.php:1015
-msgid "Monday"
-msgstr "Lunedì"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Condividi il tuo umore con i tuoi amici"
 
-#: ../../include/text.php:1015
-msgid "Tuesday"
-msgstr "Martedì"
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "Cerca risultati per:"
 
-#: ../../include/text.php:1015
-msgid "Wednesday"
-msgstr "Mercoledì"
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "Ordina per commento"
 
-#: ../../include/text.php:1015
-msgid "Thursday"
-msgstr "Giovedì"
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "Ordina per data commento"
 
-#: ../../include/text.php:1015
-msgid "Friday"
-msgstr "Venerdì"
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "Ordina per invio"
 
-#: ../../include/text.php:1015
-msgid "Saturday"
-msgstr "Sabato"
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "Ordina per data messaggio"
 
-#: ../../include/text.php:1015
-msgid "Sunday"
-msgstr "Domenica"
+#: ../../mod/network.php:444 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Personale"
 
-#: ../../include/text.php:1019
-msgid "January"
-msgstr "Gennaio"
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
+msgstr "Messaggi che ti citano o coinvolgono"
 
-#: ../../include/text.php:1019
-msgid "February"
-msgstr "Febbraio"
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "Nuovo"
 
-#: ../../include/text.php:1019
-msgid "March"
-msgstr "Marzo"
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - per data"
 
-#: ../../include/text.php:1019
-msgid "April"
-msgstr "Aprile"
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "Links condivisi"
 
-#: ../../include/text.php:1019
-msgid "May"
-msgstr "Maggio"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "Link Interessanti"
 
-#: ../../include/text.php:1019
-msgid "June"
-msgstr "Giugno"
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Preferiti"
 
-#: ../../include/text.php:1019
-msgid "July"
-msgstr "Luglio"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Messaggi preferiti"
 
-#: ../../include/text.php:1019
-msgid "August"
-msgstr "Agosto"
+#: ../../mod/network.php:546
+#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
+msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
 
-#: ../../include/text.php:1019
-msgid "September"
-msgstr "Settembre"
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
 
-#: ../../include/text.php:1019
-msgid "October"
-msgstr "Ottobre"
+#: ../../mod/network.php:596 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Nessun gruppo"
 
-#: ../../include/text.php:1019
-msgid "November"
-msgstr "Novembre"
+#: ../../mod/network.php:607 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Il gruppo è vuoto"
 
-#: ../../include/text.php:1019
-msgid "December"
-msgstr "Dicembre"
+#: ../../mod/network.php:611 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Gruppo: "
 
-#: ../../include/text.php:1124
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "Contatto:"
 
-#: ../../include/text.php:1151 ../../include/text.php:1163
-msgid "Click to open/close"
-msgstr "Clicca per aprire/chiudere"
+#: ../../mod/network.php:623
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
 
-#: ../../include/text.php:1336 ../../include/user.php:237
-msgid "default"
-msgstr "default"
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "Contatto non valido."
 
-#: ../../include/text.php:1348
-msgid "Select an alternate language"
-msgstr "Seleziona una diversa lingua"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "L'identificativo della richiesta non è valido."
 
-#: ../../include/text.php:1558
-msgid "activity"
-msgstr "attività"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Scarta"
 
-#: ../../include/text.php:1561
-msgid "post"
-msgstr "messaggio"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../include/text.php:1716
-msgid "Item filed"
-msgstr "Messaggio salvato"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Mostra richieste ignorate"
 
-#: ../../include/dba.php:44
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Non trovo le informazioni DNS per il database server '%s'"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Nascondi richieste ignorate"
 
-#: ../../include/items.php:1764 ../../include/datetime.php:472
-#, php-format
-msgid "%s's birthday"
-msgstr "Compleanno di %s"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Tipo di notifica: "
 
-#: ../../include/items.php:1765 ../../include/datetime.php:473
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Buon compleanno %s"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Amico suggerito"
 
-#: ../../include/items.php:3446
-msgid "A new person is sharing with you at "
-msgstr "Una nuova persona sta condividendo con te da "
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerito da %s"
 
-#: ../../include/items.php:3446
-msgid "You have a new follower at "
-msgstr "Una nuova persona ti segue su "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Invia una attività \"è ora amico con\""
 
-#: ../../include/items.php:3965
-msgid "Do you really want to delete this item?"
-msgstr "Vuoi veramente cancellare questo elemento?"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "se applicabile"
 
-#: ../../include/items.php:4160
-msgid "Archives"
-msgstr "Archivi"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Dice di conoscerti: "
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "(nessun oggetto)"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "si"
 
-#: ../../include/delivery.php:468 ../../include/notifier.php:785
-#: ../../include/enotify.php:28
-msgid "noreply"
-msgstr "nessuna risposta"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "no"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Notifica di condivisione dal network Diaspora*"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Approva come: "
 
-#: ../../include/diaspora.php:2262
-msgid "Attachments:"
-msgstr "Allegati:"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Amico"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL di connessione mancante."
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Condivisore"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Ammiratore"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Richiesta amicizia/connessione"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Qualcuno inizia a seguirti"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Non è stato trovato un nome o un autore"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Nessuna presentazione."
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Nessun URL puo' essere associato a questo indirizzo."
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "a %s è piaciuto il messaggio di %s"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "a %s non è piaciuto il messaggio di %s"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s è ora amico di %s"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a creato un nuovo messaggio"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s ha commentato il messaggio di %s"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossibile recuperare informazioni sul contatto."
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Nessuna nuova."
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "segue"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Notifiche dalla rete"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Ciao"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Nessuna nuova notifica di sistema."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Carica una foto per il profilo."
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Notifiche di sistema"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Ciao "
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Nessuna nuova."
 
-#: ../../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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Notifiche personali"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Maschio"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Nessuna nuova."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Femmina"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Notifiche bacheca"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Al momento maschio"
+#: ../../mod/photos.php:51 ../../boot.php:1957
+msgid "Photo Albums"
+msgstr "Album foto"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Al momento femmina"
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
+msgid "Contact Photos"
+msgstr "Foto dei contatti"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Prevalentemente maschio"
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Carica nuove foto"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Prevalentemente femmina"
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "I dati di questo contatto non sono disponibili"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album non trovato."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Rimuovi album"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transessuale"
+#: ../../mod/photos.php:197
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Ermafrodito"
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Rimuovi foto"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr "Vuoi veramente cancellare questa foto?"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non specificato"
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s è stato taggato in %2$s da %3$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Altro"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "una foto"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "L'immagine supera il limite di"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Maschi"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Il file dell'immagine è vuoto."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmine"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "Nessuna foto selezionata"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/photos.php:1088
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbica"
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Carica foto"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Nessuna preferenza"
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Nome nuovo album: "
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisessuale"
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "o nome di un album esistente: "
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosessuale"
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "Non creare un post per questo upload"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Astinente"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Permessi"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vergine"
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "Foto privata"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviato"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr "Foto pubblica"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Modifica album"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Un sacco"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Mostra nuove foto per prime"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Asessuato"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Mostra vecchie foto per prime"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Vedi foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitario"
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponibile"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Foto non disponibile"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Non disponibile"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Vedi foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "è cotto/a"
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Modifica foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "infatuato/a"
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Usa come foto del profilo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Disponibile a un incontro"
+#: ../../mod/photos.php:1351 ../../mod/content.php:643
+#: ../../object/Item.php:113
+msgid "Private Message"
+msgstr "Messaggio privato"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infedele"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Vedi dimensione intera"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sesso-dipendente"
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Tag: "
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:279
-#: ../../include/user.php:283
-msgid "Friends"
-msgstr "Amici"
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Rimuovi tutti i tag]"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amici con benefici"
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "Ruota a destra"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "Ruota a sinistra"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Impegnato"
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Nuovo nome dell'album"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Sposato"
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Titolo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "immaginariamente sposato/a"
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Aggiungi tag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coinquilino"
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr "Foto privata"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "diritto comune"
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr "Foto pubblica"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Felice"
+#: ../../mod/photos.php:1529 ../../mod/content.php:707
+#: ../../object/Item.php:232
+msgid "I like this (toggle)"
+msgstr "Mi piace (clic per cambiare)"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Non guarda"
+#: ../../mod/photos.php:1530 ../../mod/content.php:708
+#: ../../object/Item.php:233
+msgid "I don't like this (toggle)"
+msgstr "Non mi piace (clic per cambiare)"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Scambista"
+#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
+#: ../../mod/photos.php:1676 ../../mod/content.php:730
+#: ../../object/Item.php:650
+msgid "This is you"
+msgstr "Questo sei tu"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Tradito"
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732
+#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670
+msgid "Comment"
+msgstr "Commento"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separato"
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Foto recenti"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instabile"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Benvenuto su Friendica"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorziato"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Cose da fare per i Nuovi Utenti"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "immaginariamente divorziato/a"
+#: ../../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 "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Vedovo"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Come Iniziare"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Passo-Passo"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "E' complicato"
+#: ../../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 "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Non interessa"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Vai alle tue Impostazioni"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Chiedimelo"
+#: ../../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 "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
 
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr "Errore decodificando il file account"
+#: ../../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 "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
 
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Carica la foto del profilo"
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr "Errore! Non posso importare questo file: la versione dello schema del database non è compatibile."
+#: ../../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 "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr "Errore! Non posso controllare il nickname"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Modifica il tuo Profilo"
 
-#: ../../include/uimport.php:85
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "L'utente '%s' esiste già su questo server!"
+#: ../../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 "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
 
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr "Errore creando l'utente"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Parole chiave del profilo"
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr "Errore creando il profile dell'utente"
+#: ../../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 "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
 
-#: ../../include/uimport.php:167
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contatto non importato"
-msgstr[1] "%d contatti non importati"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Collegarsi"
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"
+#: ../../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 "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
 
-#: ../../include/plugin.php:439 ../../include/plugin.php:441
-msgid "Click here to upgrade."
-msgstr "Clicca qui per aggiornare."
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
 
-#: ../../include/plugin.php:447
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importare le Email"
 
-#: ../../include/plugin.php:452
-msgid "This action is not available under your subscription plan."
-msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione."
+#: ../../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 "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s ha stuzzicato %2$s"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Vai alla tua pagina Contatti"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "post/elemento"
+#: ../../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 "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Vai all'Elenco del tuo sito"
 
-#: ../../include/conversation.php:728
-msgid "remove"
-msgstr "rimuovi"
+#: ../../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 pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
 
-#: ../../include/conversation.php:732
-msgid "Delete Selected Items"
-msgstr "Cancella elementi selezionati"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trova nuove persone"
 
-#: ../../include/conversation.php:831
-msgid "Follow Thread"
-msgstr "Segui la discussione"
+#: ../../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 "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
 
-#: ../../include/conversation.php:832 ../../include/Contact.php:226
-msgid "View Status"
-msgstr "Visualizza stato"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Raggruppa i tuoi contatti"
 
-#: ../../include/conversation.php:833 ../../include/Contact.php:227
-msgid "View Profile"
-msgstr "Visualizza profilo"
+#: ../../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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
 
-#: ../../include/conversation.php:834 ../../include/Contact.php:228
-msgid "View Photos"
-msgstr "Visualizza foto"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Perchè i miei post non sono pubblici?"
 
-#: ../../include/conversation.php:835 ../../include/Contact.php:229
-#: ../../include/Contact.php:251
-msgid "Network Posts"
-msgstr "Post della Rete"
+#: ../../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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."
 
-#: ../../include/conversation.php:836 ../../include/Contact.php:230
-#: ../../include/Contact.php:251
-msgid "Edit Contact"
-msgstr "Modifica contatti"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Ottenere Aiuto"
 
-#: ../../include/conversation.php:837 ../../include/Contact.php:231
-#: ../../include/Contact.php:251
-msgid "Send PM"
-msgstr "Invia messaggio privato"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Vai alla sezione Guida"
 
-#: ../../include/conversation.php:838 ../../include/Contact.php:225
-msgid "Poke"
-msgstr "Stuzzica"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
 
-#: ../../include/conversation.php:900
-#, php-format
-msgid "%s likes this."
-msgstr "Piace a %s."
+#: ../../mod/profile.php:21 ../../boot.php:1325
+msgid "Requested profile is not available."
+msgstr "Profilo richiesto non disponibile."
 
-#: ../../include/conversation.php:900
-#, php-format
-msgid "%s doesn't like this."
-msgstr "Non piace a %s."
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Consigli per i Nuovi Utenti"
 
-#: ../../include/conversation.php:905
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "Piace a <span %1$s>%2$d persone</span>."
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Comunicazione Server - Impostazioni"
 
-#: ../../include/conversation.php:908
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "Non piace a <span %1$s>%2$d persone</span>."
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr " Impossibile collegarsi con il database."
 
-#: ../../include/conversation.php:922
-msgid "and"
-msgstr "e"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossibile creare le tabelle."
 
-#: ../../include/conversation.php:928
-#, php-format
-msgid ", and %d other people"
-msgstr "e altre %d persone"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Il tuo Friendica è stato installato."
 
-#: ../../include/conversation.php:930
-#, php-format
-msgid "%s like this."
-msgstr "Piace a %s."
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
 
-#: ../../include/conversation.php:930
-#, php-format
-msgid "%s don't like this."
-msgstr "Non piace a %s."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Leggi il file \"INSTALL.txt\"."
 
-#: ../../include/conversation.php:957 ../../include/conversation.php:975
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visibile a <strong>tutti</strong>"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Controllo sistema"
 
-#: ../../include/conversation.php:959 ../../include/conversation.php:977
-msgid "Please enter a video link/URL:"
-msgstr "Inserisci un collegamento video / URL:"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Controlla ancora"
 
-#: ../../include/conversation.php:960 ../../include/conversation.php:978
-msgid "Please enter an audio link/URL:"
-msgstr "Inserisci un collegamento audio / URL:"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connessione al database"
 
-#: ../../include/conversation.php:961 ../../include/conversation.php:979
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
 
-#: ../../include/conversation.php:963 ../../include/conversation.php:981
-msgid "Where are you right now?"
-msgstr "Dove sei ora?"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
 
-#: ../../include/conversation.php:964
-msgid "Delete item(s)?"
-msgstr "Cancellare questo elemento/i?"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
 
-#: ../../include/conversation.php:1006
-msgid "Post to Email"
-msgstr "Invia a email"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome del database server"
 
-#: ../../include/conversation.php:1062
-msgid "permissions"
-msgstr "permessi"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome utente database"
 
-#: ../../include/conversation.php:1086
-msgid "Post to Groups"
-msgstr "Invia ai Gruppi"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Password utente database"
 
-#: ../../include/conversation.php:1087
-msgid "Post to Contacts"
-msgstr "Invia ai Contatti"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome database"
 
-#: ../../include/conversation.php:1088
-msgid "Private post"
-msgstr "Post privato"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Indirizzo email dell'amministratore del sito"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Aggiungi nuovo contatto"
+#: ../../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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Inserisci posizione o indirizzo web"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esempio: bob@example.com, http://example.com/barbara"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Impostazioni sito"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invito disponibile"
-msgstr[1] "%d inviti disponibili"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Trova persone"
+#: ../../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 "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Inserisci un nome o un interesse"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Percorso eseguibile PHP"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Connetti/segui"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Esempi: Mario Rossi, Pesca"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP da riga di comando"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Profilo causale"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr ""
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Reti"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Versione PHP:"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Tutte le Reti"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr ""
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Tutto"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Categorie"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Finisci questa sessione"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/nav.php:91
-msgid "Sign in"
-msgstr "Entra"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
 
-#: ../../include/nav.php:104
-msgid "Home Page"
-msgstr "Home Page"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/nav.php:108
-msgid "Create an account"
-msgstr "Crea un account"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Genera chiavi di criptazione"
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
-msgstr "Guida e documentazione"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "modulo PHP libCurl"
 
-#: ../../include/nav.php:116
-msgid "Apps"
-msgstr "Applicazioni"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "modulo PHP GD graphics"
 
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
-msgstr "Applicazioni, utilità e giochi aggiuntivi"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "modulo PHP OpenSSL"
 
-#: ../../include/nav.php:118
-msgid "Search site content"
-msgstr "Cerca nel contenuto del sito"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "modulo PHP mysqli"
 
-#: ../../include/nav.php:128
-msgid "Conversations on this site"
-msgstr "Conversazioni su questo sito"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "modulo PHP mb_string"
 
-#: ../../include/nav.php:130
-msgid "Directory"
-msgstr "Elenco"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Modulo mod_rewrite di Apache"
 
-#: ../../include/nav.php:130
-msgid "People directory"
-msgstr "Elenco delle persone"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Conversazioni dai tuoi amici"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
 
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "Reset pagina Rete"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
 
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "Carica la pagina Rete senza nessun filtro"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Richieste di amicizia"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
 
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Vedi tutte le notifiche"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
 
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Segna tutte le notifiche come viste"
+#: ../../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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
 
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Posta privata"
+#: ../../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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
 
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "In arrivo"
+#: ../../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 "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"
 
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Inviati"
+#: ../../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 "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."
 
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Gestisci"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php è scrivibile"
 
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Gestisci altre pagine"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Delegazioni"
+#: ../../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 "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Gestisci/Modifica i profili"
+#: ../../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 "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."
 
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Gestisci/modifica amici e contatti"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."
 
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Configurazione del sito"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 è scrivibile"
 
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navigazione"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."
 
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Mappa del sito"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "La riscrittura degli url funziona"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Sconosciuto | non categorizzato"
+#: ../../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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Blocca immediatamente"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "La creazione delle tabelle del database ha generato errori."
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Shady, spammer, self-marketer"
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Cosa fare ora</h1>"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Lo conosco, ma non ho un'opinione particolare"
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "E' ok, probabilmente innocuo"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Inviato!"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Rispettabile, ha la mia fiducia"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequentemente"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Ogni ora"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Due volte al dì"
+#: ../../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 "Il ridimensionamento del'immagine [%s] è fallito."
 
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Giornalmente"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Settimanalmente"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossibile elaborare l'immagine"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Mensilmente"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Carica un file:"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "Ostatus"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Seleziona un profilo:"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS / Atom"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Carica"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "salta questo passaggio"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "seleziona una foto dai tuoi album"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Ritaglia immagine"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ritaglia l'imagine per una visualizzazione migliore."
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Finito"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Notifica Friendica"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Immagine caricata con successo."
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Grazie,"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Non disponibile."
 
-#: ../../include/enotify.php:21
+#: ../../mod/content.php:626 ../../object/Item.php:362
 #, php-format
-msgid "%s Administrator"
-msgstr "Amministratore %s"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commento"
+msgstr[1] "%d commenti"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/content.php:707 ../../object/Item.php:232
+msgid "like"
+msgstr "mi piace"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
+#: ../../mod/content.php:708 ../../object/Item.php:233
+msgid "dislike"
+msgstr "non mi piace"
+
+#: ../../mod/content.php:710 ../../object/Item.php:235
+msgid "Share this"
+msgstr "Condividi questo"
+
+#: ../../mod/content.php:710 ../../object/Item.php:235
+msgid "share"
+msgstr "condividi"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s."
+#: ../../mod/content.php:734 ../../object/Item.php:654
+msgid "Bold"
+msgstr "Grassetto"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s ti ha inviato %2$s"
+#: ../../mod/content.php:735 ../../object/Item.php:655
+msgid "Italic"
+msgstr "Corsivo"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "un messaggio privato"
+#: ../../mod/content.php:736 ../../object/Item.php:656
+msgid "Underline"
+msgstr "Sottolineato"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
+#: ../../mod/content.php:737 ../../object/Item.php:657
+msgid "Quote"
+msgstr "Citazione"
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]"
+#: ../../mod/content.php:738 ../../object/Item.php:658
+msgid "Code"
+msgstr "Codice"
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]"
+#: ../../mod/content.php:739 ../../object/Item.php:659
+msgid "Image"
+msgstr "Immagine"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]"
+#: ../../mod/content.php:740 ../../object/Item.php:660
+msgid "Link"
+msgstr "Link"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d"
+#: ../../mod/content.php:741 ../../object/Item.php:661
+msgid "Video"
+msgstr "Video"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s ha commentato un elemento che stavi seguendo."
+#: ../../mod/content.php:776 ../../object/Item.php:211
+msgid "add star"
+msgstr "aggiungi a speciali"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Visita %s per vedere e/o commentare la conversazione"
+#: ../../mod/content.php:777 ../../object/Item.php:212
+msgid "remove star"
+msgstr "rimuovi da speciali"
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
+#: ../../mod/content.php:778 ../../object/Item.php:213
+msgid "toggle star status"
+msgstr "Inverti stato preferito"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s ha scritto sulla tua bacheca su %2$s"
+#: ../../mod/content.php:781 ../../object/Item.php:216
+msgid "starred"
+msgstr "preferito"
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]"
+#: ../../mod/content.php:782 ../../object/Item.php:221
+msgid "add tag"
+msgstr "aggiungi tag"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notifica] %s ti ha taggato"
+#: ../../mod/content.php:786 ../../object/Item.php:130
+msgid "save to folder"
+msgstr "salva nella cartella"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s ti ha taggato su %2$s"
+#: ../../mod/content.php:877 ../../object/Item.php:308
+msgid "to"
+msgstr "a"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]ti ha taggato[/url]."
+#: ../../mod/content.php:878 ../../object/Item.php:310
+msgid "Wall-to-Wall"
+msgstr "Da bacheca a bacheca"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato"
+#: ../../mod/content.php:879 ../../object/Item.php:311
+msgid "via Wall-To-Wall:"
+msgstr "da bacheca a bacheca"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s ti ha stuzzicato su %2$s"
+#: ../../object/Item.php:92
+msgid "This entry was edited"
+msgstr "Questa voce è stata modificata"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]."
+#: ../../object/Item.php:309
+msgid "via"
+msgstr "via"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+msgid "Theme settings"
+msgstr "Impostazioni tema"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s ha taggato il tuo post su %2$s"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]"
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Dimensione del carattere di messaggi e commenti"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Imposta la larghezza del tema"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Schema colori"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s."
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Altezza della linea di testo di messaggi e commenti"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Puoi visitare il suo profilo presso %s"
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr "Imposta la dimensione della colonna centrale"
 
-#: ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Visita %s per approvare o rifiutare la presentazione."
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr "Imposta lo schema dei colori"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:609
+msgid "Set twitter search term"
+msgstr "Imposta il termine di ricerca per twitter"
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s"
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:578
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Nome:"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:579
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+msgid "Community Pages"
+msgstr "Pagine Comunitarie"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Visita %s per approvare o rifiutare il suggerimento."
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+msgid "Earth Layers"
+msgstr ""
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "E' richiesto un invito."
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+msgid "Community Profiles"
+msgstr "Profili Comunità"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "L'invito non puo' essere verificato."
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+msgid "Help or @NewHere ?"
+msgstr "Serve aiuto? Sei nuovo?"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Url OpenID non valido"
+#: ../../view/theme/diabook/config.php:167
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+msgid "Connect Services"
+msgstr "Servizi di conessione"
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "Inserisci le informazioni richieste."
+#: ../../view/theme/diabook/config.php:168
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+msgid "Find Friends"
+msgstr "Trova Amici"
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "Usa un nome più corto."
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr "Ultimi tweets"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "Il nome è troppo corto."
+#: ../../view/theme/diabook/config.php:170
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+msgid "Last users"
+msgstr "Ultimi utenti"
 
-#: ../../include/user.php:98
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
+#: ../../view/theme/diabook/config.php:171
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+msgid "Last photos"
+msgstr "Ultime foto"
 
-#: ../../include/user.php:103
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
+#: ../../view/theme/diabook/config.php:172
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+msgid "Last likes"
+msgstr "Ultimi \"mi piace\""
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "L'indirizzo email non è valido."
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "I tuoi contatti"
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "Non puoi usare quell'email."
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
+msgstr "Elenco Locale"
 
-#: ../../include/user.php:122
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
+msgstr ""
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "Nome utente già registrato. Scegline un altro."
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
+msgstr "Ultimi Tweets"
 
-#: ../../include/user.php:138
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Mostra/Nascondi riquadri nella colonna destra"
 
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Imposta schema colori"
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "C'è stato un errore durante la registrazione. Prova ancora."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Allineamento"
 
-#: ../../include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Sinistra"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Visibile a tutti"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centrato"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
-msgid "Image/photo"
-msgstr "Immagine/foto"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Dimensione caratteri post"
 
-#: ../../include/bbcode.php:272
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"external-link\">post</a>"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Dimensione caratteri nelle aree di testo"
 
-#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
-msgid "$1 wrote:"
-msgstr "$1 ha scritto:"
+#: ../../index.php:405
+msgid "toggle mobile"
+msgstr "commuta tema mobile"
 
-#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
-msgid "Encrypted content"
-msgstr "Contenuto criptato"
+#: ../../boot.php:669
+msgid "Delete this item?"
+msgstr "Cancellare questo elemento?"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "Contenuto incorporato"
+#: ../../boot.php:672
+msgid "show fewer"
+msgstr "mostra di meno"
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "Embed disabilitato"
+#: ../../boot.php:999
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "aggiornamento %s fallito. Guarda i log di errore."
 
-#: ../../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 gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
+#: ../../boot.php:1001
+#, php-format
+msgid "Update Error at %s"
+msgstr "Errore aggiornamento a %s"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Gruppo predefinito per i nuovi contatti"
+#: ../../boot.php:1111
+msgid "Create a New Account"
+msgstr "Crea un nuovo account"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tutti"
+#: ../../boot.php:1139
+msgid "Nickname or Email address: "
+msgstr "Nome utente o indirizzo email: "
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "modifica"
+#: ../../boot.php:1140
+msgid "Password: "
+msgstr "Password: "
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Modifica gruppo"
+#: ../../boot.php:1141
+msgid "Remember me"
+msgstr "Ricordati di me"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Crea un nuovo gruppo"
+#: ../../boot.php:1144
+msgid "Or login using OpenID: "
+msgstr "O entra con OpenID:"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatti in nessun gruppo."
+#: ../../boot.php:1150
+msgid "Forgot your password?"
+msgstr "Hai dimenticato la password?"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "tolto dai seguiti"
+#: ../../boot.php:1153
+msgid "Website Terms of Service"
+msgstr "Condizioni di servizio del sito web "
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Varie"
+#: ../../boot.php:1154
+msgid "terms of service"
+msgstr "condizioni del servizio"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "anno"
+#: ../../boot.php:1156
+msgid "Website Privacy Policy"
+msgstr "Politiche di privacy del sito"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "mese"
+#: ../../boot.php:1157
+msgid "privacy policy"
+msgstr "politiche di privacy"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "giorno"
+#: ../../boot.php:1286
+msgid "Requested account is not available."
+msgstr "L'account richiesto non è disponibile."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "mai"
+#: ../../boot.php:1365 ../../boot.php:1469
+msgid "Edit profile"
+msgstr "Modifica il profilo"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "meno di un secondo fa"
+#: ../../boot.php:1431
+msgid "Message"
+msgstr "Messaggio"
 
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "anni"
+#: ../../boot.php:1439
+msgid "Manage/edit profiles"
+msgstr "Gestisci/modifica i profili"
 
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "mesi"
+#: ../../boot.php:1568 ../../boot.php:1654
+msgid "g A l F d"
+msgstr "g A l d F"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "settimana"
+#: ../../boot.php:1569 ../../boot.php:1655
+msgid "F d"
+msgstr "d F"
 
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "settimane"
+#: ../../boot.php:1614 ../../boot.php:1695
+msgid "[today]"
+msgstr "[oggi]"
 
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "giorni"
+#: ../../boot.php:1626
+msgid "Birthday Reminders"
+msgstr "Promemoria compleanni"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "ora"
+#: ../../boot.php:1627
+msgid "Birthdays this week:"
+msgstr "Compleanni questa settimana:"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "ore"
+#: ../../boot.php:1688
+msgid "[No description]"
+msgstr "[Nessuna descrizione]"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuto"
+#: ../../boot.php:1706
+msgid "Event Reminders"
+msgstr "Promemoria"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minuti"
+#: ../../boot.php:1707
+msgid "Events this week:"
+msgstr "Eventi di questa settimana:"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "secondo"
+#: ../../boot.php:1943
+msgid "Status Messages and Posts"
+msgstr "Messaggi di stato e post"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "secondi"
+#: ../../boot.php:1950
+msgid "Profile Details"
+msgstr "Dettagli del profilo"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s fa"
+#: ../../boot.php:1961 ../../boot.php:1964
+msgid "Videos"
+msgstr "Video"
 
-#: ../../include/network.php:875
-msgid "view full size"
-msgstr "vedi a schermo intero"
+#: ../../boot.php:1974
+msgid "Events and Calendar"
+msgstr "Eventi e calendario"
+
+#: ../../boot.php:1981
+msgid "Only You Can See This"
+msgstr "Solo tu puoi vedere questo"
index 79d7c19b3f74c505abc245ebb3a2db9b9ac1aa75..28a4dc8e3c3d4f6f50d2751d667e46e0e488dfd2 100644 (file)
@@ -5,390 +5,403 @@ function string_plural_select_it($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Private Message"] = "Messaggio privato";
-$a->strings["Edit"] = "Modifica";
-$a->strings["Select"] = "Seleziona";
-$a->strings["Delete"] = "Rimuovi";
-$a->strings["save to folder"] = "salva nella cartella";
-$a->strings["add star"] = "aggiungi a speciali";
-$a->strings["remove star"] = "rimuovi da speciali";
-$a->strings["toggle star status"] = "Inverti stato preferito";
-$a->strings["starred"] = "preferito";
-$a->strings["add tag"] = "aggiungi tag";
-$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
-$a->strings["like"] = "mi piace";
-$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
-$a->strings["dislike"] = "non mi piace";
-$a->strings["Share this"] = "Condividi questo";
-$a->strings["share"] = "condividi";
-$a->strings["Categories:"] = "Categorie:";
-$a->strings["Filed under:"] = "Archiviato in:";
-$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
-$a->strings["to"] = "a";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
-$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
-$a->strings["%s from %s"] = "%s da %s";
-$a->strings["Comment"] = "Commento";
-$a->strings["Please wait"] = "Attendi";
-$a->strings["%d comment"] = array(
-       0 => "%d commento",
-       1 => "%d commenti",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "commento",
-);
-$a->strings["show more"] = "mostra di più";
-$a->strings["This is you"] = "Questo sei tu";
-$a->strings["Submit"] = "Invia";
-$a->strings["Bold"] = "Grassetto";
-$a->strings["Italic"] = "Corsivo";
-$a->strings["Underline"] = "Sottolineato";
-$a->strings["Quote"] = "Citazione";
-$a->strings["Code"] = "Codice";
-$a->strings["Image"] = "Immagine";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Anteprima";
-$a->strings["Not Found"] = "Non trovato";
-$a->strings["Page not found."] = "Pagina non trovata.";
-$a->strings["Permission denied"] = "Permesso negato";
-$a->strings["Permission denied."] = "Permesso negato.";
-$a->strings["toggle mobile"] = "commuta tema mobile";
-$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
-$a->strings["Contact not found."] = "Contatto non trovato.";
-$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
-$a->strings["Suggest Friends"] = "Suggerisci amici";
-$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
-$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
-$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
-       1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
-);
-$a->strings["Introduction complete."] = "Presentazione completa.";
-$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
-$a->strings["Profile unavailable."] = "Profilo non disponibile.";
-$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
-$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
-$a->strings["Invalid locator"] = "Invalid locator";
-$a->strings["Invalid email address."] = "Indirizzo email non valido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita.";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
-$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
-$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
-$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
+$a->strings["Profile"] = "Profilo";
+$a->strings["Full Name:"] = "Nome completo:";
+$a->strings["Gender:"] = "Genere:";
+$a->strings["j F, Y"] = "j F Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Compleanno:";
+$a->strings["Age:"] = "Età:";
+$a->strings["Status:"] = "Stato:";
+$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["Hometown:"] = "Paese natale:";
+$a->strings["Tags:"] = "Tag:";
+$a->strings["Political Views:"] = "Orientamento politico:";
+$a->strings["Religion:"] = "Religione:";
+$a->strings["About:"] = "Informazioni:";
+$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
+$a->strings["Likes:"] = "Mi piace:";
+$a->strings["Dislikes:"] = "Non mi piace:";
+$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
+$a->strings["Musical interests:"] = "Interessi musicali:";
+$a->strings["Books, literature:"] = "Libri, letteratura:";
+$a->strings["Television:"] = "Televisione:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
+$a->strings["Love/Romance:"] = "Amore:";
+$a->strings["Work/employment:"] = "Lavoro:";
+$a->strings["School/education:"] = "Scuola:";
+$a->strings["Male"] = "Maschio";
+$a->strings["Female"] = "Femmina";
+$a->strings["Currently Male"] = "Al momento maschio";
+$a->strings["Currently Female"] = "Al momento femmina";
+$a->strings["Mostly Male"] = "Prevalentemente maschio";
+$a->strings["Mostly Female"] = "Prevalentemente femmina";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transessuale";
+$a->strings["Hermaphrodite"] = "Ermafrodito";
+$a->strings["Neuter"] = "Neutro";
+$a->strings["Non-specific"] = "Non specificato";
+$a->strings["Other"] = "Altro";
+$a->strings["Undecided"] = "Indeciso";
+$a->strings["Males"] = "Maschi";
+$a->strings["Females"] = "Femmine";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbica";
+$a->strings["No Preference"] = "Nessuna preferenza";
+$a->strings["Bisexual"] = "Bisessuale";
+$a->strings["Autosexual"] = "Autosessuale";
+$a->strings["Abstinent"] = "Astinente";
+$a->strings["Virgin"] = "Vergine";
+$a->strings["Deviant"] = "Deviato";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Un sacco";
+$a->strings["Nonsexual"] = "Asessuato";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Solitario";
+$a->strings["Available"] = "Disponibile";
+$a->strings["Unavailable"] = "Non disponibile";
+$a->strings["Has crush"] = "è cotto/a";
+$a->strings["Infatuated"] = "infatuato/a";
+$a->strings["Dating"] = "Disponibile a un incontro";
+$a->strings["Unfaithful"] = "Infedele";
+$a->strings["Sex Addict"] = "Sesso-dipendente";
+$a->strings["Friends"] = "Amici";
+$a->strings["Friends/Benefits"] = "Amici con benefici";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Impegnato";
+$a->strings["Married"] = "Sposato";
+$a->strings["Imaginarily married"] = "immaginariamente sposato/a";
+$a->strings["Partners"] = "Partners";
+$a->strings["Cohabiting"] = "Coinquilino";
+$a->strings["Common law"] = "diritto comune";
+$a->strings["Happy"] = "Felice";
+$a->strings["Not looking"] = "Non guarda";
+$a->strings["Swinger"] = "Scambista";
+$a->strings["Betrayed"] = "Tradito";
+$a->strings["Separated"] = "Separato";
+$a->strings["Unstable"] = "Instabile";
+$a->strings["Divorced"] = "Divorziato";
+$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a";
+$a->strings["Widowed"] = "Vedovo";
+$a->strings["Uncertain"] = "Incerto";
+$a->strings["It's complicated"] = "E' complicato";
+$a->strings["Don't care"] = "Non interessa";
+$a->strings["Ask me"] = "Chiedimelo";
+$a->strings["stopped following"] = "tolto dai seguiti";
+$a->strings["Poke"] = "Stuzzica";
+$a->strings["View Status"] = "Visualizza stato";
+$a->strings["View Profile"] = "Visualizza profilo";
+$a->strings["View Photos"] = "Visualizza foto";
+$a->strings["Network Posts"] = "Post della Rete";
+$a->strings["Edit Contact"] = "Modifica contatti";
+$a->strings["Send PM"] = "Invia messaggio privato";
+$a->strings["Image/photo"] = "Immagine/foto";
+$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"external-link\">post</a>";
+$a->strings["$1 wrote:"] = "$1 ha scritto:";
+$a->strings["Encrypted content"] = "Contenuto criptato";
+$a->strings["Visible to everybody"] = "Visibile a tutti";
+$a->strings["show"] = "mostra";
+$a->strings["don't show"] = "non mostrare";
+$a->strings["Logged out."] = "Uscita effettuata.";
+$a->strings["Login failed."] = "Accesso fallito.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
+$a->strings["The error message was:"] = "Il messaggio riportato era:";
+$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
+$a->strings["Starts:"] = "Inizia:";
+$a->strings["Finishes:"] = "Finisce:";
+$a->strings["Location:"] = "Posizione:";
 $a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso.";
-$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
-$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
-$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
-$a->strings["Hide this contact"] = "Nascondi questo contatto";
-$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
-$a->strings["Confirm"] = "Conferma";
-$a->strings["[Name Withheld]"] = "[Nome Nascosto]";
-$a->strings["Public access denied."] = "Accesso negato.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connetti un email come follower</strike> (in arrivo)";
-$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>."] = "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
-$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Rispondi:";
-$a->strings["Does %s know you?"] = "%s ti conosce?";
-$a->strings["Yes"] = "Si";
-$a->strings["No"] = "No";
-$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
+$a->strings["Connect URL missing."] = "URL di connessione mancante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
+$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
+$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
+$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
+$a->strings["following"] = "segue";
+$a->strings["An invitation is required."] = "E' richiesto un invito.";
+$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
+$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
+$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
+$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
+$a->strings["Name too short."] = "Il nome è troppo corto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
+$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
+$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
+$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
+$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
+$a->strings["default"] = "default";
+$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
+$a->strings["Profile Photos"] = "Foto del profilo";
+$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
+$a->strings["Block immediately"] = "Blocca immediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
+$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
+$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
+$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
+$a->strings["Frequently"] = "Frequentemente";
+$a->strings["Hourly"] = "Ogni ora";
+$a->strings["Twice daily"] = "Due volte al dì";
+$a->strings["Daily"] = "Giornalmente";
+$a->strings["Weekly"] = "Settimanalmente";
+$a->strings["Monthly"] = "Mensilmente";
 $a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["OStatus"] = "Ostatus";
+$a->strings["RSS/Atom"] = "RSS / Atom";
+$a->strings["Email"] = "Email";
 $a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
-$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
-$a->strings["Submit Request"] = "Invia richiesta";
-$a->strings["Cancel"] = "Annulla";
-$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
-$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
-$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
-$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
-$a->strings["Discard"] = "Scarta";
-$a->strings["Ignore"] = "Ignora";
-$a->strings["System"] = "Sistema";
-$a->strings["Network"] = "Rete";
-$a->strings["Personal"] = "Personale";
-$a->strings["Home"] = "Home";
-$a->strings["Introductions"] = "Presentazioni";
-$a->strings["Messages"] = "Messaggi";
-$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
-$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
-$a->strings["Notification type: "] = "Tipo di notifica: ";
-$a->strings["Friend Suggestion"] = "Amico suggerito";
-$a->strings["suggested by %s"] = "sugerito da %s";
-$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
-$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\"";
-$a->strings["if applicable"] = "se applicabile";
-$a->strings["Approve"] = "Approva";
-$a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
-$a->strings["yes"] = "si";
-$a->strings["no"] = "no";
-$a->strings["Approve as: "] = "Approva come: ";
-$a->strings["Friend"] = "Amico";
-$a->strings["Sharer"] = "Condivisore";
-$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
-$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione";
-$a->strings["New Follower"] = "Qualcuno inizia a seguirti";
-$a->strings["No introductions."] = "Nessuna presentazione.";
-$a->strings["Notifications"] = "Notifiche";
-$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
-$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
-$a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
-$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio";
-$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s";
-$a->strings["No more network notifications."] = "Nessuna nuova.";
-$a->strings["Network Notifications"] = "Notifiche dalla rete";
-$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema.";
-$a->strings["System Notifications"] = "Notifiche di sistema";
-$a->strings["No more personal notifications."] = "Nessuna nuova.";
-$a->strings["Personal Notifications"] = "Notifiche personali";
-$a->strings["No more home notifications."] = "Nessuna nuova.";
-$a->strings["Home Notifications"] = "Notifiche bacheca";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
+$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
+$a->strings["Connect"] = "Connetti";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invito disponibile",
+       1 => "%d inviti disponibili",
+);
+$a->strings["Find People"] = "Trova persone";
+$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
+$a->strings["Connect/Follow"] = "Connetti/segui";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
+$a->strings["Find"] = "Trova";
+$a->strings["Friend Suggestions"] = "Contatti suggeriti";
+$a->strings["Similar Interests"] = "Interessi simili";
+$a->strings["Random Profile"] = "Profilo causale";
+$a->strings["Invite Friends"] = "Invita amici";
+$a->strings["Networks"] = "Reti";
+$a->strings["All Networks"] = "Tutte le Reti";
+$a->strings["Saved Folders"] = "Cartelle Salvate";
+$a->strings["Everything"] = "Tutto";
+$a->strings["Categories"] = "Categorie";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contatto in comune",
+       1 => "%d contatti in comune",
+);
+$a->strings["show more"] = "mostra di più";
+$a->strings[" on Last.fm"] = "su Last.fm";
+$a->strings["view full size"] = "vedi a schermo intero";
+$a->strings["Miscellaneous"] = "Varie";
+$a->strings["year"] = "anno";
+$a->strings["month"] = "mese";
+$a->strings["day"] = "giorno";
+$a->strings["never"] = "mai";
+$a->strings["less than a second ago"] = "meno di un secondo fa";
+$a->strings["years"] = "anni";
+$a->strings["months"] = "mesi";
+$a->strings["week"] = "settimana";
+$a->strings["weeks"] = "settimane";
+$a->strings["days"] = "giorni";
+$a->strings["hour"] = "ora";
+$a->strings["hours"] = "ore";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minuti";
+$a->strings["second"] = "secondo";
+$a->strings["seconds"] = "secondi";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
+$a->strings["%s's birthday"] = "Compleanno di %s";
+$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
+$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione.";
+$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione.";
+$a->strings["(no subject)"] = "(nessun oggetto)";
+$a->strings["noreply"] = "nessuna risposta";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
+$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
 $a->strings["photo"] = "foto";
 $a->strings["status"] = "stato";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
-$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
-$a->strings["Login failed."] = "Accesso fallito.";
-$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:";
-$a->strings["Source input: "] = "Sorgente:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):";
-$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): "] = "Sorgente (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate.";
-$a->strings["Site"] = "Sito";
-$a->strings["Users"] = "Utenti";
-$a->strings["Plugins"] = "Plugin";
-$a->strings["Themes"] = "Temi";
-$a->strings["DB updates"] = "Aggiornamenti Database";
-$a->strings["Logs"] = "Log";
-$a->strings["Admin"] = "Amministrazione";
-$a->strings["Plugin Features"] = "Impostazioni Plugins";
-$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
+$a->strings["Attachments:"] = "Allegati:";
+$a->strings["[Name Withheld]"] = "[Nome Nascosto]";
+$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da ";
+$a->strings["You have a new follower at "] = "Una nuova persona ti segue su ";
 $a->strings["Item not found."] = "Elemento non trovato.";
-$a->strings["Normal Account"] = "Account normale";
-$a->strings["Soapbox Account"] = "Account per comunicati e annunci";
-$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
-$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
-$a->strings["Blog Account"] = "Account Blog";
-$a->strings["Private Forum"] = "Forum Privato";
-$a->strings["Message queues"] = "Code messaggi";
-$a->strings["Administration"] = "Amministrazione";
-$a->strings["Summary"] = "Sommario";
-$a->strings["Registered users"] = "Utenti registrati";
-$a->strings["Pending registrations"] = "Registrazioni in attesa";
-$a->strings["Version"] = "Versione";
-$a->strings["Active plugins"] = "Plugin attivi";
-$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
-$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili";
-$a->strings["Multi user instance"] = "Istanza multi utente";
-$a->strings["Closed"] = "Chiusa";
-$a->strings["Requires approval"] = "Richiede l'approvazione";
-$a->strings["Open"] = "Aperta";
-$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina";
-$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)";
-$a->strings["Registration"] = "Registrazione";
-$a->strings["File upload"] = "Caricamento file";
-$a->strings["Policies"] = "Politiche";
-$a->strings["Advanced"] = "Avanzate";
-$a->strings["Performance"] = "Performance";
-$a->strings["Site name"] = "Nome del sito";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["System language"] = "Lingua di sistema";
-$a->strings["System theme"] = "Tema di sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>";
-$a->strings["Mobile system theme"] = "Tema mobile di sistema";
-$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili";
-$a->strings["SSL link policy"] = "Gestione link SSL";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL";
-$a->strings["'Share' element"] = "Elemento 'Share'";
-$a->strings["Activates the bbcode element 'share' for repeating items."] = "Attiva l'elemento bbcode 'share' per i post condivisi.";
-$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente.";
-$a->strings["Single user instance"] = "Instanza a singolo utente";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato";
-$a->strings["Maximum image size"] = "Massima dimensione immagini";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
-$a->strings["Maximum image length"] = "Massima lunghezza immagine";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite.";
-$a->strings["JPEG image quality"] = "Qualità immagini JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena.";
-$a->strings["Register policy"] = "Politica di registrazione";
-$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto.";
-$a->strings["Register text"] = "Testo registrazione";
-$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
-$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo.";
-$a->strings["Allowed friend domains"] = "Domini amici consentiti";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
-$a->strings["Allowed email domains"] = "Domini email consentiti";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
-$a->strings["Block public"] = "Blocca pagine pubbliche";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato.";
-$a->strings["Force publish"] = "Forza publicazione";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito.";
-$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
-$a->strings["Allow threaded items"] = "Permetti commenti nidificati";
-$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito.";
-$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici.";
-$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy";
-$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine.";
-$a->strings["OpenID support"] = "Supporto OpenID";
-$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login";
-$a->strings["Fullname check"] = "Controllo nome completo";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam";
-$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8";
-$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8";
-$a->strings["Show Community Page"] = "Mostra pagina Comunità";
-$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito.";
-$a->strings["Enable OStatus support"] = "Abilita supporto OStatus";
-$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."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati.";
-$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati.";
-$a->strings["Verify SSL"] = "Verifica SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati.";
-$a->strings["Proxy user"] = "Utente Proxy";
-$a->strings["Proxy URL"] = "URL Proxy";
-$a->strings["Network timeout"] = "Timeout rete";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato).";
-$a->strings["Delivery interval"] = "Intervallo di invio";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati.";
-$a->strings["Poll interval"] = "Intervallo di poll";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio.";
-$a->strings["Maximum Load Average"] = "Massimo carico medio";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50.";
-$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri.";
-$a->strings["Path to item cache"] = "Percorso cache elementi";
-$a->strings["Cache duration in seconds"] = "Durata della cache in secondi";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno).";
-$a->strings["Path for lock file"] = "Percorso al file di lock";
-$a->strings["Temp path"] = "Percorso file temporanei";
-$a->strings["Base path to installation"] = "Percorso base all'installazione";
-$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come  di successo";
-$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema.";
-$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine.";
-$a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata.";
-$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
-$a->strings["Failed Updates"] = "Aggiornamenti falliti";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato.";
-$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)";
-$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s utente bloccato/sbloccato",
-       1 => "%s utenti bloccati/sbloccati",
+$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?";
+$a->strings["Yes"] = "Si";
+$a->strings["Cancel"] = "Annulla";
+$a->strings["Permission denied."] = "Permesso negato.";
+$a->strings["Archives"] = "Archivi";
+$a->strings["General Features"] = "Funzionalità generali";
+$a->strings["Multiple Profiles"] = "Profili multipli";
+$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli";
+$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post";
+$a->strings["Richtext Editor"] = "Editor visuale";
+$a->strings["Enable richtext editor"] = "Abilita l'editor visuale";
+$a->strings["Post Preview"] = "Anteprima dei post";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli";
+$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete";
+$a->strings["Search by Date"] = "Cerca per data";
+$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data";
+$a->strings["Group Filter"] = "Filtra gruppi";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato";
+$a->strings["Network Filter"] = "Filtro reti";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata";
+$a->strings["Saved Searches"] = "Ricerche salvate";
+$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli";
+$a->strings["Network Tabs"] = "Schede pagina Rete";
+$a->strings["Network Personal Tab"] = "Scheda Personali";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato";
+$a->strings["Network New Tab"] = "Scheda Nuovi";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)";
+$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link";
+$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti";
+$a->strings["Multiple Deletion"] = "Eliminazione multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola";
+$a->strings["Edit Sent Posts"] = "Modifica i post inviati";
+$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati";
+$a->strings["Tagging"] = "Aggiunta tag";
+$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti";
+$a->strings["Post Categories"] = "Cateorie post";
+$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post";
+$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle";
+$a->strings["Dislike Posts"] = "Non mi piace";
+$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi";
+$a->strings["Star Posts"] = "Post preferiti";
+$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
+$a->strings["prev"] = "prec";
+$a->strings["first"] = "primo";
+$a->strings["last"] = "ultimo";
+$a->strings["next"] = "succ";
+$a->strings["newer"] = "nuovi";
+$a->strings["older"] = "vecchi";
+$a->strings["No contacts"] = "Nessun contatto";
+$a->strings["%d Contact"] = array(
+       0 => "%d contatto",
+       1 => "%d contatti",
 );
-$a->strings["%s user deleted"] = array(
-       0 => "%s utente cancellato",
-       1 => "%s utenti cancellati",
+$a->strings["View Contacts"] = "Visualizza i contatti";
+$a->strings["Search"] = "Cerca";
+$a->strings["Save"] = "Salva";
+$a->strings["poke"] = "stuzzica";
+$a->strings["poked"] = "toccato";
+$a->strings["ping"] = "invia un ping";
+$a->strings["pinged"] = "inviato un ping";
+$a->strings["prod"] = "pungola";
+$a->strings["prodded"] = "pungolato";
+$a->strings["slap"] = "schiaffeggia";
+$a->strings["slapped"] = "schiaffeggiato";
+$a->strings["finger"] = "tocca";
+$a->strings["fingered"] = "toccato";
+$a->strings["rebuff"] = "respingi";
+$a->strings["rebuffed"] = "respinto";
+$a->strings["happy"] = "felice";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "rilassato";
+$a->strings["tired"] = "stanco";
+$a->strings["perky"] = "vivace";
+$a->strings["angry"] = "arrabbiato";
+$a->strings["stupified"] = "stupefatto";
+$a->strings["puzzled"] = "confuso";
+$a->strings["interested"] = "interessato";
+$a->strings["bitter"] = "risentito";
+$a->strings["cheerful"] = "giocoso";
+$a->strings["alive"] = "vivo";
+$a->strings["annoyed"] = "annoiato";
+$a->strings["anxious"] = "ansioso";
+$a->strings["cranky"] = "irritabile";
+$a->strings["disturbed"] = "disturbato";
+$a->strings["frustrated"] = "frustato";
+$a->strings["motivated"] = "motivato";
+$a->strings["relaxed"] = "rilassato";
+$a->strings["surprised"] = "sorpreso";
+$a->strings["Monday"] = "Lunedì";
+$a->strings["Tuesday"] = "Martedì";
+$a->strings["Wednesday"] = "Mercoledì";
+$a->strings["Thursday"] = "Giovedì";
+$a->strings["Friday"] = "Venerdì";
+$a->strings["Saturday"] = "Sabato";
+$a->strings["Sunday"] = "Domenica";
+$a->strings["January"] = "Gennaio";
+$a->strings["February"] = "Febbraio";
+$a->strings["March"] = "Marzo";
+$a->strings["April"] = "Aprile";
+$a->strings["May"] = "Maggio";
+$a->strings["June"] = "Giugno";
+$a->strings["July"] = "Luglio";
+$a->strings["August"] = "Agosto";
+$a->strings["September"] = "Settembre";
+$a->strings["October"] = "Ottobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Dicembre";
+$a->strings["View Video"] = "Guarda Video";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
+$a->strings["link to source"] = "Collegamento all'originale";
+$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
+$a->strings["event"] = "l'evento";
+$a->strings["activity"] = "attività";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "commento",
 );
-$a->strings["User '%s' deleted"] = "Utente '%s' cancellato";
-$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
-$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
-$a->strings["select all"] = "seleziona tutti";
-$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
-$a->strings["Request date"] = "Data richiesta";
-$a->strings["Name"] = "Nome";
-$a->strings["Email"] = "Email";
-$a->strings["No registrations."] = "Nessuna registrazione.";
-$a->strings["Deny"] = "Nega";
-$a->strings["Block"] = "Blocca";
-$a->strings["Unblock"] = "Sblocca";
-$a->strings["Site admin"] = "Amministrazione sito";
-$a->strings["Account expired"] = "Account scaduto";
-$a->strings["Register date"] = "Data registrazione";
-$a->strings["Last login"] = "Ultimo accesso";
-$a->strings["Last item"] = "Ultimo elemento";
-$a->strings["Account"] = "Account";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?";
-$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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?";
-$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato.";
-$a->strings["Plugin %s enabled."] = "Plugin %s abilitato.";
-$a->strings["Disable"] = "Disabilita";
-$a->strings["Enable"] = "Abilita";
-$a->strings["Toggle"] = "Inverti";
-$a->strings["Settings"] = "Impostazioni";
-$a->strings["Author: "] = "Autore: ";
-$a->strings["Maintainer: "] = "Manutentore: ";
-$a->strings["No themes found."] = "Nessun tema trovato.";
-$a->strings["Screenshot"] = "Anteprima";
-$a->strings["[Experimental]"] = "[Sperimentale]";
-$a->strings["[Unsupported]"] = "[Non supportato]";
-$a->strings["Log settings updated."] = "Impostazioni Log aggiornate.";
-$a->strings["Clear"] = "Pulisci";
-$a->strings["Debugging"] = "Debugging";
-$a->strings["Log file"] = "File di Log";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica.";
-$a->strings["Log level"] = "Livello di Log";
-$a->strings["Update now"] = "Aggiorna adesso";
-$a->strings["Close"] = "Chiudi";
-$a->strings["FTP Host"] = "Indirizzo FTP";
-$a->strings["FTP Path"] = "Percorso FTP";
-$a->strings["FTP User"] = "Utente FTP";
-$a->strings["FTP Password"] = "Pasword FTP";
-$a->strings["New Message"] = "Nuovo messaggio";
-$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
-$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
-$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
-$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
-$a->strings["Message sent."] = "Messaggio inviato.";
-$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?";
-$a->strings["Message deleted."] = "Messaggio eliminato.";
-$a->strings["Conversation removed."] = "Conversazione rimossa.";
+$a->strings["post"] = "messaggio";
+$a->strings["Item filed"] = "Messaggio salvato";
+$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 gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
+$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
+$a->strings["Everybody"] = "Tutti";
+$a->strings["edit"] = "modifica";
+$a->strings["Groups"] = "Gruppi";
+$a->strings["Edit group"] = "Modifica gruppo";
+$a->strings["Create a new group"] = "Crea un nuovo gruppo";
+$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
+$a->strings["add"] = "aggiungi";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
+$a->strings["post/item"] = "post/elemento";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
+$a->strings["Select"] = "Seleziona";
+$a->strings["Delete"] = "Rimuovi";
+$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
+$a->strings["Categories:"] = "Categorie:";
+$a->strings["Filed under:"] = "Archiviato in:";
+$a->strings["%s from %s"] = "%s da %s";
+$a->strings["View in context"] = "Vedi nel contesto";
+$a->strings["Please wait"] = "Attendi";
+$a->strings["remove"] = "rimuovi";
+$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
+$a->strings["Follow Thread"] = "Segui la discussione";
+$a->strings["%s likes this."] = "Piace a %s.";
+$a->strings["%s doesn't like this."] = "Non piace a %s.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "Piace a <span %1\$s>%2\$d persone</span>.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "Non piace a <span %1\$s>%2\$d persone</span>.";
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = "e altre %d persone";
+$a->strings["%s like this."] = "Piace a %s.";
+$a->strings["%s don't like this."] = "Non piace a %s.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
 $a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
-$a->strings["Send Private Message"] = "Invia un messaggio privato";
-$a->strings["To:"] = "A:";
-$a->strings["Subject:"] = "Oggetto:";
-$a->strings["Your message:"] = "Il tuo messaggio:";
+$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
+$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Save to Folder:"] = "Salva nella Cartella:";
+$a->strings["Where are you right now?"] = "Dove sei ora?";
+$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?";
+$a->strings["Post to Email"] = "Invia a email";
+$a->strings["Share"] = "Condividi";
 $a->strings["Upload photo"] = "Carica foto";
-$a->strings["Insert web link"] = "Inserisci link";
-$a->strings["No messages."] = "Nessun messaggio.";
-$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
-$a->strings["You and %s"] = "Tu e %s";
-$a->strings["%s and You"] = "%s e Tu";
-$a->strings["Delete conversation"] = "Elimina la conversazione";
-$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
-$a->strings["%d message"] = array(
-       0 => "%d messaggio",
-       1 => "%d messaggi",
-);
-$a->strings["Message not available."] = "Messaggio non disponibile.";
-$a->strings["Delete message"] = "Elimina il messaggio";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
-$a->strings["Send Reply"] = "Invia la risposta";
-$a->strings["Item not found"] = "Oggetto non trovato";
-$a->strings["Edit post"] = "Modifica messaggio";
 $a->strings["upload photo"] = "carica foto";
 $a->strings["Attach file"] = "Allega file";
 $a->strings["attach file"] = "allega file";
+$a->strings["Insert web link"] = "Inserisci link";
 $a->strings["web link"] = "link web";
 $a->strings["Insert video link"] = "Inserire collegamento video";
 $a->strings["video link"] = "link video";
@@ -398,134 +411,425 @@ $a->strings["Set your location"] = "La tua posizione";
 $a->strings["set location"] = "posizione";
 $a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser";
 $a->strings["clear location"] = "canc. pos.";
+$a->strings["Set title"] = "Scegli un titolo";
+$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
 $a->strings["Permission settings"] = "Impostazioni permessi";
+$a->strings["permissions"] = "permessi";
 $a->strings["CC: email addresses"] = "CC: indirizzi email";
 $a->strings["Public post"] = "Messaggio pubblico";
-$a->strings["Set title"] = "Scegli un titolo";
-$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
-$a->strings["Profile not found."] = "Profilo non trovato.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
-$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
-$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
-$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
-$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
-$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
-$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
-$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
-$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
-$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per 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'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
-$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
-$a->strings["Connection accepted at %s"] = "Connession accettata su %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s";
-$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Modifca l'evento";
-$a->strings["link to source"] = "Collegamento all'originale";
-$a->strings["Events"] = "Eventi";
-$a->strings["Create New Event"] = "Crea un nuovo evento";
-$a->strings["Previous"] = "Precendente";
-$a->strings["Next"] = "Successivo";
-$a->strings["hour:minute"] = "ora:minuti";
-$a->strings["Event details"] = "Dettagli dell'evento";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti.";
-$a->strings["Event Starts:"] = "L'evento inizia:";
-$a->strings["Required"] = "Richiesto";
-$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
-$a->strings["Event Finishes:"] = "L'evento finisce:";
-$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
-$a->strings["Description:"] = "Descrizione:";
-$a->strings["Location:"] = "Posizione:";
-$a->strings["Title:"] = "Titolo:";
-$a->strings["Share this event"] = "Condividi questo evento";
+$a->strings["Preview"] = "Anteprima";
+$a->strings["Post to Groups"] = "Invia ai Gruppi";
+$a->strings["Post to Contacts"] = "Invia ai Contatti";
+$a->strings["Private post"] = "Post privato";
+$a->strings["Friendica Notification"] = "Notifica Friendica";
+$a->strings["Thank You,"] = "Grazie,";
+$a->strings["%s Administrator"] = "Amministratore %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s";
+$a->strings["a private message"] = "un messaggio privato";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
+$a->strings["[no subject]"] = "[nessun oggetto]";
+$a->strings["Wall Photos"] = "Foto della bacheca";
+$a->strings["Nothing new here"] = "Niente di nuovo qui";
+$a->strings["Clear notifications"] = "Pulisci le notifiche";
+$a->strings["Logout"] = "Esci";
+$a->strings["End this session"] = "Finisci questa sessione";
+$a->strings["Status"] = "Stato";
+$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
+$a->strings["Your profile page"] = "Pagina del tuo profilo";
 $a->strings["Photos"] = "Foto";
-$a->strings["Files"] = "File";
-$a->strings["Welcome to %s"] = "Benvenuto su %s";
-$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
-$a->strings["Visible to:"] = "Visibile a:";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
-$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine.";
-$a->strings["No recipient."] = "Nessun destinatario.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
+$a->strings["Your photos"] = "Le tue foto";
+$a->strings["Events"] = "Eventi";
+$a->strings["Your events"] = "I tuoi eventi";
+$a->strings["Personal notes"] = "Note personali";
+$a->strings["Your personal photos"] = "Le tue foto personali";
+$a->strings["Login"] = "Accedi";
+$a->strings["Sign in"] = "Entra";
+$a->strings["Home"] = "Home";
+$a->strings["Home Page"] = "Home Page";
+$a->strings["Register"] = "Registrati";
+$a->strings["Create an account"] = "Crea un account";
+$a->strings["Help"] = "Guida";
+$a->strings["Help and documentation"] = "Guida e documentazione";
+$a->strings["Apps"] = "Applicazioni";
+$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi";
+$a->strings["Search site content"] = "Cerca nel contenuto del sito";
+$a->strings["Community"] = "Comunità";
+$a->strings["Conversations on this site"] = "Conversazioni su questo sito";
+$a->strings["Directory"] = "Elenco";
+$a->strings["People directory"] = "Elenco delle persone";
+$a->strings["Network"] = "Rete";
+$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
+$a->strings["Network Reset"] = "Reset pagina Rete";
+$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro";
+$a->strings["Introductions"] = "Presentazioni";
+$a->strings["Friend Requests"] = "Richieste di amicizia";
+$a->strings["Notifications"] = "Notifiche";
+$a->strings["See all notifications"] = "Vedi tutte le notifiche";
+$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste";
+$a->strings["Messages"] = "Messaggi";
+$a->strings["Private mail"] = "Posta privata";
+$a->strings["Inbox"] = "In arrivo";
+$a->strings["Outbox"] = "Inviati";
+$a->strings["New Message"] = "Nuovo messaggio";
+$a->strings["Manage"] = "Gestisci";
+$a->strings["Manage other pages"] = "Gestisci altre pagine";
+$a->strings["Delegations"] = "Delegazioni";
+$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
+$a->strings["Settings"] = "Impostazioni";
+$a->strings["Account settings"] = "Parametri account";
+$a->strings["Profiles"] = "Profili";
+$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili";
+$a->strings["Contacts"] = "Contatti";
+$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
+$a->strings["Admin"] = "Amministrazione";
+$a->strings["Site setup and configuration"] = "Configurazione del sito";
+$a->strings["Navigation"] = "Navigazione";
+$a->strings["Site map"] = "Mappa del sito";
+$a->strings["Embedded content"] = "Contenuto incorporato";
+$a->strings["Embedding disabled"] = "Embed disabilitato";
+$a->strings["Error decoding account file"] = "Errore decodificando il file account";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname";
+$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!";
+$a->strings["User creation error"] = "Errore creando l'utente";
+$a->strings["User profile creation error"] = "Errore creando il profile dell'utente";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contatto non importato",
+       1 => "%d contatti non importati",
+);
+$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password";
+$a->strings["Welcome "] = "Ciao";
+$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
+$a->strings["Welcome back "] = "Ciao ";
+$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla.";
+$a->strings["Profile not found."] = "Profilo non trovato.";
+$a->strings["Profile deleted."] = "Profilo elminato.";
+$a->strings["Profile-"] = "Profilo-";
+$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
+$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
+$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
+$a->strings["Marital Status"] = "Stato civile";
+$a->strings["Romantic Partner"] = "Partner romantico";
+$a->strings["Likes"] = "Mi piace";
+$a->strings["Dislikes"] = "Non mi piace";
+$a->strings["Work/Employment"] = "Lavoro/Impiego";
+$a->strings["Religion"] = "Religione";
+$a->strings["Political Views"] = "Orientamento Politico";
+$a->strings["Gender"] = "Sesso";
+$a->strings["Sexual Preference"] = "Preferenza sessuale";
+$a->strings["Homepage"] = "Homepage";
+$a->strings["Interests"] = "Interessi";
+$a->strings["Address"] = "Indirizzo";
+$a->strings["Location"] = "Posizione";
+$a->strings["Profile updated."] = "Profilo aggiornato.";
+$a->strings[" and "] = "e ";
+$a->strings["public profile"] = "profilo pubblico";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita  %2\$s di %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
+$a->strings["No"] = "No";
+$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
+$a->strings["Submit"] = "Invia";
+$a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
+$a->strings["View this profile"] = "Visualizza questo profilo";
+$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
+$a->strings["Clone this profile"] = "Clona questo profilo";
+$a->strings["Delete this profile"] = "Elimina questo profilo";
+$a->strings["Profile Name:"] = "Nome del profilo:";
+$a->strings["Your Full Name:"] = "Il tuo nome completo:";
+$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
+$a->strings["Your Gender:"] = "Il tuo sesso:";
+$a->strings["Birthday (%s):"] = "Compleanno (%s)";
+$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
+$a->strings["Locality/City:"] = "Località:";
+$a->strings["Postal/Zip Code:"] = "CAP:";
+$a->strings["Country:"] = "Nazione:";
+$a->strings["Region/State:"] = "Regione/Stato:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
+$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Dal [data]:";
+$a->strings["Homepage URL:"] = "Homepage:";
+$a->strings["Religious Views:"] = "Orientamento religioso:";
+$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
+$a->strings["Private Keywords:"] = "Parole chiave private:";
+$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
+$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
+$a->strings["Hobbies/Interests"] = "Hobby/interessi";
+$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
+$a->strings["Musical interests"] = "Interessi musicali";
+$a->strings["Books, literature"] = "Libri, letteratura";
+$a->strings["Television"] = "Televisione";
+$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
+$a->strings["Love/romance"] = "Amore";
+$a->strings["Work/employment"] = "Lavoro/impiego";
+$a->strings["School/education"] = "Scuola/educazione";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
+$a->strings["Age: "] = "Età : ";
+$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
+$a->strings["Change profile photo"] = "Cambia la foto del profilo";
+$a->strings["Create New Profile"] = "Crea un nuovo profilo";
+$a->strings["Profile Image"] = "Immagine del Profilo";
+$a->strings["visible to everybody"] = "visibile a tutti";
+$a->strings["Edit visibility"] = "Modifica visibilità";
+$a->strings["Permission denied"] = "Permesso negato";
+$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
+$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
+$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
+$a->strings["Visible To"] = "Visibile a";
+$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
+$a->strings["Personal Notes"] = "Note personali";
+$a->strings["Public access denied."] = "Accesso negato.";
+$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
+$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
 $a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
 $a->strings["Edit contact"] = "Modifca contatto";
 $a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo";
-$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
-$a->strings["running at web location"] = "in esecuzione all'indirizzo web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
-$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
-$a->strings["Remove My Account"] = "Rimuovi il mio account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
-$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
-$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
-$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
-$a->strings["Wall Photos"] = "Foto della bacheca";
-$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
-$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
-$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
-$a->strings["Please login to continue."] = "Effettua il login per continuare.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
-$a->strings["Photo Albums"] = "Album foto";
-$a->strings["Contact Photos"] = "Foto dei contatti";
-$a->strings["Upload New Photos"] = "Carica nuove foto";
-$a->strings["everybody"] = "tutti";
-$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
-$a->strings["Profile Photos"] = "Foto del profilo";
-$a->strings["Album not found."] = "Album non trovato.";
-$a->strings["Delete Album"] = "Rimuovi album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
-$a->strings["Delete Photo"] = "Rimuovi foto";
-$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
-$a->strings["a photo"] = "una foto";
-$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
-$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
-$a->strings["No photos selected"] = "Nessuna foto selezionata";
-$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili.";
-$a->strings["Upload Photos"] = "Carica foto";
-$a->strings["New album name: "] = "Nome nuovo album: ";
-$a->strings["or existing album name: "] = "o nome di un album esistente: ";
-$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
-$a->strings["Permissions"] = "Permessi";
-$a->strings["Show to Groups"] = "Mostra ai gruppi";
-$a->strings["Show to Contacts"] = "Mostra ai contatti";
-$a->strings["Private Photo"] = "Foto privata";
-$a->strings["Public Photo"] = "Foto pubblica";
-$a->strings["Edit Album"] = "Modifica album";
-$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
-$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
-$a->strings["View Photo"] = "Vedi foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
-$a->strings["Photo not available"] = "Foto non disponibile";
-$a->strings["View photo"] = "Vedi foto";
-$a->strings["Edit photo"] = "Modifica foto";
-$a->strings["Use as profile photo"] = "Usa come foto del profilo";
-$a->strings["View Full Size"] = "Vedi dimensione intera";
-$a->strings["Tags: "] = "Tag: ";
-$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
-$a->strings["Rotate CW (right)"] = "Ruota a destra";
-$a->strings["Rotate CCW (left)"] = "Ruota a sinistra";
-$a->strings["New album name"] = "Nuovo nome dell'album";
-$a->strings["Caption"] = "Titolo";
-$a->strings["Add a Tag"] = "Aggiungi tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Foto privata";
-$a->strings["Public photo"] = "Foto pubblica";
-$a->strings["Share"] = "Condividi";
-$a->strings["View Album"] = "Sfoglia l'album";
-$a->strings["Recent Photos"] = "Foto recenti";
-$a->strings["No profile"] = "Nessun profilo";
+$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
+$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
+$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
+$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
+$a->strings["{0} liked %s's post"] = "a {0} piace il post di  %s";
+$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
+$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
+$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
+$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate.";
+$a->strings["Site"] = "Sito";
+$a->strings["Users"] = "Utenti";
+$a->strings["Plugins"] = "Plugin";
+$a->strings["Themes"] = "Temi";
+$a->strings["DB updates"] = "Aggiornamenti Database";
+$a->strings["Logs"] = "Log";
+$a->strings["Plugin Features"] = "Impostazioni Plugins";
+$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
+$a->strings["Normal Account"] = "Account normale";
+$a->strings["Soapbox Account"] = "Account per comunicati e annunci";
+$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
+$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
+$a->strings["Blog Account"] = "Account Blog";
+$a->strings["Private Forum"] = "Forum Privato";
+$a->strings["Message queues"] = "Code messaggi";
+$a->strings["Administration"] = "Amministrazione";
+$a->strings["Summary"] = "Sommario";
+$a->strings["Registered users"] = "Utenti registrati";
+$a->strings["Pending registrations"] = "Registrazioni in attesa";
+$a->strings["Version"] = "Versione";
+$a->strings["Active plugins"] = "Plugin attivi";
+$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
+$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili";
+$a->strings["Never"] = "Mai";
+$a->strings["Multi user instance"] = "Istanza multi utente";
+$a->strings["Closed"] = "Chiusa";
+$a->strings["Requires approval"] = "Richiede l'approvazione";
+$a->strings["Open"] = "Aperta";
+$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina";
+$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)";
+$a->strings["Registration"] = "Registrazione";
+$a->strings["File upload"] = "Caricamento file";
+$a->strings["Policies"] = "Politiche";
+$a->strings["Advanced"] = "Avanzate";
+$a->strings["Performance"] = "Performance";
+$a->strings["Site name"] = "Nome del sito";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["System language"] = "Lingua di sistema";
+$a->strings["System theme"] = "Tema di sistema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>";
+$a->strings["Mobile system theme"] = "Tema mobile di sistema";
+$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili";
+$a->strings["SSL link policy"] = "Gestione link SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL";
+$a->strings["'Share' element"] = "Elemento 'Share'";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "Attiva l'elemento bbcode 'share' per i post condivisi.";
+$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente.";
+$a->strings["Single user instance"] = "Instanza a singolo utente";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato";
+$a->strings["Maximum image size"] = "Massima dimensione immagini";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
+$a->strings["Maximum image length"] = "Massima lunghezza immagine";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite.";
+$a->strings["JPEG image quality"] = "Qualità immagini JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena.";
+$a->strings["Register policy"] = "Politica di registrazione";
+$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto.";
+$a->strings["Register text"] = "Testo registrazione";
+$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
+$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo.";
+$a->strings["Allowed friend domains"] = "Domini amici consentiti";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
+$a->strings["Allowed email domains"] = "Domini email consentiti";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
+$a->strings["Block public"] = "Blocca pagine pubbliche";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato.";
+$a->strings["Force publish"] = "Forza publicazione";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito.";
+$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
+$a->strings["Allow threaded items"] = "Permetti commenti nidificati";
+$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito.";
+$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici.";
+$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps.";
+$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"] = "Non inglobare immagini private nei post";
+$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["Block multiple registrations"] = "Blocca registrazioni multiple";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine.";
+$a->strings["OpenID support"] = "Supporto OpenID";
+$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login";
+$a->strings["Fullname check"] = "Controllo nome completo";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam";
+$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8";
+$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8";
+$a->strings["Show Community Page"] = "Mostra pagina Comunità";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito.";
+$a->strings["Enable OStatus support"] = "Abilita supporto OStatus";
+$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."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati.";
+$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"] = "Abilita il supporto a Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati.";
+$a->strings["Verify SSL"] = "Verifica SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati.";
+$a->strings["Proxy user"] = "Utente Proxy";
+$a->strings["Proxy URL"] = "URL Proxy";
+$a->strings["Network timeout"] = "Timeout rete";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato).";
+$a->strings["Delivery interval"] = "Intervallo di invio";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati.";
+$a->strings["Poll interval"] = "Intervallo di poll";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio.";
+$a->strings["Maximum Load Average"] = "Massimo carico medio";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50.";
+$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri.";
+$a->strings["Path to item cache"] = "Percorso cache elementi";
+$a->strings["Cache duration in seconds"] = "Durata della cache in secondi";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno).";
+$a->strings["Path for lock file"] = "Percorso al file di lock";
+$a->strings["Temp path"] = "Percorso file temporanei";
+$a->strings["Base path to installation"] = "Percorso base all'installazione";
+$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come  di successo";
+$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema.";
+$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine.";
+$a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata.";
+$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
+$a->strings["Failed Updates"] = "Aggiornamenti falliti";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato.";
+$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)";
+$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s utente bloccato/sbloccato",
+       1 => "%s utenti bloccati/sbloccati",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s utente cancellato",
+       1 => "%s utenti cancellati",
+);
+$a->strings["User '%s' deleted"] = "Utente '%s' cancellato";
+$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato";
+$a->strings["User '%s' blocked"] = "Utente '%s' bloccato";
+$a->strings["select all"] = "seleziona tutti";
+$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
+$a->strings["Request date"] = "Data richiesta";
+$a->strings["Name"] = "Nome";
+$a->strings["No registrations."] = "Nessuna registrazione.";
+$a->strings["Approve"] = "Approva";
+$a->strings["Deny"] = "Nega";
+$a->strings["Block"] = "Blocca";
+$a->strings["Unblock"] = "Sblocca";
+$a->strings["Site admin"] = "Amministrazione sito";
+$a->strings["Account expired"] = "Account scaduto";
+$a->strings["Register date"] = "Data registrazione";
+$a->strings["Last login"] = "Ultimo accesso";
+$a->strings["Last item"] = "Ultimo elemento";
+$a->strings["Account"] = "Account";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?";
+$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'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?";
+$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato.";
+$a->strings["Plugin %s enabled."] = "Plugin %s abilitato.";
+$a->strings["Disable"] = "Disabilita";
+$a->strings["Enable"] = "Abilita";
+$a->strings["Toggle"] = "Inverti";
+$a->strings["Author: "] = "Autore: ";
+$a->strings["Maintainer: "] = "Manutentore: ";
+$a->strings["No themes found."] = "Nessun tema trovato.";
+$a->strings["Screenshot"] = "Anteprima";
+$a->strings["[Experimental]"] = "[Sperimentale]";
+$a->strings["[Unsupported]"] = "[Non supportato]";
+$a->strings["Log settings updated."] = "Impostazioni Log aggiornate.";
+$a->strings["Clear"] = "Pulisci";
+$a->strings["Enable Debugging"] = "Abilita Debugging";
+$a->strings["Log file"] = "File di Log";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica.";
+$a->strings["Log level"] = "Livello di Log";
+$a->strings["Update now"] = "Aggiorna adesso";
+$a->strings["Close"] = "Chiudi";
+$a->strings["FTP Host"] = "Indirizzo FTP";
+$a->strings["FTP Path"] = "Percorso FTP";
+$a->strings["FTP User"] = "Utente FTP";
+$a->strings["FTP Password"] = "Pasword FTP";
+$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
+$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
+$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica.";
+$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
+$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
+$a->strings["Friends of %s"] = "Amici di %s";
+$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
+$a->strings["Remove term"] = "Rimuovi termine";
+$a->strings["No results."] = "Nessun risultato.";
+$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
+$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
+$a->strings["Please login to continue."] = "Effettua il login per continuare.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
 $a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni.";
 $a->strings["Failed to send email message. Here is the message that failed."] = "Errore nell'invio del messaggio email. Questo è il messaggio non inviato.";
@@ -543,32 +847,35 @@ $a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Ma
 $a->strings["Your Email Address: "] = "Il tuo indirizzo email: ";
 $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>'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
 $a->strings["Choose a nickname: "] = "Scegli un nome utente: ";
-$a->strings["Register"] = "Registrati";
-$a->strings["No valid account found."] = "Nessun account valido trovato.";
-$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
-$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
-$a->strings["Password Reset"] = "Reimpostazione password";
-$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
-$a->strings["Your new password is"] = "La tua nuova password è";
-$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
-$a->strings["click here to login"] = "clicca qui per entrare";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
-$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata";
-$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password.";
-$a->strings["Nickname or Email: "] = "Nome utente o email: ";
-$a->strings["Reset"] = "Reimposta";
-$a->strings["System down for maintenance"] = "Sistema in manutenzione";
+$a->strings["Account approved."] = "Account approvato.";
+$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
+$a->strings["Please login."] = "Accedi.";
 $a->strings["Item not available."] = "Oggetto non disponibile.";
 $a->strings["Item was not found."] = "Oggetto non trovato.";
+$a->strings["Remove My Account"] = "Rimuovi il mio account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
+$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
+$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:";
+$a->strings["Source input: "] = "Sorgente:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):";
+$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): "] = "Sorgente (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Common Friends"] = "Amici in comune";
+$a->strings["No contacts in common."] = "Nessun contatto in comune.";
+$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons.";
 $a->strings["Applications"] = "Applicazioni";
 $a->strings["No installed applications."] = "Nessuna applicazione installata.";
-$a->strings["Help:"] = "Guida:";
-$a->strings["Help"] = "Guida";
 $a->strings["Could not access contact record."] = "Non è possibile accedere al contatto.";
 $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
 $a->strings["Contact updated."] = "Contatto aggiornato.";
+$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
 $a->strings["Contact has been blocked"] = "Il contatto è stato bloccato";
 $a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato";
 $a->strings["Contact has been ignored"] = "Il contatto è ignorato";
@@ -581,18 +888,14 @@ $a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s";
 $a->strings["You are sharing with %s"] = "Stai condividendo con %s";
 $a->strings["%s is sharing with you"] = "%s sta condividendo con te";
 $a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto.";
-$a->strings["Never"] = "Mai";
 $a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)";
 $a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)";
 $a->strings["Suggest friends"] = "Suggerisci amici";
 $a->strings["Network type: %s"] = "Tipo di rete: %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contatto in comune",
-       1 => "%d contatti in comune",
-);
 $a->strings["View all contacts"] = "Vedi tutti i contatti";
 $a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\"";
 $a->strings["Unignore"] = "Non ignorare";
+$a->strings["Ignore"] = "Ignora";
 $a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\"";
 $a->strings["Unarchive"] = "Dearchivia";
 $a->strings["Archive"] = "Archivia";
@@ -615,6 +918,7 @@ $a->strings["Update public posts"] = "Aggiorna messaggi pubblici";
 $a->strings["Currently blocked"] = "Bloccato";
 $a->strings["Currently ignored"] = "Ignorato";
 $a->strings["Currently archived"] = "Al momento archiviato";
+$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili";
 $a->strings["Suggestions"] = "Suggerimenti";
 $a->strings["Suggest potential friends"] = "Suggerisci potenziali amici";
@@ -633,88 +937,9 @@ $a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti";
 $a->strings["Mutual Friendship"] = "Amicizia reciproca";
 $a->strings["is a fan of yours"] = "è un tuo fan";
 $a->strings["you are a fan of"] = "sei un fan di";
-$a->strings["Contacts"] = "Contatti";
 $a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
 $a->strings["Finding: "] = "Ricerca: ";
-$a->strings["Find"] = "Trova";
-$a->strings["Common Friends"] = "Amici in comune";
-$a->strings["No contacts in common."] = "Nessun contatto in comune.";
-$a->strings["Contact added"] = "Contatto aggiunto";
-$a->strings["Import"] = "Importa";
-$a->strings["Move account"] = "Muovi account";
-$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server 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."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora";
-$a->strings["Account file"] = "File account";
-$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
-$a->strings["Friends of %s"] = "Amici di %s";
-$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
-$a->strings["Tag removed"] = "Tag rimosso";
-$a->strings["Remove Item Tag"] = "Rimuovi il tag";
-$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
-$a->strings["Remove"] = "Rimuovi";
-$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
-$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
-$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
-$a->strings["Getting Started"] = "Come Iniziare";
-$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo";
-$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."] = "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti.";
-$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni";
-$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."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
-$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
-$a->strings["Profile"] = "Profilo";
-$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
-$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
-$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo";
-$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."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
-$a->strings["Profile Keywords"] = "Parole chiave del profilo";
-$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
-$a->strings["Connecting"] = "Collegarsi";
-$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."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
-$a->strings["Importing Emails"] = "Importare le Email";
-$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
-$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti";
-$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."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>";
-$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito";
-$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 pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
-$a->strings["Finding New People"] = "Trova nuove persone";
-$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
-$a->strings["Groups"] = "Gruppi";
-$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti";
-$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
-$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?";
-$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra.";
-$a->strings["Getting Help"] = "Ottenere Aiuto";
-$a->strings["Go to the Help Section"] = "Vai alla sezione Guida";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
-$a->strings["Remove term"] = "Rimuovi termine";
-$a->strings["Saved Searches"] = "Ricerche salvate";
-$a->strings["Search"] = "Cerca";
-$a->strings["No results."] = "Nessun risultato.";
-$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato.";
-$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
-$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito.";
-$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
-$a->strings["%d message sent."] = array(
-       0 => "%d messaggio inviato.",
-       1 => "%d messaggi inviati.",
-);
-$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
-$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."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico.";
-$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri.";
-$a->strings["Send invitations"] = "Invia inviti";
-$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com";
-$a->strings["Account settings"] = "Parametri account";
+$a->strings["everybody"] = "tutti";
 $a->strings["Additional features"] = "Funzionalità aggiuntive";
 $a->strings["Display settings"] = "Impostazioni grafiche";
 $a->strings["Connector settings"] = "Impostazioni connettori";
@@ -729,10 +954,12 @@ $a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate.";
 $a->strings["Features updated"] = "Funzionalità aggiornate";
 $a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
+$a->strings["Wrong password."] = "Password sbagliata.";
 $a->strings["Password changed."] = "Password cambiata.";
 $a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
 $a->strings[" Please use a shorter name."] = " Usa un nome più corto.";
 $a->strings[" Name too short."] = " Nome troppo corto.";
+$a->strings["Wrong Password"] = "Password Sbagliata";
 $a->strings[" Not valid email."] = " Email non valida.";
 $a->strings[" Cannot change to that email."] = "Non puoi usare quella email.";
 $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito.";
@@ -745,6 +972,7 @@ $a->strings["Redirect"] = "Redirect";
 $a->strings["Icon url"] = "Url icona";
 $a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
 $a->strings["Connected Apps"] = "Applicazioni Collegate";
+$a->strings["Edit"] = "Modifica";
 $a->strings["Client key starts with"] = "Chiave del client inizia con";
 $a->strings["No name"] = "Nessun nome";
 $a->strings["Remove authorization"] = "Rimuovi l'autorizzazione";
@@ -781,6 +1009,7 @@ $a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x sec
 $a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
 $a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:";
 $a->strings["Maximum of 100 items"] = "Massimo 100 voci";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:";
 $a->strings["Don't show emoticons"] = "Non mostrare le emoticons";
 $a->strings["Normal Account Page"] = "Pagina Account Normale";
 $a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale";
@@ -819,8 +1048,10 @@ $a->strings["Password Settings"] = "Impostazioni password";
 $a->strings["New Password:"] = "Nuova password:";
 $a->strings["Confirm:"] = "Conferma:";
 $a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password";
+$a->strings["Current Password:"] = "Password Attuale:";
+$a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche";
+$a->strings["Password:"] = "Password:";
 $a->strings["Basic Settings"] = "Impostazioni base";
-$a->strings["Full Name:"] = "Nome completo:";
 $a->strings["Email Address:"] = "Indirizzo Email:";
 $a->strings["Your Timezone:"] = "Il tuo fuso orario:";
 $a->strings["Default Post Location:"] = "Località predefinita:";
@@ -830,8 +1061,10 @@ $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di am
 $a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)";
 $a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi";
 $a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
-$a->strings["Default Private Post"] = "";
-$a->strings["Default Public Post"] = "";
+$a->strings["Show to Groups"] = "Mostra ai gruppi";
+$a->strings["Show to Contacts"] = "Mostra ai contatti";
+$a->strings["Default Private Post"] = "Default Post Privato";
+$a->strings["Default Public Post"] = "Default Post Pubblico";
 $a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post";
 $a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:";
 $a->strings["Notification Settings"] = "Impostazioni notifiche";
@@ -850,228 +1083,157 @@ $a->strings["You are tagged in a post"] = "Sei stato taggato in un post";
 $a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post";
 $a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina";
 $a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali";
-$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
+$a->strings["link"] = "collegamento";
+$a->strings["Contact settings applied."] = "Contatto modificato.";
+$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
+$a->strings["Contact not found."] = "Contatto non trovato.";
+$a->strings["Repair Contact Settings"] = "Ripara il contatto";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
+$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
+$a->strings["Account Nickname"] = "Nome utente";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
+$a->strings["Account URL"] = "URL dell'utente";
+$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
+$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
+$a->strings["Notification Endpoint URL"] = "URL Notifiche";
+$a->strings["Poll/Feed URL"] = "URL Feed";
+$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
+$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
+$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
+$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
+$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
+$a->strings["Potential Delegates"] = "Delegati Potenziali";
+$a->strings["Remove"] = "Rimuovi";
+$a->strings["Add"] = "Aggiungi";
+$a->strings["No entries."] = "Nessun articolo.";
+$a->strings["Poke/Prod"] = "Tocca/Pungola";
+$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno";
+$a->strings["Recipient"] = "Destinatario";
+$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario";
+$a->strings["Make this post private"] = "Rendi questo post privato";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
+$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
+$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
+$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
+$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
+$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
+$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
+$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
+$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
+$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per 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'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
+$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
+$a->strings["Connection accepted at %s"] = "Connession accettata su %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s";
+$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
+$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
+       1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
+);
+$a->strings["Introduction complete."] = "Presentazione completa.";
+$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
+$a->strings["Profile unavailable."] = "Profilo non disponibile.";
+$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
+$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Indirizzo email non valido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
+$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
+$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
+$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
+$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
+$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
+$a->strings["Hide this contact"] = "Nascondi questo contatto";
+$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
+$a->strings["Confirm"] = "Conferma";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connetti un email come follower</strike> (in arrivo)";
+$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>."] = "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
+$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Rispondi:";
+$a->strings["Does %s know you?"] = "%s ti conosce?";
+$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
+$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."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
+$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
+$a->strings["Submit Request"] = "Invia richiesta";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
+$a->strings["Global Directory"] = "Elenco globale";
+$a->strings["Find on this site"] = "Cerca nel sito";
+$a->strings["Site Directory"] = "Elenco del sito";
+$a->strings["Gender: "] = "Genere:";
+$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
+$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
+$a->strings["Ignore/Hide"] = "Ignora / Nascondi";
 $a->strings["People Search"] = "Cerca persone";
 $a->strings["No matches"] = "Nessun risultato";
-$a->strings["Profile deleted."] = "Profilo elminato.";
-$a->strings["Profile-"] = "Profilo-";
-$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
-$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
-$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
-$a->strings["Marital Status"] = "Stato civile";
-$a->strings["Romantic Partner"] = "Partner romantico";
-$a->strings["Likes"] = "Mi piace";
-$a->strings["Dislikes"] = "Non mi piace";
-$a->strings["Work/Employment"] = "Lavoro/Impiego";
-$a->strings["Religion"] = "Religione";
-$a->strings["Political Views"] = "Orientamento Politico";
-$a->strings["Gender"] = "Sesso";
-$a->strings["Sexual Preference"] = "Preferenza sessuale";
-$a->strings["Homepage"] = "Homepage";
-$a->strings["Interests"] = "Interessi";
-$a->strings["Address"] = "Indirizzo";
-$a->strings["Location"] = "Posizione";
-$a->strings["Profile updated."] = "Profilo aggiornato.";
-$a->strings[" and "] = "e ";
-$a->strings["public profile"] = "profilo pubblico";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita  %2\$s di %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
-$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
-$a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
-$a->strings["View this profile"] = "Visualizza questo profilo";
-$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
-$a->strings["Clone this profile"] = "Clona questo profilo";
-$a->strings["Delete this profile"] = "Elimina questo profilo";
-$a->strings["Profile Name:"] = "Nome del profilo:";
-$a->strings["Your Full Name:"] = "Il tuo nome completo:";
-$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
-$a->strings["Your Gender:"] = "Il tuo sesso:";
-$a->strings["Birthday (%s):"] = "Compleanno (%s)";
-$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
-$a->strings["Locality/City:"] = "Località:";
-$a->strings["Postal/Zip Code:"] = "CAP:";
-$a->strings["Country:"] = "Nazione:";
-$a->strings["Region/State:"] = "Regione/Stato:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
-$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Dal [data]:";
-$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
-$a->strings["Homepage URL:"] = "Homepage:";
-$a->strings["Hometown:"] = "Paese natale:";
-$a->strings["Political Views:"] = "Orientamento politico:";
-$a->strings["Religious Views:"] = "Orientamento religioso:";
-$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
-$a->strings["Private Keywords:"] = "Parole chiave private:";
-$a->strings["Likes:"] = "Mi piace:";
-$a->strings["Dislikes:"] = "Non mi piace:";
-$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
-$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
-$a->strings["Hobbies/Interests"] = "Hobby/interessi";
-$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
-$a->strings["Musical interests"] = "Interessi musicali";
-$a->strings["Books, literature"] = "Libri, letteratura";
-$a->strings["Television"] = "Televisione";
-$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
-$a->strings["Love/romance"] = "Amore";
-$a->strings["Work/employment"] = "Lavoro/impiego";
-$a->strings["School/education"] = "Scuola/educazione";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
-$a->strings["Age: "] = "Età : ";
-$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
-$a->strings["Change profile photo"] = "Cambia la foto del profilo";
-$a->strings["Create New Profile"] = "Crea un nuovo profilo";
-$a->strings["Profile Image"] = "Immagine del Profilo";
-$a->strings["visible to everybody"] = "visibile a tutti";
-$a->strings["Edit visibility"] = "Modifica visibilità";
-$a->strings["link"] = "collegamento";
+$a->strings["No videos selected"] = "Nessun video selezionato";
+$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
+$a->strings["View Album"] = "Sfoglia l'album";
+$a->strings["Recent Videos"] = "Video Recenti";
+$a->strings["Upload New Videos"] = "Carica Nuovo Video";
+$a->strings["Tag removed"] = "Tag rimosso";
+$a->strings["Remove Item Tag"] = "Rimuovi il tag";
+$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
+$a->strings["Item not found"] = "Oggetto non trovato";
+$a->strings["Edit post"] = "Modifica messaggio";
+$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Modifca l'evento";
+$a->strings["Create New Event"] = "Crea un nuovo evento";
+$a->strings["Previous"] = "Precendente";
+$a->strings["Next"] = "Successivo";
+$a->strings["hour:minute"] = "ora:minuti";
+$a->strings["Event details"] = "Dettagli dell'evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti.";
+$a->strings["Event Starts:"] = "L'evento inizia:";
+$a->strings["Required"] = "Richiesto";
+$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
+$a->strings["Event Finishes:"] = "L'evento finisce:";
+$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
+$a->strings["Description:"] = "Descrizione:";
+$a->strings["Title:"] = "Titolo:";
+$a->strings["Share this event"] = "Condividi questo evento";
+$a->strings["Files"] = "File";
 $a->strings["Export account"] = "Esporta 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."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server.";
 $a->strings["Export all"] = "Esporta tutto";
 $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)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)";
-$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
-$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
-$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
-$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
-$a->strings["{0} liked %s's post"] = "a {0} piace il post di  %s";
-$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
-$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
-$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
-$a->strings["Nothing new here"] = "Niente di nuovo qui";
-$a->strings["Clear notifications"] = "Pulisci le notifiche";
-$a->strings["Not available."] = "Non disponibile.";
-$a->strings["Community"] = "Comunità";
-$a->strings["Save to Folder:"] = "Salva nella Cartella:";
 $a->strings["- select -"] = "- seleziona -";
-$a->strings["Save"] = "Salva";
-$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
-$a->strings["File upload failed."] = "Caricamento del file non riuscito.";
-$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
-$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
-$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
-$a->strings["Visible To"] = "Visibile a";
-$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
-$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?";
-$a->strings["Friend Suggestions"] = "Contatti suggeriti";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
-$a->strings["Connect"] = "Connetti";
-$a->strings["Ignore/Hide"] = "Ignora / Nascondi";
-$a->strings["Access denied."] = "Accesso negato.";
-$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s";
-$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
-$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
-$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
-$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
-$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
-$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
-$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
-$a->strings["Potential Delegates"] = "Delegati Potenziali";
-$a->strings["Add"] = "Aggiungi";
-$a->strings["No entries."] = "Nessun articolo.";
-$a->strings["No contacts."] = "Nessun contatto.";
-$a->strings["View Contacts"] = "Visualizza i contatti";
-$a->strings["Personal Notes"] = "Note personali";
-$a->strings["Poke/Prod"] = "Tocca/Pungola";
-$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno";
-$a->strings["Recipient"] = "Destinatario";
-$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario";
-$a->strings["Make this post private"] = "Rendi questo post privato";
-$a->strings["Global Directory"] = "Elenco globale";
-$a->strings["Find on this site"] = "Cerca nel sito";
-$a->strings["Site Directory"] = "Elenco del sito";
-$a->strings["Gender: "] = "Genere:";
-$a->strings["Gender:"] = "Genere:";
-$a->strings["Status:"] = "Stato:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Informazioni:";
-$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
-$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
-$a->strings["Time Conversion"] = "Conversione Ora";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti.";
-$a->strings["UTC time: %s"] = "Ora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
-$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
-$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
-$a->strings["Post successful."] = "Inviato!";
-$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
-$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
-$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
-$a->strings["Upload File:"] = "Carica un file:";
-$a->strings["Select a profile:"] = "Seleziona un profilo:";
-$a->strings["Upload"] = "Carica";
-$a->strings["skip this step"] = "salta questo passaggio";
-$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
-$a->strings["Crop Image"] = "Ritaglia immagine";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
-$a->strings["Done Editing"] = "Finito";
-$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
-$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Setup";
-$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database.";
-$a->strings["Could not create table."] = "Impossibile creare le tabelle.";
-$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\".";
-$a->strings["System check"] = "Controllo sistema";
-$a->strings["Check again"] = "Controlla ancora";
-$a->strings["Database connection"] = "Connessione al database";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare.";
-$a->strings["Database Server Name"] = "Nome del database server";
-$a->strings["Database Login Name"] = "Nome utente database";
-$a->strings["Database Login Password"] = "Password utente database";
-$a->strings["Database Name"] = "Nome database";
-$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web.";
-$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
-$a->strings["Site settings"] = "Impostazioni sito";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server 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>"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Percorso eseguibile PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione.";
-$a->strings["Command line PHP"] = "PHP da riga di comando";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\".";
-$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi.";
-$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"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione";
-$a->strings["libCurl PHP module"] = "modulo PHP libCurl";
-$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
-$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "modulo PHP mysqli";
-$a->strings["mb_string PHP module"] = "modulo PHP mb_string";
-$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato.";
-$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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
-$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi.";
-$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il 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."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server.";
-$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona";
-$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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
-$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
-$a->strings["<h1>What next</h1>"] = "<h1>Cosa fare ora</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller.";
+$a->strings["Import"] = "Importa";
+$a->strings["Move account"] = "Muovi account";
+$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server 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."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora";
+$a->strings["Account file"] = "File account";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
+$a->strings["Contact added"] = "Contatto aggiunto";
+$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
+$a->strings["running at web location"] = "in esecuzione all'indirizzo web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
+$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
+$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
+$a->strings["Suggest Friends"] = "Suggerisci amici";
+$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
 $a->strings["Group created."] = "Gruppo creato.";
 $a->strings["Could not create group."] = "Impossibile creare il gruppo.";
 $a->strings["Group not found."] = "Gruppo non trovato.";
@@ -1082,36 +1244,110 @@ $a->strings["Group removed."] = "Gruppo rimosso.";
 $a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
 $a->strings["Group Editor"] = "Modifica gruppo";
 $a->strings["Members"] = "Membri";
-$a->strings["No such group"] = "Nessun gruppo";
-$a->strings["Group is empty"] = "Il gruppo è vuoto";
-$a->strings["Group: "] = "Gruppo: ";
-$a->strings["View in context"] = "Vedi nel contesto";
-$a->strings["Account approved."] = "Account approvato.";
-$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
-$a->strings["Please login."] = "Accedi.";
-$a->strings["Profile Match"] = "Profili corrispondenti";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
-$a->strings["is interested in:"] = "è interessato a:";
-$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
-$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
-$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica.";
-$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
-$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
-$a->strings["Mood"] = "Umore";
-$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici";
-$a->strings["Search Results For:"] = "Cerca risultati per:";
-$a->strings["add"] = "aggiungi";
-$a->strings["Commented Order"] = "Ordina per commento";
-$a->strings["Sort by Comment Date"] = "Ordina per data commento";
-$a->strings["Posted Order"] = "Ordina per invio";
-$a->strings["Sort by Post Date"] = "Ordina per data messaggio";
-$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
-$a->strings["New"] = "Nuovo";
-$a->strings["Activity Stream - by date"] = "Activity Stream - per data";
-$a->strings["Shared Links"] = "Links condivisi";
+$a->strings["No profile"] = "Nessun profilo";
+$a->strings["Help:"] = "Guida:";
+$a->strings["Not Found"] = "Non trovato";
+$a->strings["Page not found."] = "Pagina non trovata.";
+$a->strings["No contacts."] = "Nessun contatto.";
+$a->strings["Welcome to %s"] = "Benvenuto su %s";
+$a->strings["Access denied."] = "Accesso negato.";
+$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
+$a->strings["File upload failed."] = "Caricamento del file non riuscito.";
+$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
+$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
+$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
+$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato.";
+$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
+$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito.";
+$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
+$a->strings["%d message sent."] = array(
+       0 => "%d messaggio inviato.",
+       1 => "%d messaggi inviati.",
+);
+$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
+$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."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico.";
+$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri.";
+$a->strings["Send invitations"] = "Invia inviti";
+$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
+$a->strings["Your message:"] = "Il tuo messaggio:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
+$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
+$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine.";
+$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
+$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
+$a->strings["Message sent."] = "Messaggio inviato.";
+$a->strings["No recipient."] = "Nessun destinatario.";
+$a->strings["Send Private Message"] = "Invia un messaggio privato";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
+$a->strings["To:"] = "A:";
+$a->strings["Subject:"] = "Oggetto:";
+$a->strings["Time Conversion"] = "Conversione Ora";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti.";
+$a->strings["UTC time: %s"] = "Ora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
+$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
+$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
+$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
+$a->strings["Visible to:"] = "Visibile a:";
+$a->strings["No valid account found."] = "Nessun account valido trovato.";
+$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
+$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
+$a->strings["Password Reset"] = "Reimpostazione password";
+$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
+$a->strings["Your new password is"] = "La tua nuova password è";
+$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
+$a->strings["click here to login"] = "clicca qui per entrare";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
+$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata";
+$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password.";
+$a->strings["Nickname or Email: "] = "Nome utente o email: ";
+$a->strings["Reset"] = "Reimposta";
+$a->strings["System down for maintenance"] = "Sistema in manutenzione";
+$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
+$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
+$a->strings["Profile Match"] = "Profili corrispondenti";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
+$a->strings["is interested in:"] = "è interessato a:";
+$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
+$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?";
+$a->strings["Message deleted."] = "Messaggio eliminato.";
+$a->strings["Conversation removed."] = "Conversazione rimossa.";
+$a->strings["No messages."] = "Nessun messaggio.";
+$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
+$a->strings["You and %s"] = "Tu e %s";
+$a->strings["%s and You"] = "%s e Tu";
+$a->strings["Delete conversation"] = "Elimina la conversazione";
+$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
+$a->strings["%d message"] = array(
+       0 => "%d messaggio",
+       1 => "%d messaggi",
+);
+$a->strings["Message not available."] = "Messaggio non disponibile.";
+$a->strings["Delete message"] = "Elimina il messaggio";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
+$a->strings["Send Reply"] = "Invia la risposta";
+$a->strings["Mood"] = "Umore";
+$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici";
+$a->strings["Search Results For:"] = "Cerca risultati per:";
+$a->strings["Commented Order"] = "Ordina per commento";
+$a->strings["Sort by Comment Date"] = "Ordina per data commento";
+$a->strings["Posted Order"] = "Ordina per invio";
+$a->strings["Sort by Post Date"] = "Ordina per data messaggio";
+$a->strings["Personal"] = "Personale";
+$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
+$a->strings["New"] = "Nuovo";
+$a->strings["Activity Stream - by date"] = "Activity Stream - per data";
+$a->strings["Shared Links"] = "Links condivisi";
 $a->strings["Interesting Links"] = "Link Interessanti";
 $a->strings["Starred"] = "Preferiti";
 $a->strings["Favourite Posts"] = "Messaggi preferiti";
@@ -1120,511 +1356,296 @@ $a->strings["Warning: This group contains %s member from an insecure network."]
        1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.",
 );
 $a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente.";
+$a->strings["No such group"] = "Nessun gruppo";
+$a->strings["Group is empty"] = "Il gruppo è vuoto";
+$a->strings["Group: "] = "Gruppo: ";
 $a->strings["Contact: "] = "Contatto:";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
 $a->strings["Invalid contact."] = "Contatto non valido.";
-$a->strings["Contact settings applied."] = "Contatto modificato.";
-$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
-$a->strings["Repair Contact Settings"] = "Ripara il contatto";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
-$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
-$a->strings["Account Nickname"] = "Nome utente";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
-$a->strings["Account URL"] = "URL dell'utente";
-$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
-$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
-$a->strings["Notification Endpoint URL"] = "URL Notifiche";
-$a->strings["Poll/Feed URL"] = "URL Feed";
-$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
-$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
-$a->strings["Your profile page"] = "Pagina del tuo profilo";
-$a->strings["Your contacts"] = "I tuoi contatti";
-$a->strings["Your photos"] = "Le tue foto";
-$a->strings["Your events"] = "I tuoi eventi";
-$a->strings["Personal notes"] = "Note personali";
-$a->strings["Your personal photos"] = "Le tue foto personali";
-$a->strings["Community Pages"] = "Pagine Comunitarie";
-$a->strings["Community Profiles"] = "Profili Comunità";
-$a->strings["Last users"] = "Ultimi utenti";
-$a->strings["Last likes"] = "Ultimi \"mi piace\"";
-$a->strings["event"] = "l'evento";
-$a->strings["Last photos"] = "Ultime foto";
-$a->strings["Find Friends"] = "Trova Amici";
-$a->strings["Local Directory"] = "Elenco Locale";
-$a->strings["Similar Interests"] = "Interessi simili";
-$a->strings["Invite Friends"] = "Invita amici";
-$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 ?"] = "Serve aiuto? Sei nuovo?";
-$a->strings["Connect Services"] = "Servizi di conessione";
-$a->strings["Last Tweets"] = "";
-$a->strings["Set twitter search term"] = "";
-$a->strings["don't show"] = "non mostrare";
-$a->strings["show"] = "mostra";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Theme settings"] = "Impostazioni tema";
-$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti";
-$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Set color scheme"] = "";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Last tweets"] = "";
-$a->strings["Set colour scheme"] = "Imposta schema colori";
-$a->strings["Alignment"] = "Allineamento";
-$a->strings["Left"] = "Sinistra";
-$a->strings["Center"] = "Centrato";
-$a->strings["Color scheme"] = "Schema colori";
-$a->strings["Posts font size"] = "Dimensione caratteri post";
-$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)";
-$a->strings["Set theme width"] = "Imposta la larghezza del tema";
-$a->strings["Delete this item?"] = "Cancellare questo elemento?";
-$a->strings["show fewer"] = "mostra di meno";
-$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore.";
-$a->strings["Update Error at %s"] = "Errore aggiornamento a %s";
-$a->strings["Create a New Account"] = "Crea un nuovo account";
-$a->strings["Logout"] = "Esci";
-$a->strings["Login"] = "Accedi";
-$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: ";
-$a->strings["Password: "] = "Password: ";
-$a->strings["Remember me"] = "Ricordati di me";
-$a->strings["Or login using OpenID: "] = "O entra con OpenID:";
-$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
-$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web ";
-$a->strings["terms of service"] = "condizioni del servizio";
-$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito";
-$a->strings["privacy policy"] = "politiche di privacy";
-$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile.";
-$a->strings["Edit profile"] = "Modifica il profilo";
-$a->strings["Message"] = "Messaggio";
-$a->strings["Profiles"] = "Profili";
-$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
-$a->strings["g A l F d"] = "g A l d F";
-$a->strings["F d"] = "d F";
-$a->strings["[today]"] = "[oggi]";
-$a->strings["Birthday Reminders"] = "Promemoria compleanni";
-$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
-$a->strings["[No description]"] = "[Nessuna descrizione]";
-$a->strings["Event Reminders"] = "Promemoria";
-$a->strings["Events this week:"] = "Eventi di questa settimana:";
-$a->strings["Status"] = "Stato";
-$a->strings["Status Messages and Posts"] = "Messaggi di stato e post";
-$a->strings["Profile Details"] = "Dettagli del profilo";
-$a->strings["Events and Calendar"] = "Eventi e calendario";
-$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo";
-$a->strings["General Features"] = "Funzionalità generali";
-$a->strings["Multiple Profiles"] = "Profili multipli";
-$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli";
-$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post";
-$a->strings["Richtext Editor"] = "Editor visuale";
-$a->strings["Enable richtext editor"] = "Abilita l'editor visuale";
-$a->strings["Post Preview"] = "Anteprima dei post";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli";
-$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete";
-$a->strings["Search by Date"] = "Cerca per data";
-$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data";
-$a->strings["Group Filter"] = "Filtra gruppi";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato";
-$a->strings["Network Filter"] = "Filtro reti";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata";
-$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli";
-$a->strings["Network Tabs"] = "Schede pagina Rete";
-$a->strings["Network Personal Tab"] = "Scheda Personali";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato";
-$a->strings["Network New Tab"] = "Scheda Nuovi";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)";
-$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link";
-$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti";
-$a->strings["Multiple Deletion"] = "Eliminazione multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola";
-$a->strings["Edit Sent Posts"] = "Modifica i post inviati";
-$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati";
-$a->strings["Tagging"] = "Aggiunta tag";
-$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti";
-$a->strings["Post Categories"] = "Cateorie post";
-$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post";
-$a->strings["Saved Folders"] = "Cartelle Salvate";
-$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle";
-$a->strings["Dislike Posts"] = "Non mi piace";
-$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi";
-$a->strings["Star Posts"] = "Post preferiti";
-$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella";
-$a->strings["Logged out."] = "Uscita effettuata.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
-$a->strings["The error message was:"] = "Il messaggio riportato era:";
-$a->strings["Starts:"] = "Inizia:";
-$a->strings["Finishes:"] = "Finisce:";
-$a->strings["j F, Y"] = "j F Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Compleanno:";
-$a->strings["Age:"] = "Età:";
-$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
-$a->strings["Tags:"] = "Tag:";
-$a->strings["Religion:"] = "Religione:";
-$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
-$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
-$a->strings["Musical interests:"] = "Interessi musicali:";
-$a->strings["Books, literature:"] = "Libri, letteratura:";
-$a->strings["Television:"] = "Televisione:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
-$a->strings["Love/Romance:"] = "Amore:";
-$a->strings["Work/employment:"] = "Lavoro:";
-$a->strings["School/education:"] = "Scuola:";
-$a->strings["[no subject]"] = "[nessun oggetto]";
-$a->strings[" on Last.fm"] = "su Last.fm";
-$a->strings["prev"] = "prec";
-$a->strings["first"] = "primo";
-$a->strings["last"] = "ultimo";
-$a->strings["next"] = "succ";
-$a->strings["newer"] = "nuovi";
-$a->strings["older"] = "vecchi";
-$a->strings["No contacts"] = "Nessun contatto";
-$a->strings["%d Contact"] = array(
-       0 => "%d contatto",
-       1 => "%d contatti",
-);
-$a->strings["poke"] = "stuzzica";
-$a->strings["poked"] = "toccato";
-$a->strings["ping"] = "invia un ping";
-$a->strings["pinged"] = "inviato un ping";
-$a->strings["prod"] = "pungola";
-$a->strings["prodded"] = "pungolato";
-$a->strings["slap"] = "schiaffeggia";
-$a->strings["slapped"] = "schiaffeggiato";
-$a->strings["finger"] = "tocca";
-$a->strings["fingered"] = "toccato";
-$a->strings["rebuff"] = "respingi";
-$a->strings["rebuffed"] = "respinto";
-$a->strings["happy"] = "felice";
-$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "rilassato";
-$a->strings["tired"] = "stanco";
-$a->strings["perky"] = "vivace";
-$a->strings["angry"] = "arrabbiato";
-$a->strings["stupified"] = "stupefatto";
-$a->strings["puzzled"] = "confuso";
-$a->strings["interested"] = "interessato";
-$a->strings["bitter"] = "risentito";
-$a->strings["cheerful"] = "giocoso";
-$a->strings["alive"] = "vivo";
-$a->strings["annoyed"] = "annoiato";
-$a->strings["anxious"] = "ansioso";
-$a->strings["cranky"] = "irritabile";
-$a->strings["disturbed"] = "disturbato";
-$a->strings["frustrated"] = "frustato";
-$a->strings["motivated"] = "motivato";
-$a->strings["relaxed"] = "rilassato";
-$a->strings["surprised"] = "sorpreso";
-$a->strings["Monday"] = "Lunedì";
-$a->strings["Tuesday"] = "Martedì";
-$a->strings["Wednesday"] = "Mercoledì";
-$a->strings["Thursday"] = "Giovedì";
-$a->strings["Friday"] = "Venerdì";
-$a->strings["Saturday"] = "Sabato";
-$a->strings["Sunday"] = "Domenica";
-$a->strings["January"] = "Gennaio";
-$a->strings["February"] = "Febbraio";
-$a->strings["March"] = "Marzo";
-$a->strings["April"] = "Aprile";
-$a->strings["May"] = "Maggio";
-$a->strings["June"] = "Giugno";
-$a->strings["July"] = "Luglio";
-$a->strings["August"] = "Agosto";
-$a->strings["September"] = "Settembre";
-$a->strings["October"] = "Ottobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Dicembre";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
-$a->strings["default"] = "default";
-$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
-$a->strings["activity"] = "attività";
-$a->strings["post"] = "messaggio";
-$a->strings["Item filed"] = "Messaggio salvato";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
-$a->strings["%s's birthday"] = "Compleanno di %s";
-$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
-$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da ";
-$a->strings["You have a new follower at "] = "Una nuova persona ti segue su ";
-$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?";
-$a->strings["Archives"] = "Archivi";
-$a->strings["(no subject)"] = "(nessun oggetto)";
-$a->strings["noreply"] = "nessuna risposta";
-$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
-$a->strings["Attachments:"] = "Allegati:";
-$a->strings["Connect URL missing."] = "URL di connessione mancante.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
-$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
-$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
-$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
-$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
-$a->strings["following"] = "segue";
-$a->strings["Welcome "] = "Ciao";
-$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
-$a->strings["Welcome back "] = "Ciao ";
-$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla.";
-$a->strings["Male"] = "Maschio";
-$a->strings["Female"] = "Femmina";
-$a->strings["Currently Male"] = "Al momento maschio";
-$a->strings["Currently Female"] = "Al momento femmina";
-$a->strings["Mostly Male"] = "Prevalentemente maschio";
-$a->strings["Mostly Female"] = "Prevalentemente femmina";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transessuale";
-$a->strings["Hermaphrodite"] = "Ermafrodito";
-$a->strings["Neuter"] = "Neutro";
-$a->strings["Non-specific"] = "Non specificato";
-$a->strings["Other"] = "Altro";
-$a->strings["Undecided"] = "Indeciso";
-$a->strings["Males"] = "Maschi";
-$a->strings["Females"] = "Femmine";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbica";
-$a->strings["No Preference"] = "Nessuna preferenza";
-$a->strings["Bisexual"] = "Bisessuale";
-$a->strings["Autosexual"] = "Autosessuale";
-$a->strings["Abstinent"] = "Astinente";
-$a->strings["Virgin"] = "Vergine";
-$a->strings["Deviant"] = "Deviato";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Un sacco";
-$a->strings["Nonsexual"] = "Asessuato";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Solitario";
-$a->strings["Available"] = "Disponibile";
-$a->strings["Unavailable"] = "Non disponibile";
-$a->strings["Has crush"] = "è cotto/a";
-$a->strings["Infatuated"] = "infatuato/a";
-$a->strings["Dating"] = "Disponibile a un incontro";
-$a->strings["Unfaithful"] = "Infedele";
-$a->strings["Sex Addict"] = "Sesso-dipendente";
-$a->strings["Friends"] = "Amici";
-$a->strings["Friends/Benefits"] = "Amici con benefici";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Impegnato";
-$a->strings["Married"] = "Sposato";
-$a->strings["Imaginarily married"] = "immaginariamente sposato/a";
-$a->strings["Partners"] = "Partners";
-$a->strings["Cohabiting"] = "Coinquilino";
-$a->strings["Common law"] = "diritto comune";
-$a->strings["Happy"] = "Felice";
-$a->strings["Not looking"] = "Non guarda";
-$a->strings["Swinger"] = "Scambista";
-$a->strings["Betrayed"] = "Tradito";
-$a->strings["Separated"] = "Separato";
-$a->strings["Unstable"] = "Instabile";
-$a->strings["Divorced"] = "Divorziato";
-$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a";
-$a->strings["Widowed"] = "Vedovo";
-$a->strings["Uncertain"] = "Incerto";
-$a->strings["It's complicated"] = "E' complicato";
-$a->strings["Don't care"] = "Non interessa";
-$a->strings["Ask me"] = "Chiedimelo";
-$a->strings["Error decoding account file"] = "Errore decodificando il file account";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?";
-$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Errore! Non posso importare questo file: la versione dello schema del database non è compatibile.";
-$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname";
-$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!";
-$a->strings["User creation error"] = "Errore creando l'utente";
-$a->strings["User profile creation error"] = "Errore creando il profile dell'utente";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contatto non importato",
-       1 => "%d contatti non importati",
-);
-$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password";
-$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione.";
-$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione.";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s";
-$a->strings["post/item"] = "post/elemento";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
-$a->strings["remove"] = "rimuovi";
-$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
-$a->strings["Follow Thread"] = "Segui la discussione";
-$a->strings["View Status"] = "Visualizza stato";
-$a->strings["View Profile"] = "Visualizza profilo";
-$a->strings["View Photos"] = "Visualizza foto";
-$a->strings["Network Posts"] = "Post della Rete";
-$a->strings["Edit Contact"] = "Modifica contatti";
-$a->strings["Send PM"] = "Invia messaggio privato";
-$a->strings["Poke"] = "Stuzzica";
-$a->strings["%s likes this."] = "Piace a %s.";
-$a->strings["%s doesn't like this."] = "Non piace a %s.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "Piace a <span %1\$s>%2\$d persone</span>.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "Non piace a <span %1\$s>%2\$d persone</span>.";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = "e altre %d persone";
-$a->strings["%s like this."] = "Piace a %s.";
-$a->strings["%s don't like this."] = "Non piace a %s.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
-$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
-$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Where are you right now?"] = "Dove sei ora?";
-$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?";
-$a->strings["Post to Email"] = "Invia a email";
-$a->strings["permissions"] = "permessi";
-$a->strings["Post to Groups"] = "Invia ai Gruppi";
-$a->strings["Post to Contacts"] = "Invia ai Contatti";
-$a->strings["Private post"] = "Post privato";
-$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
-$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invito disponibile",
-       1 => "%d inviti disponibili",
+$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
+$a->strings["Discard"] = "Scarta";
+$a->strings["System"] = "Sistema";
+$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
+$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
+$a->strings["Notification type: "] = "Tipo di notifica: ";
+$a->strings["Friend Suggestion"] = "Amico suggerito";
+$a->strings["suggested by %s"] = "sugerito da %s";
+$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\"";
+$a->strings["if applicable"] = "se applicabile";
+$a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
+$a->strings["yes"] = "si";
+$a->strings["no"] = "no";
+$a->strings["Approve as: "] = "Approva come: ";
+$a->strings["Friend"] = "Amico";
+$a->strings["Sharer"] = "Condivisore";
+$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
+$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione";
+$a->strings["New Follower"] = "Qualcuno inizia a seguirti";
+$a->strings["No introductions."] = "Nessuna presentazione.";
+$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
+$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
+$a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
+$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio";
+$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s";
+$a->strings["No more network notifications."] = "Nessuna nuova.";
+$a->strings["Network Notifications"] = "Notifiche dalla rete";
+$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema.";
+$a->strings["System Notifications"] = "Notifiche di sistema";
+$a->strings["No more personal notifications."] = "Nessuna nuova.";
+$a->strings["Personal Notifications"] = "Notifiche personali";
+$a->strings["No more home notifications."] = "Nessuna nuova.";
+$a->strings["Home Notifications"] = "Notifiche bacheca";
+$a->strings["Photo Albums"] = "Album foto";
+$a->strings["Contact Photos"] = "Foto dei contatti";
+$a->strings["Upload New Photos"] = "Carica nuove foto";
+$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
+$a->strings["Album not found."] = "Album non trovato.";
+$a->strings["Delete Album"] = "Rimuovi album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
+$a->strings["Delete Photo"] = "Rimuovi foto";
+$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
+$a->strings["a photo"] = "una foto";
+$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
+$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
+$a->strings["No photos selected"] = "Nessuna foto selezionata";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili.";
+$a->strings["Upload Photos"] = "Carica foto";
+$a->strings["New album name: "] = "Nome nuovo album: ";
+$a->strings["or existing album name: "] = "o nome di un album esistente: ";
+$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
+$a->strings["Permissions"] = "Permessi";
+$a->strings["Private Photo"] = "Foto privata";
+$a->strings["Public Photo"] = "Foto pubblica";
+$a->strings["Edit Album"] = "Modifica album";
+$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
+$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
+$a->strings["View Photo"] = "Vedi foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
+$a->strings["Photo not available"] = "Foto non disponibile";
+$a->strings["View photo"] = "Vedi foto";
+$a->strings["Edit photo"] = "Modifica foto";
+$a->strings["Use as profile photo"] = "Usa come foto del profilo";
+$a->strings["Private Message"] = "Messaggio privato";
+$a->strings["View Full Size"] = "Vedi dimensione intera";
+$a->strings["Tags: "] = "Tag: ";
+$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
+$a->strings["Rotate CW (right)"] = "Ruota a destra";
+$a->strings["Rotate CCW (left)"] = "Ruota a sinistra";
+$a->strings["New album name"] = "Nuovo nome dell'album";
+$a->strings["Caption"] = "Titolo";
+$a->strings["Add a Tag"] = "Aggiungi tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Foto privata";
+$a->strings["Public photo"] = "Foto pubblica";
+$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
+$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
+$a->strings["This is you"] = "Questo sei tu";
+$a->strings["Comment"] = "Commento";
+$a->strings["Recent Photos"] = "Foto recenti";
+$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
+$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
+$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
+$a->strings["Getting Started"] = "Come Iniziare";
+$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo";
+$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."] = "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti.";
+$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni";
+$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."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
+$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
+$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
+$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
+$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo";
+$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."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
+$a->strings["Profile Keywords"] = "Parole chiave del profilo";
+$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
+$a->strings["Connecting"] = "Collegarsi";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
+$a->strings["Importing Emails"] = "Importare le Email";
+$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
+$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti";
+$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."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>";
+$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito";
+$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 pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
+$a->strings["Finding New People"] = "Trova nuove persone";
+$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
+$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti";
+$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
+$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?";
+$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra.";
+$a->strings["Getting Help"] = "Ottenere Aiuto";
+$a->strings["Go to the Help Section"] = "Vai alla sezione Guida";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
+$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
+$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni";
+$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database.";
+$a->strings["Could not create table."] = "Impossibile creare le tabelle.";
+$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\".";
+$a->strings["System check"] = "Controllo sistema";
+$a->strings["Check again"] = "Controlla ancora";
+$a->strings["Database connection"] = "Connessione al database";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare.";
+$a->strings["Database Server Name"] = "Nome del database server";
+$a->strings["Database Login Name"] = "Nome utente database";
+$a->strings["Database Login Password"] = "Password utente database";
+$a->strings["Database Name"] = "Nome database";
+$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web.";
+$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
+$a->strings["Site settings"] = "Impostazioni sito";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server 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>"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Percorso eseguibile PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione.";
+$a->strings["Command line PHP"] = "PHP da riga di comando";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "Versione PHP:";
+$a->strings["PHP cli binary"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi.";
+$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"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione";
+$a->strings["libCurl PHP module"] = "modulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "modulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "modulo PHP mb_string";
+$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato.";
+$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'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
+$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi.";
+$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il 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."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server.";
+$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona";
+$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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
+$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
+$a->strings["<h1>What next</h1>"] = "<h1>Cosa fare ora</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller.";
+$a->strings["Post successful."] = "Inviato!";
+$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
+$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
+$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
+$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
+$a->strings["Upload File:"] = "Carica un file:";
+$a->strings["Select a profile:"] = "Seleziona un profilo:";
+$a->strings["Upload"] = "Carica";
+$a->strings["skip this step"] = "salta questo passaggio";
+$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
+$a->strings["Crop Image"] = "Ritaglia immagine";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
+$a->strings["Done Editing"] = "Finito";
+$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
+$a->strings["Not available."] = "Non disponibile.";
+$a->strings["%d comment"] = array(
+       0 => "%d commento",
+       1 => "%d commenti",
 );
-$a->strings["Find People"] = "Trova persone";
-$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
-$a->strings["Connect/Follow"] = "Connetti/segui";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
-$a->strings["Random Profile"] = "Profilo causale";
-$a->strings["Networks"] = "Reti";
-$a->strings["All Networks"] = "Tutte le Reti";
-$a->strings["Everything"] = "Tutto";
-$a->strings["Categories"] = "Categorie";
-$a->strings["End this session"] = "Finisci questa sessione";
-$a->strings["Sign in"] = "Entra";
-$a->strings["Home Page"] = "Home Page";
-$a->strings["Create an account"] = "Crea un account";
-$a->strings["Help and documentation"] = "Guida e documentazione";
-$a->strings["Apps"] = "Applicazioni";
-$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi";
-$a->strings["Search site content"] = "Cerca nel contenuto del sito";
-$a->strings["Conversations on this site"] = "Conversazioni su questo sito";
-$a->strings["Directory"] = "Elenco";
-$a->strings["People directory"] = "Elenco delle persone";
-$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
-$a->strings["Network Reset"] = "Reset pagina Rete";
-$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro";
-$a->strings["Friend Requests"] = "Richieste di amicizia";
-$a->strings["See all notifications"] = "Vedi tutte le notifiche";
-$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste";
-$a->strings["Private mail"] = "Posta privata";
-$a->strings["Inbox"] = "In arrivo";
-$a->strings["Outbox"] = "Inviati";
-$a->strings["Manage"] = "Gestisci";
-$a->strings["Manage other pages"] = "Gestisci altre pagine";
-$a->strings["Delegations"] = "Delegazioni";
-$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili";
-$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
-$a->strings["Site setup and configuration"] = "Configurazione del sito";
-$a->strings["Navigation"] = "Navigazione";
-$a->strings["Site map"] = "Mappa del sito";
-$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
-$a->strings["Block immediately"] = "Blocca immediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
-$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
-$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
-$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
-$a->strings["Frequently"] = "Frequentemente";
-$a->strings["Hourly"] = "Ogni ora";
-$a->strings["Twice daily"] = "Due volte al dì";
-$a->strings["Daily"] = "Giornalmente";
-$a->strings["Weekly"] = "Settimanalmente";
-$a->strings["Monthly"] = "Mensilmente";
-$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["Friendica Notification"] = "Notifica Friendica";
-$a->strings["Thank You,"] = "Grazie,";
-$a->strings["%s Administrator"] = "Amministratore %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s";
-$a->strings["a private message"] = "un messaggio privato";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
-$a->strings["An invitation is required."] = "E' richiesto un invito.";
-$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
-$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
-$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
-$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
-$a->strings["Name too short."] = "Il nome è troppo corto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
-$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
-$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
-$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
-$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
-$a->strings["Visible to everybody"] = "Visibile a tutti";
-$a->strings["Image/photo"] = "Immagine/foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"external-link\">post</a>";
-$a->strings["$1 wrote:"] = "$1 ha scritto:";
-$a->strings["Encrypted content"] = "Contenuto criptato";
-$a->strings["Embedded content"] = "Contenuto incorporato";
-$a->strings["Embedding disabled"] = "Embed disabilitato";
-$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 gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
-$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
-$a->strings["Everybody"] = "Tutti";
-$a->strings["edit"] = "modifica";
-$a->strings["Edit group"] = "Modifica gruppo";
-$a->strings["Create a new group"] = "Crea un nuovo gruppo";
-$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
-$a->strings["stopped following"] = "tolto dai seguiti";
-$a->strings["Miscellaneous"] = "Varie";
-$a->strings["year"] = "anno";
-$a->strings["month"] = "mese";
-$a->strings["day"] = "giorno";
-$a->strings["never"] = "mai";
-$a->strings["less than a second ago"] = "meno di un secondo fa";
-$a->strings["years"] = "anni";
-$a->strings["months"] = "mesi";
-$a->strings["week"] = "settimana";
-$a->strings["weeks"] = "settimane";
-$a->strings["days"] = "giorni";
-$a->strings["hour"] = "ora";
-$a->strings["hours"] = "ore";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minuti";
-$a->strings["second"] = "secondo";
-$a->strings["seconds"] = "secondi";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
-$a->strings["view full size"] = "vedi a schermo intero";
+$a->strings["like"] = "mi piace";
+$a->strings["dislike"] = "non mi piace";
+$a->strings["Share this"] = "Condividi questo";
+$a->strings["share"] = "condividi";
+$a->strings["Bold"] = "Grassetto";
+$a->strings["Italic"] = "Corsivo";
+$a->strings["Underline"] = "Sottolineato";
+$a->strings["Quote"] = "Citazione";
+$a->strings["Code"] = "Codice";
+$a->strings["Image"] = "Immagine";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["add star"] = "aggiungi a speciali";
+$a->strings["remove star"] = "rimuovi da speciali";
+$a->strings["toggle star status"] = "Inverti stato preferito";
+$a->strings["starred"] = "preferito";
+$a->strings["add tag"] = "aggiungi tag";
+$a->strings["save to folder"] = "salva nella cartella";
+$a->strings["to"] = "a";
+$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
+$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
+$a->strings["This entry was edited"] = "Questa voce è stata modificata";
+$a->strings["via"] = "via";
+$a->strings["Theme settings"] = "Impostazioni tema";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)";
+$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti";
+$a->strings["Set theme width"] = "Imposta la larghezza del tema";
+$a->strings["Color scheme"] = "Schema colori";
+$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti";
+$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale";
+$a->strings["Set color scheme"] = "Imposta lo schema dei colori";
+$a->strings["Set twitter search term"] = "Imposta il termine di ricerca per twitter";
+$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"] = "Pagine Comunitarie";
+$a->strings["Earth Layers"] = "";
+$a->strings["Community Profiles"] = "Profili Comunità";
+$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?";
+$a->strings["Connect Services"] = "Servizi di conessione";
+$a->strings["Find Friends"] = "Trova Amici";
+$a->strings["Last tweets"] = "Ultimi tweets";
+$a->strings["Last users"] = "Ultimi utenti";
+$a->strings["Last photos"] = "Ultime foto";
+$a->strings["Last likes"] = "Ultimi \"mi piace\"";
+$a->strings["Your contacts"] = "I tuoi contatti";
+$a->strings["Local Directory"] = "Elenco Locale";
+$a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Last Tweets"] = "Ultimi Tweets";
+$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra";
+$a->strings["Set colour scheme"] = "Imposta schema colori";
+$a->strings["Alignment"] = "Allineamento";
+$a->strings["Left"] = "Sinistra";
+$a->strings["Center"] = "Centrato";
+$a->strings["Posts font size"] = "Dimensione caratteri post";
+$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo";
+$a->strings["toggle mobile"] = "commuta tema mobile";
+$a->strings["Delete this item?"] = "Cancellare questo elemento?";
+$a->strings["show fewer"] = "mostra di meno";
+$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore.";
+$a->strings["Update Error at %s"] = "Errore aggiornamento a %s";
+$a->strings["Create a New Account"] = "Crea un nuovo account";
+$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: ";
+$a->strings["Password: "] = "Password: ";
+$a->strings["Remember me"] = "Ricordati di me";
+$a->strings["Or login using OpenID: "] = "O entra con OpenID:";
+$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
+$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web ";
+$a->strings["terms of service"] = "condizioni del servizio";
+$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito";
+$a->strings["privacy policy"] = "politiche di privacy";
+$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile.";
+$a->strings["Edit profile"] = "Modifica il profilo";
+$a->strings["Message"] = "Messaggio";
+$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
+$a->strings["g A l F d"] = "g A l d F";
+$a->strings["F d"] = "d F";
+$a->strings["[today]"] = "[oggi]";
+$a->strings["Birthday Reminders"] = "Promemoria compleanni";
+$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
+$a->strings["[No description]"] = "[Nessuna descrizione]";
+$a->strings["Event Reminders"] = "Promemoria";
+$a->strings["Events this week:"] = "Eventi di questa settimana:";
+$a->strings["Status Messages and Posts"] = "Messaggi di stato e post";
+$a->strings["Profile Details"] = "Dettagli del profilo";
+$a->strings["Videos"] = "Video";
+$a->strings["Events and Calendar"] = "Eventi e calendario";
+$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo";
index e1547fad84cffc2b3d348c5ce65cc084d8b87b84..d7d9e4f714de8de02c6bc5dda7887703803ae5b2 100644 (file)
@@ -1,15 +1,15 @@
 # FRIENDICA Distributed Social Network
-# Copyright (C) 2010, 2011 the Friendica Project
+# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
-# Haakon Meland Eriksen <haakon.eriksen@far.no>, 2012.
+# Haakon Meland Eriksen <haakon.eriksen@far.no>, 2012-2013
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-12-03 10:00-0800\n"
-"PO-Revision-Date: 2012-12-03 17:17+0000\n"
+"POT-Creation-Date: 2013-06-12 00:01-0700\n"
+"PO-Revision-Date: 2013-06-20 17:34+0000\n"
 "Last-Translator: Haakon Meland Eriksen <haakon.eriksen@far.no>\n"
 "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n"
 "MIME-Version: 1.0\n"
@@ -18,9632 +18,7098 @@ msgstr ""
 "Language: nb_NO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Innlegg vellykket."
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
+#: ../../boot.php:1947
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
-#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
-msgstr "[Innebygget innhold - hent siden på nytt for å se det]"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079
+msgid "Full Name:"
+msgstr "Fullt navn:"
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Kontaktinnstillinger i bruk."
+#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
+#: ../../boot.php:1487
+msgid "Gender:"
+msgstr "Kjønn:"
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Kontaktoppdatering mislyktes."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
-#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
-#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:541
-#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
-#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
-#: ../../mod/item.php:155 ../../mod/mood.php:114
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:172
-#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
-#: ../../mod/display.php:165 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
-#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
-#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
-#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
-#: ../../addon/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
-#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
-#: ../../addon.old/facebook/facebook.php:516
-#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
-#: ../../addon.old/dav/friendica/layout.fnk.php:354
-msgid "Permission denied."
-msgstr "Ingen tilgang."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
-msgid "Contact not found."
-msgstr "Kontakt ikke funnet."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Fødselsdag:"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Reparer kontaktinnstillinger"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alder:"
 
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."
+#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
+#: ../../boot.php:1490
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden."
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "for %1$d %2$s"
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr ""
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650
+msgid "Sexual Preference:"
+msgstr "Seksuell orientering:"
 
-#: ../../mod/crepair.php:148 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
-msgid "Name"
-msgstr "Navn"
+#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
+#: ../../boot.php:1492
+msgid "Homepage:"
+msgstr "Hjemmeside:"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Konto Kallenavn"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652
+msgid "Hometown:"
+msgstr "Hjemsted:"
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Merkelapper:"
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "Konto URL"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653
+msgid "Political Views:"
+msgstr "Politisk ståsted:"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "Venneforespørsel URL"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "Vennebekreftelse URL"
+#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
+msgid "About:"
+msgstr "Om:"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "Endepunkt URL for beskjed"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbyer/Interesser:"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL"
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657
+msgid "Likes:"
+msgstr "Liker:"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nytt bilde fra denne URL-en"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658
+msgid "Dislikes:"
+msgstr "Liker ikke:"
 
-#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1028
-#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
-#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
-#: ../../mod/photos.php:1519 ../../mod/install.php:246
-#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:693 ../../mod/contacts.php:352
-#: ../../mod/settings.php:559 ../../mod/settings.php:669
-#: ../../mod/settings.php:738 ../../mod/settings.php:810
-#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
-#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
-#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
-#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
-#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
-#: ../../addon/facebook/facebook.php:619
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
-#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
-#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/remote_permissions/remote_permissions.php:47
-#: ../../addon/remote_permissions/remote_permissions.php:195
-#: ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187
-#: ../../addon/forumlist/forumlist.php:175
-#: ../../addon/impressum/impressum.php:83
-#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/openstreetmap/openstreetmap.php:70
-#: ../../addon/group_text/group_text.php:84
-#: ../../addon/libravatar/libravatar.php:99
-#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
-#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
-#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
-#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/jappixmini/jappixmini.php:307
-#: ../../addon/statusnet/statusnet.php:278
-#: ../../addon/statusnet/statusnet.php:292
-#: ../../addon/statusnet/statusnet.php:318
-#: ../../addon/statusnet/statusnet.php:325
-#: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
-#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
-#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
-#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
-#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
-#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:642
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
-#: ../../addon.old/facebook/facebook.php:619
-#: ../../addon.old/snautofollow/snautofollow.php:64
-#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
-#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
-#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
-#: ../../addon.old/planets/planets.php:158
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
-#: ../../addon.old/randplace/randplace.php:177
-#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
-#: ../../addon.old/startpage/startpage.php:92
-#: ../../addon.old/geonames/geonames.php:187
-#: ../../addon.old/oembed.old/oembed.php:41
-#: ../../addon.old/forumlist/forumlist.php:175
-#: ../../addon.old/impressum/impressum.php:83
-#: ../../addon.old/notimeline/notimeline.php:64
-#: ../../addon.old/blockem/blockem.php:57
-#: ../../addon.old/qcomment/qcomment.php:61
-#: ../../addon.old/openstreetmap/openstreetmap.php:70
-#: ../../addon.old/group_text/group_text.php:84
-#: ../../addon.old/libravatar/libravatar.php:99
-#: ../../addon.old/libertree/libertree.php:90
-#: ../../addon.old/altpager/altpager.php:87
-#: ../../addon.old/mathjax/mathjax.php:42
-#: ../../addon.old/editplain/editplain.php:84
-#: ../../addon.old/blackout/blackout.php:98
-#: ../../addon.old/gravatar/gravatar.php:95
-#: ../../addon.old/pageheader/pageheader.php:55
-#: ../../addon.old/ijpost/ijpost.php:93
-#: ../../addon.old/jappixmini/jappixmini.php:307
-#: ../../addon.old/statusnet/statusnet.php:278
-#: ../../addon.old/statusnet/statusnet.php:292
-#: ../../addon.old/statusnet/statusnet.php:318
-#: ../../addon.old/statusnet/statusnet.php:325
-#: ../../addon.old/statusnet/statusnet.php:353
-#: ../../addon.old/statusnet/statusnet.php:576
-#: ../../addon.old/tumblr/tumblr.php:90
-#: ../../addon.old/numfriends/numfriends.php:85
-#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
-#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
-#: ../../addon.old/twitter/twitter.php:180
-#: ../../addon.old/twitter/twitter.php:209
-#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
-#: ../../addon.old/fromapp/fromapp.php:77
-#: ../../addon.old/blogger/blogger.php:102
-#: ../../addon.old/posterous/posterous.php:103
-msgid "Submit"
-msgstr "Lagre"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformasjon og sosiale nettverk:"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Hjelp:"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikksmak:"
 
-#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
-msgid "Help"
-msgstr "Hjelp"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Bøker, litteratur:"
 
-#: ../../mod/help.php:90 ../../index.php:218
-msgid "Not Found"
-msgstr "Ikke funnet"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "TV:"
 
-#: ../../mod/help.php:93 ../../index.php:221
-msgid "Page not found."
-msgstr "Fant ikke siden."
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/kultur/underholdning:"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Filstørrelsen er større enn begrensning på %d"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Kjærlighet/romanse:"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Opplasting av filen mislyktes."
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeid/ansatt hos:"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Venneforslag sendt."
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Skole/utdanning:"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Foreslå venner"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Mann"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Foreslå en venn for %s"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Kvinne"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "For øyeblikket mann"
 
-#: ../../mod/events.php:279
-msgid "l, F j"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "For øyeblikket kvinne"
 
-#: ../../mod/events.php:301
-msgid "Edit event"
-msgstr "Rediger hendelse"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Stort sett mann"
 
-#: ../../mod/events.php:323 ../../include/text.php:1190
-msgid "link to source"
-msgstr "lenke til kilde"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Stort sett kvinne"
 
-#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
-#: ../../include/nav.php:52 ../../boot.php:1748
-msgid "Events"
-msgstr "Hendelser"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transkjønnet"
 
-#: ../../mod/events.php:348
-msgid "Create New Event"
-msgstr "Lag ny hendelse"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Tvekjønnet"
 
-#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
-#: ../../addon.old/dav/friendica/layout.fnk.php:263
-msgid "Previous"
-msgstr "Forrige"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksuell"
 
-#: ../../mod/events.php:350 ../../mod/install.php:205
-#: ../../addon/dav/friendica/layout.fnk.php:266
-#: ../../addon.old/dav/friendica/layout.fnk.php:266
-msgid "Next"
-msgstr "Neste"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafroditt"
 
-#: ../../mod/events.php:423
-msgid "hour:minute"
-msgstr "time:minutt"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Intetkjønn"
 
-#: ../../mod/events.php:433
-msgid "Event details"
-msgstr "Hendelsesdetaljer"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Ikke spesifisert"
 
-#: ../../mod/events.php:434
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Annet"
 
-#: ../../mod/events.php:436
-msgid "Event Starts:"
-msgstr "Hendelsen  starter:"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Ubestemt"
 
-#: ../../mod/events.php:436 ../../mod/events.php:450
-msgid "Required"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Menn"
 
-#: ../../mod/events.php:439
-msgid "Finish date/time is not known or not relevant"
-msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Kvinner"
 
-#: ../../mod/events.php:441
-msgid "Event Finishes:"
-msgstr "Hendelsen slutter:"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Homse"
 
-#: ../../mod/events.php:444
-msgid "Adjust for viewer timezone"
-msgstr "Tilpass til iakttakerens tidssone"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbe"
 
-#: ../../mod/events.php:446
-msgid "Description:"
-msgstr "Beskrivelse:"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Ingen preferanse"
 
-#: ../../mod/events.php:448 ../../mod/directory.php:134
-#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1278
-msgid "Location:"
-msgstr "Plassering:"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksuell"
 
-#: ../../mod/events.php:450
-msgid "Title:"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autoseksuell"
 
-#: ../../mod/events.php:452
-msgid "Share this event"
-msgstr "Del denne hendelsen"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Avholdende"
 
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
-#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
-#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:1009
-#: ../../addon.old/js_upload/js_upload.php:45
-msgid "Cancel"
-msgstr "Avbryt"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jomfru"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Fjernet tag"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Avvikende"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Fjern tag"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisj"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Velg en tag å fjerne:"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Mange"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-#: ../../addon/dav/common/wdcal_edit.inc.php:468
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
-msgid "Remove"
-msgstr "Slett"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Aseksuell"
 
-#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Alene"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Tillat forbindelse til program"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Ensom"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Tilgjengelig"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Vennligst logg inn for å fortsette."
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Ikke tilgjengelig"
 
-#: ../../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 "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Er forelsket"
 
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
-#: ../../mod/settings.php:933 ../../mod/settings.php:939
-#: ../../mod/settings.php:947 ../../mod/settings.php:951
-#: ../../mod/settings.php:956 ../../mod/settings.php:962
-#: ../../mod/settings.php:968 ../../mod/settings.php:974
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/register.php:237
-#: ../../mod/profiles.php:584
-msgid "Yes"
-msgstr "Ja"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Betatt"
 
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
-#: ../../mod/settings.php:933 ../../mod/settings.php:939
-#: ../../mod/settings.php:947 ../../mod/settings.php:951
-#: ../../mod/settings.php:956 ../../mod/settings.php:962
-#: ../../mod/settings.php:968 ../../mod/settings.php:974
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/register.php:238
-#: ../../mod/profiles.php:585
-msgid "No"
-msgstr "Nei"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Stevnemøter/dater"
 
-#: ../../mod/photos.php:51 ../../boot.php:1741
-msgid "Photo Albums"
-msgstr "Fotoalbum"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Utro"
 
-#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
-#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
-#: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:492
-#: ../../addon.old/communityhome/communityhome.php:110
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexavhengig"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
-msgid "Upload New Photos"
-msgstr "Last opp nye bilder"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "Venner"
 
-#: ../../mod/photos.php:79 ../../mod/settings.php:23
-msgid "everybody"
-msgstr "alle"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Venner med fordeler"
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Kontaktinformasjon utilgjengelig"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Tilfeldig"
 
-#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
-#: ../../mod/photos.php:1107 ../../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
-#: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
-#: ../../include/user.php:331 ../../include/user.php:338
-#: ../../addon.old/communityhome/communityhome.php:111
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Forlovet"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album ble ikke funnet."
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Gift"
 
-#: ../../mod/photos.php:182 ../../mod/photos.php:1101
-msgid "Delete Album"
-msgstr "Slett album"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Fantasiekteskap"
 
-#: ../../mod/photos.php:245 ../../mod/photos.php:1364
-msgid "Delete Photo"
-msgstr "Slett bilde"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partnere"
 
-#: ../../mod/photos.php:607
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Samboere"
 
-#: ../../mod/photos.php:607
-msgid "a photo"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Samboer"
 
-#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
-#: ../../addon.old/js_upload/js_upload.php:315
-msgid "Image exceeds size limit of "
-msgstr "Bilde overstiger størrelsesbegrensningen på "
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Lykkelig"
 
-#: ../../mod/photos.php:720
-msgid "Image file is empty."
-msgstr "Bildefilen er tom."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Ikke på utkikk"
 
-#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:112
-msgid "Unable to process image."
-msgstr "Ikke i stand til å behandle bildet."
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Partnerbytte/swinger"
 
-#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:138
-msgid "Image upload failed."
-msgstr "Mislyktes med å laste opp bilde."
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Bedratt"
 
-#: ../../mod/photos.php:865 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
-#: ../../addon/forumdirectory/forumdirectory.php:53
-msgid "Public access denied."
-msgstr "Offentlig tilgang ikke tillatt."
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separert"
 
-#: ../../mod/photos.php:875
-msgid "No photos selected"
-msgstr "Ingen bilder er valgt"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Ustabil"
 
-#: ../../mod/photos.php:976
-msgid "Access to this item is restricted."
-msgstr "Tilgang til dette elementet er begrenset."
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Skilt"
 
-#: ../../mod/photos.php:1037
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Fantasiskilt"
 
-#: ../../mod/photos.php:1043
-msgid "Upload Photos"
-msgstr "Last opp bilder"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Enke/enkemann"
 
-#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
-msgid "New album name: "
-msgstr "Nytt albumnavn:"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Usikker"
 
-#: ../../mod/photos.php:1048
-msgid "or existing album name: "
-msgstr "eller eksisterende albumnavn:"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Det er komplisert"
 
-#: ../../mod/photos.php:1049
-msgid "Do not show a status post for this upload"
-msgstr "Ikke vis statusoppdatering for denne opplastingen"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Uinteressert"
 
-#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
-msgid "Permissions"
-msgstr "Tillatelser"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Spør meg"
 
-#: ../../mod/photos.php:1111
-msgid "Edit Album"
-msgstr "Endre album"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "sluttet å følge"
 
-#: ../../mod/photos.php:1117
-msgid "Show Newest First"
-msgstr ""
+#: ../../include/Contact.php:225 ../../include/conversation.php:878
+msgid "Poke"
+msgstr "Dytt"
 
-#: ../../mod/photos.php:1119
-msgid "Show Oldest First"
-msgstr ""
+#: ../../include/Contact.php:226 ../../include/conversation.php:872
+msgid "View Status"
+msgstr "Vis status"
 
-#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
-msgid "View Photo"
-msgstr "Vis bilde"
+#: ../../include/Contact.php:227 ../../include/conversation.php:873
+msgid "View Profile"
+msgstr "Vis profil"
 
-#: ../../mod/photos.php:1178
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset."
+#: ../../include/Contact.php:228 ../../include/conversation.php:874
+msgid "View Photos"
+msgstr "Vis bilder"
 
-#: ../../mod/photos.php:1180
-msgid "Photo not available"
-msgstr "Bilde ikke tilgjengelig"
+#: ../../include/Contact.php:229 ../../include/Contact.php:251
+#: ../../include/conversation.php:875
+msgid "Network Posts"
+msgstr "Nettverksinnlegg"
 
-#: ../../mod/photos.php:1236
-msgid "View photo"
-msgstr "Vis foto"
+#: ../../include/Contact.php:230 ../../include/Contact.php:251
+#: ../../include/conversation.php:876
+msgid "Edit Contact"
+msgstr "Endre kontakt"
 
-#: ../../mod/photos.php:1236
-msgid "Edit photo"
-msgstr "Endre bilde"
+#: ../../include/Contact.php:231 ../../include/Contact.php:251
+#: ../../include/conversation.php:877
+msgid "Send PM"
+msgstr "Send privat melding"
 
-#: ../../mod/photos.php:1237
-msgid "Use as profile photo"
-msgstr "Bruk som profilbilde"
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:550
+#: ../../include/bbcode.php:551
+msgid "Image/photo"
+msgstr "Bilde/fotografi"
 
-#: ../../mod/photos.php:1243 ../../mod/content.php:603
-#: ../../object/Item.php:104
-msgid "Private Message"
-msgstr "Privat melding"
+#: ../../include/bbcode.php:272
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> skrev det følgende <a href=\"%s\" target=\"external-link\">innlegget</a>"
 
-#: ../../mod/photos.php:1262
-msgid "View Full Size"
-msgstr "Vis i full størrelse"
+#: ../../include/bbcode.php:514 ../../include/bbcode.php:534
+msgid "$1 wrote:"
+msgstr "$1 skrev:"
 
-#: ../../mod/photos.php:1336
-msgid "Tags: "
-msgstr "Tagger:"
+#: ../../include/bbcode.php:559 ../../include/bbcode.php:560
+msgid "Encrypted content"
+msgstr "Kryptert innhold"
 
-#: ../../mod/photos.php:1339
-msgid "[Remove any tag]"
-msgstr "[Fjern en tag]"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Synlig for alle"
 
-#: ../../mod/photos.php:1349
-msgid "Rotate CW (right)"
-msgstr ""
+#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "show"
+msgstr "vis"
 
-#: ../../mod/photos.php:1350
-msgid "Rotate CCW (left)"
-msgstr ""
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "don't show"
+msgstr "ikke vis"
 
-#: ../../mod/photos.php:1352
-msgid "New album name"
-msgstr "Nytt albumnavn"
-
-#: ../../mod/photos.php:1355
-msgid "Caption"
-msgstr "Overskrift"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Logget ut."
 
-#: ../../mod/photos.php:1357
-msgid "Add a Tag"
-msgstr "Legg til tag"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Innlogging mislyktes."
 
-#: ../../mod/photos.php:1361
+#: ../../include/auth.php:128
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: ../../mod/photos.php:1381 ../../mod/content.php:667
-#: ../../object/Item.php:202
-msgid "I like this (toggle)"
-msgstr "Jeg liker dette (skru på/av)"
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig."
 
-#: ../../mod/photos.php:1382 ../../mod/content.php:668
-#: ../../object/Item.php:203
-msgid "I don't like this (toggle)"
-msgstr "Jeg liker ikke dette (skru på/av)"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Feilmeldingen var:"
 
-#: ../../mod/photos.php:1383 ../../include/conversation.php:969
-msgid "Share"
-msgstr "Del"
+#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
-#: ../../mod/content.php:482 ../../mod/content.php:848
-#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
-#: ../../mod/message.php:488 ../../include/conversation.php:624
-#: ../../include/conversation.php:988 ../../object/Item.php:269
-msgid "Please wait"
-msgstr "Vennligst vent"
+#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Starter:"
 
-#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
-#: ../../mod/photos.php:1516 ../../mod/content.php:690
-#: ../../object/Item.php:567
-msgid "This is you"
-msgstr "Dette er deg"
+#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Slutter:"
 
-#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
-#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
-#: ../../object/Item.php:266 ../../object/Item.php:569
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485
+msgid "Location:"
+msgstr "Plassering:"
 
-#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
-#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
-#: ../../mod/content.php:702 ../../include/conversation.php:1006
-#: ../../object/Item.php:579
-msgid "Preview"
-msgstr ""
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
+msgid "Disallowed profile URL."
+msgstr "Underkjent profil-URL."
 
-#: ../../mod/photos.php:1488 ../../mod/content.php:439
-#: ../../mod/content.php:724 ../../mod/settings.php:622
-#: ../../mod/group.php:168 ../../mod/admin.php:699
-#: ../../include/conversation.php:569 ../../object/Item.php:118
-msgid "Delete"
-msgstr "Slett"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Forbindelses-URL mangler."
 
-#: ../../mod/photos.php:1601
-msgid "View Album"
-msgstr "Vis album"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."
 
-#: ../../mod/photos.php:1610
-msgid "Recent Photos"
-msgstr "Nye bilder"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Ikke tilgjengelig."
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Den angitte profiladressen inneholder for lite information."
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
-#: ../../include/nav.php:101
-msgid "Community"
-msgstr "Fellesskap"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Fant ingen forfatter eller navn."
 
-#: ../../mod/community.php:61 ../../mod/community.php:86
-#: ../../mod/search.php:162 ../../mod/search.php:188
-msgid "No results."
-msgstr "Fant ikke noe."
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Ingen nettleser-URL passet med denne adressen."
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr ""
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt."
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "kjører på web-plassering"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Bruk mailto: foran adresser for å tvinge e-postsjekk."
 
-#: ../../mod/friendica.php:58
+#: ../../include/follow.php:93
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr ""
-
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Feilrapporter og problemer: vennligst besøk"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."
 
-#: ../../mod/friendica.php:61
+#: ../../include/follow.php:103
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr ""
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Ikke i stand til å hente kontaktinformasjon."
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Ingen installerte plugins/tillegg/apper"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "følger"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Fant ikke elementet"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "En invitasjon er nødvendig."
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Endre innlegg"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Invitasjon kunne ikke bekreftes."
 
-#: ../../mod/editpost.php:91 ../../include/conversation.php:955
-msgid "Post to Email"
-msgstr "Innlegg til e-post"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Ugyldig OpenID URL"
 
-#: ../../mod/editpost.php:106 ../../mod/content.php:711
-#: ../../mod/settings.php:621 ../../object/Item.php:108
-msgid "Edit"
-msgstr "Endre"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "Vennligst skriv inn den nødvendige informasjonen."
 
-#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
-#: ../../mod/message.php:298 ../../mod/message.php:485
-#: ../../include/conversation.php:970
-msgid "Upload photo"
-msgstr "Last opp bilde"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "Vennligst bruk et kortere navn."
 
-#: ../../mod/editpost.php:108 ../../include/conversation.php:971
-msgid "upload photo"
-msgstr ""
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "Navnet er for kort."
 
-#: ../../mod/editpost.php:109 ../../include/conversation.php:972
-msgid "Attach file"
-msgstr "Legg ved fil"
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."
 
-#: ../../mod/editpost.php:110 ../../include/conversation.php:973
-msgid "attach file"
-msgstr ""
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."
 
-#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:299 ../../mod/message.php:486
-#: ../../include/conversation.php:974
-msgid "Insert web link"
-msgstr "Sett inn web-adresse"
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "Ugyldig e-postadresse."
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:975
-msgid "web link"
-msgstr ""
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "Kan ikke bruke den e-postadressen."
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:976
-msgid "Insert video link"
-msgstr ""
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."
 
-#: ../../mod/editpost.php:114 ../../include/conversation.php:977
-msgid "video link"
-msgstr ""
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:978
-msgid "Insert audio link"
-msgstr ""
+#: ../../include/user.php:138
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:979
-msgid "audio link"
-msgstr ""
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:980
-msgid "Set your location"
-msgstr "Angi din plassering"
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "En feil oppstod under registreringen. Vennligst prøv igjen."
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:981
-msgid "set location"
-msgstr ""
+#: ../../include/user.php:237 ../../include/text.php:1596
+msgid "default"
+msgstr "standard"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:982
-msgid "Clear browser location"
-msgstr "Fjern nettleserplassering"
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:983
-msgid "clear location"
-msgstr ""
+#: ../../include/user.php:325 ../../include/user.php:332
+#: ../../include/user.php:339 ../../mod/photos.php:154
+#: ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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:493
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:989
-msgid "Permission settings"
-msgstr "Tillatelser"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Ukjent | Ikke kategorisert"
 
-#: ../../mod/editpost.php:130 ../../include/conversation.php:998
-msgid "CC: email addresses"
-msgstr "Kopi: e-postadresser"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Blokker umiddelbart"
 
-#: ../../mod/editpost.php:131 ../../include/conversation.php:999
-msgid "Public post"
-msgstr "Offentlig innlegg"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Grumsete, poster søppel, fremhever bare seg selv"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:985
-msgid "Set title"
-msgstr "Lagre tittel"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Bekjent av meg, men har ingen mening"
 
-#: ../../mod/editpost.php:136 ../../include/conversation.php:987
-msgid "Categories (comma-separated list)"
-msgstr ""
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, antakelig harmløs"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Eksempel: ola@example.com, kari@example.com"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Respektert, har min tillit"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Denne introduksjonen har allerede blitt akseptert."
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
+msgid "Frequently"
+msgstr "Ofte"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
+msgid "Hourly"
+msgstr "Hver time"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn."
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
+msgid "Twice daily"
+msgstr "To ganger daglig"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
-msgid "Warning: profile location has no profile photo."
-msgstr "Advarsel: profilstedet har ikke noe profilbilde."
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
+msgid "Daily"
+msgstr "Daglig"
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
-#, 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] "one: %d nødvendig parameter ble ikke funnet på angitt sted"
-msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Ukentlig"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Introduksjon ferdig."
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Månedlig"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Uopprettelig protokollfeil."
-
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil utilgjengelig."
-
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s har mottatt for mange kontaktforespørsler idag."
-
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Tiltak mot søppelpost har blitt iverksatt."
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Venner anbefales å prøve igjen om 24 timer."
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Ugyldig stedsangivelse"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr ""
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
+#: ../../mod/admin.php:777
+msgid "Email"
+msgstr "E-post"
 
-#: ../../mod/dfrn_request.php:361
-msgid "This account has not been configured for email. Request failed."
-msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705
+#: ../../mod/dfrn_request.php:842
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/dfrn_request.php:457
-msgid "Unable to resolve your name at the provided location."
-msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/dfrn_request.php:470
-msgid "You have already introduced yourself here."
-msgstr "Du har allerede introdusert deg selv her."
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/dfrn_request.php:474
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Du er visst allerede venn med %s."
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/dfrn_request.php:495
-msgid "Invalid profile URL."
-msgstr "Ugyldig profil-URL."
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Underkjent profil-URL."
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Mislyktes med å oppdatere kontaktposten."
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/dfrn_request.php:591
-msgid "Your introduction has been sent."
-msgstr "Din introduksjon er sendt."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Legg til ny kontakt"
 
-#: ../../mod/dfrn_request.php:644
-msgid "Please login to confirm introduction."
-msgstr "Vennligst logg inn for å bekrefte introduksjonen."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Skriv adresse eller web-plassering"
 
-#: ../../mod/dfrn_request.php:658
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari"
 
-#: ../../mod/dfrn_request.php:669
-msgid "Hide this contact"
-msgstr ""
+#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
+#: ../../mod/match.php:58 ../../boot.php:1417
+msgid "Connect"
+msgstr "Forbindelse"
 
-#: ../../mod/dfrn_request.php:672
+#: ../../include/contact_widgets.php:23
 #, php-format
-msgid "Welcome home %s."
-msgstr "Velkommen hjem %s."
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitasjon tilgjengelig"
+msgstr[1] "%d invitasjoner tilgjengelig"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Finn personer"
 
-#: ../../mod/dfrn_request.php:674
-msgid "Confirm"
-msgstr "Bekreft"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Skriv navn eller interesse"
 
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
-msgid "[Name Withheld]"
-msgstr "[Navnet tilbakeholdt]"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Koble/Følg"
 
-#: ../../mod/dfrn_request.php:810
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr ""
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Eksempler: Robert Morgenstein, fisking"
 
-#: ../../mod/dfrn_request.php:826
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr ""
+#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
+#: ../../mod/directory.php:61
+msgid "Find"
+msgstr "Finn"
 
-#: ../../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 ""
+#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
+#: ../../view/theme/diabook/theme.php:520
+msgid "Friend Suggestions"
+msgstr "Venneforslag"
 
-#: ../../mod/dfrn_request.php:831
-msgid "Friend/Connection Request"
-msgstr "Venne-/Koblings-forespørsel"
+#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
+msgid "Similar Interests"
+msgstr "Liknende interesser"
 
-#: ../../mod/dfrn_request.php:832
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Tilfeldig profil"
 
-#: ../../mod/dfrn_request.php:833
-msgid "Please answer the following:"
-msgstr "Vennligst svar på følgende:"
+#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
+msgid "Invite Friends"
+msgstr "Inviterer venner"
 
-#: ../../mod/dfrn_request.php:834
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kjenner %s deg?"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Nettverk"
 
-#: ../../mod/dfrn_request.php:837
-msgid "Add a personal note:"
-msgstr "Legg til en personlig melding:"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Alle nettverk"
 
-#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "Lagrede mapper"
 
-#: ../../mod/dfrn_request.php:840
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federeated Social Web"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Alt"
 
-#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorier"
 
-#: ../../mod/dfrn_request.php:842
+#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr ""
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d felles kontakt"
+msgstr[1] "%d felles kontakter"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Your Identity Address:"
-msgstr "Din identitetsadresse:"
+#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
+#: ../../object/Item.php:365 ../../boot.php:671
+msgid "show more"
+msgstr "vis mer"
 
-#: ../../mod/dfrn_request.php:846
-msgid "Submit Request"
-msgstr "Send forespørsel"
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "på Last.fm"
 
-#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
-msgid "Account settings"
-msgstr "Kontoinnstillinger"
+#: ../../include/network.php:877
+msgid "view full size"
+msgstr "Vis i full størrelse"
 
-#: ../../mod/uexport.php:14 ../../mod/settings.php:40
-msgid "Display settings"
-msgstr ""
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Diverse"
 
-#: ../../mod/uexport.php:20 ../../mod/settings.php:46
-msgid "Connector settings"
-msgstr "Koblingsinnstillinger"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "år"
 
-#: ../../mod/uexport.php:25 ../../mod/settings.php:51
-msgid "Plugin settings"
-msgstr "Tilleggsinnstillinger"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "måned"
 
-#: ../../mod/uexport.php:30 ../../mod/settings.php:56
-msgid "Connected apps"
-msgstr "Tilkoblede programmer"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dag"
 
-#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
-msgid "Export personal data"
-msgstr "Eksporter personlige data"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "aldri"
 
-#: ../../mod/uexport.php:40 ../../mod/settings.php:66
-msgid "Remove account"
-msgstr ""
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "for mindre enn ett sekund siden"
 
-#: ../../mod/uexport.php:48 ../../mod/settings.php:74
-#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon.old/mathjax/mathjax.php:36
-msgid "Settings"
-msgstr "Innstillinger"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "år"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr ""
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "måneder"
 
-#: ../../mod/uexport.php:72
-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 ""
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "uke"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr ""
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "uker"
 
-#: ../../mod/uexport.php:73
-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 ""
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dager"
 
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr ""
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "time"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr ""
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "timer"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr ""
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minutt"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr ""
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minutter"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "sekund"
 
-#: ../../mod/install.php:139 ../../mod/install.php:204
-#: ../../mod/install.php:488
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Vennligst se filen \"INSTALL.txt\"."
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "sekunder"
 
-#: ../../mod/install.php:201
-msgid "System check"
-msgstr ""
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s siden"
 
-#: ../../mod/install.php:206
-msgid "Check again"
-msgstr ""
+#: ../../include/datetime.php:472 ../../include/items.php:1813
+#, php-format
+msgid "%s's birthday"
+msgstr "%s sin bursdag"
 
-#: ../../mod/install.php:225
-msgid "Database connection"
-msgstr ""
+#: ../../include/datetime.php:473 ../../include/items.php:1814
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Gratulerer med dagen, %s"
 
-#: ../../mod/install.php:226
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr ""
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "Klikk her for oppgradere."
 
-#: ../../mod/install.php:227
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan."
 
-#: ../../mod/install.php:228
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."
 
-#: ../../mod/install.php:232
-msgid "Database Server Name"
-msgstr "Databasetjenerens navn"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "(uten emne)"
 
-#: ../../mod/install.php:233
-msgid "Database Login Name"
-msgstr "Database brukernavn"
+#: ../../include/delivery.php:468 ../../include/enotify.php:28
+#: ../../include/notifier.php:785
+msgid "noreply"
+msgstr "ikke svar"
 
-#: ../../mod/install.php:234
-msgid "Database Login Password"
-msgstr "Database passord"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s er nå venner med %2$s"
 
-#: ../../mod/install.php:235
-msgid "Database Name"
-msgstr "Databasenavn"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Dele varslinger fra Diaspora nettverket"
 
-#: ../../mod/install.php:236 ../../mod/install.php:275
-msgid "Site administrator email address"
-msgstr ""
+#: ../../include/diaspora.php:1874 ../../include/text.php:1862
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../view/theme/diabook/theme.php:464
+msgid "photo"
+msgstr "bilde"
 
-#: ../../mod/install.php:236 ../../mod/install.php:275
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr ""
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468
+msgid "status"
+msgstr "status"
 
-#: ../../mod/install.php:240 ../../mod/install.php:278
-msgid "Please select a default timezone for your website"
-msgstr "Vennligst velg en standard tidssone for ditt nettsted"
+#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
+#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s liker %2$s's %3$s"
 
-#: ../../mod/install.php:265
-msgid "Site settings"
-msgstr ""
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "Vedlegg:"
 
-#: ../../mod/install.php:318
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."
+#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[Navnet tilbakeholdt]"
 
-#: ../../mod/install.php:319
-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 ""
+#: ../../include/items.php:3495
+msgid "A new person is sharing with you at "
+msgstr "En ny person deler med deg hos"
 
-#: ../../mod/install.php:323
-msgid "PHP executable path"
-msgstr ""
+#: ../../include/items.php:3495
+msgid "You have a new follower at "
+msgstr "Du har en ny følgesvenn på "
 
-#: ../../mod/install.php:323
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr ""
+#: ../../include/items.php:3979 ../../mod/display.php:51
+#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809
+#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
+msgid "Item not found."
+msgstr "Enheten ble ikke funnet."
 
-#: ../../mod/install.php:328
-msgid "Command line PHP"
-msgstr ""
+#: ../../include/items.php:4018
+msgid "Do you really want to delete this item?"
+msgstr "Ønsker du virkelig å slette dette elementet?"
+
+#: ../../include/items.php:4020 ../../mod/profiles.php:610
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../mod/install.php:337
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."
+#: ../../include/items.php:4023 ../../include/conversation.php:1120
+#: ../../mod/contacts.php:249 ../../mod/settings.php:585
+#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848
+#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
+#: ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "Avbryt"
 
-#: ../../mod/install.php:338
-msgid "This is required for message delivery to work."
-msgstr "Dette er nødvendig for at meldingslevering skal virke."
+#: ../../include/items.php:4143 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242
+#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159
+#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/settings.php:91
+#: ../../mod/settings.php:566 ../../mod/settings.php:571
+#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
+#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
+#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/notifications.php:66
+#: ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/install.php:151 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../index.php:346
+msgid "Permission denied."
+msgstr "Ingen tilgang."
 
-#: ../../mod/install.php:340
-msgid "PHP register_argc_argv"
-msgstr ""
+#: ../../include/items.php:4213
+msgid "Archives"
+msgstr "Arkiverer"
 
-#: ../../mod/install.php:361
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Generelle egenskaper"
 
-#: ../../mod/install.php:362
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Flere profiler"
 
-#: ../../mod/install.php:364
-msgid "Generate encryption keys"
-msgstr ""
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Mulighet for å lage flere profiler"
 
-#: ../../mod/install.php:371
-msgid "libCurl PHP module"
-msgstr ""
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funksjoner for å skrive innlegg"
 
-#: ../../mod/install.php:372
-msgid "GD graphics PHP module"
-msgstr ""
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Rik tekstredigering"
 
-#: ../../mod/install.php:373
-msgid "OpenSSL PHP module"
-msgstr ""
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Skru på rik tekstredigering"
 
-#: ../../mod/install.php:374
-msgid "mysqli PHP module"
-msgstr ""
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Forhåndsvisning av innlegg"
 
-#: ../../mod/install.php:375
-msgid "mb_string PHP module"
-msgstr ""
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering"
 
-#: ../../mod/install.php:380 ../../mod/install.php:382
-msgid "Apache mod_rewrite module"
-msgstr ""
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr "Småprogrammer i sidestolpen for Nettverk"
 
-#: ../../mod/install.php:380
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "Søk etter dato"
 
-#: ../../mod/install.php:388
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr "Mulighet for å velge innlegg etter datoområder"
 
-#: ../../mod/install.php:392
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "Gruppefilter"
 
-#: ../../mod/install.php:396
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen"
 
-#: ../../mod/install.php:400
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr "Nettverksfilter"
 
-#: ../../mod/install.php:404
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert."
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk"
 
-#: ../../mod/install.php:421
-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 "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."
+#: ../../include/features.php:41 ../../mod/search.php:30
+#: ../../mod/network.php:233
+msgid "Saved Searches"
+msgstr "Lagrede søk"
 
-#: ../../mod/install.php:422
-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 "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr "Lagre søkeuttrykk for gjenbruk"
 
-#: ../../mod/install.php:423
-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 ""
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr "Nettverksfaner"
 
-#: ../../mod/install.php:424
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr ""
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr "Nettverk personlig fane"
 
-#: ../../mod/install.php:427
-msgid ".htconfig.php is writable"
-msgstr ""
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i"
 
-#: ../../mod/install.php:439
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr "Nettverk Ny fane"
 
-#: ../../mod/install.php:441
-msgid "Url rewrite is working"
-msgstr ""
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)"
 
-#: ../../mod/install.php:451
-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 "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr "Nettverk Delte lenker fane"
 
-#: ../../mod/install.php:475
-msgid "Errors encountered creating database tables."
-msgstr "Feil oppstod under opprettelsen av databasetabeller."
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem"
 
-#: ../../mod/install.php:486
-msgid "<h1>What next</h1>"
-msgstr ""
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr "Innleggs-/kommentarverktøy"
 
-#: ../../mod/install.php:487
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr "Slett flere"
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:390
-msgid "l F d, Y \\@ g:i A"
-msgstr ""
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Velg og slett flere innlegg/kommentarer på en gang"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Tidskonvertering"
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr "Endre sendte innlegg"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr "Endre og korriger innlegg og kommentarer etter sending"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC tid: %s"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "Merking"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Gjeldende tidssone: %s"
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr "Mulighet til å merke eksisterende innlegg"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Konvertert lokaltid: %s"
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr "Innleggskategorier"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Vennligst velg din tidssone:"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "Legg til kategorier til dine innlegg"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr "Mulighet til å sortere innlegg i mapper"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr "Liker ikke innlegg"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr ""
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr "Mulighet til å ikke like innlegg/kommentarer"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr ""
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "Stjerneinnlegg"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr ""
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profiltreff"
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."
+#: ../../include/text.php:294
+msgid "prev"
+msgstr "forrige"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr ""
+#: ../../include/text.php:296
+msgid "first"
+msgstr "første"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1216
-msgid "Connect"
-msgstr "Forbindelse"
+#: ../../include/text.php:325
+msgid "last"
+msgstr "siste"
 
-#: ../../mod/match.php:65 ../../mod/dirfind.php:60
-msgid "No matches"
-msgstr "Ingen treff"
+#: ../../include/text.php:328
+msgid "next"
+msgstr "neste"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
+#: ../../include/text.php:352
+msgid "newer"
+msgstr "nyere"
 
-#: ../../mod/lockview.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:123
-msgid "Visible to:"
-msgstr "Synlig for:"
+#: ../../include/text.php:356
+msgid "older"
+msgstr "eldre"
 
-#: ../../mod/content.php:119 ../../mod/network.php:594
-msgid "No such group"
-msgstr "Gruppen finnes ikke"
+#: ../../include/text.php:807
+msgid "No contacts"
+msgstr "Ingen kontakter"
 
-#: ../../mod/content.php:130 ../../mod/network.php:605
-msgid "Group is empty"
-msgstr "Gruppen er tom"
+#: ../../include/text.php:816
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontakter"
 
-#: ../../mod/content.php:134 ../../mod/network.php:609
-msgid "Group: "
-msgstr "Gruppe:"
+#: ../../include/text.php:828 ../../mod/viewcontacts.php:76
+msgid "View Contacts"
+msgstr "Vis kontakter"
 
-#: ../../mod/content.php:438 ../../mod/content.php:723
-#: ../../include/conversation.php:568 ../../object/Item.php:117
-msgid "Select"
-msgstr "Velg"
+#: ../../include/text.php:905 ../../include/text.php:906
+#: ../../include/nav.php:118 ../../mod/search.php:99
+msgid "Search"
+msgstr "Søk"
 
-#: ../../mod/content.php:455 ../../mod/content.php:817
-#: ../../mod/content.php:818 ../../include/conversation.php:587
-#: ../../object/Item.php:234 ../../object/Item.php:235
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr ""
+#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Lagre"
 
-#: ../../mod/content.php:465 ../../mod/content.php:829
-#: ../../include/conversation.php:607 ../../object/Item.php:248
-#, php-format
-msgid "%s from %s"
-msgstr "%s fra %s"
+#: ../../include/text.php:957
+msgid "poke"
+msgstr "dytt"
 
-#: ../../mod/content.php:480 ../../include/conversation.php:622
-msgid "View in context"
-msgstr "Vis i sammenheng"
+#: ../../include/text.php:957 ../../include/conversation.php:211
+msgid "poked"
+msgstr "dyttet"
 
-#: ../../mod/content.php:586 ../../object/Item.php:288
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/text.php:958
+msgid "ping"
+msgstr "ping"
 
-#: ../../mod/content.php:588 ../../include/text.php:1446
-#: ../../object/Item.php:290 ../../object/Item.php:303
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/content.php:589 ../../addon/page/page.php:77
-#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../boot.php:609
-#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
-#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
-msgid "show more"
-msgstr ""
+#: ../../include/text.php:958
+msgid "pinged"
+msgstr "pinget"
 
-#: ../../mod/content.php:667 ../../object/Item.php:202
-msgid "like"
-msgstr ""
+#: ../../include/text.php:959
+msgid "prod"
+msgstr "dult"
 
-#: ../../mod/content.php:668 ../../object/Item.php:203
-msgid "dislike"
-msgstr ""
+#: ../../include/text.php:959
+msgid "prodded"
+msgstr "dultet"
 
-#: ../../mod/content.php:670 ../../object/Item.php:205
-msgid "Share this"
-msgstr ""
+#: ../../include/text.php:960
+msgid "slap"
+msgstr "klaske"
 
-#: ../../mod/content.php:670 ../../object/Item.php:205
-msgid "share"
-msgstr ""
+#: ../../include/text.php:960
+msgid "slapped"
+msgstr "klasket"
 
-#: ../../mod/content.php:694 ../../object/Item.php:571
-msgid "Bold"
-msgstr ""
+#: ../../include/text.php:961
+msgid "finger"
+msgstr "fingre"
 
-#: ../../mod/content.php:695 ../../object/Item.php:572
-msgid "Italic"
-msgstr ""
+#: ../../include/text.php:961
+msgid "fingered"
+msgstr "fingret"
 
-#: ../../mod/content.php:696 ../../object/Item.php:573
-msgid "Underline"
-msgstr ""
+#: ../../include/text.php:962
+msgid "rebuff"
+msgstr "avslå"
 
-#: ../../mod/content.php:697 ../../object/Item.php:574
-msgid "Quote"
-msgstr ""
+#: ../../include/text.php:962
+msgid "rebuffed"
+msgstr "avslo"
 
-#: ../../mod/content.php:698 ../../object/Item.php:575
-msgid "Code"
-msgstr ""
+#: ../../include/text.php:976
+msgid "happy"
+msgstr "glad"
 
-#: ../../mod/content.php:699 ../../object/Item.php:576
-msgid "Image"
-msgstr ""
+#: ../../include/text.php:977
+msgid "sad"
+msgstr "trist"
 
-#: ../../mod/content.php:700 ../../object/Item.php:577
-msgid "Link"
-msgstr ""
+#: ../../include/text.php:978
+msgid "mellow"
+msgstr "dempet"
 
-#: ../../mod/content.php:701 ../../object/Item.php:578
-msgid "Video"
-msgstr ""
+#: ../../include/text.php:979
+msgid "tired"
+msgstr "trøtt"
 
-#: ../../mod/content.php:736 ../../object/Item.php:181
-msgid "add star"
-msgstr ""
+#: ../../include/text.php:980
+msgid "perky"
+msgstr "oppkvikket"
 
-#: ../../mod/content.php:737 ../../object/Item.php:182
-msgid "remove star"
-msgstr ""
+#: ../../include/text.php:981
+msgid "angry"
+msgstr "sint"
 
-#: ../../mod/content.php:738 ../../object/Item.php:183
-msgid "toggle star status"
-msgstr "veksle stjernestatus"
+#: ../../include/text.php:982
+msgid "stupified"
+msgstr "tanketom"
 
-#: ../../mod/content.php:741 ../../object/Item.php:186
-msgid "starred"
-msgstr ""
+#: ../../include/text.php:983
+msgid "puzzled"
+msgstr "forundret"
 
-#: ../../mod/content.php:742 ../../object/Item.php:191
-msgid "add tag"
-msgstr ""
+#: ../../include/text.php:984
+msgid "interested"
+msgstr "interessert"
 
-#: ../../mod/content.php:746 ../../object/Item.php:121
-msgid "save to folder"
-msgstr ""
+#: ../../include/text.php:985
+msgid "bitter"
+msgstr "bitter"
 
-#: ../../mod/content.php:819 ../../object/Item.php:236
-msgid "to"
-msgstr "til"
+#: ../../include/text.php:986
+msgid "cheerful"
+msgstr "munter"
 
-#: ../../mod/content.php:820 ../../object/Item.php:238
-msgid "Wall-to-Wall"
-msgstr "vegg-til-vegg"
+#: ../../include/text.php:987
+msgid "alive"
+msgstr "livlig"
 
-#: ../../mod/content.php:821 ../../object/Item.php:239
-msgid "via Wall-To-Wall:"
-msgstr "via vegg-til-vegg"
+#: ../../include/text.php:988
+msgid "annoyed"
+msgstr "irritert"
 
-#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
-#: ../../addon.old/communityhome/communityhome.php:179
-#, php-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+#: ../../include/text.php:989
+msgid "anxious"
+msgstr "nervøs"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Ugyldig forespørselsidentifikator."
+#: ../../include/text.php:990
+msgid "cranky"
+msgstr "grinete"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
-msgid "Discard"
-msgstr "Forkast"
+#: ../../include/text.php:991
+msgid "disturbed"
+msgstr "forstyrret"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
-#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
-#: ../../mod/contacts.php:379
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../include/text.php:992
+msgid "frustrated"
+msgstr "frustrert"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr ""
+#: ../../include/text.php:993
+msgid "motivated"
+msgstr "motivert"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:113
-msgid "Network"
-msgstr "Nettverk"
+#: ../../include/text.php:994
+msgid "relaxed"
+msgstr "avslappet"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:444
-msgid "Personal"
-msgstr ""
+#: ../../include/text.php:995
+msgid "surprised"
+msgstr "overrasket"
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-#: ../../include/nav.php:77 ../../include/nav.php:116
-msgid "Home"
-msgstr "Hjem"
+#: ../../include/text.php:1163
+msgid "Monday"
+msgstr "mandag"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:122
-msgid "Introductions"
-msgstr "Introduksjoner"
+#: ../../include/text.php:1163
+msgid "Tuesday"
+msgstr "tirsdag"
 
-#: ../../mod/notifications.php:103 ../../mod/message.php:180
-#: ../../include/nav.php:129
-msgid "Messages"
-msgstr "Meldinger"
+#: ../../include/text.php:1163
+msgid "Wednesday"
+msgstr "onsdag"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Vis ignorerte forespørsler"
+#: ../../include/text.php:1163
+msgid "Thursday"
+msgstr "torsdag"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Skjul ignorerte forespørsler"
+#: ../../include/text.php:1163
+msgid "Friday"
+msgstr "fredag"
 
-#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
-msgid "Notification type: "
-msgstr "Beskjedtype:"
+#: ../../include/text.php:1163
+msgid "Saturday"
+msgstr "lørdag"
 
-#: ../../mod/notifications.php:149
-msgid "Friend Suggestion"
-msgstr "Venneforslag"
+#: ../../include/text.php:1163
+msgid "Sunday"
+msgstr "søndag"
 
-#: ../../mod/notifications.php:151
-#, php-format
-msgid "suggested by %s"
-msgstr "foreslått av %s"
+#: ../../include/text.php:1167
+msgid "January"
+msgstr "januar"
 
-#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
-#: ../../mod/contacts.php:385
-msgid "Hide this contact from others"
-msgstr ""
+#: ../../include/text.php:1167
+msgid "February"
+msgstr "februar"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-msgid "Post a new friend activity"
-msgstr ""
+#: ../../include/text.php:1167
+msgid "March"
+msgstr "mars"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-msgid "if applicable"
-msgstr ""
+#: ../../include/text.php:1167
+msgid "April"
+msgstr "april"
 
-#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
-#: ../../mod/admin.php:697
-msgid "Approve"
-msgstr "Godkjenn"
+#: ../../include/text.php:1167
+msgid "May"
+msgstr "mai"
 
-#: ../../mod/notifications.php:180
-msgid "Claims to be known to you: "
-msgstr "Påstår å kjenne deg:"
+#: ../../include/text.php:1167
+msgid "June"
+msgstr "juni"
 
-#: ../../mod/notifications.php:180
-msgid "yes"
-msgstr "ja"
+#: ../../include/text.php:1167
+msgid "July"
+msgstr "juli"
 
-#: ../../mod/notifications.php:180
-msgid "no"
-msgstr "ei"
+#: ../../include/text.php:1167
+msgid "August"
+msgstr "august"
 
-#: ../../mod/notifications.php:187
-msgid "Approve as: "
-msgstr "Godkjenn som:"
+#: ../../include/text.php:1167
+msgid "September"
+msgstr "september"
 
-#: ../../mod/notifications.php:188
-msgid "Friend"
-msgstr "Venn"
+#: ../../include/text.php:1167
+msgid "October"
+msgstr "oktober"
 
-#: ../../mod/notifications.php:189
-msgid "Sharer"
-msgstr "Deler"
+#: ../../include/text.php:1167
+msgid "November"
+msgstr "november"
 
-#: ../../mod/notifications.php:189
-msgid "Fan/Admirer"
-msgstr "Fan/Beundrer"
+#: ../../include/text.php:1167
+msgid "December"
+msgstr "desember"
 
-#: ../../mod/notifications.php:195
-msgid "Friend/Connect Request"
-msgstr "Venn/kontakt-forespørsel"
+#: ../../include/text.php:1323 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Vis video"
 
-#: ../../mod/notifications.php:195
-msgid "New Follower"
-msgstr "Ny følgesvenn"
+#: ../../include/text.php:1355
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/notifications.php:216
-msgid "No introductions."
-msgstr ""
+#: ../../include/text.php:1379 ../../include/text.php:1391
+msgid "Click to open/close"
+msgstr "Klikk for å åpne/lukke"
 
-#: ../../mod/notifications.php:219 ../../include/nav.php:123
-msgid "Notifications"
-msgstr "Varslinger"
+#: ../../include/text.php:1553 ../../mod/events.php:335
+msgid "link to source"
+msgstr "lenke til kilde"
 
-#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
-#: ../../mod/notifications.php:468
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s likte %s sitt innlegg"
+#: ../../include/text.php:1608
+msgid "Select an alternate language"
+msgstr "Velg et annet språk"
 
-#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
-#: ../../mod/notifications.php:477
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mislikte %s sitt innlegg"
+#: ../../include/text.php:1860 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
+msgid "event"
+msgstr "hendelse"
 
-#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
-#: ../../mod/notifications.php:491
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s er nå venner med %s"
+#: ../../include/text.php:1864
+msgid "activity"
+msgstr "aktivitet"
 
-#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
-#, php-format
-msgid "%s created a new post"
-msgstr "%s skrev et nytt innlegg"
+#: ../../include/text.php:1866 ../../mod/content.php:628
+#: ../../object/Item.php:364 ../../object/Item.php:377
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "kommentar"
+msgstr[1] "kommentarer"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:500
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s kommenterte på %s sitt innlegg"
+#: ../../include/text.php:1867
+msgid "post"
+msgstr "innlegg"
 
-#: ../../mod/notifications.php:301
-msgid "No more network notifications."
-msgstr ""
+#: ../../include/text.php:2022
+msgid "Item filed"
+msgstr "Element arkivert"
 
-#: ../../mod/notifications.php:305
-msgid "Network Notifications"
-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."
+msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn."
 
-#: ../../mod/notifications.php:331 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr ""
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Standard personverngruppe for nye kontakter"
 
-#: ../../mod/notifications.php:335 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr ""
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle"
 
-#: ../../mod/notifications.php:426
-msgid "No more personal notifications."
-msgstr ""
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "endre"
 
-#: ../../mod/notifications.php:430
-msgid "Personal Notifications"
-msgstr ""
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Grupper"
 
-#: ../../mod/notifications.php:507
-msgid "No more home notifications."
-msgstr ""
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Endre gruppe"
 
-#: ../../mod/notifications.php:511
-msgid "Home Notifications"
-msgstr ""
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Lag en ny gruppe"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Fikk ikke tilgang til kontaktposten."
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakter som ikke er i noen gruppe"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Kunne ikke lokalisere valgt profil."
+#: ../../include/group.php:275 ../../mod/network.php:234
+msgid "add"
+msgstr "legg til"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Kontakt oppdatert."
+#: ../../include/conversation.php:140 ../../mod/like.php:170
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s liker ikke %2$s's %3$s"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Kontakten er blokkert"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s dyttet %2$s"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Kontakten er ikke blokkert lenger"
+#: ../../include/conversation.php:227 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s er for øyeblikket %2$s"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Kontakten er ignorert"
+#: ../../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 merket %2$s sitt %3$s med %4$s"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Kontakten er ikke ignorert lenger"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "innlegg/element"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr ""
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s merket %2$s's %3$s som en favoritt"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr ""
+#: ../../include/conversation.php:612 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../object/Item.php:126
+msgid "Select"
+msgstr "Velg"
 
-#: ../../mod/contacts.php:233
-msgid "Contact has been removed."
-msgstr "Kontakten er fjernet."
+#: ../../include/conversation.php:613 ../../mod/admin.php:770
+#: ../../mod/settings.php:647 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:127
+msgid "Delete"
+msgstr "Slett"
 
-#: ../../mod/contacts.php:267
+#: ../../include/conversation.php:652 ../../mod/content.php:495
+#: ../../mod/content.php:875 ../../mod/content.php:876
+#: ../../object/Item.php:306 ../../object/Item.php:307
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du er gjensidig venn med %s"
+msgid "View %s's profile @ %s"
+msgstr "Besøk %ss profil [%s]"
 
-#: ../../mod/contacts.php:271
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du deler med %s"
+#: ../../include/conversation.php:664 ../../object/Item.php:297
+msgid "Categories:"
+msgstr "Kategorier:"
+
+#: ../../include/conversation.php:665 ../../object/Item.php:298
+msgid "Filed under:"
+msgstr "Lagret i:"
 
-#: ../../mod/contacts.php:276
+#: ../../include/conversation.php:672 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../object/Item.php:320
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s deler med deg"
+msgid "%s from %s"
+msgstr "%s fra %s"
 
-#: ../../mod/contacts.php:293
-msgid "Private communications are not available for this contact."
-msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
+#: ../../include/conversation.php:687 ../../mod/content.php:520
+msgid "View in context"
+msgstr "Vis i sammenheng"
 
-#: ../../mod/contacts.php:296
-msgid "Never"
-msgstr "Aldri"
+#: ../../include/conversation.php:689 ../../include/conversation.php:1100
+#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/photos.php:1532 ../../mod/content.php:522
+#: ../../mod/content.php:906 ../../object/Item.php:341
+msgid "Please wait"
+msgstr "Vennligst vent"
 
-#: ../../mod/contacts.php:300
-msgid "(Update was successful)"
-msgstr "(Oppdatering vellykket)"
+#: ../../include/conversation.php:768
+msgid "remove"
+msgstr "slett"
 
-#: ../../mod/contacts.php:300
-msgid "(Update was not successful)"
-msgstr "(Oppdatering mislykket)"
+#: ../../include/conversation.php:772
+msgid "Delete Selected Items"
+msgstr "Slette valgte elementer"
 
-#: ../../mod/contacts.php:302
-msgid "Suggest friends"
-msgstr "Foreslå venner"
+#: ../../include/conversation.php:871
+msgid "Follow Thread"
+msgstr "Følg tråd"
 
-#: ../../mod/contacts.php:306
+#: ../../include/conversation.php:940
 #, php-format
-msgid "Network type: %s"
-msgstr "Nettverkstype: %s"
+msgid "%s likes this."
+msgstr "%s liker dette."
 
-#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
+#: ../../include/conversation.php:940
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d felles kontakt"
-msgstr[1] "%d felles kontakter"
+msgid "%s doesn't like this."
+msgstr "%s liker ikke dette."
 
-#: ../../mod/contacts.php:314
-msgid "View all contacts"
-msgstr "Vis alle kontakter"
+#: ../../include/conversation.php:945
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span %1$s>%2$d personer</span> liker dette"
 
-#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
-#: ../../mod/admin.php:701
-msgid "Unblock"
-msgstr "Ikke blokker"
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span %1$s>%2$d personer</span> liker ikke dette"
 
-#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
-#: ../../mod/admin.php:700
-msgid "Block"
-msgstr "Blokker"
+#: ../../include/conversation.php:962
+msgid "and"
+msgstr "og"
 
-#: ../../mod/contacts.php:322
-msgid "Toggle Blocked status"
-msgstr ""
+#: ../../include/conversation.php:968
+#, php-format
+msgid ", and %d other people"
+msgstr ", og %d andre personer"
 
-#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
-msgid "Unignore"
-msgstr "Fjern ignorering"
+#: ../../include/conversation.php:970
+#, php-format
+msgid "%s like this."
+msgstr "%s liker dette."
 
-#: ../../mod/contacts.php:328
-msgid "Toggle Ignored status"
-msgstr ""
+#: ../../include/conversation.php:970
+#, php-format
+msgid "%s don't like this."
+msgstr "%s liker ikke dette."
 
-#: ../../mod/contacts.php:332
-msgid "Unarchive"
-msgstr ""
+#: ../../include/conversation.php:997 ../../include/conversation.php:1015
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Synlig for <strong>alle</strong>"
 
-#: ../../mod/contacts.php:332
-msgid "Archive"
-msgstr ""
+#: ../../include/conversation.php:998 ../../include/conversation.php:1016
+#: ../../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 "Vennligst skriv inn en lenke URL:"
 
-#: ../../mod/contacts.php:335
-msgid "Toggle Archive status"
-msgstr ""
-
-#: ../../mod/contacts.php:338
-msgid "Repair"
-msgstr "Reparer"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Please enter a video link/URL:"
+msgstr "Vennligst skriv inn en videolenke/-URL:"
 
-#: ../../mod/contacts.php:341
-msgid "Advanced Contact Settings"
-msgstr ""
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter an audio link/URL:"
+msgstr "Vennligst skriv inn en lydlenke/-URL:"
 
-#: ../../mod/contacts.php:347
-msgid "Communications lost with this contact!"
-msgstr ""
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Tag term:"
+msgstr "Merkelapp begrep:"
 
-#: ../../mod/contacts.php:350
-msgid "Contact Editor"
-msgstr "Endre kontakt"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Lagre til mappe:"
 
-#: ../../mod/contacts.php:353
-msgid "Profile Visibility"
-msgstr "Profilens synlighet"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Where are you right now?"
+msgstr "Hvor er du akkurat nå?"
 
-#: ../../mod/contacts.php:354
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."
+#: ../../include/conversation.php:1004
+msgid "Delete item(s)?"
+msgstr "Slett element(er)?"
 
-#: ../../mod/contacts.php:355
-msgid "Contact Information / Notes"
-msgstr "Kontaktinformasjon/-notater"
+#: ../../include/conversation.php:1046
+msgid "Post to Email"
+msgstr "Innlegg til e-post"
 
-#: ../../mod/contacts.php:356
-msgid "Edit contact notes"
-msgstr "Endre kontaktnotater"
+#: ../../include/conversation.php:1081 ../../mod/photos.php:1531
+msgid "Share"
+msgstr "Del"
 
-#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besøk %ss profil [%s]"
+#: ../../include/conversation.php:1082 ../../mod/editpost.php:110
+#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Last opp bilde"
 
-#: ../../mod/contacts.php:362
-msgid "Block/Unblock contact"
-msgstr "Blokker kontakt/fjern blokkering for kontakt"
+#: ../../include/conversation.php:1083 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "last opp bilde"
 
-#: ../../mod/contacts.php:363
-msgid "Ignore contact"
-msgstr "Ignorer kontakt"
+#: ../../include/conversation.php:1084 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Legg ved fil"
 
-#: ../../mod/contacts.php:364
-msgid "Repair URL settings"
-msgstr "Reparer URL-innstillinger"
+#: ../../include/conversation.php:1085 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "legg ved fil"
 
-#: ../../mod/contacts.php:365
-msgid "View conversations"
-msgstr "Vis samtaler"
+#: ../../include/conversation.php:1086 ../../mod/editpost.php:114
+#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Sett inn web-adresse"
 
-#: ../../mod/contacts.php:367
-msgid "Delete contact"
-msgstr "Slett kontakt"
+#: ../../include/conversation.php:1087 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "web-adresse"
 
-#: ../../mod/contacts.php:371
-msgid "Last update:"
-msgstr "Siste oppdatering:"
+#: ../../include/conversation.php:1088 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Sett inn video-link"
 
-#: ../../mod/contacts.php:373
-msgid "Update public posts"
-msgstr "Oppdater offentlige innlegg"
+#: ../../include/conversation.php:1089 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "videolink"
 
-#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
-msgid "Update now"
-msgstr "Oppdater nå"
+#: ../../include/conversation.php:1090 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Sett inn lydlink"
 
-#: ../../mod/contacts.php:382
-msgid "Currently blocked"
-msgstr "Blokkert nå"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "lydlink"
 
-#: ../../mod/contacts.php:383
-msgid "Currently ignored"
-msgstr "Ignorert nå"
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Angi din plassering"
 
-#: ../../mod/contacts.php:384
-msgid "Currently archived"
-msgstr ""
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "angi plassering"
 
-#: ../../mod/contacts.php:385
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr ""
+#: ../../include/conversation.php:1094 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Fjern nettleserplassering"
 
-#: ../../mod/contacts.php:438
-msgid "Suggestions"
-msgstr ""
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "fjern plassering"
 
-#: ../../mod/contacts.php:441
-msgid "Suggest potential friends"
-msgstr ""
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Lagre tittel"
 
-#: ../../mod/contacts.php:444 ../../mod/group.php:191
-msgid "All Contacts"
-msgstr "Alle kontakter"
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Kategorier (kommaseparert liste)"
 
-#: ../../mod/contacts.php:447
-msgid "Show all contacts"
-msgstr ""
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Tillatelser"
 
-#: ../../mod/contacts.php:450
-msgid "Unblocked"
-msgstr ""
+#: ../../include/conversation.php:1102
+msgid "permissions"
+msgstr "tillatelser"
 
-#: ../../mod/contacts.php:453
-msgid "Only show unblocked contacts"
-msgstr ""
+#: ../../include/conversation.php:1110 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "Kopi: e-postadresser"
 
-#: ../../mod/contacts.php:457
-msgid "Blocked"
-msgstr ""
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Offentlig innlegg"
 
-#: ../../mod/contacts.php:460
-msgid "Only show blocked contacts"
-msgstr ""
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Eksempel: ola@example.com, kari@example.com"
 
-#: ../../mod/contacts.php:464
-msgid "Ignored"
-msgstr ""
+#: ../../include/conversation.php:1117 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../object/Item.php:662
+msgid "Preview"
+msgstr "forhåndsvisning"
 
-#: ../../mod/contacts.php:467
-msgid "Only show ignored contacts"
-msgstr ""
+#: ../../include/conversation.php:1126
+msgid "Post to Groups"
+msgstr "Innlegg til grupper"
 
-#: ../../mod/contacts.php:471
-msgid "Archived"
-msgstr ""
+#: ../../include/conversation.php:1127
+msgid "Post to Contacts"
+msgstr "Innlegg til kontakter"
 
-#: ../../mod/contacts.php:474
-msgid "Only show archived contacts"
-msgstr ""
+#: ../../include/conversation.php:1128
+msgid "Private post"
+msgstr "Privat innlegg"
 
-#: ../../mod/contacts.php:478
-msgid "Hidden"
-msgstr ""
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica varsel"
 
-#: ../../mod/contacts.php:481
-msgid "Only show hidden contacts"
-msgstr ""
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Mange takk,"
 
-#: ../../mod/contacts.php:529
-msgid "Mutual Friendship"
-msgstr "Gjensidig vennskap"
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "%s administrator"
 
-#: ../../mod/contacts.php:533
-msgid "is a fan of yours"
-msgstr "er en tilhenger av deg"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/contacts.php:537
-msgid "you are a fan of"
-msgstr "du er en tilhenger av"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Ny melding mottatt hos %s"
 
-#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Endre kontakt"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sendte deg en ny privat melding hos %2$s."
 
-#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:142
-msgid "Contacts"
-msgstr "Kontakter"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s sendte deg %2$s."
 
-#: ../../mod/contacts.php:579
-msgid "Search your contacts"
-msgstr "Søk i dine kontakter"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "en privat melding"
 
-#: ../../mod/contacts.php:580 ../../mod/directory.php:59
-#: ../../addon/forumdirectory/forumdirectory.php:81
-msgid "Finding: "
-msgstr "Fant:"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger."
 
-#: ../../mod/contacts.php:581 ../../mod/directory.php:61
-#: ../../addon/forumdirectory/forumdirectory.php:83
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Finn"
+#: ../../include/enotify.php:90
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommenterte på [url=%2$s]a %3$s[/url]"
 
-#: ../../mod/lostpass.php:16
-msgid "No valid account found."
-msgstr "Fant ingen gyldig konto."
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommenterte på [url=%2$s]%3$s sin %4$s[/url]"
 
-#: ../../mod/lostpass.php:32
-msgid "Password reset request issued. Check your email."
-msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommenterte på [url=%2$s] din %3$s[/url]"
 
-#: ../../mod/lostpass.php:43
+#: ../../include/enotify.php:115
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Forespørsel om tilbakestilling av passord ved %s"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Kommentar til samtale #%1$d av %2$s"
 
-#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
-#: ../../mod/register.php:91 ../../mod/register.php:145
-#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
-#: ../../addon/facebook/facebook.php:702
-#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
-#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:1200
-#: ../../addon.old/fbpost/fbpost.php:661
-#: ../../addon.old/public_server/public_server.php:62
-#: ../../addon.old/testdrive/testdrive.php:67
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s kommenterte på et element/en samtale du har fulgt."
 
-#: ../../mod/lostpass.php:65
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Vennligst besøk %s for å se og/eller svare på samtalen."
 
-#: ../../mod/lostpass.php:83 ../../boot.php:963
-msgid "Password Reset"
-msgstr "Passord tilbakestilling"
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s skrev et innlegg på veggen til din profil"
 
-#: ../../mod/lostpass.php:84
-msgid "Your password has been reset as requested."
-msgstr "Ditt passord er tilbakestilt som forespurt."
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s skrev et innlegg på veggen til din profil %2$s"
 
-#: ../../mod/lostpass.php:85
-msgid "Your new password is"
-msgstr "Ditt nye passord er"
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s skrev et innlegg til [url=%2$s]din vegg[/url]"
 
-#: ../../mod/lostpass.php:86
-msgid "Save or copy your new password - and then"
-msgstr "Lagre eller kopier ditt nye passord, og deretter"
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s merket deg"
 
-#: ../../mod/lostpass.php:87
-msgid "click here to login"
-msgstr "klikk her for å logge inn"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s merket deg %2$s"
 
-#: ../../mod/lostpass.php:88
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn."
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]merket deg[/url]."
 
-#: ../../mod/lostpass.php:119
-msgid "Forgot your Password?"
-msgstr "Glemte du passordet?"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s dyttet deg"
 
-#: ../../mod/lostpass.php:120
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s dyttet deg %2$s"
 
-#: ../../mod/lostpass.php:121
-msgid "Nickname or Email: "
-msgstr "Kallenavn eller e-post:"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]dyttet deg[/url]."
 
-#: ../../mod/lostpass.php:122
-msgid "Reset"
-msgstr "Tilbakestill"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s merket ditt innlegg"
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr ""
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s merket ditt innlegg %2$s"
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "Mangler noen viktige data!"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s merket [url=%2$s]ditt innlegg[/url]"
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:585
-msgid "Update"
-msgstr "Oppdater"
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Introduksjon mottatt"
 
-#: ../../mod/settings.php:226
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."
-
-#: ../../mod/settings.php:231
-msgid "Email settings updated."
-msgstr "E-postinnstillinger er oppdatert."
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du mottok en introduksjon fra '%1$s'  %2$s"
 
-#: ../../mod/settings.php:246
-msgid "Features updated"
-msgstr ""
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du mottok [url=%1$s]en introduksjon[/url] fra %2$s."
 
-#: ../../mod/settings.php:306
-msgid "Passwords do not match. Password unchanged."
-msgstr "Passordene er ikke like. Passord uendret."
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Du kan besøke profilen deres på %s"
 
-#: ../../mod/settings.php:311
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Tomme passord er ikke lov. Passord uendret."
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Vennligst besøk %s for å godkjenne eller avslå introduksjonen."
 
-#: ../../mod/settings.php:322
-msgid "Password changed."
-msgstr "Passord endret."
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Venneforslag mottatt"
 
-#: ../../mod/settings.php:324
-msgid "Password update failed. Please try again."
-msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du mottok et venneforslag fra '%1$s'  %2$s"
 
-#: ../../mod/settings.php:389
-msgid " Please use a shorter name."
-msgstr "Vennligst bruk et kortere navn."
+#: ../../include/enotify.php:201
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du mottok  [url=%1$s]et venneforslag[/url] om %2$s fra %3$s."
 
-#: ../../mod/settings.php:391
-msgid " Name too short."
-msgstr "Navnet er for kort."
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Navn:"
 
-#: ../../mod/settings.php:397
-msgid " Not valid email."
-msgstr "Ugyldig e-postadresse."
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "Bilde:"
 
-#: ../../mod/settings.php:399
-msgid " Cannot change to that email."
-msgstr "Kan ikke endre til den e-postadressen."
+#: ../../include/enotify.php:210
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Vennligst besøk %s for å godkjenne eller avslå forslaget."
 
-#: ../../mod/settings.php:453
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[ikke noe emne]"
 
-#: ../../mod/settings.php:457
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr ""
+#: ../../include/message.php:144 ../../mod/item.php:446
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151
+msgid "Wall Photos"
+msgstr "Veggbilder"
 
-#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
-#: ../../addon/fbpost/fbpost.php:144
-#: ../../addon/remote_permissions/remote_permissions.php:204
-#: ../../addon/impressum/impressum.php:78
-#: ../../addon/openstreetmap/openstreetmap.php:80
-#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:501
-#: ../../addon.old/facebook/facebook.php:495
-#: ../../addon.old/fbpost/fbpost.php:144
-#: ../../addon.old/impressum/impressum.php:78
-#: ../../addon.old/openstreetmap/openstreetmap.php:80
-#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
-#: ../../addon.old/twitter/twitter.php:389
-msgid "Settings updated."
-msgstr "Innstillinger oppdatert."
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "Ikke noe nytt her"
 
-#: ../../mod/settings.php:558 ../../mod/settings.php:584
-#: ../../mod/settings.php:620
-msgid "Add application"
-msgstr "Legg til program"
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
+msgstr "Fjern varslinger"
 
-#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../addon/statusnet/statusnet.php:679
-#: ../../addon.old/statusnet/statusnet.php:570
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../include/nav.php:73 ../../boot.php:1136
+msgid "Logout"
+msgstr "Logg ut"
 
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
-#: ../../addon/statusnet/statusnet.php:678
-#: ../../addon.old/statusnet/statusnet.php:569
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Avslutt denne økten"
 
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
-msgid "Redirect"
-msgstr "Omdiriger"
+#: ../../include/nav.php:76 ../../boot.php:1940
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Icon url"
-msgstr "Ikon URL"
+#: ../../include/nav.php:76 ../../include/nav.php:143
+#: ../../view/theme/diabook/theme.php:87
+msgid "Your posts and conversations"
+msgstr "Dine innlegg og samtaler"
 
-#: ../../mod/settings.php:576
-msgid "You can't edit this application."
-msgstr "Du kan ikke redigere dette programmet."
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
+msgid "Your profile page"
+msgstr "Din profilside"
 
-#: ../../mod/settings.php:619
-msgid "Connected Apps"
-msgstr "Tilkoblede programmer"
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954
+msgid "Photos"
+msgstr "Bilder"
 
-#: ../../mod/settings.php:623
-msgid "Client key starts with"
-msgstr "Klientnøkkelen starter med"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
+msgid "Your photos"
+msgstr "Dine bilder"
 
-#: ../../mod/settings.php:624
-msgid "No name"
-msgstr "Ingen navn"
+#: ../../include/nav.php:79 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971
+msgid "Events"
+msgstr "Hendelser"
 
-#: ../../mod/settings.php:625
-msgid "Remove authorization"
-msgstr "Fjern tillatelse"
+#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
+msgid "Your events"
+msgstr "Dine hendelser"
 
-#: ../../mod/settings.php:637
-msgid "No Plugin settings configured"
-msgstr "Ingen tilleggsinnstillinger konfigurert"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Personal notes"
+msgstr "Personlige notater"
 
-#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
-#: ../../addon.old/widgets/widgets.php:123
-msgid "Plugin Settings"
-msgstr "Tilleggsinnstillinger"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Your personal photos"
+msgstr "Dine personlige bilder"
 
-#: ../../mod/settings.php:659
-msgid "Off"
-msgstr ""
+#: ../../include/nav.php:91 ../../boot.php:1137
+msgid "Login"
+msgstr "Logg inn"
 
-#: ../../mod/settings.php:659
-msgid "On"
-msgstr ""
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Logg inn"
 
-#: ../../mod/settings.php:667
-msgid "Additional Features"
-msgstr ""
+#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+msgid "Home"
+msgstr "Hjem"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Innebygget støtte for %s forbindelse er %s"
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Hovedside"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "aktivert"
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112
+msgid "Register"
+msgstr "Registrer"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "avskrudd"
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Lag konto"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../include/nav.php:113 ../../mod/help.php:84
+msgid "Help"
+msgstr "Hjelp"
 
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "E-posttilgang er avskrudd på dette stedet."
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Hjelp og dokumentasjon"
 
-#: ../../mod/settings.php:720
-msgid "Connector Settings"
-msgstr "Koblingsinnstillinger"
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Programmer"
 
-#: ../../mod/settings.php:725
-msgid "Email/Mailbox Setup"
-msgstr "E-post-/postboksinnstillinger"
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Tilleggsprorammer, verktøy, spill"
 
-#: ../../mod/settings.php:726
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Søk i nettstedets innhold"
 
-#: ../../mod/settings.php:727
-msgid "Last successful email check:"
-msgstr "Siste vellykkede e-postsjekk:"
+#: ../../include/nav.php:128 ../../mod/community.php:32
+#: ../../view/theme/diabook/theme.php:93
+msgid "Community"
+msgstr "Fellesskap"
 
-#: ../../mod/settings.php:729
-msgid "IMAP server name:"
-msgstr "IMAP-tjeners navn:"
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Samtaler på dette nettstedet"
 
-#: ../../mod/settings.php:730
-msgid "IMAP port:"
-msgstr "IMAP port:"
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Katalog"
 
-#: ../../mod/settings.php:731
-msgid "Security:"
-msgstr "Sikkerhet:"
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "Personkatalog"
 
-#: ../../mod/settings.php:731 ../../mod/settings.php:736
-#: ../../addon/dav/common/wdcal_edit.inc.php:191
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
-msgid "None"
-msgstr "Ingen"
+#: ../../include/nav.php:140 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Nettverk"
 
-#: ../../mod/settings.php:732
-msgid "Email login name:"
-msgstr "E-post brukernavn:"
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Samtaler fra dine venner"
 
-#: ../../mod/settings.php:733
-msgid "Email password:"
-msgstr "E-post passord:"
+#: ../../include/nav.php:141
+msgid "Network Reset"
+msgstr "Nettverk tilbakestilling"
 
-#: ../../mod/settings.php:734
-msgid "Reply-to address:"
-msgstr "Svar-til-adresse:"
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr "Hent Nettverk-siden uten filter"
 
-#: ../../mod/settings.php:735
-msgid "Send public posts to all email contacts:"
-msgstr "Send offentlige meldinger til alle e-postkontakter:"
+#: ../../include/nav.php:149 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Introduksjoner"
 
-#: ../../mod/settings.php:736
-msgid "Action after import:"
-msgstr ""
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Venneforespørsler"
 
-#: ../../mod/settings.php:736
-msgid "Mark as seen"
-msgstr ""
+#: ../../include/nav.php:150 ../../mod/notifications.php:220
+msgid "Notifications"
+msgstr "Varslinger"
 
-#: ../../mod/settings.php:736
-msgid "Move to folder"
-msgstr ""
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Se alle varslinger"
 
-#: ../../mod/settings.php:737
-msgid "Move to folder:"
-msgstr ""
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "Merk alle systemvarsler som sett"
 
-#: ../../mod/settings.php:768 ../../mod/admin.php:404
-msgid "No special theme for mobile devices"
-msgstr ""
+#: ../../include/nav.php:156 ../../mod/message.php:182
+#: ../../mod/notifications.php:103
+msgid "Messages"
+msgstr "Meldinger"
 
-#: ../../mod/settings.php:808
-msgid "Display Settings"
-msgstr ""
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Privat post"
 
-#: ../../mod/settings.php:814 ../../mod/settings.php:825
-msgid "Display Theme:"
-msgstr "Vis tema:"
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "Innboks"
 
-#: ../../mod/settings.php:815
-msgid "Mobile Theme:"
-msgstr ""
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Utboks"
 
-#: ../../mod/settings.php:816
-msgid "Update browser every xx seconds"
-msgstr ""
+#: ../../include/nav.php:159 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Ny melding"
 
-#: ../../mod/settings.php:816
-msgid "Minimum of 10 seconds, no maximum"
-msgstr ""
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Behandle"
 
-#: ../../mod/settings.php:817
-msgid "Number of items to display per page:"
-msgstr ""
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Behandle andre sider"
 
-#: ../../mod/settings.php:817
-msgid "Maximum of 100 items"
-msgstr ""
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr "Delegasjoner"
 
-#: ../../mod/settings.php:818
-msgid "Don't show emoticons"
-msgstr ""
+#: ../../include/nav.php:165 ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Deleger sidebehandling"
 
-#: ../../mod/settings.php:894
-msgid "Normal Account Page"
-msgstr ""
+#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
+#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658
+msgid "Settings"
+msgstr "Innstillinger"
 
-#: ../../mod/settings.php:895
-msgid "This account is a normal personal profile"
-msgstr "Denne kontoen er en vanlig personlig profil"
+#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
+msgid "Account settings"
+msgstr "Kontoinnstillinger"
 
-#: ../../mod/settings.php:898
-msgid "Soapbox Page"
-msgstr ""
+#: ../../include/nav.php:169 ../../boot.php:1439
+msgid "Profiles"
+msgstr "Profiler"
 
-#: ../../mod/settings.php:899
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr "Behandle/endre profiler"
 
-#: ../../mod/settings.php:902
-msgid "Community Forum/Celebrity Account"
-msgstr ""
+#: ../../include/nav.php:171 ../../mod/contacts.php:607
+#: ../../view/theme/diabook/theme.php:89
+msgid "Contacts"
+msgstr "Kontakter"
 
-#: ../../mod/settings.php:903
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Behandle/endre venner og kontakter"
 
-#: ../../mod/settings.php:906
-msgid "Automatic Friend Page"
-msgstr ""
+#: ../../include/nav.php:178 ../../mod/admin.php:120
+msgid "Admin"
+msgstr "Administrator"
 
-#: ../../mod/settings.php:907
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Nettstedsoppsett og konfigurasjon"
 
-#: ../../mod/settings.php:910
-msgid "Private Forum [Experimental]"
-msgstr ""
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr "Navigasjon"
 
-#: ../../mod/settings.php:911
-msgid "Private forum - approved members only"
-msgstr ""
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr "Nettstedskart"
 
-#: ../../mod/settings.php:923
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Innebygd innhold"
 
-#: ../../mod/settings.php:923
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Innebygging avskrudd"
 
-#: ../../mod/settings.php:933
-msgid "Publish your default profile in your local site directory?"
-msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Feil ved dekoding av kontofil"
 
-#: ../../mod/settings.php:939
-msgid "Publish your default profile in the global social directory?"
-msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?"
 
-#: ../../mod/settings.php:947
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"
+#: ../../include/uimport.php:116
+msgid "Error! Cannot check nickname"
+msgstr "Feil! Kan ikke sjekke kallenavn"
 
-#: ../../mod/settings.php:951
-msgid "Hide your profile details from unknown viewers?"
-msgstr ""
+#: ../../include/uimport.php:120
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Brukeren '%s' finnes allerede på denne tjeneren!"
 
-#: ../../mod/settings.php:956
-msgid "Allow friends to post to your profile page?"
-msgstr "Tillat venner å poste innlegg på din profilside?"
+#: ../../include/uimport.php:139
+msgid "User creation error"
+msgstr "Feil ved oppretting av bruker"
 
-#: ../../mod/settings.php:962
-msgid "Allow friends to tag your posts?"
-msgstr "Tillat venner å merke dine innlegg?"
+#: ../../include/uimport.php:157
+msgid "User profile creation error"
+msgstr "Feil ved opprettelsen av brukerprofil"
 
-#: ../../mod/settings.php:968
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
+#: ../../include/uimport.php:202
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakt ikke importert"
+msgstr[1] "%d kontakter ikke importert"
 
-#: ../../mod/settings.php:974
-msgid "Permit unknown people to send you private mail?"
-msgstr ""
+#: ../../include/uimport.php:272
+msgid "Done. You can now login with your username and password"
+msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"
 
-#: ../../mod/settings.php:982
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profilen er <strong>ikke publisert</strong>."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Velkommen"
 
-#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "eller"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Vennligst last opp et profilbilde."
 
-#: ../../mod/settings.php:990
-msgid "Your Identity Address is"
-msgstr "Din identitetsadresse er"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Velkommen tilbake"
 
-#: ../../mod/settings.php:1001
-msgid "Automatically expire posts after this many days:"
-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."
+msgstr "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending."
 
-#: ../../mod/settings.php:1001
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:160 ../../mod/profiles.php:583
+#: ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
+msgstr "Fant ikke profilen."
 
-#: ../../mod/settings.php:1002
-msgid "Advanced expiration settings"
-msgstr ""
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil slettet."
 
-#: ../../mod/settings.php:1003
-msgid "Advanced Expiration"
-msgstr ""
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/settings.php:1004
-msgid "Expire posts:"
-msgstr ""
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Ny profil opprettet."
 
-#: ../../mod/settings.php:1005
-msgid "Expire personal notes:"
-msgstr ""
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profilen er utilgjengelig for kloning."
 
-#: ../../mod/settings.php:1006
-msgid "Expire starred posts:"
-msgstr ""
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Profilnavn er påkrevet."
 
-#: ../../mod/settings.php:1007
-msgid "Expire photos:"
-msgstr ""
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr "Ekteskapelig status"
 
-#: ../../mod/settings.php:1008
-msgid "Only expire posts by others:"
-msgstr ""
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr "Romantisk partner"
 
-#: ../../mod/settings.php:1015
-msgid "Account Settings"
-msgstr "Kontoinnstillinger"
+#: ../../mod/profiles.php:325
+msgid "Likes"
+msgstr "Liker"
 
-#: ../../mod/settings.php:1023
-msgid "Password Settings"
-msgstr "Passordinnstillinger"
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr "Liker ikke"
 
-#: ../../mod/settings.php:1024
-msgid "New Password:"
-msgstr "Nytt passord:"
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "Arbeid/ansatt hos"
 
-#: ../../mod/settings.php:1025
-msgid "Confirm:"
-msgstr "Bekreft:"
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/settings.php:1025
-msgid "Leave password fields blank unless changing"
-msgstr "La passordfeltene stå tomme hvis du ikke skal bytte"
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Politisk ståsted"
 
-#: ../../mod/settings.php:1029
-msgid "Basic Settings"
-msgstr "Grunninnstillinger"
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "Kjønn"
 
-#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Fullt navn:"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Seksuell orientering"
 
-#: ../../mod/settings.php:1031
-msgid "Email Address:"
-msgstr "E-postadresse:"
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Hjemmeside"
 
-#: ../../mod/settings.php:1032
-msgid "Your Timezone:"
-msgstr "Din tidssone:"
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Interesser"
 
-#: ../../mod/settings.php:1033
-msgid "Default Post Location:"
-msgstr "Standard oppholdssted når du poster:"
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/settings.php:1034
-msgid "Use Browser Location:"
-msgstr "Bruk nettleserens oppholdssted:"
+#: ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Plassering"
 
-#: ../../mod/settings.php:1037
-msgid "Security and Privacy Settings"
-msgstr "Sikkerhet og privatlivsinnstillinger"
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr "Profil oppdatert."
 
-#: ../../mod/settings.php:1039
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maksimum venneforespørsler/dag:"
+#: ../../mod/profiles.php:521
+msgid " and "
+msgstr "og"
 
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
-msgid "(to prevent spam abuse)"
-msgstr "(for å forhindre søppelpost)"
+#: ../../mod/profiles.php:529
+msgid "public profile"
+msgstr "offentlig profil"
 
-#: ../../mod/settings.php:1040
-msgid "Default Post Permissions"
-msgstr "Standardtillatelser ved posting"
+#: ../../mod/profiles.php:532
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s endret %2$s til &ldquo;%3$s&rdquo;"
 
-#: ../../mod/settings.php:1041
-msgid "(click to open/close)"
-msgstr "(klikk for å åpne/lukke)"
+#: ../../mod/profiles.php:533
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "- Besøk %1$s sin %2$s"
 
-#: ../../mod/settings.php:1058
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s har oppdatert %2$s, endret %3$s."
 
-#: ../../mod/settings.php:1061
-msgid "Notification Settings"
-msgstr "Beskjedinnstillinger"
+#: ../../mod/profiles.php:609
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?"
 
-#: ../../mod/settings.php:1062
-msgid "By default post a status message when:"
-msgstr ""
+#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837
+msgid "No"
+msgstr "Nei"
 
-#: ../../mod/settings.php:1063
-msgid "accepting a friend request"
-msgstr ""
+#: ../../mod/profiles.php:629
+msgid "Edit Profile Details"
+msgstr "Endre profildetaljer"
 
-#: ../../mod/settings.php:1064
-msgid "joining a forum/community"
-msgstr ""
+#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763
+#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189
+#: ../../mod/contacts.php:386 ../../mod/settings.php:584
+#: ../../mod/settings.php:694 ../../mod/settings.php:763
+#: ../../mod/settings.php:837 ../../mod/settings.php:1064
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:733 ../../object/Item.php:653
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
+#: ../../view/theme/quattro/config.php:64
+msgid "Submit"
+msgstr "Lagre"
 
-#: ../../mod/settings.php:1065
-msgid "making an <em>interesting</em> profile change"
-msgstr ""
+#: ../../mod/profiles.php:631
+msgid "Change Profile Photo"
+msgstr "Endre profilbilde"
 
-#: ../../mod/settings.php:1066
-msgid "Send a notification email when:"
-msgstr "Send en e-post med beskjed når:"
+#: ../../mod/profiles.php:632
+msgid "View this profile"
+msgstr "Vis denne profilen"
 
-#: ../../mod/settings.php:1067
-msgid "You receive an introduction"
-msgstr "Du mottar en introduksjon"
+#: ../../mod/profiles.php:633
+msgid "Create a new profile using these settings"
+msgstr "Opprett en ny profil med disse innstillingene"
 
-#: ../../mod/settings.php:1068
-msgid "Your introductions are confirmed"
-msgstr "Dine introduksjoner er bekreftet"
+#: ../../mod/profiles.php:634
+msgid "Clone this profile"
+msgstr "Klon denne profilen"
 
-#: ../../mod/settings.php:1069
-msgid "Someone writes on your profile wall"
-msgstr "Noen skriver på veggen til profilen din"
+#: ../../mod/profiles.php:635
+msgid "Delete this profile"
+msgstr "Slette denne profilen"
 
-#: ../../mod/settings.php:1070
-msgid "Someone writes a followup comment"
-msgstr "Noen skriver en oppfølgingskommentar"
+#: ../../mod/profiles.php:636
+msgid "Profile Name:"
+msgstr "Profilnavn:"
 
-#: ../../mod/settings.php:1071
-msgid "You receive a private message"
-msgstr "Du mottar en privat melding"
+#: ../../mod/profiles.php:637
+msgid "Your Full Name:"
+msgstr "Ditt fulle navn:"
 
-#: ../../mod/settings.php:1072
-msgid "You receive a friend suggestion"
-msgstr ""
+#: ../../mod/profiles.php:638
+msgid "Title/Description:"
+msgstr "Tittel/Beskrivelse:"
 
-#: ../../mod/settings.php:1073
-msgid "You are tagged in a post"
-msgstr ""
+#: ../../mod/profiles.php:639
+msgid "Your Gender:"
+msgstr "Ditt kjønn:"
 
-#: ../../mod/settings.php:1074
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
+#: ../../mod/profiles.php:640
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Fødselsdag (%s):"
 
-#: ../../mod/settings.php:1077
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
+#: ../../mod/profiles.php:641
+msgid "Street Address:"
+msgstr "Gateadresse:"
 
-#: ../../mod/settings.php:1078
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
+#: ../../mod/profiles.php:642
+msgid "Locality/City:"
+msgstr "Plassering/by:"
 
-#: ../../mod/manage.php:94
-msgid "Manage Identities and/or Pages"
-msgstr "Behandle identiteter og/eller sider"
-
-#: ../../mod/manage.php:97
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"
+#: ../../mod/profiles.php:643
+msgid "Postal/Zip Code:"
+msgstr "Postnummer:"
 
-#: ../../mod/manage.php:99
-msgid "Select an identity to manage: "
-msgstr "Velg en identitet å behandle:"
+#: ../../mod/profiles.php:644
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr ""
+#: ../../mod/profiles.php:645
+msgid "Region/State:"
+msgstr "Region/fylke:"
 
-#: ../../mod/network.php:224 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Fjern uttrykk"
+#: ../../mod/profiles.php:646
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
 
-#: ../../mod/network.php:233 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Lagrede søk"
+#: ../../mod/profiles.php:647
+msgid "Who: (if applicable)"
+msgstr "Hvem: (hvis gjeldende)"
 
-#: ../../mod/network.php:234 ../../include/group.php:275
-msgid "add"
-msgstr ""
+#: ../../mod/profiles.php:648
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com"
 
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "Etter kommentarer"
+#: ../../mod/profiles.php:649
+msgid "Since [date]:"
+msgstr "Fra [dato]:"
 
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr ""
+#: ../../mod/profiles.php:651
+msgid "Homepage URL:"
+msgstr "Hjemmeside URL:"
 
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "Etter innlegg"
+#: ../../mod/profiles.php:654
+msgid "Religious Views:"
+msgstr "Religiøst ståsted:"
 
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr ""
+#: ../../mod/profiles.php:655
+msgid "Public Keywords:"
+msgstr "Offentlige nøkkelord:"
 
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr ""
+#: ../../mod/profiles.php:656
+msgid "Private Keywords:"
+msgstr "Private nøkkelord:"
 
-#: ../../mod/network.php:453
-msgid "New"
-msgstr "Ny"
+#: ../../mod/profiles.php:659
+msgid "Example: fishing photography software"
+msgstr "Eksempel: fisking fotografering programvare"
 
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr ""
+#: ../../mod/profiles.php:660
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)"
 
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr ""
+#: ../../mod/profiles.php:661
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Brukes for å søke i profiler, vises aldri til andre)"
 
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr ""
+#: ../../mod/profiles.php:662
+msgid "Tell us about yourself..."
+msgstr "Fortell oss om deg selv..."
 
-#: ../../mod/network.php:471
-msgid "Starred"
-msgstr "Med stjerne"
+#: ../../mod/profiles.php:663
+msgid "Hobbies/Interests"
+msgstr "Hobbier/interesser"
 
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr ""
+#: ../../mod/profiles.php:664
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformasjon og sosiale nettverk"
 
-#: ../../mod/network.php:546
-#, 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] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk."
-msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk."
+#: ../../mod/profiles.php:665
+msgid "Musical interests"
+msgstr "Musikksmak"
 
-#: ../../mod/network.php:549
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort."
+#: ../../mod/profiles.php:666
+msgid "Books, literature"
+msgstr "Bøker, litteratur"
 
-#: ../../mod/network.php:619
-msgid "Contact: "
-msgstr "Kontakt:"
+#: ../../mod/profiles.php:667
+msgid "Television"
+msgstr "TV"
 
-#: ../../mod/network.php:621
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private meldinger til denne personen risikerer å bli offentliggjort."
+#: ../../mod/profiles.php:668
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/dans/kultur/underholdning"
 
-#: ../../mod/network.php:626
-msgid "Invalid contact."
-msgstr "Ugyldig kontakt."
+#: ../../mod/profiles.php:669
+msgid "Love/romance"
+msgstr "Kjærlighet/romanse"
 
-#: ../../mod/notes.php:44 ../../boot.php:1755
-msgid "Personal Notes"
-msgstr "Personlige notater"
+#: ../../mod/profiles.php:670
+msgid "Work/employment"
+msgstr "Arbeid/ansatt hos"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:30
-#: ../../addon/facebook/facebook.php:770
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
-#: ../../addon/fbpost/fbpost.php:267
-#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
-#: ../../addon.old/facebook/facebook.php:770
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
-#: ../../addon.old/fbpost/fbpost.php:267
-#: ../../addon.old/dav/friendica/layout.fnk.php:441
-#: ../../addon.old/dav/friendica/layout.fnk.php:488
-msgid "Save"
-msgstr "Lagre"
+#: ../../mod/profiles.php:671
+msgid "School/education"
+msgstr "Skole/utdanning"
 
-#: ../../mod/uimport.php:50 ../../mod/register.php:190
+#: ../../mod/profiles.php:676
 msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet."
 
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr ""
+#: ../../mod/profiles.php:686 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Alder:"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr ""
+#: ../../mod/profiles.php:725
+msgid "Edit/Manage Profiles"
+msgstr "Rediger/Behandle profiler"
 
-#: ../../mod/uimport.php:67
-msgid ""
-"You can import an account from another Friendica server. <br>\r\n"
-"                            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.<br>\r\n"
-"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
-msgstr ""
+#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471
+msgid "Change profile photo"
+msgstr "Endre profilbilde"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr ""
+#: ../../mod/profiles.php:727 ../../boot.php:1446
+msgid "Create New Profile"
+msgstr "Lag ny profil"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
-msgstr ""
+#: ../../mod/profiles.php:738 ../../boot.php:1456
+msgid "Profile Image"
+msgstr "Profilbilde"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."
+#: ../../mod/profiles.php:740 ../../boot.php:1459
+msgid "visible to everybody"
+msgstr "synlig for alle"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Ingen mottaker valgt."
+#: ../../mod/profiles.php:741 ../../boot.php:1460
+msgid "Edit visibility"
+msgstr "Endre synlighet"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr ""
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
+msgid "Permission denied"
+msgstr "Tilgang nektet"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Meldingen kunne ikke sendes."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ugyldig profilidentifikator."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr ""
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Behandle profilsynlighet"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Melding sendt."
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klikk på en kontakt for å legge til eller fjerne."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr ""
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Synlig for"
 
-#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
-#: ../../mod/message.php:249 ../../mod/message.php:257
-#: ../../include/conversation.php:905 ../../include/conversation.php:923
-msgid "Please enter a link URL:"
-msgstr "Vennligst skriv inn en lenke URL:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle kontakter (med sikret profiltilgang)"
 
-#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
-msgid "Send Private Message"
-msgstr "Send privat melding"
+#: ../../mod/notes.php:44 ../../boot.php:1978
+msgid "Personal Notes"
+msgstr "Personlige notater"
 
-#: ../../mod/wallmessage.php:139
-#, 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/display.php:19 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
+#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17
+#: ../../mod/photos.php:914 ../../mod/community.php:18
+msgid "Public access denied."
+msgstr "Offentlig tilgang ikke tillatt."
 
-#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
-#: ../../mod/message.php:476
-msgid "To:"
-msgstr "Til:"
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Tilgang til denne profilen er blitt begrenset."
 
-#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
-#: ../../mod/message.php:478
-msgid "Subject:"
-msgstr "Emne:"
+#: ../../mod/display.php:239
+msgid "Item has been removed."
+msgstr "Elementet har blitt slettet."
 
-#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
-#: ../../mod/message.php:481 ../../mod/invite.php:113
-msgid "Your message:"
-msgstr "Din melding:"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besøk %ss profil [%s]"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr ""
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "Endre kontakt"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Sjekkliste for nye medlemmer"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakter som ikke er medlemmer av en gruppe"
 
-#: ../../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/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} ønsker å bli din venn"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr ""
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} sendte deg en melding"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr ""
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} forespurte om registrering"
 
-#: ../../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/newmember.php:26
-msgid "Go to Your Settings"
-msgstr ""
-
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr ""
-
-#: ../../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 "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."
-
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1731
-msgid "Profile"
-msgstr "Profil"
-
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Last opp profilbilde"
-
-#: ../../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 "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."
-
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr ""
-
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."
-
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr ""
-
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."
-
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr ""
-
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
-#: ../../include/contact_selectors.php:81
-#: ../../addon.old/facebook/facebook.php:728
-#: ../../addon.old/fbpost/fbpost.php:239
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."
-
-#: ../../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/newmember.php:56
-msgid "Importing Emails"
-msgstr ""
-
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr ""
-
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr ""
-
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr ""
-
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr ""
-
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."
-
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-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."
-msgstr ""
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr ""
-
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr ""
-
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."
-
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr ""
-
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr ""
-
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr ""
-
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr ""
-
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."
-
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elementet er ikke tilgjengelig."
-
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Elementet ble ikke funnet."
-
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppen er laget."
-
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Kunne ikke lage gruppen."
-
-#: ../../mod/group.php:47 ../../mod/group.php:137
-msgid "Group not found."
-msgstr "Fant ikke gruppen."
-
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenavnet er endret"
-
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
-msgid "Permission denied"
-msgstr "Tilgang nektet"
-
-#: ../../mod/group.php:90
-msgid "Create a group of contacts/friends."
-msgstr "Lag en gruppe med kontakter/venner."
-
-#: ../../mod/group.php:91 ../../mod/group.php:177
-msgid "Group Name: "
-msgstr "Gruppenavn:"
-
-#: ../../mod/group.php:110
-msgid "Group removed."
-msgstr "Gruppe fjernet."
-
-#: ../../mod/group.php:112
-msgid "Unable to remove group."
-msgstr "Mislyktes med å fjerne gruppe."
-
-#: ../../mod/group.php:176
-msgid "Group Editor"
-msgstr "Gruppebehandler"
-
-#: ../../mod/group.php:189
-msgid "Members"
-msgstr "Medlemmer"
-
-#: ../../mod/group.php:221 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klikk på en kontakt for å legge til eller fjerne."
-
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ugyldig profilidentifikator."
-
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Behandle profilsynlighet"
-
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Synlig for"
-
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle kontakter (med sikret profiltilgang)"
-
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Ingen kontakter."
-
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
-msgid "View Contacts"
-msgstr "Vis kontakter"
-
-#: ../../mod/register.php:89 ../../mod/regmod.php:52
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registeringsdetaljer for %s"
-
-#: ../../mod/register.php:97
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."
-
-#: ../../mod/register.php:101
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."
-
-#: ../../mod/register.php:106
-msgid "Your registration can not be processed."
-msgstr "Din registrering kan ikke behandles."
-
-#: ../../mod/register.php:143
-#, php-format
-msgid "Registration request at %s"
-msgstr "Henvendelse om registrering ved %s"
-
-#: ../../mod/register.php:152
-msgid "Your registration is pending approval by the site owner."
-msgstr "Din registrering venter på godkjenning fra eier av stedet."
-
-#: ../../mod/register.php:218
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."
-
-#: ../../mod/register.php:219
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."
-
-#: ../../mod/register.php:220
-msgid "Your OpenID (optional): "
-msgstr "Din OpenID (valgfritt):"
-
-#: ../../mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr "Legg til profilen din i medlemskatalogen?"
-
-#: ../../mod/register.php:256
-msgid "Membership on this site is by invitation only."
-msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
-
-#: ../../mod/register.php:257
-msgid "Your invitation ID: "
-msgstr "Din invitasjons-ID:"
-
-#: ../../mod/register.php:260 ../../mod/admin.php:446
-msgid "Registration"
-msgstr "Registrering"
-
-#: ../../mod/register.php:268
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
-
-#: ../../mod/register.php:269
-msgid "Your Email Address: "
-msgstr "Din e-postadresse:"
-
-#: ../../mod/register.php:270
-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 "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@$sitename</strong>\"."
-
-#: ../../mod/register.php:271
-msgid "Choose a nickname: "
-msgstr "Velg et kallenavn:"
-
-#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923
-msgid "Register"
-msgstr "Registrer"
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personsøk"
-
-#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442
-#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
-#: ../../include/conversation.php:253
-#: ../../addon.old/communityhome/communityhome.php:163
-msgid "photo"
-msgstr "bilde"
-
-#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
-#: ../../addon/communityhome/communityhome.php:158
-#: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848
-#: ../../include/conversation.php:120 ../../include/conversation.php:129
-#: ../../include/conversation.php:248 ../../include/conversation.php:257
-#: ../../addon.old/facebook/facebook.php:1598
-#: ../../addon.old/communityhome/communityhome.php:158
-#: ../../addon.old/communityhome/communityhome.php:167
-msgid "status"
-msgstr "status"
-
-#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
-#: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864
-#: ../../include/conversation.php:136
-#: ../../addon.old/facebook/facebook.php:1602
-#: ../../addon.old/communityhome/communityhome.php:172
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s liker %2$s's %3$s"
-
-#: ../../mod/like.php:164 ../../include/conversation.php:139
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s liker ikke %2$s's %3$s"
-
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39
-#: ../../mod/display.php:169 ../../include/items.php:3843
-msgid "Item not found."
-msgstr "Enheten ble ikke funnet."
-
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr ""
-
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
-#: ../../include/nav.php:51 ../../boot.php:1738
-msgid "Photos"
-msgstr "Bilder"
-
-#: ../../mod/fbrowser.php:96
-msgid "Files"
-msgstr ""
-
-#: ../../mod/regmod.php:61
-msgid "Account approved."
-msgstr "Konto godkjent."
-
-#: ../../mod/regmod.php:98
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registreringen til  %s er trukket tilbake"
-
-#: ../../mod/regmod.php:110
-msgid "Please login."
-msgstr "Vennligst logg inn."
-
-#: ../../mod/item.php:104
-msgid "Unable to locate original post."
-msgstr "Mislyktes med å lokalisere opprinnelig melding."
-
-#: ../../mod/item.php:288
-msgid "Empty post discarded."
-msgstr "Tom melding forkastet."
-
-#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
-#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Veggbilder"
-
-#: ../../mod/item.php:837
-msgid "System error. Post not saved."
-msgstr "Systemfeil. Meldingen ble ikke lagret."
-
-#: ../../mod/item.php:862
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr ""
-
-#: ../../mod/item.php:864
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kan besøke dem online på %s"
-
-#: ../../mod/item.php:865
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."
-
-#: ../../mod/item.php:867
-#, php-format
-msgid "%s posted an update."
-msgstr "%s postet en oppdatering."
-
-#: ../../mod/mood.php:62 ../../include/conversation.php:226
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr ""
-
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr ""
-
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr ""
-
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bildet ble lastet opp, men beskjæringen mislyktes."
-
-#: ../../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 "Reduksjon av bildestørrelse [%s] mislyktes."
-
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."
-
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Mislyktes med å behandle bilde"
-
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
-
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Last opp fil:"
-
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr ""
-
-#: ../../mod/profile_photo.php:245
-#: ../../addon/dav/friendica/layout.fnk.php:152
-#: ../../addon.old/dav/friendica/layout.fnk.php:152
-msgid "Upload"
-msgstr "Last opp"
-
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "hopp over dette steget"
-
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "velg et bilde fra dine fotoalbum"
-
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Beskjær bilde"
-
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Vennligst juster beskjæringen av bildet for optimal visning."
-
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Behandling ferdig"
-
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bilde ble lastet opp."
-
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Ingen profil"
-
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Slett min konto"
-
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."
-
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Vennligst skriv inn ditt passord for å bekrefte:"
-
-#: ../../mod/message.php:9 ../../include/nav.php:132
-msgid "New Message"
-msgstr "Ny melding"
-
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Mislyktes med å finne kontaktinformasjon."
-
-#: ../../mod/message.php:195
-msgid "Message deleted."
-msgstr "Melding slettet."
-
-#: ../../mod/message.php:225
-msgid "Conversation removed."
-msgstr "Samtale slettet."
-
-#: ../../mod/message.php:334
-msgid "No messages."
-msgstr "Ingen meldinger."
-
-#: ../../mod/message.php:341
-#, php-format
-msgid "Unknown sender - %s"
-msgstr ""
-
-#: ../../mod/message.php:344
-#, php-format
-msgid "You and %s"
-msgstr ""
-
-#: ../../mod/message.php:347
-#, php-format
-msgid "%s and You"
-msgstr ""
-
-#: ../../mod/message.php:357 ../../mod/message.php:469
-msgid "Delete conversation"
-msgstr "Slett samtale"
-
-#: ../../mod/message.php:360
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
-
-#: ../../mod/message.php:363
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/message.php:398
-msgid "Message not available."
-msgstr "Melding utilgjengelig."
-
-#: ../../mod/message.php:451
-msgid "Delete message"
-msgstr "Slett melding"
-
-#: ../../mod/message.php:471
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr ""
-
-#: ../../mod/message.php:475
-msgid "Send Reply"
-msgstr "Send svar"
-
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Venner av %s"
-
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Ingen venner å vise."
-
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:96 ../../mod/admin.php:444
-msgid "Site"
-msgstr "Nettsted"
-
-#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704
-msgid "Users"
-msgstr "Brukere"
-
-#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828
-msgid "Plugins"
-msgstr "Tillegg"
-
-#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027
-msgid "Themes"
-msgstr ""
-
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr ""
-
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114
-msgid "Logs"
-msgstr "Logger"
-
-#: ../../mod/admin.php:120 ../../include/nav.php:149
-msgid "Admin"
-msgstr "Administrator"
-
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr ""
-
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Brukerregistreringer venter på bekreftelse"
-
-#: ../../mod/admin.php:183 ../../mod/admin.php:672
-msgid "Normal Account"
-msgstr "Vanlig konto"
-
-#: ../../mod/admin.php:184 ../../mod/admin.php:673
-msgid "Soapbox Account"
-msgstr "Talerstol-konto"
-
-#: ../../mod/admin.php:185 ../../mod/admin.php:674
-msgid "Community/Celebrity Account"
-msgstr "Gruppe-/kjendiskonto"
-
-#: ../../mod/admin.php:186 ../../mod/admin.php:675
-msgid "Automatic Friend Account"
-msgstr "Automatisk vennekonto"
-
-#: ../../mod/admin.php:187
-msgid "Blog Account"
-msgstr ""
-
-#: ../../mod/admin.php:188
-msgid "Private Forum"
-msgstr ""
-
-#: ../../mod/admin.php:207
-msgid "Message queues"
-msgstr ""
-
-#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690
-#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990
-#: ../../mod/admin.php:1026 ../../mod/admin.php:1113
-msgid "Administration"
-msgstr "Administrasjon"
-
-#: ../../mod/admin.php:213
-msgid "Summary"
-msgstr "Oppsummering"
-
-#: ../../mod/admin.php:215
-msgid "Registered users"
-msgstr "Registrerte brukere"
-
-#: ../../mod/admin.php:217
-msgid "Pending registrations"
-msgstr "Ventende registreringer"
-
-#: ../../mod/admin.php:218
-msgid "Version"
-msgstr "Versjon"
-
-#: ../../mod/admin.php:220
-msgid "Active plugins"
-msgstr "Aktive tillegg"
-
-#: ../../mod/admin.php:375
-msgid "Site settings updated."
-msgstr "Nettstedets innstillinger er oppdatert."
-
-#: ../../mod/admin.php:430
-msgid "Closed"
-msgstr "Stengt"
-
-#: ../../mod/admin.php:431
-msgid "Requires approval"
-msgstr "Krever godkjenning"
-
-#: ../../mod/admin.php:432
-msgid "Open"
-msgstr "Åpen"
-
-#: ../../mod/admin.php:436
-msgid "No SSL policy, links will track page SSL state"
-msgstr ""
-
-#: ../../mod/admin.php:437
-msgid "Force all links to use SSL"
-msgstr ""
-
-#: ../../mod/admin.php:438
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr ""
-
-#: ../../mod/admin.php:447
-msgid "File upload"
-msgstr "Last opp fil"
-
-#: ../../mod/admin.php:448
-msgid "Policies"
-msgstr "Retningslinjer"
-
-#: ../../mod/admin.php:449
-msgid "Advanced"
-msgstr "Avansert"
-
-#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676
-#: ../../addon.old/statusnet/statusnet.php:567
-msgid "Site name"
-msgstr "Nettstedets navn"
-
-#: ../../mod/admin.php:454
-msgid "Banner/Logo"
-msgstr "Banner/logo"
-
-#: ../../mod/admin.php:455
-msgid "System language"
-msgstr "Systemspråk"
-
-#: ../../mod/admin.php:456
-msgid "System theme"
-msgstr "Systemtema"
-
-#: ../../mod/admin.php:456
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr ""
-
-#: ../../mod/admin.php:457
-msgid "Mobile system theme"
-msgstr ""
-
-#: ../../mod/admin.php:457
-msgid "Theme for mobile devices"
-msgstr ""
-
-#: ../../mod/admin.php:458
-msgid "SSL link policy"
-msgstr ""
-
-#: ../../mod/admin.php:458
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr ""
-
-#: ../../mod/admin.php:459
-msgid "Maximum image size"
-msgstr "Maksimum bildestørrelse"
-
-#: ../../mod/admin.php:459
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: ../../mod/admin.php:460
-msgid "Maximum image length"
-msgstr ""
-
-#: ../../mod/admin.php:460
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr ""
-
-#: ../../mod/admin.php:461
-msgid "JPEG image quality"
-msgstr ""
-
-#: ../../mod/admin.php:461
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr ""
-
-#: ../../mod/admin.php:463
-msgid "Register policy"
-msgstr "Registrer retningslinjer"
-
-#: ../../mod/admin.php:464
-msgid "Maximum Daily Registrations"
-msgstr ""
-
-#: ../../mod/admin.php:464
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr ""
-
-#: ../../mod/admin.php:465
-msgid "Register text"
-msgstr "Registrer tekst"
-
-#: ../../mod/admin.php:465
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
-
-#: ../../mod/admin.php:466
-msgid "Accounts abandoned after x days"
-msgstr ""
-
-#: ../../mod/admin.php:466
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
-
-#: ../../mod/admin.php:467
-msgid "Allowed friend domains"
-msgstr "Tillate vennedomener"
-
-#: ../../mod/admin.php:467
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr ""
-
-#: ../../mod/admin.php:468
-msgid "Allowed email domains"
-msgstr "Tillate e-postdomener"
-
-#: ../../mod/admin.php:468
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr ""
-
-#: ../../mod/admin.php:469
-msgid "Block public"
-msgstr "Utesteng publikum"
-
-#: ../../mod/admin.php:469
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr ""
-
-#: ../../mod/admin.php:470
-msgid "Force publish"
-msgstr "Tving publisering"
-
-#: ../../mod/admin.php:470
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
-
-#: ../../mod/admin.php:471
-msgid "Global directory update URL"
-msgstr "URL for oppdatering av Global-katalog"
-
-#: ../../mod/admin.php:471
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr ""
-
-#: ../../mod/admin.php:472
-msgid "Allow threaded items"
-msgstr ""
-
-#: ../../mod/admin.php:472
-msgid "Allow infinite level threading for items on this site."
-msgstr ""
-
-#: ../../mod/admin.php:473
-msgid "Private posts by default for new users"
-msgstr ""
-
-#: ../../mod/admin.php:473
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
-
-#: ../../mod/admin.php:475
-msgid "Block multiple registrations"
-msgstr "Blokker flere registreringer"
-
-#: ../../mod/admin.php:475
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
-
-#: ../../mod/admin.php:476
-msgid "OpenID support"
-msgstr "OpenID-støtte"
-
-#: ../../mod/admin.php:476
-msgid "OpenID support for registration and logins."
-msgstr ""
-
-#: ../../mod/admin.php:477
-msgid "Fullname check"
-msgstr "Sjekk fullt navn"
-
-#: ../../mod/admin.php:477
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr ""
-
-#: ../../mod/admin.php:478
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 regulære uttrykk"
-
-#: ../../mod/admin.php:478
-msgid "Use PHP UTF8 regular expressions"
-msgstr ""
-
-#: ../../mod/admin.php:479
-msgid "Show Community Page"
-msgstr "Vis Felleskap-side"
-
-#: ../../mod/admin.php:479
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr ""
-
-#: ../../mod/admin.php:480
-msgid "Enable OStatus support"
-msgstr "Aktiver Ostatus-støtte"
-
-#: ../../mod/admin.php:480
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr ""
-
-#: ../../mod/admin.php:481
-msgid "Enable Diaspora support"
-msgstr ""
-
-#: ../../mod/admin.php:481
-msgid "Provide built-in Diaspora network compatibility."
-msgstr ""
-
-#: ../../mod/admin.php:482
-msgid "Only allow Friendica contacts"
-msgstr ""
-
-#: ../../mod/admin.php:482
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr ""
-
-#: ../../mod/admin.php:483
-msgid "Verify SSL"
-msgstr "Bekreft SSL"
-
-#: ../../mod/admin.php:483
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr ""
-
-#: ../../mod/admin.php:484
-msgid "Proxy user"
-msgstr "Brukernavn til mellomtjener"
-
-#: ../../mod/admin.php:485
-msgid "Proxy URL"
-msgstr "Mellomtjener URL"
-
-#: ../../mod/admin.php:486
-msgid "Network timeout"
-msgstr "Tidsavbrudd for nettverk"
-
-#: ../../mod/admin.php:486
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
-
-#: ../../mod/admin.php:487
-msgid "Delivery interval"
-msgstr ""
-
-#: ../../mod/admin.php:487
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr ""
-
-#: ../../mod/admin.php:488
-msgid "Poll interval"
-msgstr ""
-
-#: ../../mod/admin.php:488
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
-
-#: ../../mod/admin.php:489
-msgid "Maximum Load Average"
-msgstr ""
-
-#: ../../mod/admin.php:489
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
-
-#: ../../mod/admin.php:506
-msgid "Update has been marked successful"
-msgstr ""
-
-#: ../../mod/admin.php:516
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
-
-#: ../../mod/admin.php:519
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr ""
-
-#: ../../mod/admin.php:523
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
-
-#: ../../mod/admin.php:526
-#, php-format
-msgid "Update function %s could not be found."
-msgstr ""
-
-#: ../../mod/admin.php:541
-msgid "No failed updates."
-msgstr "Ingen mislykkede oppdateringer."
-
-#: ../../mod/admin.php:545
-msgid "Failed Updates"
-msgstr "Mislykkede oppdateringer"
-
-#: ../../mod/admin.php:546
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
-
-#: ../../mod/admin.php:547
-msgid "Mark success (if update was manually applied)"
-msgstr ""
-
-#: ../../mod/admin.php:548
-msgid "Attempt to execute this update step automatically"
-msgstr ""
-
-#: ../../mod/admin.php:573
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:580
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s bruker slettet"
-msgstr[1] "%s brukere slettet"
-
-#: ../../mod/admin.php:619
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Brukeren '%s' er slettet"
-
-#: ../../mod/admin.php:627
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Brukeren '%s' er ikke blokkert"
-
-#: ../../mod/admin.php:627
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Brukeren '%s' er blokkert"
-
-#: ../../mod/admin.php:693
-msgid "select all"
-msgstr "velg alle"
-
-#: ../../mod/admin.php:694
-msgid "User registrations waiting for confirm"
-msgstr "Brukerregistreringer venter på bekreftelse"
-
-#: ../../mod/admin.php:695
-msgid "Request date"
-msgstr "Forespørselsdato"
-
-#: ../../mod/admin.php:695 ../../mod/admin.php:705
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-post"
-
-#: ../../mod/admin.php:696
-msgid "No registrations."
-msgstr "Ingen registreringer."
-
-#: ../../mod/admin.php:698
-msgid "Deny"
-msgstr "Nekt"
-
-#: ../../mod/admin.php:702
-msgid "Site admin"
-msgstr ""
-
-#: ../../mod/admin.php:705
-msgid "Register date"
-msgstr "Registreringsdato"
-
-#: ../../mod/admin.php:705
-msgid "Last login"
-msgstr "Siste innlogging"
-
-#: ../../mod/admin.php:705
-msgid "Last item"
-msgstr "Siste element"
-
-#: ../../mod/admin.php:705
-msgid "Account"
-msgstr "Konto"
-
-#: ../../mod/admin.php:707
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"
-
-#: ../../mod/admin.php:708
-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 "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?"
-
-#: ../../mod/admin.php:749
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Tillegget %s er avskrudd."
-
-#: ../../mod/admin.php:753
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Tillegget %s er aktivert."
-
-#: ../../mod/admin.php:763 ../../mod/admin.php:961
-msgid "Disable"
-msgstr "Skru av"
-
-#: ../../mod/admin.php:765 ../../mod/admin.php:963
-msgid "Enable"
-msgstr "Aktiver"
-
-#: ../../mod/admin.php:787 ../../mod/admin.php:992
-msgid "Toggle"
-msgstr "Veksle"
-
-#: ../../mod/admin.php:795 ../../mod/admin.php:1002
-msgid "Author: "
-msgstr ""
-
-#: ../../mod/admin.php:796 ../../mod/admin.php:1003
-msgid "Maintainer: "
-msgstr ""
-
-#: ../../mod/admin.php:925
-msgid "No themes found."
-msgstr ""
-
-#: ../../mod/admin.php:984
-msgid "Screenshot"
-msgstr ""
-
-#: ../../mod/admin.php:1032
-msgid "[Experimental]"
-msgstr ""
-
-#: ../../mod/admin.php:1033
-msgid "[Unsupported]"
-msgstr ""
-
-#: ../../mod/admin.php:1060
-msgid "Log settings updated."
-msgstr "Logginnstillinger er oppdatert."
-
-#: ../../mod/admin.php:1116
-msgid "Clear"
-msgstr "Tøm"
-
-#: ../../mod/admin.php:1122
-msgid "Debugging"
-msgstr "Feilsøking"
-
-#: ../../mod/admin.php:1123
-msgid "Log file"
-msgstr "Loggfil"
-
-#: ../../mod/admin.php:1123
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr ""
-
-#: ../../mod/admin.php:1124
-msgid "Log level"
-msgstr "Loggnivå"
-
-#: ../../mod/admin.php:1174
-msgid "Close"
-msgstr "Lukk"
-
-#: ../../mod/admin.php:1180
-msgid "FTP Host"
-msgstr "FTP-tjener"
-
-#: ../../mod/admin.php:1181
-msgid "FTP Path"
-msgstr "FTP-sti"
-
-#: ../../mod/admin.php:1182
-msgid "FTP User"
-msgstr "FTP-bruker"
-
-#: ../../mod/admin.php:1183
-msgid "FTP Password"
-msgstr "FTP-passord"
-
-#: ../../mod/profile.php:21 ../../boot.php:1126
-msgid "Requested profile is not available."
-msgstr ""
-
-#: ../../mod/profile.php:155 ../../mod/display.php:87
-msgid "Access to this profile has been restricted."
-msgstr "Tilgang til denne profilen er blitt begrenset."
-
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tips til nye medlemmer"
-
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} ønsker å bli din venn"
-
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} sendte deg en melding"
-
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} forespurte om registrering"
-
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommenterte %s sitt innlegg"
-
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} likte %s sitt innlegg"
-
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} likte ikke %s sitt innlegg"
-
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} er nå venner med %s"
-
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} postet et innlegg"
-
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} merket %s sitt innlegg med #%s"
-
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr ""
-
-#: ../../mod/nogroup.php:58
-msgid "Contacts who are not members of a group"
-msgstr ""
-
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr ""
-
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr ""
-
-#: ../../mod/openid.php:93 ../../include/auth.php:110
-#: ../../include/auth.php:173
-msgid "Login failed."
-msgstr "Innlogging mislyktes."
-
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr ""
-
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr ""
-
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr ""
-
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
-
-#: ../../mod/share.php:28
-msgid "link"
-msgstr ""
-
-#: ../../mod/display.php:162
-msgid "Item has been removed."
-msgstr "Elementet har blitt slettet."
-
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Programmer"
-
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Ingen installerte programmer."
-
-#: ../../mod/search.php:99 ../../include/text.php:685
-#: ../../include/text.php:686 ../../include/nav.php:91
-msgid "Search"
-msgstr "Søk"
-
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
-#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "Fant ikke profilen."
-
-#: ../../mod/profiles.php:31
-msgid "Profile Name is required."
-msgstr "Profilnavn er påkrevet."
-
-#: ../../mod/profiles.php:178
-msgid "Marital Status"
-msgstr ""
-
-#: ../../mod/profiles.php:182
-msgid "Romantic Partner"
-msgstr ""
-
-#: ../../mod/profiles.php:186
-msgid "Likes"
-msgstr ""
-
-#: ../../mod/profiles.php:190
-msgid "Dislikes"
-msgstr ""
-
-#: ../../mod/profiles.php:194
-msgid "Work/Employment"
-msgstr ""
-
-#: ../../mod/profiles.php:197
-msgid "Religion"
-msgstr ""
-
-#: ../../mod/profiles.php:201
-msgid "Political Views"
-msgstr ""
-
-#: ../../mod/profiles.php:205
-msgid "Gender"
-msgstr ""
-
-#: ../../mod/profiles.php:209
-msgid "Sexual Preference"
-msgstr ""
-
-#: ../../mod/profiles.php:213
-msgid "Homepage"
-msgstr ""
-
-#: ../../mod/profiles.php:217
-msgid "Interests"
-msgstr ""
-
-#: ../../mod/profiles.php:221
-msgid "Address"
-msgstr ""
-
-#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
-msgid "Location"
-msgstr ""
-
-#: ../../mod/profiles.php:311
-msgid "Profile updated."
-msgstr "Profil oppdatert."
-
-#: ../../mod/profiles.php:378
-msgid " and "
-msgstr ""
-
-#: ../../mod/profiles.php:386
-msgid "public profile"
-msgstr ""
-
-#: ../../mod/profiles.php:389
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr ""
-
-#: ../../mod/profiles.php:390
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr ""
-
-#: ../../mod/profiles.php:393
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr ""
-
-#: ../../mod/profiles.php:460
-msgid "Profile deleted."
-msgstr "Profil slettet."
-
-#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
-msgid "Profile-"
-msgstr "Profil-"
-
-#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
-msgid "New profile created."
-msgstr "Ny profil opprettet."
-
-#: ../../mod/profiles.php:518
-msgid "Profile unavailable to clone."
-msgstr "Profilen er utilgjengelig for kloning."
-
-#: ../../mod/profiles.php:583
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?"
-
-#: ../../mod/profiles.php:603
-msgid "Edit Profile Details"
-msgstr "Endre profildetaljer"
-
-#: ../../mod/profiles.php:605
-msgid "View this profile"
-msgstr "Vis denne profilen"
-
-#: ../../mod/profiles.php:606
-msgid "Create a new profile using these settings"
-msgstr "Opprett en ny profil med disse innstillingene"
-
-#: ../../mod/profiles.php:607
-msgid "Clone this profile"
-msgstr "Klon denne profilen"
-
-#: ../../mod/profiles.php:608
-msgid "Delete this profile"
-msgstr "Slette denne profilen"
-
-#: ../../mod/profiles.php:609
-msgid "Profile Name:"
-msgstr "Profilnavn:"
-
-#: ../../mod/profiles.php:610
-msgid "Your Full Name:"
-msgstr "Ditt fulle navn:"
-
-#: ../../mod/profiles.php:611
-msgid "Title/Description:"
-msgstr "Tittel/Beskrivelse:"
-
-#: ../../mod/profiles.php:612
-msgid "Your Gender:"
-msgstr "Ditt kjønn:"
-
-#: ../../mod/profiles.php:613
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Fødselsdag (%s):"
-
-#: ../../mod/profiles.php:614
-msgid "Street Address:"
-msgstr "Gateadresse:"
-
-#: ../../mod/profiles.php:615
-msgid "Locality/City:"
-msgstr "Plassering/by:"
-
-#: ../../mod/profiles.php:616
-msgid "Postal/Zip Code:"
-msgstr "Postnummer:"
-
-#: ../../mod/profiles.php:617
-msgid "Country:"
-msgstr "Land:"
-
-#: ../../mod/profiles.php:618
-msgid "Region/State:"
-msgstr "Region/fylke:"
-
-#: ../../mod/profiles.php:619
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
-
-#: ../../mod/profiles.php:620
-msgid "Who: (if applicable)"
-msgstr "Hvem: (hvis gjeldende)"
-
-#: ../../mod/profiles.php:621
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com"
-
-#: ../../mod/profiles.php:622
-msgid "Since [date]:"
-msgstr ""
-
-#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Seksuell orientering:"
-
-#: ../../mod/profiles.php:624
-msgid "Homepage URL:"
-msgstr "Hjemmeside URL:"
-
-#: ../../mod/profiles.php:625 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr ""
-
-#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politisk ståsted:"
-
-#: ../../mod/profiles.php:627
-msgid "Religious Views:"
-msgstr "Religiøst ståsted:"
-
-#: ../../mod/profiles.php:628
-msgid "Public Keywords:"
-msgstr "Offentlige nøkkelord:"
-
-#: ../../mod/profiles.php:629
-msgid "Private Keywords:"
-msgstr "Private nøkkelord:"
-
-#: ../../mod/profiles.php:630 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr ""
-
-#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr ""
-
-#: ../../mod/profiles.php:632
-msgid "Example: fishing photography software"
-msgstr "Eksempel: fisking fotografering programvare"
-
-#: ../../mod/profiles.php:633
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)"
-
-#: ../../mod/profiles.php:634
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Brukes for å søke i profiler, vises aldri til andre)"
-
-#: ../../mod/profiles.php:635
-msgid "Tell us about yourself..."
-msgstr "Fortell oss om deg selv..."
-
-#: ../../mod/profiles.php:636
-msgid "Hobbies/Interests"
-msgstr "Hobbier/interesser"
-
-#: ../../mod/profiles.php:637
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformasjon og sosiale nettverk"
-
-#: ../../mod/profiles.php:638
-msgid "Musical interests"
-msgstr "Musikksmak"
-
-#: ../../mod/profiles.php:639
-msgid "Books, literature"
-msgstr "Bøker, litteratur"
-
-#: ../../mod/profiles.php:640
-msgid "Television"
-msgstr "TV"
-
-#: ../../mod/profiles.php:641
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/dans/kultur/underholdning"
-
-#: ../../mod/profiles.php:642
-msgid "Love/romance"
-msgstr "Kjærlighet/romanse"
-
-#: ../../mod/profiles.php:643
-msgid "Work/employment"
-msgstr "Arbeid/ansatt hos"
-
-#: ../../mod/profiles.php:644
-msgid "School/education"
-msgstr "Skole/utdanning"
-
-#: ../../mod/profiles.php:649
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet."
-
-#: ../../mod/profiles.php:659 ../../mod/directory.php:111
-#: ../../addon/forumdirectory/forumdirectory.php:133
-msgid "Age: "
-msgstr "Alder:"
-
-#: ../../mod/profiles.php:698
-msgid "Edit/Manage Profiles"
-msgstr "Rediger/Behandle profiler"
-
-#: ../../mod/profiles.php:699 ../../boot.php:1244
-msgid "Change profile photo"
-msgstr "Endre profilbilde"
-
-#: ../../mod/profiles.php:700 ../../boot.php:1245
-msgid "Create New Profile"
-msgstr "Lag ny profil"
-
-#: ../../mod/profiles.php:711 ../../boot.php:1255
-msgid "Profile Image"
-msgstr "Profilbilde"
-
-#: ../../mod/profiles.php:713 ../../boot.php:1258
-msgid "visible to everybody"
-msgstr "synlig for alle"
-
-#: ../../mod/profiles.php:714 ../../boot.php:1259
-msgid "Edit visibility"
-msgstr "Endre synlighet"
-
-#: ../../mod/filer.php:29 ../../include/conversation.php:909
-#: ../../include/conversation.php:927
-msgid "Save to Folder:"
-msgstr ""
-
-#: ../../mod/filer.php:29
-msgid "- select -"
-msgstr ""
-
-#: ../../mod/tagger.php:95 ../../include/conversation.php:265
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s merket %2$s sitt %3$s med %4$s"
-
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr ""
-
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Deleger sidebehandling"
-
-#: ../../mod/delegate.php:123
-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 "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."
-
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Eksisterende sidebehandlere"
-
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr ""
-
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr ""
-
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr ""
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr ""
-
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr ""
-
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr ""
-
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr ""
-
-#: ../../mod/babel.php:35
-msgid "bb2html: "
-msgstr ""
-
-#: ../../mod/babel.php:39
-msgid "bb2html2bb: "
-msgstr ""
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} kommenterte %s sitt innlegg"
 
-#: ../../mod/babel.php:43
-msgid "bb2md: "
-msgstr ""
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} likte %s sitt innlegg"
 
-#: ../../mod/babel.php:47
-msgid "bb2md2html: "
-msgstr ""
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} likte ikke %s sitt innlegg"
 
-#: ../../mod/babel.php:51
-msgid "bb2dia2bb: "
-msgstr ""
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} er nå venner med %s"
 
-#: ../../mod/babel.php:55
-msgid "bb2md2html2bb: "
-msgstr ""
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} postet et innlegg"
 
-#: ../../mod/babel.php:65
-msgid "Source input (Diaspora format): "
-msgstr ""
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} merket %s sitt innlegg med #%s"
 
-#: ../../mod/babel.php:70
-msgid "diaspora2bb: "
-msgstr ""
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} nevnte deg i et innlegg"
 
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Venneforslag"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Temainnstillinger oppdatert."
 
-#: ../../mod/suggest.php:44
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr ""
+#: ../../mod/admin.php:96 ../../mod/admin.php:490
+msgid "Site"
+msgstr "Nettsted"
 
-#: ../../mod/suggest.php:61
-msgid "Ignore/Hide"
-msgstr "Ignorér/Skjul"
+#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776
+msgid "Users"
+msgstr "Brukere"
 
-#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
-#: ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Global katalog"
+#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901
+msgid "Plugins"
+msgstr "Tillegg"
 
-#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
-msgid "Find on this site"
-msgstr ""
+#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101
+msgid "Themes"
+msgstr "Tema"
 
-#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
-msgid "Site Directory"
-msgstr "Stedets katalog"
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "Databaseoppdateringer"
 
-#: ../../mod/directory.php:114
-#: ../../addon/forumdirectory/forumdirectory.php:136
-msgid "Gender: "
-msgstr "Kjønn:"
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188
+msgid "Logs"
+msgstr "Logger"
 
-#: ../../mod/directory.php:136
-#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../boot.php:1280
-msgid "Gender:"
-msgstr "Kjønn:"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Utvidelse - egenskaper"
 
-#: ../../mod/directory.php:138
-#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../boot.php:1283
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/directory.php:140
-#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../boot.php:1285
-msgid "Homepage:"
-msgstr "Hjemmeside:"
+#: ../../mod/admin.php:182 ../../mod/admin.php:733
+msgid "Normal Account"
+msgstr "Vanlig konto"
 
-#: ../../mod/directory.php:142
-#: ../../addon/forumdirectory/forumdirectory.php:164
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Om:"
+#: ../../mod/admin.php:183 ../../mod/admin.php:734
+msgid "Soapbox Account"
+msgstr "Talerstol-konto"
 
-#: ../../mod/directory.php:180
-#: ../../addon/forumdirectory/forumdirectory.php:202
-msgid "No entries (some entries may be hidden)."
-msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)."
+#: ../../mod/admin.php:184 ../../mod/admin.php:735
+msgid "Community/Celebrity Account"
+msgstr "Gruppe-/kjendiskonto"
 
-#: ../../mod/invite.php:35
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Ugyldig e-postadresse."
+#: ../../mod/admin.php:185 ../../mod/admin.php:736
+msgid "Automatic Friend Account"
+msgstr "Automatisk vennekonto"
 
-#: ../../mod/invite.php:59
-msgid "Please join us on Friendica"
-msgstr ""
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "Bloggkonto"
 
-#: ../../mod/invite.php:69
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Mislyktes med å levere meldingen."
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "Privat forum"
 
-#: ../../mod/invite.php:73
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "one: %d melding sendt."
-msgstr[1] "other: %d meldinger sendt."
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "Meldingskøer"
 
-#: ../../mod/invite.php:92
-msgid "You have no more invitations available"
-msgstr "Du har ingen flere tilgjengelige invitasjoner"
+#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761
+#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066
+#: ../../mod/admin.php:1100 ../../mod/admin.php:1187
+msgid "Administration"
+msgstr "Administrasjon"
 
-#: ../../mod/invite.php:100
-#, 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 ""
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Oppsummering"
 
-#: ../../mod/invite.php:102
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr ""
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "Registrerte brukere"
 
-#: ../../mod/invite.php:103
-#, 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/admin.php:216
+msgid "Pending registrations"
+msgstr "Ventende registreringer"
 
-#: ../../mod/invite.php:106
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Versjon"
 
-#: ../../mod/invite.php:111
-msgid "Send invitations"
-msgstr "Send invitasjoner"
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "Aktive tillegg"
 
-#: ../../mod/invite.php:112
-msgid "Enter email addresses, one per line:"
-msgstr "Skriv e-postadresser, en per linje:"
+#: ../../mod/admin.php:405
+msgid "Site settings updated."
+msgstr "Nettstedets innstillinger er oppdatert."
 
-#: ../../mod/invite.php:114
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr ""
+#: ../../mod/admin.php:434 ../../mod/settings.php:793
+msgid "No special theme for mobile devices"
+msgstr "Ikke eget tema for mobile enheter"
 
-#: ../../mod/invite.php:116
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du må oppgi denne invitasjonskoden: $invite_code"
+#: ../../mod/admin.php:451 ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Aldri"
 
-#: ../../mod/invite.php:116
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:"
+#: ../../mod/admin.php:460
+msgid "Multi user instance"
+msgstr "Flerbrukerinstans"
 
-#: ../../mod/invite.php:118
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr ""
+#: ../../mod/admin.php:476
+msgid "Closed"
+msgstr "Stengt"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr ""
+#: ../../mod/admin.php:477
+msgid "Requires approval"
+msgstr "Krever godkjenning"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Forstod ikke svaret fra det andre stedet."
+#: ../../mod/admin.php:478
+msgid "Open"
+msgstr "Åpen"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Uventet svar fra det andre stedet:"
+#: ../../mod/admin.php:482
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Sending av bekreftelse var vellykket. "
+#: ../../mod/admin.php:483
+msgid "Force all links to use SSL"
+msgstr "Tving alle lenker til å bruke SSL"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Det andre stedet rapporterte:"
+#: ../../mod/admin.php:484
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Midlertidig feil. Vennligst vent og prøv igjen."
+#: ../../mod/admin.php:492 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Registrering"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Introduksjon mislyktes eller ble trukket tilbake."
+#: ../../mod/admin.php:493
+msgid "File upload"
+msgstr "Last opp fil"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Fikk ikke satt kontaktbilde."
+#: ../../mod/admin.php:494
+msgid "Policies"
+msgstr "Retningslinjer"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619
-#: ../../include/conversation.php:171
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s er nå venner med %2$s"
+#: ../../mod/admin.php:495
+msgid "Advanced"
+msgstr "Avansert"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Ingen brukerregistrering funnet for '%s'"
+#: ../../mod/admin.php:496
+msgid "Performance"
+msgstr "Ytelse"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."
+#: ../../mod/admin.php:500
+msgid "Site name"
+msgstr "Nettstedets navn"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."
+#: ../../mod/admin.php:501
+msgid "Banner/Logo"
+msgstr "Banner/logo"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."
+#: ../../mod/admin.php:502
+msgid "System language"
+msgstr "Systemspråk"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr ""
+#: ../../mod/admin.php:503
+msgid "System theme"
+msgstr "Systemtema"
 
-#: ../../mod/dfrn_confirm.php:638
+#: ../../mod/admin.php:503
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standard tema for systemet - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system."
+#: ../../mod/admin.php:504
+msgid "Mobile system theme"
+msgstr "Mobilt tema til systemet"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system."
+#: ../../mod/admin.php:504
+msgid "Theme for mobile devices"
+msgstr "Tema for mobile enheter"
 
-#: ../../mod/dfrn_confirm.php:750
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Tilkobling godtatt på %s"
+#: ../../mod/admin.php:505
+msgid "SSL link policy"
+msgstr "Retningslinjer for SSL og lenker"
 
-#: ../../mod/dfrn_confirm.php:799
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr ""
+#: ../../mod/admin.php:505
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL"
 
-#: ../../addon/fromgplus/fromgplus.php:29
-#: ../../addon.old/fromgplus/fromgplus.php:29
-msgid "Google+ Import Settings"
-msgstr ""
+#: ../../mod/admin.php:506
+msgid "'Share' element"
+msgstr "'Dele' element"
 
-#: ../../addon/fromgplus/fromgplus.php:32
-#: ../../addon.old/fromgplus/fromgplus.php:32
-msgid "Enable Google+ Import"
-msgstr ""
+#: ../../mod/admin.php:506
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr "Aktiverer BBCode-elementet 'dele' for å gjenta elementer."
 
-#: ../../addon/fromgplus/fromgplus.php:35
-#: ../../addon.old/fromgplus/fromgplus.php:35
-msgid "Google Account ID"
-msgstr ""
+#: ../../mod/admin.php:507
+msgid "Hide help entry from navigation menu"
+msgstr "Skjul punktet om hjelp fra navigasjonsmenyen"
 
-#: ../../addon/fromgplus/fromgplus.php:55
-#: ../../addon.old/fromgplus/fromgplus.php:55
-msgid "Google+ Import Settings saved."
-msgstr ""
+#: ../../mod/admin.php:507
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte."
 
-#: ../../addon/facebook/facebook.php:523
-#: ../../addon.old/facebook/facebook.php:523
-msgid "Facebook disabled"
-msgstr "Facebook avskrudd"
-
-#: ../../addon/facebook/facebook.php:528
-#: ../../addon.old/facebook/facebook.php:528
-msgid "Updating contacts"
-msgstr "Oppdaterer kontakter"
-
-#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
-#: ../../addon.old/facebook/facebook.php:551
-#: ../../addon.old/fbpost/fbpost.php:192
-msgid "Facebook API key is missing."
-msgstr "Facebook API-nøkkel mangler."
-
-#: ../../addon/facebook/facebook.php:558
-#: ../../addon.old/facebook/facebook.php:558
-msgid "Facebook Connect"
-msgstr "Facebook-kobling"
-
-#: ../../addon/facebook/facebook.php:564
-#: ../../addon.old/facebook/facebook.php:564
-msgid "Install Facebook connector for this account."
-msgstr "Legg til Facebook-kobling for denne kontoen."
-
-#: ../../addon/facebook/facebook.php:571
-#: ../../addon.old/facebook/facebook.php:571
-msgid "Remove Facebook connector"
-msgstr "Fjern Facebook-kobling"
-
-#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
-#: ../../addon.old/facebook/facebook.php:576
-#: ../../addon.old/fbpost/fbpost.php:217
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr ""
+#: ../../mod/admin.php:508
+msgid "Single user instance"
+msgstr "Enkeltbrukerinstans"
 
-#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
-#: ../../addon.old/facebook/facebook.php:583
-#: ../../addon.old/fbpost/fbpost.php:224
-msgid "Post to Facebook by default"
-msgstr "Post til Facebook som standard"
+#: ../../mod/admin.php:508
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren"
 
-#: ../../addon/facebook/facebook.php:589
-#: ../../addon.old/facebook/facebook.php:589
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
-msgstr ""
+#: ../../mod/admin.php:509
+msgid "Maximum image size"
+msgstr "Maksimum bildestørrelse"
 
-#: ../../addon/facebook/facebook.php:593
-#: ../../addon.old/facebook/facebook.php:593
+#: ../../mod/admin.php:509
 msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
-msgstr ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense."
 
-#: ../../addon/facebook/facebook.php:596
-#: ../../addon.old/facebook/facebook.php:596
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr ""
+#: ../../mod/admin.php:510
+msgid "Maximum image length"
+msgstr "Maksimal bildelenge"
 
-#: ../../addon/facebook/facebook.php:598
-#: ../../addon.old/facebook/facebook.php:598
+#: ../../mod/admin.php:510
 msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
-msgstr ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense."
 
-#: ../../addon/facebook/facebook.php:599
-#: ../../addon.old/facebook/facebook.php:599
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr ""
+#: ../../mod/admin.php:511
+msgid "JPEG image quality"
+msgstr "JPEG-bildekvalitet"
 
-#: ../../addon/facebook/facebook.php:600
-#: ../../addon.old/facebook/facebook.php:600
+#: ../../mod/admin.php:511
 msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
-msgstr ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet."
 
-#: ../../addon/facebook/facebook.php:604
-#: ../../addon.old/facebook/facebook.php:604
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr ""
+#: ../../mod/admin.php:513
+msgid "Register policy"
+msgstr "Registrer retningslinjer"
 
-#: ../../addon/facebook/facebook.php:609
-#: ../../addon.old/facebook/facebook.php:609
-msgid "Do not import your Facebook profile wall conversations"
-msgstr ""
+#: ../../mod/admin.php:514
+msgid "Maximum Daily Registrations"
+msgstr "Maksimalt antall daglige registreringer"
 
-#: ../../addon/facebook/facebook.php:611
-#: ../../addon.old/facebook/facebook.php:611
+#: ../../mod/admin.php:514
 msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr ""
+"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 "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt."
 
-#: ../../addon/facebook/facebook.php:616
-#: ../../addon.old/facebook/facebook.php:616
-msgid "Comma separated applications to ignore"
-msgstr ""
+#: ../../mod/admin.php:515
+msgid "Register text"
+msgstr "Registrer tekst"
 
-#: ../../addon/facebook/facebook.php:700
-#: ../../addon.old/facebook/facebook.php:700
-msgid "Problems with Facebook Real-Time Updates"
-msgstr ""
+#: ../../mod/admin.php:515
+msgid "Will be displayed prominently on the registration page."
+msgstr "Vil bli vist på en fremtredende måte på registreringssiden."
 
-#: ../../addon/facebook/facebook.php:729
-#: ../../addon.old/facebook/facebook.php:729
-msgid "Facebook Connector Settings"
-msgstr "Innstillinger for Facebook-kobling"
+#: ../../mod/admin.php:516
+msgid "Accounts abandoned after x days"
+msgstr "Kontoer forlatt etter x dager"
 
-#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
-#: ../../addon.old/facebook/facebook.php:744
-#: ../../addon.old/fbpost/fbpost.php:255
-msgid "Facebook API Key"
-msgstr ""
+#: ../../mod/admin.php:516
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense."
+
+#: ../../mod/admin.php:517
+msgid "Allowed friend domains"
+msgstr "Tillate vennedomener"
 
-#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
-#: ../../addon.old/facebook/facebook.php:754
-#: ../../addon.old/fbpost/fbpost.php:262
+#: ../../mod/admin.php:517
 msgid ""
-"Error: it appears that you have specified the App-ID and -Secret in your "
-".htconfig.php file. As long as they are specified there, they cannot be set "
-"using this form.<br><br>"
-msgstr ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener."
 
-#: ../../addon/facebook/facebook.php:759
-#: ../../addon.old/facebook/facebook.php:759
+#: ../../mod/admin.php:518
+msgid "Allowed email domains"
+msgstr "Tillate e-postdomener"
+
+#: ../../mod/admin.php:518
 msgid ""
-"Error: the given API Key seems to be incorrect (the application access token"
-" could not be retrieved)."
-msgstr ""
+"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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener."
 
-#: ../../addon/facebook/facebook.php:761
-#: ../../addon.old/facebook/facebook.php:761
-msgid "The given API Key seems to work correctly."
-msgstr ""
+#: ../../mod/admin.php:519
+msgid "Block public"
+msgstr "Utesteng publikum"
 
-#: ../../addon/facebook/facebook.php:763
-#: ../../addon.old/facebook/facebook.php:763
+#: ../../mod/admin.php:519
 msgid ""
-"The correctness of the API Key could not be detected. Something strange's "
-"going on."
-msgstr ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn."
 
-#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
-#: ../../addon.old/facebook/facebook.php:766
-#: ../../addon.old/fbpost/fbpost.php:264
-msgid "App-ID / API-Key"
-msgstr ""
+#: ../../mod/admin.php:520
+msgid "Force publish"
+msgstr "Tving publisering"
 
-#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
-#: ../../addon.old/facebook/facebook.php:767
-#: ../../addon.old/fbpost/fbpost.php:265
-msgid "Application secret"
-msgstr ""
+#: ../../mod/admin.php:520
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen."
 
-#: ../../addon/facebook/facebook.php:768
-#: ../../addon.old/facebook/facebook.php:768
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
-msgstr ""
+#: ../../mod/admin.php:521
+msgid "Global directory update URL"
+msgstr "URL for oppdatering av Global-katalog"
 
-#: ../../addon/facebook/facebook.php:769
-#: ../../addon.old/facebook/facebook.php:769
+#: ../../mod/admin.php:521
 msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
-msgstr ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet."
 
-#: ../../addon/facebook/facebook.php:773
-#: ../../addon.old/facebook/facebook.php:773
-msgid "Real-Time Updates"
-msgstr ""
+#: ../../mod/admin.php:522
+msgid "Allow threaded items"
+msgstr "Tillat en tråd av elementer "
 
-#: ../../addon/facebook/facebook.php:777
-#: ../../addon.old/facebook/facebook.php:777
-msgid "Real-Time Updates are activated."
-msgstr ""
+#: ../../mod/admin.php:522
+msgid "Allow infinite level threading for items on this site."
+msgstr "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet."
 
-#: ../../addon/facebook/facebook.php:778
-#: ../../addon.old/facebook/facebook.php:778
-msgid "Deactivate Real-Time Updates"
-msgstr ""
+#: ../../mod/admin.php:523
+msgid "Private posts by default for new users"
+msgstr "Private meldinger som standard for nye brukere"
 
-#: ../../addon/facebook/facebook.php:780
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Real-Time Updates not activated."
-msgstr ""
+#: ../../mod/admin.php:523
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig."
 
-#: ../../addon/facebook/facebook.php:780
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Activate Real-Time Updates"
-msgstr ""
+#: ../../mod/admin.php:524
+msgid "Don't include post content in email notifications"
+msgstr "Ikke inkluder innholdet i en melding i epostvarsler"
 
-#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
-#: ../../addon/dav/friendica/layout.fnk.php:361
-#: ../../addon.old/facebook/facebook.php:799
-#: ../../addon.old/fbpost/fbpost.php:282
-#: ../../addon.old/dav/friendica/layout.fnk.php:361
-msgid "The new values have been saved."
-msgstr ""
+#: ../../mod/admin.php:524
+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 "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak."
 
-#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
-#: ../../addon.old/facebook/facebook.php:823
-#: ../../addon.old/fbpost/fbpost.php:301
-msgid "Post to Facebook"
-msgstr "Post til Facebook"
+#: ../../mod/admin.php:525
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen."
 
-#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
-#: ../../addon.old/facebook/facebook.php:921
-#: ../../addon.old/fbpost/fbpost.php:399
+#: ../../mod/admin.php:525
 msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer."
 
-#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
-#: ../../addon.old/facebook/facebook.php:1149
-#: ../../addon.old/fbpost/fbpost.php:610
-msgid "View on Friendica"
-msgstr ""
+#: ../../mod/admin.php:526
+msgid "Don't embed private images in posts"
+msgstr "Ikke innebygg private bilder i innlegg"
 
-#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
-#: ../../addon.old/facebook/facebook.php:1182
-#: ../../addon.old/fbpost/fbpost.php:643
-msgid "Facebook post failed. Queued for retry."
-msgstr "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen."
+#: ../../mod/admin.php:526
+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 "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund."
 
-#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
-#: ../../addon.old/facebook/facebook.php:1222
-#: ../../addon.old/fbpost/fbpost.php:683
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
-msgstr ""
+#: ../../mod/admin.php:528
+msgid "Block multiple registrations"
+msgstr "Blokker flere registreringer"
 
-#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
-#: ../../addon.old/facebook/facebook.php:1223
-#: ../../addon.old/fbpost/fbpost.php:684
-msgid "Facebook connection became invalid"
-msgstr ""
+#: ../../mod/admin.php:528
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider."
 
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
-#: ../../addon.old/facebook/facebook.php:1224
-#: ../../addon.old/fbpost/fbpost.php:685
-#, php-format
+#: ../../mod/admin.php:529
+msgid "OpenID support"
+msgstr "OpenID-støtte"
+
+#: ../../mod/admin.php:529
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-støtte for registrering og innlogging."
+
+#: ../../mod/admin.php:530
+msgid "Fullname check"
+msgstr "Sjekk fullt navn"
+
+#: ../../mod/admin.php:530
 msgid ""
-"Hi %1$s,\n"
-"\n"
-"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)."
 
-#: ../../addon/snautofollow/snautofollow.php:32
-#: ../../addon.old/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
-msgstr ""
+#: ../../mod/admin.php:531
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 regulære uttrykk"
 
-#: ../../addon/snautofollow/snautofollow.php:56
-#: ../../addon.old/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
-msgstr ""
+#: ../../mod/admin.php:531
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Bruk PHP UTF8 regulære uttrykk"
 
-#: ../../addon/snautofollow/snautofollow.php:58
-#: ../../addon.old/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
-msgstr ""
+#: ../../mod/admin.php:532
+msgid "Show Community Page"
+msgstr "Vis Felleskap-side"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
-msgid "Lifetime of the cache (in hours)"
-msgstr ""
+#: ../../mod/admin.php:532
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet."
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
-msgid "Cache Statistics"
-msgstr ""
+#: ../../mod/admin.php:533
+msgid "Enable OStatus support"
+msgstr "Aktiver Ostatus-støtte"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
-msgid "Number of items"
-msgstr ""
+#: ../../mod/admin.php:533
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til."
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
-msgid "Size of the cache"
-msgstr ""
+#: ../../mod/admin.php:534
+msgid "OStatus conversation completion interval"
+msgstr "OStatus intervall for samtalefullførelse"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
-msgid "Delete the whole cache"
-msgstr ""
+#: ../../mod/admin.php:534
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave."
 
-#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
-msgid "Facebook Post disabled"
-msgstr ""
+#: ../../mod/admin.php:535
+msgid "Enable Diaspora support"
+msgstr "Aktiver Diaspora-støtte"
 
-#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
-msgid "Facebook Post"
-msgstr ""
+#: ../../mod/admin.php:535
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket."
 
-#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
-msgid "Install Facebook Post connector for this account."
-msgstr ""
+#: ../../mod/admin.php:536
+msgid "Only allow Friendica contacts"
+msgstr "Bare tillat Friendica-kontakter"
 
-#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
-msgid "Remove Facebook Post connector"
-msgstr ""
+#: ../../mod/admin.php:536
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert."
 
-#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
-msgid "Facebook Post Settings"
-msgstr ""
+#: ../../mod/admin.php:537
+msgid "Verify SSL"
+msgstr "Bekreft SSL"
 
-#: ../../addon/widgets/widget_like.php:58
-#: ../../addon.old/widgets/widget_like.php:58
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/admin.php:537
+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 "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater."
 
-#: ../../addon/widgets/widget_like.php:61
-#: ../../addon.old/widgets/widget_like.php:61
-#, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/admin.php:538
+msgid "Proxy user"
+msgstr "Brukernavn til mellomtjener"
 
-#: ../../addon/widgets/widget_friendheader.php:40
-#: ../../addon.old/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
-msgstr ""
+#: ../../mod/admin.php:539
+msgid "Proxy URL"
+msgstr "Mellomtjener URL"
 
-#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
-msgid "Generate new key"
-msgstr "Lag ny nøkkel"
+#: ../../mod/admin.php:540
+msgid "Network timeout"
+msgstr "Tidsavbrudd for nettverk"
 
-#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
-msgid "Widgets key"
-msgstr "Nøkkel til småprogrammer"
+#: ../../mod/admin.php:540
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)."
 
-#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
-msgid "Widgets available"
-msgstr "Småprogrammer er tilgjengelige"
+#: ../../mod/admin.php:541
+msgid "Delivery interval"
+msgstr "Leveringsintervall"
 
-#: ../../addon/widgets/widget_friends.php:40
-#: ../../addon.old/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
-msgstr ""
+#: ../../mod/admin.php:541
+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 "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere."
 
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr ""
+#: ../../mod/admin.php:542
+msgid "Poll interval"
+msgstr "Spørreintervall"
 
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslapped"
-msgstr ""
+#: ../../mod/admin.php:542
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall."
 
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shag"
-msgstr ""
+#: ../../mod/admin.php:543
+msgid "Maximum Load Average"
+msgstr "Maksimal snittlast"
 
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr ""
+#: ../../mod/admin.php:543
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50."
 
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "do something obscenely biological to"
-msgstr ""
+#: ../../mod/admin.php:545
+msgid "Use MySQL full text engine"
+msgstr "Bruk MySQL fulltekstmotor"
 
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "did something obscenely biological to"
-msgstr ""
+#: ../../mod/admin.php:545
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn."
 
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "point out the poke feature to"
-msgstr ""
+#: ../../mod/admin.php:546
+msgid "Path to item cache"
+msgstr "Sti til mellomlager for elementer"
 
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "pointed out the poke feature to"
-msgstr ""
+#: ../../mod/admin.php:547
+msgid "Cache duration in seconds"
+msgstr "Mellomlagringens varighet i sekunder"
 
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declare undying love for"
-msgstr ""
+#: ../../mod/admin.php:547
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)."
 
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declared undying love for"
-msgstr ""
+#: ../../mod/admin.php:548
+msgid "Path for lock file"
+msgstr "Sti til fillås"
 
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patent"
-msgstr ""
+#: ../../mod/admin.php:549
+msgid "Temp path"
+msgstr "Temp-sti"
 
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patented"
-msgstr ""
+#: ../../mod/admin.php:550
+msgid "Base path to installation"
+msgstr "Sti til installasjonsbasen"
 
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroke beard"
-msgstr ""
+#: ../../mod/admin.php:567
+msgid "Update has been marked successful"
+msgstr "Oppdatering har blitt markert som vellykket"
 
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroked their beard at"
-msgstr ""
+#: ../../mod/admin.php:577
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
+
+#: ../../mod/admin.php:580
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Oppdatering %s ble iverksatt på en vellykket måte."
+
+#: ../../mod/admin.php:584
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket."
 
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoan the declining standards of modern secondary and tertiary education to"
-msgstr ""
+#: ../../mod/admin.php:587
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Oppdateringsfunksjon %s ble ikke funnet."
 
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoans the declining standards of modern secondary and tertiary education "
-"to"
-msgstr ""
+#: ../../mod/admin.php:602
+msgid "No failed updates."
+msgstr "Ingen mislykkede oppdateringer."
 
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hug"
-msgstr ""
+#: ../../mod/admin.php:606
+msgid "Failed Updates"
+msgstr "Mislykkede oppdateringer"
 
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hugged"
-msgstr ""
+#: ../../mod/admin.php:607
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status."
 
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kiss"
-msgstr ""
+#: ../../mod/admin.php:608
+msgid "Mark success (if update was manually applied)"
+msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"
 
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kissed"
-msgstr ""
+#: ../../mod/admin.php:609
+msgid "Attempt to execute this update step automatically"
+msgstr "Forsøk å utføre dette oppdateringspunktet automatisk"
 
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raise eyebrows at"
-msgstr ""
+#: ../../mod/admin.php:634
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s bruker blokkert/ikke blokkert"
+msgstr[1] "%s brukere blokkert/ikke blokkert"
 
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raised their eyebrows at"
-msgstr ""
+#: ../../mod/admin.php:641
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s bruker slettet"
+msgstr[1] "%s brukere slettet"
 
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insult"
-msgstr ""
+#: ../../mod/admin.php:680
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Brukeren '%s' er slettet"
 
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insulted"
-msgstr ""
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Brukeren '%s' er ikke blokkert"
 
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praise"
-msgstr ""
+#: ../../mod/admin.php:688
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Brukeren '%s' er blokkert"
 
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praised"
-msgstr ""
+#: ../../mod/admin.php:764
+msgid "select all"
+msgstr "velg alle"
 
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "be dubious of"
-msgstr ""
+#: ../../mod/admin.php:765
+msgid "User registrations waiting for confirm"
+msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "was dubious of"
-msgstr ""
+#: ../../mod/admin.php:766
+msgid "Request date"
+msgstr "Forespørselsdato"
 
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "eat"
-msgstr ""
+#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586
+#: ../../mod/settings.php:612 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Navn"
 
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "ate"
-msgstr ""
+#: ../../mod/admin.php:767
+msgid "No registrations."
+msgstr "Ingen registreringer."
 
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggle and fawn at"
-msgstr ""
+#: ../../mod/admin.php:768 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Godkjenn"
 
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggled and fawned at"
-msgstr ""
+#: ../../mod/admin.php:769
+msgid "Deny"
+msgstr "Nekt"
 
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubt"
-msgstr ""
+#: ../../mod/admin.php:771 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Blokker"
 
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubted"
-msgstr ""
+#: ../../mod/admin.php:772 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Ikke blokker"
 
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glare"
-msgstr ""
+#: ../../mod/admin.php:773
+msgid "Site admin"
+msgstr "Nettstedets administrator"
 
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glared at"
-msgstr ""
+#: ../../mod/admin.php:774
+msgid "Account expired"
+msgstr "Konto utgått"
 
-#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
-msgid "YourLS Settings"
-msgstr ""
+#: ../../mod/admin.php:777
+msgid "Register date"
+msgstr "Registreringsdato"
 
-#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
-msgid "URL: http://"
-msgstr ""
+#: ../../mod/admin.php:777
+msgid "Last login"
+msgstr "Siste innlogging"
 
-#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
-msgid "Username:"
-msgstr ""
+#: ../../mod/admin.php:777
+msgid "Last item"
+msgstr "Siste element"
 
-#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
-msgid "Password:"
-msgstr ""
+#: ../../mod/admin.php:777
+msgid "Account"
+msgstr "Konto"
 
-#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
-msgid "Use SSL "
-msgstr ""
+#: ../../mod/admin.php:779
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"
 
-#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
-msgid "yourls Settings saved."
-msgstr ""
+#: ../../mod/admin.php:780
+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 "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?"
 
-#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
-msgstr ""
+#: ../../mod/admin.php:821
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Tillegget %s er avskrudd."
 
-#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
-msgstr ""
+#: ../../mod/admin.php:825
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Tillegget %s er aktivert."
 
-#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
-msgstr ""
+#: ../../mod/admin.php:835 ../../mod/admin.php:1038
+msgid "Disable"
+msgstr "Skru av"
 
-#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
-msgid "LiveJournal username"
-msgstr ""
+#: ../../mod/admin.php:837 ../../mod/admin.php:1040
+msgid "Enable"
+msgstr "Aktiver"
 
-#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
-msgid "LiveJournal password"
-msgstr ""
+#: ../../mod/admin.php:860 ../../mod/admin.php:1068
+msgid "Toggle"
+msgstr "Veksle"
 
-#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
-msgstr ""
+#: ../../mod/admin.php:868 ../../mod/admin.php:1078
+msgid "Author: "
+msgstr "Forfatter:"
 
-#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
-msgstr ""
+#: ../../mod/admin.php:869 ../../mod/admin.php:1079
+msgid "Maintainer: "
+msgstr "Vedlikeholder:"
 
-#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
-msgid ""
-"This plugin looks in posts for the words/text you specify below, and "
-"collapses any content containing those keywords so it is not displayed at "
-"inappropriate times, such as sexual innuendo that may be improper in a work "
-"setting. It is polite and recommended to tag any content containing nudity "
-"with #NSFW.  This filter can also match any other word/text you specify, and"
-" can thereby be used as a general purpose content filter."
-msgstr ""
+#: ../../mod/admin.php:998
+msgid "No themes found."
+msgstr "Ingen temaer funnet."
 
-#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
-msgid "Enable Content filter"
-msgstr ""
+#: ../../mod/admin.php:1060
+msgid "Screenshot"
+msgstr "Skjermbilde"
 
-#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
-msgid "Comma separated list of keywords to hide"
-msgstr ""
+#: ../../mod/admin.php:1106
+msgid "[Experimental]"
+msgstr "[Eksperimentell]"
 
-#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
-msgid "Use /expression/ to provide regular expressions"
-msgstr ""
+#: ../../mod/admin.php:1107
+msgid "[Unsupported]"
+msgstr "[Ikke støttet]"
 
-#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
-msgid "NSFW Settings saved."
-msgstr ""
+#: ../../mod/admin.php:1134
+msgid "Log settings updated."
+msgstr "Logginnstillinger er oppdatert."
 
-#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
-#, php-format
-msgid "%s - Click to open/close"
-msgstr ""
+#: ../../mod/admin.php:1190
+msgid "Clear"
+msgstr "Tøm"
 
-#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
-#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
-msgid "Forums"
-msgstr ""
+#: ../../mod/admin.php:1196
+msgid "Enable Debugging"
+msgstr "Aktiver feilsøking"
 
-#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
-#: ../../addon.old/page/page.php:130
-#: ../../addon.old/forumlist/forumlist.php:94
-msgid "Forums:"
-msgstr ""
+#: ../../mod/admin.php:1197
+msgid "Log file"
+msgstr "Loggfil"
 
-#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
-msgid "Page settings updated."
-msgstr ""
+#: ../../mod/admin.php:1197
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas."
 
-#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
-msgid "Page Settings"
-msgstr ""
+#: ../../mod/admin.php:1198
+msgid "Log level"
+msgstr "Loggnivå"
 
-#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
-msgid "How many forums to display on sidebar without paging"
-msgstr ""
+#: ../../mod/admin.php:1247 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Oppdater nå"
 
-#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
-msgid "Randomise Page/Forum list"
-msgstr ""
+#: ../../mod/admin.php:1248
+msgid "Close"
+msgstr "Lukk"
 
-#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
-msgid "Show pages/forums on profile page"
-msgstr ""
+#: ../../mod/admin.php:1254
+msgid "FTP Host"
+msgstr "FTP-tjener"
 
-#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
-msgid "Planets Settings"
-msgstr ""
+#: ../../mod/admin.php:1255
+msgid "FTP Path"
+msgstr "FTP-sti"
 
-#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
-msgid "Enable Planets Plugin"
-msgstr ""
+#: ../../mod/admin.php:1256
+msgid "FTP User"
+msgstr "FTP-bruker"
 
-#: ../../addon/forumdirectory/forumdirectory.php:22
-msgid "Forum Directory"
-msgstr ""
+#: ../../mod/admin.php:1257
+msgid "FTP Password"
+msgstr "FTP-passord"
 
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34
-#: ../../addon/communityhome/twillingham/communityhome.php:28
-#: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:949
-#: ../../addon.old/communityhome/communityhome.php:28
-#: ../../addon.old/communityhome/communityhome.php:34
-#: ../../addon.old/communityhome/twillingham/communityhome.php:28
-#: ../../addon.old/communityhome/twillingham/communityhome.php:34
-msgid "Login"
-msgstr "Logg inn"
+#: ../../mod/item.php:108
+msgid "Unable to locate original post."
+msgstr "Mislyktes med å lokalisere opprinnelig melding."
 
-#: ../../addon/communityhome/communityhome.php:29
-#: ../../addon/communityhome/twillingham/communityhome.php:29
-#: ../../addon.old/communityhome/communityhome.php:29
-#: ../../addon.old/communityhome/twillingham/communityhome.php:29
-msgid "OpenID"
-msgstr ""
+#: ../../mod/item.php:310
+msgid "Empty post discarded."
+msgstr "Tom melding forkastet."
 
-#: ../../addon/communityhome/communityhome.php:38
-#: ../../addon/communityhome/twillingham/communityhome.php:38
-#: ../../addon.old/communityhome/communityhome.php:38
-#: ../../addon.old/communityhome/twillingham/communityhome.php:38
-msgid "Latest users"
-msgstr ""
+#: ../../mod/item.php:872
+msgid "System error. Post not saved."
+msgstr "Systemfeil. Meldingen ble ikke lagret."
 
-#: ../../addon/communityhome/communityhome.php:81
-#: ../../addon/communityhome/twillingham/communityhome.php:81
-#: ../../addon.old/communityhome/communityhome.php:81
-#: ../../addon.old/communityhome/twillingham/communityhome.php:81
-msgid "Most active users"
-msgstr ""
+#: ../../mod/item.php:897
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Denne meldingen ble sendt til deg av %s, et medlem av det sosiale nettverket Friendica."
 
-#: ../../addon/communityhome/communityhome.php:98
-#: ../../addon.old/communityhome/communityhome.php:98
-msgid "Latest photos"
-msgstr ""
+#: ../../mod/item.php:899
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kan besøke dem online på %s"
 
-#: ../../addon/communityhome/communityhome.php:133
-#: ../../addon.old/communityhome/communityhome.php:133
-msgid "Latest likes"
-msgstr ""
+#: ../../mod/item.php:900
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."
 
-#: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440
-#: ../../include/conversation.php:117 ../../include/conversation.php:245
-#: ../../addon.old/communityhome/communityhome.php:155
-msgid "event"
-msgstr "hendelse"
+#: ../../mod/item.php:904
+#, php-format
+msgid "%s posted an update."
+msgstr "%s postet en oppdatering."
 
-#: ../../addon/dav/common/wdcal_backend.inc.php:92
-#: ../../addon/dav/common/wdcal_backend.inc.php:166
-#: ../../addon/dav/common/wdcal_backend.inc.php:178
-#: ../../addon/dav/common/wdcal_backend.inc.php:206
-#: ../../addon/dav/common/wdcal_backend.inc.php:214
-#: ../../addon/dav/common/wdcal_backend.inc.php:229
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
-msgid "No access"
-msgstr ""
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Venner av %s"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:30
-#: ../../addon/dav/common/wdcal_edit.inc.php:738
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
-msgid "Could not open component for editing"
-msgstr ""
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Ingen venner å vise."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:140
-#: ../../addon/dav/friendica/layout.fnk.php:143
-#: ../../addon/dav/friendica/layout.fnk.php:422
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
-#: ../../addon.old/dav/friendica/layout.fnk.php:143
-#: ../../addon.old/dav/friendica/layout.fnk.php:422
-msgid "Go back to the calendar"
-msgstr ""
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "Fjern uttrykk"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:144
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
-msgid "Event data"
-msgstr ""
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:89
+msgid "No results."
+msgstr "Fant ikke noe."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:146
-#: ../../addon/dav/friendica/main.php:239
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
-#: ../../addon.old/dav/friendica/main.php:239
-msgid "Calendar"
-msgstr ""
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Tillat forbindelse til program"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:163
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
-msgid "Special color"
-msgstr ""
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:169
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
-msgid "Subject"
-msgstr ""
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Vennligst logg inn for å fortsette."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:173
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
-msgid "Starts"
-msgstr ""
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:178
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
-msgid "Ends"
-msgstr ""
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registeringsdetaljer for %s"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:185
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
-msgid "Description"
-msgstr ""
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:188
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
-msgid "Recurrence"
-msgstr ""
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:190
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
-msgid "Frequency"
-msgstr ""
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "Din registrering kan ikke behandles."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:194
-#: ../../include/contact_selectors.php:59
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
-msgid "Daily"
-msgstr "Daglig"
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Henvendelse om registrering ved %s"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:197
-#: ../../include/contact_selectors.php:60
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
-msgid "Weekly"
-msgstr "Ukentlig"
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "Din registrering venter på godkjenning fra eier av stedet."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:200
-#: ../../include/contact_selectors.php:61
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
-msgid "Monthly"
-msgstr "Månedlig"
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:203
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
-msgid "Yearly"
-msgstr ""
+#: ../../mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:214
-#: ../../include/datetime.php:288
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
-msgid "days"
-msgstr "dager"
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:215
-#: ../../include/datetime.php:287
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
-msgid "weeks"
-msgstr "uker"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Din OpenID (valgfritt):"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:216
-#: ../../include/datetime.php:286
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
-msgid "months"
-msgstr "måneder"
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Legg til profilen din i medlemskatalogen?"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:217
-#: ../../include/datetime.php:285
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
-msgid "years"
-msgstr "år"
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "Interval"
-msgstr ""
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "Din invitasjons-ID:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "All %select% %time%"
-msgstr ""
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:222
-#: ../../addon/dav/common/wdcal_edit.inc.php:260
-#: ../../addon/dav/common/wdcal_edit.inc.php:481
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
-msgid "Days"
-msgstr ""
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Din e-postadresse:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:231
-#: ../../addon/dav/common/wdcal_edit.inc.php:254
-#: ../../addon/dav/common/wdcal_edit.inc.php:270
-#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
-msgid "Sunday"
-msgstr "søndag"
+#: ../../mod/register.php:271
+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 "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@$sitename</strong>\"."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:235
-#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
-msgid "Monday"
-msgstr "mandag"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Velg et kallenavn:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
-msgid "Tuesday"
-msgstr "tirsdag"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Konto godkjent."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
-msgid "Wednesday"
-msgstr "onsdag"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registreringen til  %s er trukket tilbake"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
-msgid "Thursday"
-msgstr "torsdag"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Vennligst logg inn."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
-msgid "Friday"
-msgstr "fredag"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elementet er ikke tilgjengelig."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
-msgid "Saturday"
-msgstr "lørdag"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Elementet ble ikke funnet."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:297
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
-msgid "First day of week:"
-msgstr ""
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Slett min konto"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:350
-#: ../../addon/dav/common/wdcal_edit.inc.php:373
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
-msgid "Day of month"
-msgstr ""
+#: ../../mod/removeme.php:46
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:354
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
-msgid "#num#th of each month"
-msgstr ""
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Vennligst skriv inn ditt passord for å bekrefte:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:357
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
-msgid "#num#th-last of each month"
-msgstr ""
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "BBcode kildetekst:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:360
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
-msgid "#num#th #wkday# of each month"
-msgstr ""
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Diaspora kildetekst å konvertere til BBcode:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:363
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
-msgid "#num#th-last #wkday# of each month"
-msgstr ""
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Kilde-input:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:372
-#: ../../addon/dav/friendica/layout.fnk.php:255
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
-#: ../../addon.old/dav/friendica/layout.fnk.php:255
-msgid "Month"
-msgstr ""
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (rå HTML):"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:377
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
-msgid "#num#th of the given month"
-msgstr ""
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:380
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
-msgid "#num#th-last of the given month"
-msgstr ""
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:383
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
-msgid "#num#th #wkday# of the given month"
-msgstr ""
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:386
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
-msgid "#num#th-last #wkday# of the given month"
-msgstr ""
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:413
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
-msgid "Repeat until"
-msgstr ""
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:417
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
-msgid "Infinite"
-msgstr ""
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:420
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
-msgid "Until the following date"
-msgstr ""
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Diaspora-formatert kilde-input:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:423
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
-msgid "Number of times"
-msgstr ""
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb:"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:429
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
-msgid "Exceptions"
-msgstr ""
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Felles venner"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:432
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
-msgid "none"
-msgstr ""
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Ingen kontakter felles."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:449
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
-msgid "Notification"
-msgstr ""
+#: ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Du må være innlogget for å bruke tillegg."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:466
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
-msgid "Notify by"
-msgstr ""
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Programmer"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:469
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
-msgid "E-Mail"
-msgstr ""
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Ingen installerte programmer."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:470
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
-msgid "On Friendica / Display"
-msgstr ""
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "Fikk ikke tilgang til kontaktposten."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:474
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
-msgid "Time"
-msgstr ""
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Kunne ikke lokalisere valgt profil."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:478
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
-msgid "Hours"
-msgstr ""
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Kontakt oppdatert."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:479
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
-msgid "Minutes"
-msgstr ""
+#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
+msgid "Failed to update contact record."
+msgstr "Mislyktes med å oppdatere kontaktposten."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:480
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
-msgid "Seconds"
-msgstr ""
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Kontakten er blokkert"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:482
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
-msgid "Weeks"
-msgstr ""
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Kontakten er ikke blokkert lenger"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:485
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
-msgid "before the"
-msgstr ""
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Kontakten er ignorert"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:486
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
-msgid "start of the event"
-msgstr ""
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Kontakten er ikke ignorert lenger"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:487
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
-msgid "end of the event"
-msgstr ""
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Kontakt har blitt arkivert"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:492
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
-msgid "Add a notification"
-msgstr ""
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
+msgstr "Kontakt har blitt hentet tilbake fra arkivet"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:687
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
-msgid "The event #name# will start at #date"
-msgstr ""
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr "Ønsker du virkelig å slette denne kontakten?"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:696
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
-msgid "#name# is about to begin."
-msgstr ""
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Kontakten er fjernet."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:769
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
-msgid "Saved"
-msgstr ""
+#: ../../mod/contacts.php:301
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du er gjensidig venn med %s"
 
-#: ../../addon/dav/common/wdcal_configuration.php:148
-#: ../../addon.old/dav/common/wdcal_configuration.php:148
-msgid "U.S. Time Format (mm/dd/YYYY)"
-msgstr ""
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du deler med %s"
 
-#: ../../addon/dav/common/wdcal_configuration.php:243
-#: ../../addon.old/dav/common/wdcal_configuration.php:243
-msgid "German Time Format (dd.mm.YYYY)"
-msgstr ""
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s deler med deg"
 
-#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
-#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
-msgid "Private Events"
-msgstr ""
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
 
-#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
-#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
-msgid "Private Addressbooks"
-msgstr ""
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(Oppdatering vellykket)"
 
-#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-msgid "Friendica-Native events"
-msgstr ""
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(Oppdatering mislykket)"
 
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-msgid "Friendica-Contacts"
-msgstr ""
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Foreslå venner"
 
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-msgid "Your Friendica-Contacts"
-msgstr ""
+#: ../../mod/contacts.php:340
+#, php-format
+msgid "Network type: %s"
+msgstr "Nettverkstype: %s"
 
-#: ../../addon/dav/friendica/layout.fnk.php:99
-#: ../../addon/dav/friendica/layout.fnk.php:136
-#: ../../addon.old/dav/friendica/layout.fnk.php:99
-#: ../../addon.old/dav/friendica/layout.fnk.php:136
-msgid ""
-"Something went wrong when trying to import the file. Sorry. Maybe some "
-"events were imported anyway."
-msgstr ""
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Vis alle kontakter"
 
-#: ../../addon/dav/friendica/layout.fnk.php:131
-#: ../../addon.old/dav/friendica/layout.fnk.php:131
-msgid "Something went wrong when trying to import the file. Sorry."
-msgstr ""
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
+msgstr "Veksle blokkeringsstatus"
 
-#: ../../addon/dav/friendica/layout.fnk.php:134
-#: ../../addon.old/dav/friendica/layout.fnk.php:134
-msgid "The ICS-File has been imported."
-msgstr ""
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Fjern ignorering"
 
-#: ../../addon/dav/friendica/layout.fnk.php:138
-#: ../../addon.old/dav/friendica/layout.fnk.php:138
-msgid "No file was uploaded."
-msgstr ""
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../addon/dav/friendica/layout.fnk.php:147
-#: ../../addon.old/dav/friendica/layout.fnk.php:147
-msgid "Import a ICS-file"
-msgstr ""
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
+msgstr "Veksle ingnorertstatus"
 
-#: ../../addon/dav/friendica/layout.fnk.php:150
-#: ../../addon.old/dav/friendica/layout.fnk.php:150
-msgid "ICS-File"
-msgstr ""
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
+msgstr "Hent ut av arkivet"
 
-#: ../../addon/dav/friendica/layout.fnk.php:151
-#: ../../addon.old/dav/friendica/layout.fnk.php:151
-msgid "Overwrite all #num# existing events"
-msgstr ""
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Arkiver"
 
-#: ../../addon/dav/friendica/layout.fnk.php:228
-#: ../../addon.old/dav/friendica/layout.fnk.php:228
-msgid "New event"
-msgstr ""
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
+msgstr "Veksle arkivertstatus"
 
-#: ../../addon/dav/friendica/layout.fnk.php:232
-#: ../../addon.old/dav/friendica/layout.fnk.php:232
-msgid "Today"
-msgstr ""
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Reparer"
 
-#: ../../addon/dav/friendica/layout.fnk.php:241
-#: ../../addon.old/dav/friendica/layout.fnk.php:241
-msgid "Day"
-msgstr ""
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Avanserte kontaktinnstillinger"
 
-#: ../../addon/dav/friendica/layout.fnk.php:248
-#: ../../addon.old/dav/friendica/layout.fnk.php:248
-msgid "Week"
-msgstr ""
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "Kommunikasjon tapt med denne kontakten!"
 
-#: ../../addon/dav/friendica/layout.fnk.php:260
-#: ../../addon.old/dav/friendica/layout.fnk.php:260
-msgid "Reload"
-msgstr ""
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Endre kontakt"
 
-#: ../../addon/dav/friendica/layout.fnk.php:271
-#: ../../addon.old/dav/friendica/layout.fnk.php:271
-msgid "Date"
-msgstr ""
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Profilens synlighet"
 
-#: ../../addon/dav/friendica/layout.fnk.php:313
-#: ../../addon.old/dav/friendica/layout.fnk.php:313
-msgid "Error"
-msgstr ""
+#: ../../mod/contacts.php:388
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."
 
-#: ../../addon/dav/friendica/layout.fnk.php:380
-#: ../../addon.old/dav/friendica/layout.fnk.php:380
-msgid "The calendar has been updated."
-msgstr ""
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Kontaktinformasjon/-notater"
 
-#: ../../addon/dav/friendica/layout.fnk.php:393
-#: ../../addon.old/dav/friendica/layout.fnk.php:393
-msgid "The new calendar has been created."
-msgstr ""
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "Endre kontaktnotater"
 
-#: ../../addon/dav/friendica/layout.fnk.php:417
-#: ../../addon.old/dav/friendica/layout.fnk.php:417
-msgid "The calendar has been deleted."
-msgstr ""
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Blokker kontakt/fjern blokkering for kontakt"
 
-#: ../../addon/dav/friendica/layout.fnk.php:424
-#: ../../addon.old/dav/friendica/layout.fnk.php:424
-msgid "Calendar Settings"
-msgstr ""
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignorer kontakt"
 
-#: ../../addon/dav/friendica/layout.fnk.php:430
-#: ../../addon.old/dav/friendica/layout.fnk.php:430
-msgid "Date format"
-msgstr ""
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "Reparer URL-innstillinger"
 
-#: ../../addon/dav/friendica/layout.fnk.php:439
-#: ../../addon.old/dav/friendica/layout.fnk.php:439
-msgid "Time zone"
-msgstr ""
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Vis samtaler"
 
-#: ../../addon/dav/friendica/layout.fnk.php:445
-#: ../../addon.old/dav/friendica/layout.fnk.php:445
-msgid "Calendars"
-msgstr ""
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Slett kontakt"
 
-#: ../../addon/dav/friendica/layout.fnk.php:487
-#: ../../addon.old/dav/friendica/layout.fnk.php:487
-msgid "Create a new calendar"
-msgstr ""
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "Siste oppdatering:"
 
-#: ../../addon/dav/friendica/layout.fnk.php:496
-#: ../../addon.old/dav/friendica/layout.fnk.php:496
-msgid "Limitations"
-msgstr ""
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "Oppdater offentlige innlegg"
 
-#: ../../addon/dav/friendica/layout.fnk.php:500
-#: ../../addon/libravatar/libravatar.php:82
-#: ../../addon.old/dav/friendica/layout.fnk.php:500
-#: ../../addon.old/libravatar/libravatar.php:82
-msgid "Warning"
-msgstr ""
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Blokkert nå"
 
-#: ../../addon/dav/friendica/layout.fnk.php:504
-#: ../../addon.old/dav/friendica/layout.fnk.php:504
-msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
-msgstr ""
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Ignorert nå"
 
-#: ../../addon/dav/friendica/layout.fnk.php:511
-#: ../../addon.old/dav/friendica/layout.fnk.php:511
-msgid "Synchronizing this calendar with the iPhone"
-msgstr ""
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "For øyeblikket arkivert"
 
-#: ../../addon/dav/friendica/layout.fnk.php:522
-#: ../../addon.old/dav/friendica/layout.fnk.php:522
-msgid "Synchronizing your Friendica-Contacts with the iPhone"
-msgstr ""
+#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Skjul denne kontakten for andre"
 
-#: ../../addon/dav/friendica/main.php:202
-#: ../../addon.old/dav/friendica/main.php:202
+#: ../../mod/contacts.php:419
 msgid ""
-"The current version of this plugin has not been set up correctly. Please "
-"contact the system administrator of your installation of friendica to fix "
-"this."
-msgstr ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Svar/liker til dine offentlige innlegg <strong>kan</strong> fortsatt være synlige"
 
-#: ../../addon/dav/friendica/main.php:242
-#: ../../addon.old/dav/friendica/main.php:242
-msgid "Extended calendar with CalDAV-support"
-msgstr ""
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Forslag"
 
-#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
-#: ../../include/enotify.php:28 ../../include/notifier.php:778
-#: ../../addon.old/dav/friendica/main.php:279
-#: ../../addon.old/dav/friendica/main.php:280
-msgid "noreply"
-msgstr "ikke svar"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Foreslå mulige venner"
 
-#: ../../addon/dav/friendica/main.php:282
-#: ../../addon.old/dav/friendica/main.php:282
-msgid "Notification: "
-msgstr ""
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle kontakter"
 
-#: ../../addon/dav/friendica/main.php:309
-#: ../../addon.old/dav/friendica/main.php:309
-msgid "The database tables have been installed."
-msgstr ""
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Vis alle kontakter"
 
-#: ../../addon/dav/friendica/main.php:310
-#: ../../addon.old/dav/friendica/main.php:310
-msgid "An error occurred during the installation."
-msgstr ""
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Ikke blokkert"
 
-#: ../../addon/dav/friendica/main.php:316
-#: ../../addon.old/dav/friendica/main.php:316
-msgid "The database tables have been updated."
-msgstr ""
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Bare vis ikke blokkerte kontakter"
 
-#: ../../addon/dav/friendica/main.php:317
-#: ../../addon.old/dav/friendica/main.php:317
-msgid "An error occurred during the update."
-msgstr ""
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Blokkert"
 
-#: ../../addon/dav/friendica/main.php:333
-#: ../../addon.old/dav/friendica/main.php:333
-msgid "No system-wide settings yet."
-msgstr ""
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Bare vis blokkerte kontakter"
 
-#: ../../addon/dav/friendica/main.php:336
-#: ../../addon.old/dav/friendica/main.php:336
-msgid "Database status"
-msgstr ""
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Ignorert"
 
-#: ../../addon/dav/friendica/main.php:339
-#: ../../addon.old/dav/friendica/main.php:339
-msgid "Installed"
-msgstr ""
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Bare vis ignorerte kontakter"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade needed"
-msgstr ""
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "Arkivert"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid ""
-"Please back up all calendar data (the tables beginning with dav_*) before "
-"proceeding. While all calendar events <i>should</i> be converted to the new "
-"database structure, it's always safe to have a backup. Below, you can have a"
-" look at the database-queries that will be made when pressing the "
-"'update'-button."
-msgstr ""
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Bare vis arkiverte kontakter"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade"
-msgstr ""
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Skjult"
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Not installed"
-msgstr ""
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Bare vis skjulte kontakter"
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Install"
-msgstr ""
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Gjensidig vennskap"
 
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid "Unknown"
-msgstr ""
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "er en tilhenger av deg"
 
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid ""
-"Something really went wrong. I cannot recover from this state automatically,"
-" sorry. Please go to the database backend, back up the data, and delete all "
-"tables beginning with 'dav_' manually. Afterwards, this installation routine"
-" should be able to reinitialize the tables automatically."
-msgstr ""
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "du er en tilhenger av"
 
-#: ../../addon/dav/friendica/main.php:355
-#: ../../addon.old/dav/friendica/main.php:355
-msgid "Troubleshooting"
-msgstr ""
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Søk i dine kontakter"
 
-#: ../../addon/dav/friendica/main.php:356
-#: ../../addon.old/dav/friendica/main.php:356
-msgid "Manual creation of the database tables:"
-msgstr ""
+#: ../../mod/contacts.php:612 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Fant:"
 
-#: ../../addon/dav/friendica/main.php:357
-#: ../../addon.old/dav/friendica/main.php:357
-msgid "Show SQL-statements"
-msgstr ""
+#: ../../mod/settings.php:23 ../../mod/photos.php:79
+msgid "everybody"
+msgstr "alle"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
-msgid "Private Calendar"
-msgstr ""
+#: ../../mod/settings.php:35
+msgid "Additional features"
+msgstr "Tilleggsfunksjoner"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
-msgid "Friendica Events: Mine"
-msgstr ""
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Visningsinnstillinger"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
-msgid "Friendica Events: Contacts"
-msgstr ""
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Koblingsinnstillinger"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
-msgid "Private Addresses"
-msgstr ""
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Tilleggsinnstillinger"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
-msgid "Friendica Contacts"
-msgstr ""
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "Tilkoblede programmer"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
-#, php-format
-msgid ""
-"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud). See <a "
-"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
-" WebFinger</a>"
-msgstr "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Eksporter personlige data"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:85
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
-msgstr ""
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Fjern konto"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
-msgstr ""
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "Mangler noen viktige data!"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
-msgstr ""
+#: ../../mod/settings.php:121 ../../mod/settings.php:610
+msgid "Update"
+msgstr "Oppdater"
 
-#: ../../addon/membersince/membersince.php:18
-#: ../../addon.old/membersince/membersince.php:18
-msgid "Member since:"
-msgstr ""
+#: ../../mod/settings.php:227
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."
 
-#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Tredimensjonal tre-på-rad"
+#: ../../mod/settings.php:232
+msgid "Email settings updated."
+msgstr "E-postinnstillinger er oppdatert."
+
+#: ../../mod/settings.php:247
+msgid "Features updated"
+msgstr "Funksjoner oppdatert"
 
-#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "3D tre-på-rad"
+#: ../../mod/settings.php:312
+msgid "Passwords do not match. Password unchanged."
+msgstr "Passordene er ikke like. Passord uendret."
 
-#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
-msgid "New game"
-msgstr "Nytt spill"
+#: ../../mod/settings.php:317
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Tomme passord er ikke lov. Passord uendret."
 
-#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "Nytt spill med handikapp"
+#: ../../mod/settings.php:325
+msgid "Wrong password."
+msgstr "Feil passord."
 
-#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig."
+#: ../../mod/settings.php:336
+msgid "Password changed."
+msgstr "Passord endret."
 
-#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
-msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige nivåer."
+#: ../../mod/settings.php:338
+msgid "Password update failed. Please try again."
+msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
 
-#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
-msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel."
+#: ../../mod/settings.php:403
+msgid " Please use a shorter name."
+msgstr "Vennligst bruk et kortere navn."
 
-#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "Du starter først..."
+#: ../../mod/settings.php:405
+msgid " Name too short."
+msgstr "Navnet er for kort."
 
-#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "Jeg starter først denne gangen..."
+#: ../../mod/settings.php:414
+msgid "Wrong Password"
+msgstr "Feil passord"
 
-#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
-msgid "You won!"
-msgstr "Du vant!"
+#: ../../mod/settings.php:419
+msgid " Not valid email."
+msgstr "Ugyldig e-postadresse."
 
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "\"Katte\"-spill!"
+#: ../../mod/settings.php:422
+msgid " Cannot change to that email."
+msgstr "Kan ikke endre til den e-postadressen."
 
-#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
-msgid "I won!"
-msgstr "Jeg vant!"
+#: ../../mod/settings.php:476
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe."
 
-#: ../../addon/randplace/randplace.php:169
-#: ../../addon.old/randplace/randplace.php:169
-msgid "Randplace Settings"
-msgstr "Tilfeldig plassering"
+#: ../../mod/settings.php:480
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Privat forum har ingen personverntillatelser og ingen standard personverngruppe."
 
-#: ../../addon/randplace/randplace.php:171
-#: ../../addon.old/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
-msgstr "Aktiver Tilfeldig plassering-tillegget"
+#: ../../mod/settings.php:510
+msgid "Settings updated."
+msgstr "Innstillinger oppdatert."
 
-#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
-msgstr ""
+#: ../../mod/settings.php:583 ../../mod/settings.php:609
+#: ../../mod/settings.php:645
+msgid "Add application"
+msgstr "Legg til program"
 
-#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
-msgstr ""
+#: ../../mod/settings.php:587 ../../mod/settings.php:613
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
-msgstr ""
+#: ../../mod/settings.php:588 ../../mod/settings.php:614
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
-msgid "dreamwidth username"
-msgstr ""
+#: ../../mod/settings.php:589 ../../mod/settings.php:615
+msgid "Redirect"
+msgstr "Omdiriger"
 
-#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
-msgid "dreamwidth password"
-msgstr ""
+#: ../../mod/settings.php:590 ../../mod/settings.php:616
+msgid "Icon url"
+msgstr "Ikon URL"
 
-#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
-msgstr ""
+#: ../../mod/settings.php:601
+msgid "You can't edit this application."
+msgstr "Du kan ikke redigere dette programmet."
 
-#: ../../addon/remote_permissions/remote_permissions.php:44
-msgid "Remote Permissions Settings"
-msgstr ""
+#: ../../mod/settings.php:644
+msgid "Connected Apps"
+msgstr "Tilkoblede programmer"
 
-#: ../../addon/remote_permissions/remote_permissions.php:45
-msgid ""
-"Allow recipients of your private posts to see the other recipients of the "
-"posts"
-msgstr ""
+#: ../../mod/settings.php:646 ../../mod/editpost.php:109
+#: ../../mod/content.php:751 ../../object/Item.php:117
+msgid "Edit"
+msgstr "Endre"
 
-#: ../../addon/remote_permissions/remote_permissions.php:57
-msgid "Remote Permissions settings updated."
-msgstr ""
+#: ../../mod/settings.php:648
+msgid "Client key starts with"
+msgstr "Klientnøkkelen starter med"
 
-#: ../../addon/remote_permissions/remote_permissions.php:177
-msgid "Visible to"
-msgstr ""
+#: ../../mod/settings.php:649
+msgid "No name"
+msgstr "Ingen navn"
 
-#: ../../addon/remote_permissions/remote_permissions.php:177
-msgid "may only be a partial list"
-msgstr ""
+#: ../../mod/settings.php:650
+msgid "Remove authorization"
+msgstr "Fjern tillatelse"
 
-#: ../../addon/remote_permissions/remote_permissions.php:196
-msgid "Global"
-msgstr ""
+#: ../../mod/settings.php:662
+msgid "No Plugin settings configured"
+msgstr "Ingen tilleggsinnstillinger konfigurert"
 
-#: ../../addon/remote_permissions/remote_permissions.php:196
-msgid "The posts of every user on this server show the post recipients"
-msgstr ""
+#: ../../mod/settings.php:670
+msgid "Plugin Settings"
+msgstr "Tilleggsinnstillinger"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "Individual"
-msgstr ""
+#: ../../mod/settings.php:684
+msgid "Off"
+msgstr "Av"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "Each user chooses whether his/her posts show the post recipients"
-msgstr ""
+#: ../../mod/settings.php:684
+msgid "On"
+msgstr ""
 
-#: ../../addon/startpage/startpage.php:83
-#: ../../addon.old/startpage/startpage.php:83
-msgid "Startpage Settings"
-msgstr ""
+#: ../../mod/settings.php:692
+msgid "Additional Features"
+msgstr "Tilleggsfunksjoner"
 
-#: ../../addon/startpage/startpage.php:85
-#: ../../addon.old/startpage/startpage.php:85
-msgid "Home page to load after login  - leave blank for profile wall"
-msgstr ""
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Innebygget støtte for %s forbindelse er %s"
 
-#: ../../addon/startpage/startpage.php:88
-#: ../../addon.old/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
-msgstr ""
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+msgid "enabled"
+msgstr "aktivert"
 
-#: ../../addon/geonames/geonames.php:143
-#: ../../addon.old/geonames/geonames.php:143
-msgid "Geonames settings updated."
-msgstr ""
+#: ../../mod/settings.php:705 ../../mod/settings.php:706
+msgid "disabled"
+msgstr "avskrudd"
 
-#: ../../addon/geonames/geonames.php:179
-#: ../../addon.old/geonames/geonames.php:179
-msgid "Geonames Settings"
-msgstr ""
+#: ../../mod/settings.php:706
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../addon/geonames/geonames.php:181
-#: ../../addon.old/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
-msgstr ""
+#: ../../mod/settings.php:738
+msgid "Email access is disabled on this site."
+msgstr "E-posttilgang er avskrudd på dette stedet."
 
-#: ../../addon/public_server/public_server.php:126
-#: ../../addon/testdrive/testdrive.php:94
-#: ../../addon.old/public_server/public_server.php:126
-#: ../../addon.old/testdrive/testdrive.php:94
-#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr ""
+#: ../../mod/settings.php:745
+msgid "Connector Settings"
+msgstr "Koblingsinnstillinger"
 
-#: ../../addon/public_server/public_server.php:127
-#: ../../addon.old/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
-msgstr ""
+#: ../../mod/settings.php:750
+msgid "Email/Mailbox Setup"
+msgstr "E-post-/postboksinnstillinger"
 
-#: ../../addon/public_server/public_server.php:128
-#: ../../addon.old/public_server/public_server.php:128
-#, php-format
+#: ../../mod/settings.php:751
 msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
-msgstr ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."
 
-#: ../../addon/js_upload/js_upload.php:43
-#: ../../addon.old/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "Last opp en fil"
-
-#: ../../addon/js_upload/js_upload.php:44
-#: ../../addon.old/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "Slipp filer her for å laste de opp"
-
-#: ../../addon/js_upload/js_upload.php:46
-#: ../../addon.old/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "Mislyktes"
-
-#: ../../addon/js_upload/js_upload.php:303
-#: ../../addon.old/js_upload/js_upload.php:297
-msgid "No files were uploaded."
-msgstr "Ingen filer ble lastet opp."
-
-#: ../../addon/js_upload/js_upload.php:309
-#: ../../addon.old/js_upload/js_upload.php:303
-msgid "Uploaded file is empty"
-msgstr "Opplastet fil er tom"
-
-#: ../../addon/js_upload/js_upload.php:332
-#: ../../addon.old/js_upload/js_upload.php:326
-msgid "File has an invalid extension, it should be one of "
-msgstr "Filen har en ugyldig endelse, den må være en av "
-
-#: ../../addon/js_upload/js_upload.php:343
-#: ../../addon.old/js_upload/js_upload.php:337
-msgid "Upload was cancelled, or server error encountered"
-msgstr "Opplasting avbrutt, eller det oppstod en feil på tjeneren"
-
-#: ../../addon/forumlist/forumlist.php:63
-#: ../../addon.old/forumlist/forumlist.php:63
-msgid "show/hide"
-msgstr ""
+#: ../../mod/settings.php:752
+msgid "Last successful email check:"
+msgstr "Siste vellykkede e-postsjekk:"
 
-#: ../../addon/forumlist/forumlist.php:77
-#: ../../addon.old/forumlist/forumlist.php:77
-msgid "No forum subscriptions"
-msgstr ""
+#: ../../mod/settings.php:754
+msgid "IMAP server name:"
+msgstr "IMAP-tjeners navn:"
 
-#: ../../addon/forumlist/forumlist.php:131
-#: ../../addon.old/forumlist/forumlist.php:131
-msgid "Forumlist settings updated."
-msgstr ""
+#: ../../mod/settings.php:755
+msgid "IMAP port:"
+msgstr "IMAP port:"
 
-#: ../../addon/forumlist/forumlist.php:159
-#: ../../addon.old/forumlist/forumlist.php:159
-msgid "Forumlist Settings"
-msgstr ""
+#: ../../mod/settings.php:756
+msgid "Security:"
+msgstr "Sikkerhet:"
 
-#: ../../addon/forumlist/forumlist.php:161
-#: ../../addon.old/forumlist/forumlist.php:161
-msgid "Randomise forum list"
-msgstr ""
+#: ../../mod/settings.php:756 ../../mod/settings.php:761
+msgid "None"
+msgstr "Ingen"
 
-#: ../../addon/forumlist/forumlist.php:164
-#: ../../addon.old/forumlist/forumlist.php:164
-msgid "Show forums on profile page"
-msgstr ""
+#: ../../mod/settings.php:757
+msgid "Email login name:"
+msgstr "E-post brukernavn:"
 
-#: ../../addon/forumlist/forumlist.php:167
-#: ../../addon.old/forumlist/forumlist.php:167
-msgid "Show forums on network page"
-msgstr ""
+#: ../../mod/settings.php:758
+msgid "Email password:"
+msgstr "E-post passord:"
 
-#: ../../addon/impressum/impressum.php:37
-#: ../../addon.old/impressum/impressum.php:37
-msgid "Impressum"
-msgstr "Informasjon om nettstedet"
-
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:52
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:52
-#: ../../addon.old/impressum/impressum.php:84
-msgid "Site Owner"
-msgstr "Nettstedets eier"
-
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:88
-msgid "Email Address"
-msgstr "E-postadresse"
-
-#: ../../addon/impressum/impressum.php:55
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:55
-#: ../../addon.old/impressum/impressum.php:86
-msgid "Postal Address"
-msgstr "Postadresse"
-
-#: ../../addon/impressum/impressum.php:61
-#: ../../addon.old/impressum/impressum.php:61
-msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr "Tillegget for \"Informasjon om nettstedet\" må konfigureres!<br />Vennligst fyll ut minst <tt>eier</tt> variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget."
-
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:84
-msgid "The page operators name."
-msgstr ""
+#: ../../mod/settings.php:759
+msgid "Reply-to address:"
+msgstr "Svar-til-adresse:"
 
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Site Owners Profile"
-msgstr "Nettstedseiers profil"
+#: ../../mod/settings.php:760
+msgid "Send public posts to all email contacts:"
+msgstr "Send offentlige meldinger til alle e-postkontakter:"
 
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Profile address of the operator."
-msgstr ""
+#: ../../mod/settings.php:761
+msgid "Action after import:"
+msgstr "Handling etter import:"
 
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:86
-msgid "How to contact the operator via snail mail. You can use BBCode here."
-msgstr ""
+#: ../../mod/settings.php:761
+msgid "Mark as seen"
+msgstr "Marker som sett"
 
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid "Notes"
-msgstr "Notater"
+#: ../../mod/settings.php:761
+msgid "Move to folder"
+msgstr "Flytt til mappe"
 
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid ""
-"Additional notes that are displayed beneath the contact information. You can"
-" use BBCode here."
-msgstr ""
+#: ../../mod/settings.php:762
+msgid "Move to folder:"
+msgstr "Flytt til mappe:"
 
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:88
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
-msgstr ""
+#: ../../mod/settings.php:835
+msgid "Display Settings"
+msgstr "Visningsinnstillinger"
 
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Footer note"
-msgstr ""
+#: ../../mod/settings.php:841 ../../mod/settings.php:853
+msgid "Display Theme:"
+msgstr "Vis tema:"
 
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Text for the footer. You can use BBCode here."
-msgstr ""
+#: ../../mod/settings.php:842
+msgid "Mobile Theme:"
+msgstr "Mobilt tema:"
 
-#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr ""
+#: ../../mod/settings.php:843
+msgid "Update browser every xx seconds"
+msgstr "Oppdater nettleser hvert xx sekund"
 
-#: ../../addon/notimeline/notimeline.php:32
-#: ../../addon.old/notimeline/notimeline.php:32
-msgid "No Timeline settings updated."
-msgstr ""
+#: ../../mod/settings.php:843
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 sekunder, ikke noe maksimum"
 
-#: ../../addon/notimeline/notimeline.php:56
-#: ../../addon.old/notimeline/notimeline.php:56
-msgid "No Timeline Settings"
-msgstr ""
+#: ../../mod/settings.php:844
+msgid "Number of items to display per page:"
+msgstr "Antall elementer som vises per side:"
 
-#: ../../addon/notimeline/notimeline.php:58
-#: ../../addon.old/notimeline/notimeline.php:58
-msgid "Disable Archive selector on profile wall"
-msgstr ""
+#: ../../mod/settings.php:844 ../../mod/settings.php:845
+msgid "Maximum of 100 items"
+msgstr "Maksimum 100 elementer"
 
-#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
-msgstr ""
+#: ../../mod/settings.php:845
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Antall elementer å vise per side ved visning på mobil enhet:"
 
-#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
-msgstr ""
+#: ../../mod/settings.php:846
+msgid "Don't show emoticons"
+msgstr "Ikke vis uttrykksikoner"
 
-#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
-msgstr ""
+#: ../../mod/settings.php:922
+msgid "Normal Account Page"
+msgstr "Vanlig konto-side"
 
-#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
-#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr ""
+#: ../../mod/settings.php:923
+msgid "This account is a normal personal profile"
+msgstr "Denne kontoen er en vanlig personlig profil"
 
-#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr ""
+#: ../../mod/settings.php:926
+msgid "Soapbox Page"
+msgstr "Talerstol-side"
 
-#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
-msgid "Block Author"
-msgstr ""
+#: ../../mod/settings.php:927
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"
 
-#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
-msgid "blockem settings updated"
-msgstr ""
+#: ../../mod/settings.php:930
+msgid "Community Forum/Celebrity Account"
+msgstr "Fellesskapsforum/Kjendis-side"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ""
+#: ../../mod/settings.php:931
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ""
+#: ../../mod/settings.php:934
+msgid "Automatic Friend Page"
+msgstr "Automatisk venn-side"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid "lol"
-msgstr ""
+#: ../../mod/settings.php:935
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"
 
-#: ../../addon/qcomment/qcomment.php:54
-#: ../../addon.old/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr ""
+#: ../../mod/settings.php:938
+msgid "Private Forum [Experimental]"
+msgstr "Privat forum [Eksperimentell]"
 
-#: ../../addon/qcomment/qcomment.php:56
-#: ../../addon.old/qcomment/qcomment.php:56
-msgid ""
-"Quick comments are found near comment boxes, sometimes hidden. Click them to"
-" provide simple replies."
-msgstr ""
+#: ../../mod/settings.php:939
+msgid "Private forum - approved members only"
+msgstr "Privat forum - kun godkjente medlemmer"
 
-#: ../../addon/qcomment/qcomment.php:57
-#: ../../addon.old/qcomment/qcomment.php:57
-msgid "Enter quick comments, one per line"
-msgstr ""
+#: ../../mod/settings.php:951
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../addon/qcomment/qcomment.php:75
-#: ../../addon.old/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
-msgstr ""
+#: ../../mod/settings.php:951
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."
 
-#: ../../addon/openstreetmap/openstreetmap.php:71
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid "Tile Server URL"
-msgstr ""
+#: ../../mod/settings.php:961
+msgid "Publish your default profile in your local site directory?"
+msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"
 
-#: ../../addon/openstreetmap/openstreetmap.php:71
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr ""
+#: ../../mod/settings.php:967
+msgid "Publish your default profile in the global social directory?"
+msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?"
 
-#: ../../addon/openstreetmap/openstreetmap.php:72
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "Default zoom"
-msgstr ""
+#: ../../mod/settings.php:975
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"
 
-#: ../../addon/openstreetmap/openstreetmap.php:72
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "The default zoom level. (1:world, 18:highest)"
-msgstr ""
+#: ../../mod/settings.php:979
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Skjul dine profildetaljer fra ukjente besøkende?"
 
-#: ../../addon/group_text/group_text.php:46
-#: ../../addon/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon.old/editplain/editplain.php:46
-msgid "Editplain settings updated."
-msgstr ""
+#: ../../mod/settings.php:984
+msgid "Allow friends to post to your profile page?"
+msgstr "Tillat venner å poste innlegg på din profilside?"
 
-#: ../../addon/group_text/group_text.php:76
-#: ../../addon.old/group_text/group_text.php:76
-msgid "Group Text"
-msgstr ""
+#: ../../mod/settings.php:990
+msgid "Allow friends to tag your posts?"
+msgstr "Tillat venner å merke dine innlegg?"
 
-#: ../../addon/group_text/group_text.php:78
-#: ../../addon.old/group_text/group_text.php:78
-msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
-msgstr ""
+#: ../../mod/settings.php:996
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"
 
-#: ../../addon/libravatar/libravatar.php:14
-#: ../../addon.old/libravatar/libravatar.php:14
-msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
-msgstr ""
+#: ../../mod/settings.php:1002
+msgid "Permit unknown people to send you private mail?"
+msgstr "Tillat ukjente personer å sende deg privat post?"
 
-#: ../../addon/libravatar/libravatar.php:73
-#: ../../addon/gravatar/gravatar.php:71
-#: ../../addon.old/libravatar/libravatar.php:73
-#: ../../addon.old/gravatar/gravatar.php:71
-msgid "generic profile image"
-msgstr ""
+#: ../../mod/settings.php:1010
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profilen er <strong>ikke publisert</strong>."
 
-#: ../../addon/libravatar/libravatar.php:74
-#: ../../addon/gravatar/gravatar.php:72
-#: ../../addon.old/libravatar/libravatar.php:74
-#: ../../addon.old/gravatar/gravatar.php:72
-msgid "random geometric pattern"
-msgstr ""
+#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "eller"
 
-#: ../../addon/libravatar/libravatar.php:75
-#: ../../addon/gravatar/gravatar.php:73
-#: ../../addon.old/libravatar/libravatar.php:75
-#: ../../addon.old/gravatar/gravatar.php:73
-msgid "monster face"
-msgstr ""
+#: ../../mod/settings.php:1018
+msgid "Your Identity Address is"
+msgstr "Din identitetsadresse er"
 
-#: ../../addon/libravatar/libravatar.php:76
-#: ../../addon/gravatar/gravatar.php:74
-#: ../../addon.old/libravatar/libravatar.php:76
-#: ../../addon.old/gravatar/gravatar.php:74
-msgid "computer generated face"
-msgstr ""
+#: ../../mod/settings.php:1029
+msgid "Automatically expire posts after this many days:"
+msgstr "Innlegg utgår automatisk etter så mange dager:"
 
-#: ../../addon/libravatar/libravatar.php:77
-#: ../../addon/gravatar/gravatar.php:75
-#: ../../addon.old/libravatar/libravatar.php:77
-#: ../../addon.old/gravatar/gravatar.php:75
-msgid "retro arcade style face"
-msgstr ""
+#: ../../mod/settings.php:1029
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."
 
-#: ../../addon/libravatar/libravatar.php:83
-#: ../../addon.old/libravatar/libravatar.php:83
-#, php-format
-msgid "Your PHP version %s is lower than the required PHP >= 5.3."
-msgstr ""
+#: ../../mod/settings.php:1030
+msgid "Advanced expiration settings"
+msgstr "Avanserte innstillinger for å utgå"
 
-#: ../../addon/libravatar/libravatar.php:84
-#: ../../addon.old/libravatar/libravatar.php:84
-msgid "This addon is not functional on your server."
-msgstr ""
+#: ../../mod/settings.php:1031
+msgid "Advanced Expiration"
+msgstr "Avansert utgå"
 
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid "Information"
-msgstr ""
+#: ../../mod/settings.php:1032
+msgid "Expire posts:"
+msgstr "Innlegg utgår:"
 
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon.old/libravatar/libravatar.php:93
-msgid ""
-"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
-"Libravatar addon will fall back to Gravatar if nothing was found at "
-"Libravatar."
-msgstr ""
+#: ../../mod/settings.php:1033
+msgid "Expire personal notes:"
+msgstr "Personlige notater utgår:"
 
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Default avatar image"
-msgstr ""
+#: ../../mod/settings.php:1034
+msgid "Expire starred posts:"
+msgstr "Innlegg med stjerne utgår:"
 
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon.old/libravatar/libravatar.php:100
-msgid "Select default avatar image if none was found. See README"
-msgstr ""
+#: ../../mod/settings.php:1035
+msgid "Expire photos:"
+msgstr "Bilder utgår:"
 
-#: ../../addon/libravatar/libravatar.php:112
-#: ../../addon.old/libravatar/libravatar.php:112
-msgid "Libravatar settings updated."
-msgstr ""
+#: ../../mod/settings.php:1036
+msgid "Only expire posts by others:"
+msgstr "Kun innlegg fra andre utgår:"
 
-#: ../../addon/libertree/libertree.php:36
-#: ../../addon.old/libertree/libertree.php:36
-msgid "Post to libertree"
-msgstr ""
+#: ../../mod/settings.php:1062
+msgid "Account Settings"
+msgstr "Kontoinnstillinger"
 
-#: ../../addon/libertree/libertree.php:67
-#: ../../addon.old/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr ""
+#: ../../mod/settings.php:1070
+msgid "Password Settings"
+msgstr "Passordinnstillinger"
 
-#: ../../addon/libertree/libertree.php:69
-#: ../../addon.old/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr ""
+#: ../../mod/settings.php:1071
+msgid "New Password:"
+msgstr "Nytt passord:"
 
-#: ../../addon/libertree/libertree.php:74
-#: ../../addon.old/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr ""
+#: ../../mod/settings.php:1072
+msgid "Confirm:"
+msgstr "Bekreft:"
 
-#: ../../addon/libertree/libertree.php:79
-#: ../../addon.old/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr ""
+#: ../../mod/settings.php:1072
+msgid "Leave password fields blank unless changing"
+msgstr "La passordfeltene stå tomme hvis du ikke skal bytte"
 
-#: ../../addon/libertree/libertree.php:84
-#: ../../addon.old/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr ""
+#: ../../mod/settings.php:1073
+msgid "Current Password:"
+msgstr "Gjeldende passord:"
 
-#: ../../addon/altpager/altpager.php:46
-#: ../../addon.old/altpager/altpager.php:46
-msgid "Altpager settings updated."
-msgstr ""
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+msgid "Your current password to confirm the changes"
+msgstr "Ditt gjeldende passord for å bekrefte endringene"
 
-#: ../../addon/altpager/altpager.php:79
-#: ../../addon.old/altpager/altpager.php:79
-msgid "Alternate Pagination Setting"
-msgstr ""
+#: ../../mod/settings.php:1074
+msgid "Password:"
+msgstr "Passord:"
 
-#: ../../addon/altpager/altpager.php:81
-#: ../../addon.old/altpager/altpager.php:81
-msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
-msgstr ""
+#: ../../mod/settings.php:1078
+msgid "Basic Settings"
+msgstr "Grunninnstillinger"
 
-#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
-msgid ""
-"The MathJax addon renders mathematical formulae written using the LaTeX "
-"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
-"your wall,network tab and private mail."
-msgstr ""
+#: ../../mod/settings.php:1080
+msgid "Email Address:"
+msgstr "E-postadresse:"
 
-#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr ""
+#: ../../mod/settings.php:1081
+msgid "Your Timezone:"
+msgstr "Din tidssone:"
 
-#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
-msgid "MathJax Base URL"
-msgstr ""
+#: ../../mod/settings.php:1082
+msgid "Default Post Location:"
+msgstr "Standard oppholdssted når du poster:"
 
-#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
-msgid ""
-"The URL for the javascript file that should be included to use MathJax. Can "
-"be either the MathJax CDN or another installation of MathJax."
-msgstr ""
+#: ../../mod/settings.php:1083
+msgid "Use Browser Location:"
+msgstr "Bruk nettleserens oppholdssted:"
 
-#: ../../addon/editplain/editplain.php:76
-#: ../../addon.old/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr ""
+#: ../../mod/settings.php:1086
+msgid "Security and Privacy Settings"
+msgstr "Sikkerhet og privatlivsinnstillinger"
 
-#: ../../addon/editplain/editplain.php:78
-#: ../../addon.old/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr ""
+#: ../../mod/settings.php:1088
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maksimum venneforespørsler/dag:"
 
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr ""
+#: ../../mod/settings.php:1088 ../../mod/settings.php:1118
+msgid "(to prevent spam abuse)"
+msgstr "(for å forhindre søppelpost)"
 
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr ""
+#: ../../mod/settings.php:1089
+msgid "Default Post Permissions"
+msgstr "Standardtillatelser ved posting"
 
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Rating of images"
-msgstr ""
+#: ../../mod/settings.php:1090
+msgid "(click to open/close)"
+msgstr "(klikk for å åpne/lukke)"
 
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Select the appropriate avatar rating for your site. See README"
-msgstr ""
+#: ../../mod/settings.php:1099 ../../mod/photos.php:1140
+#: ../../mod/photos.php:1506
+msgid "Show to Groups"
+msgstr "Vis til grupper"
 
-#: ../../addon/gravatar/gravatar.php:111
-#: ../../addon.old/gravatar/gravatar.php:111
-msgid "Gravatar settings updated."
-msgstr ""
+#: ../../mod/settings.php:1100 ../../mod/photos.php:1141
+#: ../../mod/photos.php:1507
+msgid "Show to Contacts"
+msgstr "Vis til kontakter"
 
-#: ../../addon/testdrive/testdrive.php:95
-#: ../../addon.old/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
-msgstr ""
+#: ../../mod/settings.php:1101
+msgid "Default Private Post"
+msgstr "Standard privat innlegg"
 
-#: ../../addon/testdrive/testdrive.php:96
-#: ../../addon.old/testdrive/testdrive.php:96
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
-msgstr ""
+#: ../../mod/settings.php:1102
+msgid "Default Public Post"
+msgstr "Standard offentlig innlegg"
 
-#: ../../addon/pageheader/pageheader.php:50
-#: ../../addon.old/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr ""
+#: ../../mod/settings.php:1106
+msgid "Default Permissions for New Posts"
+msgstr "Standard tillatelser for nye innlegg"
 
-#: ../../addon/pageheader/pageheader.php:68
-#: ../../addon.old/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
-msgstr ""
+#: ../../mod/settings.php:1118
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:"
 
-#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr ""
+#: ../../mod/settings.php:1121
+msgid "Notification Settings"
+msgstr "Beskjedinnstillinger"
 
-#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
-msgstr ""
+#: ../../mod/settings.php:1122
+msgid "By default post a status message when:"
+msgstr "Standard å legge inn en statusmelding når:"
 
-#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr ""
+#: ../../mod/settings.php:1123
+msgid "accepting a friend request"
+msgstr "aksepterer en venneforespørsel"
 
-#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
-msgstr ""
+#: ../../mod/settings.php:1124
+msgid "joining a forum/community"
+msgstr "blir med i et forum/fellesskap"
 
-#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr ""
+#: ../../mod/settings.php:1125
+msgid "making an <em>interesting</em> profile change"
+msgstr "gjør en <em>interessant</em> profilendring"
 
-#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
-msgstr ""
+#: ../../mod/settings.php:1126
+msgid "Send a notification email when:"
+msgstr "Send en e-post med beskjed når:"
 
-#: ../../addon/jappixmini/jappixmini.php:266
-#: ../../addon.old/jappixmini/jappixmini.php:266
-msgid "Jappix Mini addon settings"
-msgstr ""
+#: ../../mod/settings.php:1127
+msgid "You receive an introduction"
+msgstr "Du mottar en introduksjon"
 
-#: ../../addon/jappixmini/jappixmini.php:268
-#: ../../addon.old/jappixmini/jappixmini.php:268
-msgid "Activate addon"
-msgstr ""
+#: ../../mod/settings.php:1128
+msgid "Your introductions are confirmed"
+msgstr "Dine introduksjoner er bekreftet"
 
-#: ../../addon/jappixmini/jappixmini.php:271
-#: ../../addon.old/jappixmini/jappixmini.php:271
-msgid ""
-"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
-msgstr ""
+#: ../../mod/settings.php:1129
+msgid "Someone writes on your profile wall"
+msgstr "Noen skriver på veggen til profilen din"
 
-#: ../../addon/jappixmini/jappixmini.php:274
-#: ../../addon.old/jappixmini/jappixmini.php:274
-msgid "Jabber username"
-msgstr ""
+#: ../../mod/settings.php:1130
+msgid "Someone writes a followup comment"
+msgstr "Noen skriver en oppfølgingskommentar"
 
-#: ../../addon/jappixmini/jappixmini.php:277
-#: ../../addon.old/jappixmini/jappixmini.php:277
-msgid "Jabber server"
-msgstr ""
+#: ../../mod/settings.php:1131
+msgid "You receive a private message"
+msgstr "Du mottar en privat melding"
 
-#: ../../addon/jappixmini/jappixmini.php:281
-#: ../../addon.old/jappixmini/jappixmini.php:281
-msgid "Jabber BOSH host"
-msgstr ""
+#: ../../mod/settings.php:1132
+msgid "You receive a friend suggestion"
+msgstr "Du mottar et venneforslag"
 
-#: ../../addon/jappixmini/jappixmini.php:285
-#: ../../addon.old/jappixmini/jappixmini.php:285
-msgid "Jabber password"
-msgstr ""
+#: ../../mod/settings.php:1133
+msgid "You are tagged in a post"
+msgstr "Du er merket i et innlegg"
 
-#: ../../addon/jappixmini/jappixmini.php:290
-#: ../../addon.old/jappixmini/jappixmini.php:290
-msgid "Encrypt Jabber password with Friendica password (recommended)"
-msgstr ""
+#: ../../mod/settings.php:1134
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du er dyttet/dultet/etc i et innlegg"
 
-#: ../../addon/jappixmini/jappixmini.php:293
-#: ../../addon.old/jappixmini/jappixmini.php:293
-msgid "Friendica password"
-msgstr ""
+#: ../../mod/settings.php:1137
+msgid "Advanced Account/Page Type Settings"
+msgstr "Avanserte konto-/sidetype-innstillinger"
 
-#: ../../addon/jappixmini/jappixmini.php:296
-#: ../../addon.old/jappixmini/jappixmini.php:296
-msgid "Approve subscription requests from Friendica contacts automatically"
-msgstr ""
+#: ../../mod/settings.php:1138
+msgid "Change the behaviour of this account for special situations"
+msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner"
 
-#: ../../addon/jappixmini/jappixmini.php:299
-#: ../../addon.old/jappixmini/jappixmini.php:299
-msgid "Subscribe to Friendica contacts automatically"
-msgstr ""
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "lenke"
 
-#: ../../addon/jappixmini/jappixmini.php:302
-#: ../../addon.old/jappixmini/jappixmini.php:302
-msgid "Purge internal list of jabber addresses of contacts"
-msgstr ""
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "Kontaktinnstillinger i bruk."
 
-#: ../../addon/jappixmini/jappixmini.php:308
-#: ../../addon.old/jappixmini/jappixmini.php:308
-msgid "Add contact"
-msgstr ""
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "Kontaktoppdatering mislyktes."
 
-#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
-msgid "View Source"
-msgstr ""
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Kontakt ikke funnet."
 
-#: ../../addon/statusnet/statusnet.php:134
-#: ../../addon.old/statusnet/statusnet.php:134
-msgid "Post to StatusNet"
-msgstr "Post til StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:176
-#: ../../addon.old/statusnet/statusnet.php:176
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr "Vennligst kontakt administratoren på nettstedet ditt.<br />Den oppgitter API URL-en er ikke gyldig."
-
-#: ../../addon/statusnet/statusnet.php:204
-#: ../../addon.old/statusnet/statusnet.php:204
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav."
-
-#: ../../addon/statusnet/statusnet.php:232
-#: ../../addon.old/statusnet/statusnet.php:232
-msgid "StatusNet settings updated."
-msgstr "StatusNet-innstillinger er oppdatert."
-
-#: ../../addon/statusnet/statusnet.php:257
-#: ../../addon.old/statusnet/statusnet.php:257
-msgid "StatusNet Posting Settings"
-msgstr "Innstillinger for posting til StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:271
-#: ../../addon.old/statusnet/statusnet.php:271
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "Globalt tilgjengelige StatusNet OAuthKeys"
-
-#: ../../addon/statusnet/statusnet.php:272
-#: ../../addon.old/statusnet/statusnet.php:272
-msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
-msgstr "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor)."
-
-#: ../../addon/statusnet/statusnet.php:280
-#: ../../addon.old/statusnet/statusnet.php:280
-msgid "Provide your own OAuth Credentials"
-msgstr "Oppgi din egen OAuth-legitimasjon"
-
-#: ../../addon/statusnet/statusnet.php:281
-#: ../../addon.old/statusnet/statusnet.php:281
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendica Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendica installation at your favorited StatusNet installation."
-msgstr ""
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "Reparer kontaktinnstillinger"
 
-#: ../../addon/statusnet/statusnet.php:283
-#: ../../addon.old/statusnet/statusnet.php:283
-msgid "OAuth Consumer Key"
-msgstr "OAuth Consumer Key"
-
-#: ../../addon/statusnet/statusnet.php:286
-#: ../../addon.old/statusnet/statusnet.php:286
-msgid "OAuth Consumer Secret"
-msgstr "OAuth Consumer Secret"
-
-#: ../../addon/statusnet/statusnet.php:289
-#: ../../addon.old/statusnet/statusnet.php:289
-msgid "Base API Path (remember the trailing /)"
-msgstr "Base API Path (husk / på slutten)"
-
-#: ../../addon/statusnet/statusnet.php:310
-#: ../../addon.old/statusnet/statusnet.php:310
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine <strong>offentlige</strong> meldinger som blir postet til StatusNet."
-
-#: ../../addon/statusnet/statusnet.php:311
-#: ../../addon.old/statusnet/statusnet.php:311
-msgid "Log in with StatusNet"
-msgstr "Logg inn med StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:313
-#: ../../addon.old/statusnet/statusnet.php:313
-msgid "Copy the security code from StatusNet here"
-msgstr "Kopier sikkerhetskoden fra StatusNet hit"
-
-#: ../../addon/statusnet/statusnet.php:319
-#: ../../addon.old/statusnet/statusnet.php:319
-msgid "Cancel Connection Process"
-msgstr "Avbryt forbindelsesprosessen"
-
-#: ../../addon/statusnet/statusnet.php:321
-#: ../../addon.old/statusnet/statusnet.php:321
-msgid "Current StatusNet API is"
-msgstr "Gjeldende StatusNet API er"
-
-#: ../../addon/statusnet/statusnet.php:322
-#: ../../addon.old/statusnet/statusnet.php:322
-msgid "Cancel StatusNet Connection"
-msgstr "Avbryt StatusNet-forbindelsen"
-
-#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
-#: ../../addon.old/statusnet/statusnet.php:333
-#: ../../addon.old/twitter/twitter.php:189
-msgid "Currently connected to: "
-msgstr "For øyeblikket tilkoblet til:"
-
-#: ../../addon/statusnet/statusnet.php:334
-#: ../../addon.old/statusnet/statusnet.php:334
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."
-
-#: ../../addon/statusnet/statusnet.php:336
-#: ../../addon.old/statusnet/statusnet.php:336
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to StatusNet will lead the visitor to a blank page "
-"informing the visitor that the access to your profile has been restricted."
-msgstr ""
+#: ../../mod/crepair.php:137
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."
 
-#: ../../addon/statusnet/statusnet.php:339
-#: ../../addon.old/statusnet/statusnet.php:339
-msgid "Allow posting to StatusNet"
-msgstr "Tillat innlegg til StatusNet"
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden."
 
-#: ../../addon/statusnet/statusnet.php:342
-#: ../../addon.old/statusnet/statusnet.php:342
-msgid "Send public postings to StatusNet by default"
-msgstr "Send offentlige innlegg til StatusNet som standard"
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Gå tilbake til å endre kontakt"
 
-#: ../../addon/statusnet/statusnet.php:345
-#: ../../addon.old/statusnet/statusnet.php:345
-msgid "Send linked #-tags and @-names to StatusNet"
-msgstr ""
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "Konto Kallenavn"
 
-#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
-#: ../../addon.old/statusnet/statusnet.php:350
-#: ../../addon.old/twitter/twitter.php:206
-msgid "Clear OAuth configuration"
-msgstr "Fjern OAuth-konfigurasjon"
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn"
 
-#: ../../addon/statusnet/statusnet.php:677
-#: ../../addon.old/statusnet/statusnet.php:568
-msgid "API URL"
-msgstr "API URL"
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "Konto URL"
 
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
-msgstr ""
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "Venneforespørsel URL"
 
-#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
-msgid "Post to Tumblr"
-msgstr ""
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "Vennebekreftelse URL"
 
-#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
-msgid "Tumblr Post Settings"
-msgstr ""
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "Endepunkt URL for beskjed"
 
-#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
-msgid "Enable Tumblr Post Plugin"
-msgstr ""
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL"
 
-#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr ""
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "Nytt bilde fra denne URL-en"
 
-#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr ""
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Fant ingen potensielle sidedelegater."
 
-#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
-msgid "Post to Tumblr by default"
-msgstr ""
+#: ../../mod/delegate.php:123
+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 "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."
 
-#: ../../addon/numfriends/numfriends.php:46
-#: ../../addon.old/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
-msgstr ""
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Eksisterende sidebehandlere"
 
-#: ../../addon/numfriends/numfriends.php:77
-#: ../../addon.old/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
-msgstr ""
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Eksisterende sidedelegater"
 
-#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
-#: ../../addon.old/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr ""
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Mulige delegater"
 
-#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
-msgid "Gnot settings updated."
-msgstr ""
+#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Slett"
 
-#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
-msgid "Gnot Settings"
-msgstr ""
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Legg til"
 
-#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
-msgid ""
-"Allows threading of email comment notifications on Gmail and anonymising the"
-" subject line."
-msgstr ""
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Ingen oppføringer"
 
-#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
-msgid "Enable this plugin/addon?"
-msgstr ""
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Dytt/dult"
 
-#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d"
-msgstr ""
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "dytt, dult eller gjør andre ting med noen"
 
-#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr ""
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Mottaker"
 
-#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr ""
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Velg hva du ønsker å gjøre med mottakeren"
 
-#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr ""
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Gjør dette innlegget privat"
 
-#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."
 
-#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Forstod ikke svaret fra det andre stedet."
 
-#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
-msgid "WordPress API URL"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Uventet svar fra det andre stedet:"
 
-#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
-msgid "Post to WordPress by default"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Sending av bekreftelse var vellykket. "
 
-#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Det andre stedet rapporterte:"
 
-#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
-#: ../../addon/posterous/posterous.php:189
-#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
-#: ../../addon.old/blogger/blogger.php:172
-#: ../../addon.old/posterous/posterous.php:189
-msgid "Post from Friendica"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Midlertidig feil. Vennligst vent og prøv igjen."
 
-#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
-msgid "Read the original post and comment stream on Friendica"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Introduksjon mislyktes eller ble trukket tilbake."
 
-#: ../../addon/showmore/showmore.php:38
-#: ../../addon.old/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Fikk ikke satt kontaktbilde."
 
-#: ../../addon/showmore/showmore.php:41
-#: ../../addon.old/showmore/showmore.php:41
-msgid "Enable Show More"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Ingen brukerregistrering funnet for '%s'"
 
-#: ../../addon/showmore/showmore.php:44
-#: ../../addon.old/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."
 
-#: ../../addon/showmore/showmore.php:65
-#: ../../addon.old/showmore/showmore.php:65
-msgid "Show More Settings saved."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."
 
-#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."
 
-#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
+#: ../../mod/dfrn_confirm.php:618
 #, php-format
-msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
-msgid "Piwik Base URL"
-msgstr "Piwik Base URL"
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s."
 
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."
 
-#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
-msgid "Site ID"
-msgstr "Nettstedets ID"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system."
 
-#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr "Vis lenke for å velge bort cookie?"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system."
 
-#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Tilkobling godtatt på %s"
 
-#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
-msgid "Post to Twitter"
-msgstr "Post til Twitter"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s har blitt med %2$s"
 
-#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
-msgid "Twitter settings updated."
-msgstr "Twitter-innstilinger oppdatert."
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s hilser %2$s"
 
-#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
-msgid "Twitter Posting Settings"
-msgstr "Innstillinger for posting til Twitter"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Denne introduksjonen har allerede blitt akseptert."
 
-#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator."
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."
 
-#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
-msgid ""
-"At this Friendica instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine <strong>offentlige</strong> innlegg vil bli lagt inn på Twitter. "
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn."
 
-#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
-msgid "Log in with Twitter"
-msgstr "Logg inn via Twitter"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Advarsel: profilstedet har ikke noe profilbilde."
 
-#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
-msgid "Copy the PIN from Twitter here"
-msgstr "Kopier PIN-kode fra Twitter hit"
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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] "one: %d nødvendig parameter ble ikke funnet på angitt sted"
+msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted"
 
-#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Introduksjon ferdig."
 
-#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to Twitter will lead the visitor to a blank page informing "
-"the visitor that the access to your profile has been restricted."
-msgstr ""
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Uopprettelig protokollfeil."
 
-#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
-msgid "Allow posting to Twitter"
-msgstr "Tillat posting til Twitter"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil utilgjengelig."
 
-#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
-msgid "Send public postings to Twitter by default"
-msgstr "Send offentlige innlegg til Twitter som standard"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s har mottatt for mange kontaktforespørsler idag."
 
-#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
-msgid "Send linked #-tags and @-names to Twitter"
-msgstr ""
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Tiltak mot søppelpost har blitt iverksatt."
 
-#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
-msgid "Consumer key"
-msgstr "Consumer key"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Venner anbefales å prøve igjen om 24 timer."
 
-#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
-msgid "Consumer secret"
-msgstr "Consumer secret"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ugyldig stedsangivelse"
 
-#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
-msgid "IRC Settings"
-msgstr ""
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Ugyldig e-postadresse."
 
-#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
-msgstr ""
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."
 
-#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
-msgstr ""
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."
 
-#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
-msgid "IRC settings saved."
-msgstr ""
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Du har allerede introdusert deg selv her."
 
-#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
-msgid "IRC Chatroom"
-msgstr ""
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Du er visst allerede venn med %s."
 
-#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
-msgid "Popular Channels"
-msgstr ""
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ugyldig profil-URL."
 
-#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
-msgid "Fromapp settings updated."
-msgstr ""
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Din introduksjon er sendt."
 
-#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
-msgid "FromApp Settings"
-msgstr ""
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Vennligst logg inn for å bekrefte introduksjonen."
 
-#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
+#: ../../mod/dfrn_request.php:659
 msgid ""
-"The application name you would like to show your posts originating from."
-msgstr ""
-
-#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
-msgid "Use this application name even if another application was used."
-msgstr ""
-
-#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
-msgid "Post to blogger"
-msgstr ""
-
-#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
-msgid "Blogger Post Settings"
-msgstr ""
-
-#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
-msgstr ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen."
 
-#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
-msgid "Blogger username"
-msgstr ""
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Skjul denne kontakten"
 
-#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
-msgid "Blogger password"
-msgstr ""
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Velkommen hjem %s."
 
-#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
-msgid "Blogger API URL"
-msgstr ""
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
 
-#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
-msgid "Post to Blogger by default"
-msgstr ""
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bekreft"
 
-#: ../../addon/posterous/posterous.php:37
-#: ../../addon.old/posterous/posterous.php:37
-msgid "Post to Posterous"
-msgstr ""
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:"
 
-#: ../../addon/posterous/posterous.php:70
-#: ../../addon.old/posterous/posterous.php:70
-msgid "Posterous Post Settings"
-msgstr ""
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Koble til som en e-postfølgesvenn</strike> (Kommer snart)"
 
-#: ../../addon/posterous/posterous.php:72
-#: ../../addon.old/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
-msgstr ""
+#: ../../mod/dfrn_request.php:829
+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 "Hvis du ennå ikke er en del av den frie sosiale webben, <a href=\"http://dir.friendica.com/siteinfo\">følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag</a>."
 
-#: ../../addon/posterous/posterous.php:77
-#: ../../addon.old/posterous/posterous.php:77
-msgid "Posterous login"
-msgstr ""
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Venne-/Koblings-forespørsel"
 
-#: ../../addon/posterous/posterous.php:82
-#: ../../addon.old/posterous/posterous.php:82
-msgid "Posterous password"
-msgstr ""
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../addon/posterous/posterous.php:87
-#: ../../addon.old/posterous/posterous.php:87
-msgid "Posterous site ID"
-msgstr ""
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Vennligst svar på følgende:"
 
-#: ../../addon/posterous/posterous.php:92
-#: ../../addon.old/posterous/posterous.php:92
-msgid "Posterous API token"
-msgstr ""
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kjenner %s deg?"
 
-#: ../../addon/posterous/posterous.php:97
-#: ../../addon.old/posterous/posterous.php:97
-msgid "Post to Posterous by default"
-msgstr ""
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Legg til en personlig melding:"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
-msgstr ""
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federeated Social Web"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr ""
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr ""
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Din identitetsadresse:"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr ""
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Send forespørsel"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr ""
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s følger %2$s sin %3$s"
 
-#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
-#: ../../include/nav.php:116
-msgid "Your posts and conversations"
-msgstr "Dine innlegg og samtaler"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Global katalog"
 
-#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
-msgid "Your profile page"
-msgstr ""
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Finn på dette nettstedet"
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr ""
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Stedets katalog"
 
-#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
-msgid "Your photos"
-msgstr ""
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Kjønn:"
 
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
-msgid "Your events"
-msgstr ""
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)."
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
-msgid "Personal notes"
-msgstr ""
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Vil du virkelig slette dette forslaget?"
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
-msgid "Your personal photos"
-msgstr ""
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."
 
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:163
-msgid "Community Pages"
-msgstr ""
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorér/Skjul"
 
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-#: ../../view/theme/diabook/config.php:165
-msgid "Community Profiles"
-msgstr ""
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personsøk"
 
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
-#: ../../view/theme/diabook/config.php:170
-msgid "Last users"
-msgstr ""
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Ingen treff"
 
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-#: ../../view/theme/diabook/config.php:172
-msgid "Last likes"
-msgstr ""
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Ingen videoer er valgt"
 
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
-#: ../../view/theme/diabook/config.php:171
-msgid "Last photos"
-msgstr ""
+#: ../../mod/videos.php:226 ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "Tilgang til dette elementet er begrenset."
 
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-#: ../../view/theme/diabook/config.php:168
-msgid "Find Friends"
-msgstr ""
+#: ../../mod/videos.php:308 ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "Vis album"
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr ""
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Nye videoer"
 
-#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr ""
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Last opp nye videoer"
 
-#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Inviterer venner"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Fjernet tag"
 
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:164
-msgid "Earth Layers"
-msgstr ""
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Fjern tag"
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Velg en tag å fjerne:"
 
-#: ../../view/theme/diabook/theme.php:578
-#: ../../view/theme/diabook/config.php:161
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Fant ikke elementet"
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/config.php:162
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Endre innlegg"
 
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-#: ../../view/theme/diabook/config.php:166
-msgid "Help or @NewHere ?"
-msgstr ""
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Hendelsens tittel og starttidspunkt er påkrevet."
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
-#: ../../view/theme/diabook/config.php:167
-msgid "Connect Services"
-msgstr ""
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr ""
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Rediger hendelse"
 
-#: ../../view/theme/diabook/theme.php:609
-#: ../../view/theme/diabook/config.php:159
-msgid "Set twitter search term"
-msgstr ""
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Lag ny hendelse"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
-msgid "don't show"
-msgstr "ikke vis"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Forrige"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
-msgid "show"
-msgstr "vis"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Neste"
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "time:minutt"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr ""
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Hendelsesdetaljer"
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr ""
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formatet er  %s %s. Startdato og tittel er påkrevet."
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr ""
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Hendelsen  starter:"
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Påkrevet"
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr ""
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr ""
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Hendelsen slutter:"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr ""
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Tilpass til iakttakerens tidssone"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr ""
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beskrivelse:"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr ""
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Tittel:"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr ""
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Del denne hendelsen"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr ""
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Filer"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr "Eksporter konto"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/uexport.php:72
+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 "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener."
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Fødselsdag:"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr "Eksporter alt"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alder:"
+#: ../../mod/uexport.php:73
+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 "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr ""
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- velg -"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr ""
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Flytt konto"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbyer/Interesser:"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Du kan importere en konto fra en annen Friendica-tjener."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformasjon og sosiale nettverk:"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikksmak:"
+#: ../../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 "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Bøker, litteratur:"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Kontofil"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "TV:"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr "For å eksportere din konto, gå til \"Innstillnger -> Eksporter dine personlige data\" og velg \"Eksporter konto\""
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/kultur/underholdning:"
+#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
+#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[Innebygget innhold - hent siden på nytt for å se det]"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Kjærlighet/romanse:"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt lagt til "
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeid/ansatt hos:"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "Dette er Friendica, versjon"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Skole/utdanning:"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "kjører på web-plassering"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Ukjent | Ikke kategorisert"
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Vennligst besøk <a href=\"http://friendica.com\">Friendica.com</a> for å lære mer om Friendica-prosjektet."
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Blokker umiddelbart"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Feilrapporter og problemer: vennligst besøk"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Grumsete, poster søppel, fremhever bare seg selv"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Bekjent av meg, men har ingen mening"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Installerte plugins/tillegg/apper:"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, antakelig harmløs"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Ingen installerte plugins/tillegg/apper"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Respektert, har min tillit"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Venneforslag sendt."
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Ofte"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Foreslå venner"
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Hver time"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Foreslå en venn for %s"
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "To ganger daglig"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppen er laget."
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr ""
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Kunne ikke lage gruppen."
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr ""
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Fant ikke gruppen."
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr ""
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenavnet er endret"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr ""
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Lag en gruppe med kontakter/venner."
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr ""
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenavn:"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr ""
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe fjernet."
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr ""
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Mislyktes med å fjerne gruppe."
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Mann"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppebehandler"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Kvinne"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Medlemmer"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "For øyeblikket mann"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Ingen profil"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "For øyeblikket kvinne"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Hjelp:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Stort sett mann"
+#: ../../mod/help.php:90 ../../index.php:231
+msgid "Not Found"
+msgstr "Ikke funnet"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Stort sett kvinne"
+#: ../../mod/help.php:93 ../../index.php:234
+msgid "Page not found."
+msgstr "Fant ikke siden."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transkjønnet"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Ingen kontakter."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Tvekjønnet"
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksuell"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Tilgang avslått."
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafroditt"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Filstørrelsen er større enn begrensning på %d"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Intetkjønn"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Opplasting av filen mislyktes."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Ikke spesifisert"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Annet"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Ikke i stand til å behandle bildet."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Ubestemt"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Mislyktes med å laste opp bilde."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Menn"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Grensen for totalt antall invitasjoner er overskredet."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Kvinner"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Ugyldig e-postadresse."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Homse"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Vær med oss på Friendica"
+
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbe"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Mislyktes med å levere meldingen."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Ingen preferanse"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "one: %d melding sendt."
+msgstr[1] "other: %d meldinger sendt."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksuell"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du har ingen flere tilgjengelige invitasjoner"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autoseksuell"
+#: ../../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 "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Avholdende"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jomfru"
+#: ../../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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk  som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Avvikende"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisj"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Send invitasjoner"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Mange"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Skriv e-postadresser, en per linje:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Aseksuell"
+#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Din melding:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Alene"
+#: ../../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 er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Ensom"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du må oppgi denne invitasjonskoden: $invite_code"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Tilgjengelig"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Ikke tilgjengelig"
+#: ../../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 "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr ""
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr ""
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Ingen mottaker valgt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Stevnemøter/dater"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Ikke i stand til avgjøre plasseringen til ditt hjemsted."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Utro"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Meldingen kunne ikke sendes."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexavhengig"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Meldingsinnsamling mislyktes."
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:278
-#: ../../include/user.php:282
-msgid "Friends"
-msgstr "Venner"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Melding sendt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Venner med fordeler"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Ingen mottaker."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Tilfeldig"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Send privat melding"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Forlovet"
+#: ../../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 "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Gift"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Til:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr ""
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Emne:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partnere"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Tidskonvertering"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Samboere"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr ""
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC tid: %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Lykkelig"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Gjeldende tidssone: %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Konvertert lokaltid: %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Partnerbytte/swinger"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Vennligst velg din tidssone:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Bedratt"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separert"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Synlig for:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Ustabil"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Fant ingen gyldig konto."
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Skilt"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr ""
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Forespørsel om tilbakestilling av passord ved %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Enke/enkemann"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Usikker"
+#: ../../mod/lostpass.php:84 ../../boot.php:1151
+msgid "Password Reset"
+msgstr "Passord tilbakestilling"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr ""
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Ditt passord er tilbakestilt som forespurt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Uinteressert"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Ditt nye passord er"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Spør meg"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Lagre eller kopier ditt nye passord, og deretter"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
-msgid "Starts:"
-msgstr "Starter:"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "klikk her for å logge inn"
+
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn."
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
-msgid "Finishes:"
-msgstr "Slutter:"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Ditt passord har blitt endret %s"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:771
-msgid "(no subject)"
-msgstr "(uten emne)"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Glemte du passordet?"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr ""
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."
 
-#: ../../include/text.php:243
-msgid "prev"
-msgstr "forrige"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Kallenavn eller e-post:"
 
-#: ../../include/text.php:245
-msgid "first"
-msgstr "første"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Tilbakestill"
 
-#: ../../include/text.php:274
-msgid "last"
-msgstr "siste"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systemet er nede for vedlikehold"
 
-#: ../../include/text.php:277
-msgid "next"
-msgstr "neste"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Behandle identiteter og/eller sider"
 
-#: ../../include/text.php:295
-msgid "newer"
-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"
+msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr ""
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Velg en identitet å behandle:"
 
-#: ../../include/text.php:604
-msgid "No contacts"
-msgstr "Ingen kontakter"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profiltreff"
 
-#: ../../include/text.php:613
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontakter"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."
 
-#: ../../include/text.php:726
-msgid "poke"
-msgstr ""
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "er interessert i:"
 
-#: ../../include/text.php:726 ../../include/conversation.php:210
-msgid "poked"
-msgstr ""
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Mislyktes med å finne kontaktinformasjon."
 
-#: ../../include/text.php:727
-msgid "ping"
-msgstr ""
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Ønsker du virkelig å slette denne meldingen?"
 
-#: ../../include/text.php:727
-msgid "pinged"
-msgstr ""
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Melding slettet."
 
-#: ../../include/text.php:728
-msgid "prod"
-msgstr ""
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Samtale slettet."
 
-#: ../../include/text.php:728
-msgid "prodded"
-msgstr ""
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Ingen meldinger."
 
-#: ../../include/text.php:729
-msgid "slap"
-msgstr ""
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Ukjent avsender - %s"
 
-#: ../../include/text.php:729
-msgid "slapped"
-msgstr ""
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du og %s"
 
-#: ../../include/text.php:730
-msgid "finger"
-msgstr ""
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s og du"
 
-#: ../../include/text.php:730
-msgid "fingered"
-msgstr ""
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Slett samtale"
 
-#: ../../include/text.php:731
-msgid "rebuff"
-msgstr ""
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/text.php:731
-msgid "rebuffed"
-msgstr ""
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d melding"
+msgstr[1] "%d meldinger"
 
-#: ../../include/text.php:743
-msgid "happy"
-msgstr ""
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Melding utilgjengelig."
 
-#: ../../include/text.php:744
-msgid "sad"
-msgstr ""
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Slett melding"
 
-#: ../../include/text.php:745
-msgid "mellow"
-msgstr ""
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong> svare fra senderens profilside."
 
-#: ../../include/text.php:746
-msgid "tired"
-msgstr ""
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Send svar"
 
-#: ../../include/text.php:747
-msgid "perky"
-msgstr ""
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stemning"
 
-#: ../../include/text.php:748
-msgid "angry"
-msgstr ""
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Angi din stemning og fortell dine venner"
 
-#: ../../include/text.php:749
-msgid "stupified"
-msgstr ""
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "Søkeresultater for:"
 
-#: ../../include/text.php:750
-msgid "puzzled"
-msgstr ""
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "Etter kommentarer"
 
-#: ../../include/text.php:751
-msgid "interested"
-msgstr ""
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "Sorter etter kommentardato"
 
-#: ../../include/text.php:752
-msgid "bitter"
-msgstr ""
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "Etter innlegg"
 
-#: ../../include/text.php:753
-msgid "cheerful"
-msgstr ""
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "Sorter etter innleggsdato"
 
-#: ../../include/text.php:754
-msgid "alive"
-msgstr ""
+#: ../../mod/network.php:444 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Personlig"
 
-#: ../../include/text.php:755
-msgid "annoyed"
-msgstr ""
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
+msgstr "Innlegg som nevner eller involverer deg"
 
-#: ../../include/text.php:756
-msgid "anxious"
-msgstr ""
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "Ny"
 
-#: ../../include/text.php:757
-msgid "cranky"
-msgstr ""
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
+msgstr "Aktivitetsstrøm - etter dato"
 
-#: ../../include/text.php:758
-msgid "disturbed"
-msgstr ""
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "Delte lenker"
 
-#: ../../include/text.php:759
-msgid "frustrated"
-msgstr ""
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "Interessante lenker"
 
-#: ../../include/text.php:760
-msgid "motivated"
-msgstr ""
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Med stjerne"
 
-#: ../../include/text.php:761
-msgid "relaxed"
-msgstr ""
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Favorittinnlegg"
 
-#: ../../include/text.php:762
-msgid "surprised"
-msgstr ""
+#: ../../mod/network.php:546
+#, 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] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk."
+msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk."
 
-#: ../../include/text.php:926
-msgid "January"
-msgstr "januar"
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort."
 
-#: ../../include/text.php:926
-msgid "February"
-msgstr "februar"
+#: ../../mod/network.php:596 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Gruppen finnes ikke"
 
-#: ../../include/text.php:926
-msgid "March"
-msgstr "mars"
+#: ../../mod/network.php:607 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Gruppen er tom"
 
-#: ../../include/text.php:926
-msgid "April"
-msgstr "april"
+#: ../../mod/network.php:611 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Gruppe:"
 
-#: ../../include/text.php:926
-msgid "May"
-msgstr "mai"
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "Kontakt:"
 
-#: ../../include/text.php:926
-msgid "June"
-msgstr "juni"
+#: ../../mod/network.php:623
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private meldinger til denne personen risikerer å bli offentliggjort."
 
-#: ../../include/text.php:926
-msgid "July"
-msgstr "juli"
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "Ugyldig kontakt."
 
-#: ../../include/text.php:926
-msgid "August"
-msgstr "august"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Ugyldig forespørselsidentifikator."
 
-#: ../../include/text.php:926
-msgid "September"
-msgstr "september"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Forkast"
 
-#: ../../include/text.php:926
-msgid "October"
-msgstr "oktober"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../include/text.php:926
-msgid "November"
-msgstr "november"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Vis ignorerte forespørsler"
 
-#: ../../include/text.php:926
-msgid "December"
-msgstr "desember"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Skjul ignorerte forespørsler"
 
-#: ../../include/text.php:1010
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Beskjedtype:"
 
-#: ../../include/text.php:1037 ../../include/text.php:1049
-msgid "Click to open/close"
-msgstr ""
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Venneforslag"
 
-#: ../../include/text.php:1222 ../../include/user.php:236
-msgid "default"
-msgstr ""
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "foreslått av %s"
 
-#: ../../include/text.php:1234
-msgid "Select an alternate language"
-msgstr "Velg et annet språk"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Post om en ny venn"
 
-#: ../../include/text.php:1444
-msgid "activity"
-msgstr ""
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "hvis gyldig"
 
-#: ../../include/text.php:1447
-msgid "post"
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Påstår å kjenne deg:"
 
-#: ../../include/text.php:1602
-msgid "Item filed"
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../include/diaspora.php:702
-msgid "Sharing notification from Diaspora network"
-msgstr "Dele varslinger fra Diaspora nettverket"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "ei"
 
-#: ../../include/diaspora.php:2236
-msgid "Attachments:"
-msgstr ""
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Godkjenn som:"
 
-#: ../../include/network.php:847
-msgid "view full size"
-msgstr ""
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Venn"
 
-#: ../../include/oembed.php:137
-msgid "Embedded content"
-msgstr ""
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Deler"
 
-#: ../../include/oembed.php:146
-msgid "Embedding disabled"
-msgstr "Innebygging avskrudd"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Beundrer"
 
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr ""
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Venn/kontakt-forespørsel"
 
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Ny følgesvenn"
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr ""
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Ingen introduksjoner."
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s likte %s sitt innlegg"
 
-#: ../../include/uimport.php:85
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr ""
+msgid "%s disliked %s's post"
+msgstr "%s mislikte %s sitt innlegg"
 
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr ""
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s er nå venner med %s"
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr ""
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s skrev et nytt innlegg"
 
-#: ../../include/uimport.php:167
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
+msgid "%s commented on %s's post"
+msgstr "%s kommenterte på %s sitt innlegg"
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr ""
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Ingen flere nettverksvarslinger."
 
-#: ../../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 ""
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Nettverksvarslinger"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr ""
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Ingen flere systemvarsler."
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systemvarsler"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr ""
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Ingen flere personlige varsler."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr ""
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Personlige varsler"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Lag en ny gruppe"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Ingen flere hjemmevarsler."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr ""
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Hjemmevarsler"
 
-#: ../../include/nav.php:46 ../../boot.php:948
-msgid "Logout"
-msgstr "Logg ut"
+#: ../../mod/photos.php:51 ../../boot.php:1957
+msgid "Photo Albums"
+msgstr "Fotoalbum"
 
-#: ../../include/nav.php:46
-msgid "End this session"
-msgstr "Avslutt denne økten"
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: ../../include/nav.php:49 ../../boot.php:1724
-msgid "Status"
-msgstr "Status"
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Last opp nye bilder"
 
-#: ../../include/nav.php:64
-msgid "Sign in"
-msgstr "Logg inn"
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "Kontaktinformasjon utilgjengelig"
 
-#: ../../include/nav.php:77
-msgid "Home Page"
-msgstr "Hovedside"
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album ble ikke funnet."
 
-#: ../../include/nav.php:81
-msgid "Create an account"
-msgstr "Lag konto"
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Slett album"
 
-#: ../../include/nav.php:86
-msgid "Help and documentation"
-msgstr "Hjelp og dokumentasjon"
+#: ../../mod/photos.php:197
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?"
 
-#: ../../include/nav.php:89
-msgid "Apps"
-msgstr "Programmer"
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Slett bilde"
 
-#: ../../include/nav.php:89
-msgid "Addon applications, utilities, games"
-msgstr "Tilleggsprorammer, verktøy, spill"
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr "Ønsker du virkelig å slette dette bildet?"
 
-#: ../../include/nav.php:91
-msgid "Search site content"
-msgstr "Søk i nettstedets innhold"
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s ble merket i %2$s av %3$s"
 
-#: ../../include/nav.php:101
-msgid "Conversations on this site"
-msgstr "Samtaler på dette nettstedet"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "et bilde"
 
-#: ../../include/nav.php:103
-msgid "Directory"
-msgstr "Katalog"
+#: ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "Bilde overstiger størrelsesbegrensningen på "
 
-#: ../../include/nav.php:103
-msgid "People directory"
-msgstr "Personkatalog"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Bildefilen er tom."
 
-#: ../../include/nav.php:113
-msgid "Conversations from your friends"
-msgstr "Samtaler fra dine venner"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "Ingen bilder er valgt"
 
-#: ../../include/nav.php:114
-msgid "Network Reset"
-msgstr ""
+#: ../../mod/photos.php:1088
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring."
 
-#: ../../include/nav.php:114
-msgid "Load Network page with no filters"
-msgstr ""
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Last opp bilder"
 
-#: ../../include/nav.php:122
-msgid "Friend Requests"
-msgstr ""
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Nytt albumnavn:"
 
-#: ../../include/nav.php:124
-msgid "See all notifications"
-msgstr ""
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "eller eksisterende albumnavn:"
 
-#: ../../include/nav.php:125
-msgid "Mark all system notifications seen"
-msgstr ""
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "Ikke vis statusoppdatering for denne opplastingen"
 
-#: ../../include/nav.php:129
-msgid "Private mail"
-msgstr "Privat post"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Tillatelser"
 
-#: ../../include/nav.php:130
-msgid "Inbox"
-msgstr "Innboks"
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "Privat bilde"
 
-#: ../../include/nav.php:131
-msgid "Outbox"
-msgstr "Utboks"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr "Offentlig bilde"
 
-#: ../../include/nav.php:135
-msgid "Manage"
-msgstr "Behandle"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Endre album"
 
-#: ../../include/nav.php:135
-msgid "Manage other pages"
-msgstr "Behandle andre sider"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Vis nyeste først"
 
-#: ../../include/nav.php:140 ../../boot.php:1238
-msgid "Profiles"
-msgstr "Profiler"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Vis eldste først"
 
-#: ../../include/nav.php:140
-msgid "Manage/Edit Profiles"
-msgstr ""
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Vis bilde"
 
-#: ../../include/nav.php:142
-msgid "Manage/edit friends and contacts"
-msgstr "Behandle/endre venner og kontakter"
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset."
 
-#: ../../include/nav.php:149
-msgid "Site setup and configuration"
-msgstr "Nettstedsoppsett og konfigurasjon"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Bilde ikke tilgjengelig"
 
-#: ../../include/nav.php:173
-msgid "Nothing new here"
-msgstr ""
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Vis foto"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr ""
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Endre bilde"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr ""
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Bruk som profilbilde"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari"
+#: ../../mod/photos.php:1351 ../../mod/content.php:643
+#: ../../object/Item.php:113
+msgid "Private Message"
+msgstr "Privat melding"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitasjon tilgjengelig"
-msgstr[1] "%d invitasjoner tilgjengelig"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Vis i full størrelse"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr ""
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Tagger:"
+
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Fjern en tag]"
+
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "Roter med klokka (høyre)"
+
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "Roter mot klokka (venstre)"
+
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Nytt albumnavn"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr ""
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Overskrift"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Koble/Følg"
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Legg til tag"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr ""
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr ""
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr "Privat bilde"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr ""
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr "Offentlig bilde"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr ""
+#: ../../mod/photos.php:1529 ../../mod/content.php:707
+#: ../../object/Item.php:232
+msgid "I like this (toggle)"
+msgstr "Jeg liker dette (skru på/av)"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr ""
+#: ../../mod/photos.php:1530 ../../mod/content.php:708
+#: ../../object/Item.php:233
+msgid "I don't like this (toggle)"
+msgstr "Jeg liker ikke dette (skru på/av)"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr ""
+#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
+#: ../../mod/photos.php:1676 ../../mod/content.php:730
+#: ../../object/Item.php:650
+msgid "This is you"
+msgstr "Dette er deg"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr ""
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732
+#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../include/auth.php:36
-msgid "Logged out."
-msgstr "Logget ut."
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Nye bilder"
 
-#: ../../include/auth.php:126
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Velkommen til Friendica"
 
-#: ../../include/auth.php:126
-msgid "The error message was:"
-msgstr ""
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Sjekkliste for nye medlemmer"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Diverse"
+#: ../../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 "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv."
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "år"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Komme igang"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "måned"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica gjennomgang"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dag"
+#: ../../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 "På <em>Hurtigstart</em>-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "aldri"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gå til Dine innstillinger"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "for mindre enn ett sekund siden"
+#: ../../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 "På siden <em>Innstillinger</em> - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en."
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "uke"
+#: ../../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 "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "time"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Last opp profilbilde"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "timer"
+#: ../../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 "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minutt"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Endre profilen din"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutter"
+#: ../../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 "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "sekund"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profilnøkkelord"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "sekunder"
+#: ../../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 "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr ""
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Kobling"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1695
-#, php-format
-msgid "%s's birthday"
-msgstr ""
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."
 
-#: ../../include/datetime.php:473 ../../include/items.php:1696
-#, php-format
-msgid "Happy Birthday %s"
-msgstr ""
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Hvis</em> dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere."
 
-#: ../../include/onepoll.php:414
-msgid "From: "
-msgstr "Fra: "
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importere e-post"
 
-#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
-msgid "Image/photo"
-msgstr "Bilde/fotografi"
+#: ../../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 "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS"
 
-#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
-msgid "$1 wrote:"
-msgstr ""
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gå til Dine kontakter-siden"
 
-#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
-msgid "Encrypted content"
-msgstr ""
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen <em>Legg til ny kontakt</em>"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr ""
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gå til Din lokale katalog"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr ""
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Finn nye personer"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-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."
+msgstr "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer."
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr ""
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Kontaktgrupper"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr ""
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr ""
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Hvorfor er ikke mine innlegg offentlige?"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor."
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr ""
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Få hjelp"
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr ""
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Gå til Hjelp-siden"
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr ""
+#: ../../mod/profile.php:21 ../../boot.php:1325
+msgid "Requested profile is not available."
+msgstr "Profil utilgjengelig."
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tips til nye medlemmer"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr ""
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica kommunikasjonstjeneste - oppsett"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Kunne ikke koble til database."
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr ""
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Kunne ikke lage tabell."
 
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr ""
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Databasen til Friendica-nettstedet ditt har blitt installert."
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr ""
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Vennligst se filen \"INSTALL.txt\"."
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr ""
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systemsjekk"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Sjekk på nytt"
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Databaseforbindelse"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "For å installere Friendica må vi vite hvordan man kan koble seg til din database."
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr ""
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr ""
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr ""
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Databasetjenerens navn"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr ""
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Database brukernavn"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr ""
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Database passord"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr ""
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Databasenavn"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr ""
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Nettstedsadministrator sin e-postadresse"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-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."
+msgstr "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon."
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr ""
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Vennligst velg en standard tidssone for ditt nettsted"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr ""
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Innstillinger for nettstedet"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr ""
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr ""
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se <a href='http://friendica.com/node/27'>'Aktivere tidsstyrte oppgaver'</a>"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr ""
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "PHP kjørefil sin sti"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr ""
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."
 
-#: ../../include/dba.php:41
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Kommandolinje PHP"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[ikke noe emne]"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)"
 
-#: ../../include/acl_selectors.php:286
-msgid "Visible to everybody"
-msgstr "Synlig for alle"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Fant PHP-versjon:"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr ""
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binærfil"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr ""
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr ""
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dette er nødvendig for at meldingslevering skal virke."
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr ""
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr ""
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr ""
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr ""
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Lag krypteringsnøkler"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr ""
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr ""
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
 
-#: ../../include/enotify.php:89
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr ""
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
 
-#: ../../include/enotify.php:96
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr ""
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP modul"
 
-#: ../../include/enotify.php:104
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr ""
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
 
-#: ../../include/enotify.php:114
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr ""
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."
 
-#: ../../include/enotify.php:118 ../../include/enotify.php:133
-#: ../../include/enotify.php:146 ../../include/enotify.php:164
-#: ../../include/enotify.php:177
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr ""
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."
 
-#: ../../include/enotify.php:125
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr ""
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."
 
-#: ../../include/enotify.php:127
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr ""
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."
 
-#: ../../include/enotify.php:129
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr ""
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."
 
-#: ../../include/enotify.php:140
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr ""
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert."
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "%1$s tagged you at %2$s"
-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."
+msgstr "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-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."
+msgstr "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."
 
-#: ../../include/enotify.php:154
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr ""
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe."
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr ""
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner."
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php er skrivbar"
 
-#: ../../include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr ""
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere."
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr ""
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe."
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr ""
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen."
 
-#: ../../include/enotify.php:184
-msgid "[Friendica:Notify] Introduction received"
-msgstr ""
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder."
 
-#: ../../include/enotify.php:185
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 er skrivbar"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr ""
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten."
 
-#: ../../include/enotify.php:189 ../../include/enotify.php:207
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr ""
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "URL omskriving virker"
 
-#: ../../include/enotify.php:191
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr ""
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."
 
-#: ../../include/enotify.php:198
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Feil oppstod under opprettelsen av databasetabeller."
 
-#: ../../include/enotify.php:199
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Hva nå</h1>"
 
-#: ../../include/enotify.php:200
-#, php-format
+#: ../../mod/install.php:520
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."
 
-#: ../../include/enotify.php:205
-msgid "Name:"
-msgstr ""
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Innlegg vellykket."
 
-#: ../../include/enotify.php:206
-msgid "Photo:"
-msgstr ""
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protokollfeil. Ingen ID kom i retur."
 
-#: ../../include/enotify.php:209
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bildet ble lastet opp, men beskjæringen mislyktes."
 
-#: ../../include/follow.php:59
+#: ../../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 "Reduksjon av bildestørrelse [%s] mislyktes."
+
+#: ../../mod/profile_photo.php:118
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Mislyktes med å behandle bilde"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Den angitte profiladressen inneholder for lite information."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Last opp fil:"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Fant ingen forfatter eller navn."
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Velg en profil:"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Ingen nettleser-URL passet med denne adressen."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Last opp"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "hopp over dette steget"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "velg et bilde fra dine fotoalbum"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Beskjær bilde"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Vennligst juster beskjæringen av bildet for optimal visning."
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Ikke i stand til å hente kontaktinformasjon."
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Behandling ferdig"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "følger"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bilde ble lastet opp."
 
-#: ../../include/items.php:3363
-msgid "A new person is sharing with you at "
-msgstr ""
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Ikke tilgjengelig."
 
-#: ../../include/items.php:3363
-msgid "You have a new follower at "
-msgstr "Du har en ny følgesvenn på "
+#: ../../mod/content.php:626 ../../object/Item.php:362
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d kommentar"
+msgstr[1] "%d kommentarer"
 
-#: ../../include/items.php:4047
-msgid "Archives"
-msgstr ""
+#: ../../mod/content.php:707 ../../object/Item.php:232
+msgid "like"
+msgstr "liker"
 
-#: ../../include/user.php:38
-msgid "An invitation is required."
-msgstr "En invitasjon er nødvendig."
+#: ../../mod/content.php:708 ../../object/Item.php:233
+msgid "dislike"
+msgstr "liker ikke"
 
-#: ../../include/user.php:43
-msgid "Invitation could not be verified."
-msgstr "Invitasjon kunne ikke bekreftes."
+#: ../../mod/content.php:710 ../../object/Item.php:235
+msgid "Share this"
+msgstr "Del denne"
 
-#: ../../include/user.php:51
-msgid "Invalid OpenID url"
-msgstr "Ugyldig OpenID URL"
+#: ../../mod/content.php:710 ../../object/Item.php:235
+msgid "share"
+msgstr "Del"
 
-#: ../../include/user.php:66
-msgid "Please enter the required information."
-msgstr "Vennligst skriv inn den nødvendige informasjonen."
+#: ../../mod/content.php:734 ../../object/Item.php:654
+msgid "Bold"
+msgstr "uthevet"
 
-#: ../../include/user.php:80
-msgid "Please use a shorter name."
-msgstr "Vennligst bruk et kortere navn."
+#: ../../mod/content.php:735 ../../object/Item.php:655
+msgid "Italic"
+msgstr "kursiv"
 
-#: ../../include/user.php:82
-msgid "Name too short."
-msgstr "Navnet er for kort."
+#: ../../mod/content.php:736 ../../object/Item.php:656
+msgid "Underline"
+msgstr "understrek"
 
-#: ../../include/user.php:97
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."
+#: ../../mod/content.php:737 ../../object/Item.php:657
+msgid "Quote"
+msgstr "sitat"
 
-#: ../../include/user.php:102
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."
+#: ../../mod/content.php:738 ../../object/Item.php:658
+msgid "Code"
+msgstr "kode"
 
-#: ../../include/user.php:105
-msgid "Not a valid email address."
-msgstr "Ugyldig e-postadresse."
+#: ../../mod/content.php:739 ../../object/Item.php:659
+msgid "Image"
+msgstr "Bilde/fotografi"
 
-#: ../../include/user.php:115
-msgid "Cannot use that email."
-msgstr "Kan ikke bruke den e-postadressen."
+#: ../../mod/content.php:740 ../../object/Item.php:660
+msgid "Link"
+msgstr "lenke"
 
-#: ../../include/user.php:121
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."
+#: ../../mod/content.php:741 ../../object/Item.php:661
+msgid "Video"
+msgstr "video"
 
-#: ../../include/user.php:127 ../../include/user.php:225
-msgid "Nickname is already registered. Please choose another."
-msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet."
+#: ../../mod/content.php:776 ../../object/Item.php:211
+msgid "add star"
+msgstr "legg til stjerne"
 
-#: ../../include/user.php:137
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr ""
+#: ../../mod/content.php:777 ../../object/Item.php:212
+msgid "remove star"
+msgstr "fjern stjerne"
+
+#: ../../mod/content.php:778 ../../object/Item.php:213
+msgid "toggle star status"
+msgstr "veksle stjernestatus"
 
-#: ../../include/user.php:153
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."
+#: ../../mod/content.php:781 ../../object/Item.php:216
+msgid "starred"
+msgstr "Med stjerne"
 
-#: ../../include/user.php:211
-msgid "An error occurred during registration. Please try again."
-msgstr "En feil oppstod under registreringen. Vennligst prøv igjen."
+#: ../../mod/content.php:782 ../../object/Item.php:221
+msgid "add tag"
+msgstr "Legg til merkelapp"
 
-#: ../../include/user.php:246
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."
+#: ../../mod/content.php:786 ../../object/Item.php:130
+msgid "save to folder"
+msgstr "lagre i mappe"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Velkommen"
+#: ../../mod/content.php:877 ../../object/Item.php:308
+msgid "to"
+msgstr "til"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Vennligst last opp et profilbilde."
+#: ../../mod/content.php:878 ../../object/Item.php:310
+msgid "Wall-to-Wall"
+msgstr "vegg-til-vegg"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Velkommen tilbake"
+#: ../../mod/content.php:879 ../../object/Item.php:311
+msgid "via Wall-To-Wall:"
+msgstr "via vegg-til-vegg"
 
-#: ../../include/security.php:357
-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 ""
+#: ../../object/Item.php:92
+msgid "This entry was edited"
+msgstr "Denne oppføringen ble endret"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "sluttet å følge"
+#: ../../object/Item.php:309
+msgid "via"
+msgstr "via"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:795
-msgid "Poke"
-msgstr ""
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+msgid "Theme settings"
+msgstr "Temainnstillinger"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:789
-msgid "View Status"
-msgstr ""
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:790
-msgid "View Profile"
-msgstr ""
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Angi skriftstørrelse for innlegg og kommentarer"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:791
-msgid "View Photos"
-msgstr ""
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Angi temabredde"
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:242
-#: ../../include/conversation.php:792
-msgid "Network Posts"
-msgstr ""
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Fargekart"
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:242
-#: ../../include/conversation.php:793
-msgid "Edit Contact"
-msgstr ""
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Angi linjeavstand for innlegg og kommentarer"
 
-#: ../../include/Contact.php:231 ../../include/Contact.php:242
-#: ../../include/conversation.php:794
-msgid "Send PM"
-msgstr "Send privat melding"
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr "Angi oppløsning for midtkolonnen"
 
-#: ../../include/conversation.php:206
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr ""
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr "Angi fargekart"
 
-#: ../../include/conversation.php:290
-msgid "post/item"
-msgstr ""
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:609
+msgid "Set twitter search term"
+msgstr "Angi twitter søkeord"
 
-#: ../../include/conversation.php:291
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr ""
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Angi zoomfaktor for Earth Layer"
 
-#: ../../include/conversation.php:599 ../../object/Item.php:225
-msgid "Categories:"
-msgstr ""
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:578
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Angi lengdegrad (X) for Earth Layers"
 
-#: ../../include/conversation.php:600 ../../object/Item.php:226
-msgid "Filed under:"
-msgstr ""
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:579
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Angi breddegrad (Y) for Earth Layers"
 
-#: ../../include/conversation.php:685
-msgid "remove"
-msgstr ""
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+msgid "Community Pages"
+msgstr "Felleskapssider"
 
-#: ../../include/conversation.php:689
-msgid "Delete Selected Items"
-msgstr "Slette valgte elementer"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../include/conversation.php:788
-msgid "Follow Thread"
-msgstr ""
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+msgid "Community Profiles"
+msgstr "Fellesskapsprofiler"
 
-#: ../../include/conversation.php:857
-#, php-format
-msgid "%s likes this."
-msgstr "%s liker dette."
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+msgid "Help or @NewHere ?"
+msgstr "Hjelp eller @NewHere ?"
 
-#: ../../include/conversation.php:857
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s liker ikke dette."
+#: ../../view/theme/diabook/config.php:167
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+msgid "Connect Services"
+msgstr "Forbindelse til tjenester"
 
-#: ../../include/conversation.php:861
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this."
-msgstr "<span %1$s>%2$d personer</span> liker dette."
+#: ../../view/theme/diabook/config.php:168
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+msgid "Find Friends"
+msgstr "Finn venner"
 
-#: ../../include/conversation.php:863
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this."
-msgstr "<span %1$s>%2$d personer</span> liker ikke dette."
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr "Siste kvitringer"
 
-#: ../../include/conversation.php:869
-msgid "and"
-msgstr "og"
+#: ../../view/theme/diabook/config.php:170
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+msgid "Last users"
+msgstr "Siste brukere"
 
-#: ../../include/conversation.php:875
-#, php-format
-msgid ", and %d other people"
-msgstr ", og %d andre personer"
+#: ../../view/theme/diabook/config.php:171
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+msgid "Last photos"
+msgstr "Siste bilder"
 
-#: ../../include/conversation.php:877
-#, php-format
-msgid "%s like this."
-msgstr "%s liker dette."
+#: ../../view/theme/diabook/config.php:172
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+msgid "Last likes"
+msgstr "Siste liker"
 
-#: ../../include/conversation.php:877
-#, php-format
-msgid "%s don't like this."
-msgstr "%s liker ikke dette."
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "Dine kontakter"
 
-#: ../../include/conversation.php:904 ../../include/conversation.php:922
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Synlig for <strong>alle</strong>"
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
+msgstr "Lokal katalog"
 
-#: ../../include/conversation.php:906 ../../include/conversation.php:924
-msgid "Please enter a video link/URL:"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Angi zoomfaktor for Earth Layers"
 
-#: ../../include/conversation.php:907 ../../include/conversation.php:925
-msgid "Please enter an audio link/URL:"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
+msgstr "Siste Tweets"
 
-#: ../../include/conversation.php:908 ../../include/conversation.php:926
-msgid "Tag term:"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Vis/skjul bokser i kolonnen til høyre:"
 
-#: ../../include/conversation.php:910 ../../include/conversation.php:928
-msgid "Where are you right now?"
-msgstr "Hvor er du akkurat nå?"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Angi fargekart"
 
-#: ../../include/conversation.php:911
-msgid "Delete item(s)?"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Justering"
 
-#: ../../include/conversation.php:990
-msgid "permissions"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Venstre"
 
-#: ../../include/plugin.php:389 ../../include/plugin.php:391
-msgid "Click here to upgrade."
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Midtstilt"
 
-#: ../../include/plugin.php:397
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Skriftstørrelse for innlegg"
 
-#: ../../include/plugin.php:402
-msgid "This action is not available under your subscription plan."
-msgstr ""
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Skriftstørrelse for tekstområder"
 
-#: ../../boot.php:607
+#: ../../index.php:405
+msgid "toggle mobile"
+msgstr "Velg mobilvisning"
+
+#: ../../boot.php:669
 msgid "Delete this item?"
 msgstr "Slett dette elementet?"
 
-#: ../../boot.php:610
+#: ../../boot.php:672
 msgid "show fewer"
-msgstr ""
+msgstr "vis færre"
 
-#: ../../boot.php:819
+#: ../../boot.php:999
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Oppdatering %s mislyktes. Se feilloggene."
 
-#: ../../boot.php:821
+#: ../../boot.php:1001
 #, php-format
 msgid "Update Error at %s"
-msgstr ""
+msgstr "Oppdateringsfeil i %s"
 
-#: ../../boot.php:922
+#: ../../boot.php:1111
 msgid "Create a New Account"
 msgstr "Lag en ny konto"
 
-#: ../../boot.php:951
+#: ../../boot.php:1139
 msgid "Nickname or Email address: "
 msgstr "Kallenavn eller epostadresse: "
 
-#: ../../boot.php:952
+#: ../../boot.php:1140
 msgid "Password: "
 msgstr "Passord: "
 
-#: ../../boot.php:953
+#: ../../boot.php:1141
 msgid "Remember me"
-msgstr ""
+msgstr "Husk meg"
 
-#: ../../boot.php:956
+#: ../../boot.php:1144
 msgid "Or login using OpenID: "
-msgstr ""
+msgstr "Eller logg inn med OpenID:"
 
-#: ../../boot.php:962
+#: ../../boot.php:1150
 msgid "Forgot your password?"
 msgstr "Glemt passordet?"
 
-#: ../../boot.php:1087
+#: ../../boot.php:1153
+msgid "Website Terms of Service"
+msgstr "Nettstedets bruksbetingelser"
+
+#: ../../boot.php:1154
+msgid "terms of service"
+msgstr "bruksbetingelser"
+
+#: ../../boot.php:1156
+msgid "Website Privacy Policy"
+msgstr "Nettstedets retningslinjer for personvern"
+
+#: ../../boot.php:1157
+msgid "privacy policy"
+msgstr "retningslinjer for personvern"
+
+#: ../../boot.php:1286
 msgid "Requested account is not available."
-msgstr ""
+msgstr "Profil utilgjengelig."
 
-#: ../../boot.php:1164
+#: ../../boot.php:1365 ../../boot.php:1469
 msgid "Edit profile"
 msgstr "Rediger profil"
 
-#: ../../boot.php:1230
+#: ../../boot.php:1431
 msgid "Message"
-msgstr ""
+msgstr "Melding"
 
-#: ../../boot.php:1238
+#: ../../boot.php:1439
 msgid "Manage/edit profiles"
 msgstr "Behandle/endre profiler"
 
-#: ../../boot.php:1352 ../../boot.php:1438
+#: ../../boot.php:1568 ../../boot.php:1654
 msgid "g A l F d"
-msgstr ""
+msgstr "g A l F d"
 
-#: ../../boot.php:1353 ../../boot.php:1439
+#: ../../boot.php:1569 ../../boot.php:1655
 msgid "F d"
-msgstr ""
+msgstr "F d"
 
-#: ../../boot.php:1398 ../../boot.php:1479
+#: ../../boot.php:1614 ../../boot.php:1695
 msgid "[today]"
 msgstr "[idag]"
 
-#: ../../boot.php:1410
+#: ../../boot.php:1626
 msgid "Birthday Reminders"
 msgstr "Fødselsdager"
 
-#: ../../boot.php:1411
+#: ../../boot.php:1627
 msgid "Birthdays this week:"
 msgstr "Fødselsdager denne uken:"
 
-#: ../../boot.php:1472
+#: ../../boot.php:1688
 msgid "[No description]"
 msgstr "[Ingen beskrivelse]"
 
-#: ../../boot.php:1490
+#: ../../boot.php:1706
 msgid "Event Reminders"
 msgstr "Påminnelser om hendelser"
 
-#: ../../boot.php:1491
+#: ../../boot.php:1707
 msgid "Events this week:"
 msgstr "Hendelser denne uken:"
 
-#: ../../boot.php:1727
+#: ../../boot.php:1943
 msgid "Status Messages and Posts"
-msgstr ""
+msgstr "Status meldinger og innlegg"
 
-#: ../../boot.php:1734
+#: ../../boot.php:1950
 msgid "Profile Details"
-msgstr ""
+msgstr "Profildetaljer"
 
-#: ../../boot.php:1751
+#: ../../boot.php:1961 ../../boot.php:1964
+msgid "Videos"
+msgstr "Videoer"
+
+#: ../../boot.php:1974
 msgid "Events and Calendar"
-msgstr ""
+msgstr "Hendelser og kalender"
 
-#: ../../boot.php:1758
+#: ../../boot.php:1981
 msgid "Only You Can See This"
-msgstr ""
-
-#: ../../object/Item.php:237
-msgid "via"
-msgstr ""
-
-#: ../../index.php:398
-msgid "toggle mobile"
-msgstr ""
-
-#: ../../addon.old/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr ""
-
-#: ../../addon.old/bg/bg.php:82
-msgid "Bg Settings"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr ""
-
-#: ../../addon.old/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "OEmbed-innstillingene er oppdatert"
-
-#: ../../addon.old/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Bruk OEmbed til YouTube-videoer"
-
-#: ../../addon.old/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL som skal innebygges:"
+msgstr "Bare du kan se dette"
index 8f10fcea14428295de3ec5463f2436753f27ec5f..386e26b0ed40685bcd5d56757483fa97149b00e2 100644 (file)
@@ -5,780 +5,648 @@ function string_plural_select_nb_no($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Post successful."] = "Innlegg vellykket.";
-$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]";
-$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk.";
-$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes.";
-$a->strings["Permission denied."] = "Ingen tilgang.";
-$a->strings["Contact not found."] = "Kontakt ikke funnet.";
-$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden.";
-$a->strings["Return to contact editor"] = "";
-$a->strings["Name"] = "Navn";
-$a->strings["Account Nickname"] = "Konto Kallenavn";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn";
-$a->strings["Account URL"] = "Konto URL";
-$a->strings["Friend Request URL"] = "Venneforespørsel URL";
-$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL";
-$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL";
-$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en";
-$a->strings["Submit"] = "Lagre";
-$a->strings["Help:"] = "Hjelp:";
-$a->strings["Help"] = "Hjelp";
-$a->strings["Not Found"] = "Ikke funnet";
-$a->strings["Page not found."] = "Fant ikke siden.";
-$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d";
-$a->strings["File upload failed."] = "Opplasting av filen mislyktes.";
-$a->strings["Friend suggestion sent."] = "Venneforslag sendt.";
-$a->strings["Suggest Friends"] = "Foreslå venner";
-$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s";
-$a->strings["Event title and start time are required."] = "";
-$a->strings["l, F j"] = "";
-$a->strings["Edit event"] = "Rediger hendelse";
-$a->strings["link to source"] = "lenke til kilde";
-$a->strings["Events"] = "Hendelser";
-$a->strings["Create New Event"] = "Lag ny hendelse";
-$a->strings["Previous"] = "Forrige";
-$a->strings["Next"] = "Neste";
-$a->strings["hour:minute"] = "time:minutt";
-$a->strings["Event details"] = "Hendelsesdetaljer";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "";
-$a->strings["Event Starts:"] = "Hendelsen  starter:";
-$a->strings["Required"] = "";
-$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant";
-$a->strings["Event Finishes:"] = "Hendelsen slutter:";
-$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone";
-$a->strings["Description:"] = "Beskrivelse:";
-$a->strings["Location:"] = "Plassering:";
-$a->strings["Title:"] = "";
-$a->strings["Share this event"] = "Del denne hendelsen";
-$a->strings["Cancel"] = "Avbryt";
-$a->strings["Tag removed"] = "Fjernet tag";
-$a->strings["Remove Item Tag"] = "Fjern tag";
-$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:";
-$a->strings["Remove"] = "Slett";
-$a->strings["%1\$s welcomes %2\$s"] = "";
-$a->strings["Authorize application connection"] = "Tillat forbindelse til program";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:";
-$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nei";
-$a->strings["Photo Albums"] = "Fotoalbum";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Upload New Photos"] = "Last opp nye bilder";
-$a->strings["everybody"] = "alle";
-$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Album not found."] = "Album ble ikke funnet.";
-$a->strings["Delete Album"] = "Slett album";
-$a->strings["Delete Photo"] = "Slett bilde";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
-$a->strings["a photo"] = "";
-$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på ";
-$a->strings["Image file is empty."] = "Bildefilen er tom.";
-$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet.";
-$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde.";
-$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";
-$a->strings["No photos selected"] = "Ingen bilder er valgt";
-$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
-$a->strings["Upload Photos"] = "Last opp bilder";
-$a->strings["New album name: "] = "Nytt albumnavn:";
-$a->strings["or existing album name: "] = "eller eksisterende albumnavn:";
-$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen";
-$a->strings["Permissions"] = "Tillatelser";
-$a->strings["Edit Album"] = "Endre album";
-$a->strings["Show Newest First"] = "";
-$a->strings["Show Oldest First"] = "";
-$a->strings["View Photo"] = "Vis bilde";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset.";
-$a->strings["Photo not available"] = "Bilde ikke tilgjengelig";
-$a->strings["View photo"] = "Vis foto";
-$a->strings["Edit photo"] = "Endre bilde";
-$a->strings["Use as profile photo"] = "Bruk som profilbilde";
-$a->strings["Private Message"] = "Privat melding";
-$a->strings["View Full Size"] = "Vis i full størrelse";
-$a->strings["Tags: "] = "Tagger:";
-$a->strings["[Remove any tag]"] = "[Fjern en tag]";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
-$a->strings["New album name"] = "Nytt albumnavn";
-$a->strings["Caption"] = "Overskrift";
-$a->strings["Add a Tag"] = "Legg til tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["I like this (toggle)"] = "Jeg liker dette (skru på/av)";
-$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru på/av)";
-$a->strings["Share"] = "Del";
-$a->strings["Please wait"] = "Vennligst vent";
-$a->strings["This is you"] = "Dette er deg";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Preview"] = "";
-$a->strings["Delete"] = "Slett";
-$a->strings["View Album"] = "Vis album";
-$a->strings["Recent Photos"] = "Nye bilder";
-$a->strings["Not available."] = "Ikke tilgjengelig.";
-$a->strings["Community"] = "Fellesskap";
-$a->strings["No results."] = "Fant ikke noe.";
-$a->strings["This is Friendica, version"] = "";
-$a->strings["running at web location"] = "kjører på web-plassering";
-$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"] = "Feilrapporter og problemer: vennligst besøk";
-$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"] = "Ingen installerte plugins/tillegg/apper";
-$a->strings["Item not found"] = "Fant ikke elementet";
-$a->strings["Edit post"] = "Endre innlegg";
-$a->strings["Post to Email"] = "Innlegg til e-post";
-$a->strings["Edit"] = "Endre";
-$a->strings["Upload photo"] = "Last opp bilde";
-$a->strings["upload photo"] = "";
-$a->strings["Attach file"] = "Legg ved fil";
-$a->strings["attach file"] = "";
-$a->strings["Insert web link"] = "Sett inn web-adresse";
-$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"] = "Angi din plassering";
-$a->strings["set location"] = "";
-$a->strings["Clear browser location"] = "Fjern nettleserplassering";
-$a->strings["clear location"] = "";
-$a->strings["Permission settings"] = "Tillatelser";
-$a->strings["CC: email addresses"] = "Kopi: e-postadresser";
-$a->strings["Public post"] = "Offentlig innlegg";
-$a->strings["Set title"] = "Lagre tittel";
-$a->strings["Categories (comma-separated list)"] = "";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com";
-$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn.";
-$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted",
-       1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted",
-);
-$a->strings["Introduction complete."] = "Introduksjon ferdig.";
-$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil.";
-$a->strings["Profile unavailable."] = "Profil utilgjengelig.";
-$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag.";
-$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer.";
-$a->strings["Invalid locator"] = "Ugyldig stedsangivelse";
-$a->strings["Invalid email address."] = "";
-$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes.";
-$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet.";
-$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her.";
-$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s.";
-$a->strings["Invalid profile URL."] = "Ugyldig profil-URL.";
-$a->strings["Disallowed profile URL."] = "Underkjent profil-URL.";
-$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten.";
-$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt.";
-$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen.";
-$a->strings["Hide this contact"] = "";
-$a->strings["Welcome home %s."] = "Velkommen hjem %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s.";
-$a->strings["Confirm"] = "Bekreft";
-$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]";
-$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"] = "Venne-/Koblings-forespørsel";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Vennligst svar på følgende:";
-$a->strings["Does %s know you?"] = "Kjenner %s deg?";
-$a->strings["Add a personal note:"] = "Legg til en personlig melding:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
-$a->strings["Your Identity Address:"] = "Din identitetsadresse:";
-$a->strings["Submit Request"] = "Send forespørsel";
-$a->strings["Account settings"] = "Kontoinnstillinger";
-$a->strings["Display settings"] = "";
-$a->strings["Connector settings"] = "Koblingsinnstillinger";
-$a->strings["Plugin settings"] = "Tilleggsinnstillinger";
-$a->strings["Connected apps"] = "Tilkoblede programmer";
-$a->strings["Export personal data"] = "Eksporter personlige data";
-$a->strings["Remove account"] = "";
-$a->strings["Settings"] = "Innstillinger";
-$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["Friendica Social 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."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"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."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter.";
-$a->strings["Database Server Name"] = "Databasetjenerens navn";
-$a->strings["Database Login Name"] = "Database brukernavn";
-$a->strings["Database Login Password"] = "Database passord";
-$a->strings["Database Name"] = "Databasenavn";
-$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"] = "Vennligst velg en standard tidssone for ditt nettsted";
-$a->strings["Site settings"] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens 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["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert.";
-$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke.";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"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."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert.";
-$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
-$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan.";
-$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["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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener.";
-$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering.";
-$a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Time Conversion"] = "Tidskonvertering";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
-$a->strings["UTC time: %s"] = "UTC tid: %s";
-$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s";
-$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s";
-$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:";
-$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["Profile Match"] = "Profiltreff";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil.";
-$a->strings["is interested in:"] = "";
-$a->strings["Connect"] = "Forbindelse";
-$a->strings["No matches"] = "Ingen treff";
-$a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig.";
-$a->strings["Visible to:"] = "Synlig for:";
-$a->strings["No such group"] = "Gruppen finnes ikke";
-$a->strings["Group is empty"] = "Gruppen er tom";
-$a->strings["Group: "] = "Gruppe:";
-$a->strings["Select"] = "Velg";
-$a->strings["View %s's profile @ %s"] = "";
-$a->strings["%s from %s"] = "%s fra %s";
-$a->strings["View in context"] = "Vis i sammenheng";
-$a->strings["%d comment"] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["show more"] = "";
-$a->strings["like"] = "";
-$a->strings["dislike"] = "";
-$a->strings["Share this"] = "";
-$a->strings["share"] = "";
-$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["add star"] = "";
-$a->strings["remove star"] = "";
-$a->strings["toggle star status"] = "veksle stjernestatus";
-$a->strings["starred"] = "";
-$a->strings["add tag"] = "";
-$a->strings["save to folder"] = "";
-$a->strings["to"] = "til";
-$a->strings["Wall-to-Wall"] = "vegg-til-vegg";
-$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg";
-$a->strings["Welcome to %s"] = "Velkommen til %s";
-$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
-$a->strings["Discard"] = "Forkast";
-$a->strings["Ignore"] = "Ignorer";
-$a->strings["System"] = "";
-$a->strings["Network"] = "Nettverk";
-$a->strings["Personal"] = "";
-$a->strings["Home"] = "Hjem";
-$a->strings["Introductions"] = "Introduksjoner";
-$a->strings["Messages"] = "Meldinger";
-$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler";
-$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler";
-$a->strings["Notification type: "] = "Beskjedtype:";
-$a->strings["Friend Suggestion"] = "Venneforslag";
-$a->strings["suggested by %s"] = "foreslått av %s";
-$a->strings["Hide this contact from others"] = "";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "";
-$a->strings["Approve"] = "Godkjenn";
-$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "ei";
-$a->strings["Approve as: "] = "Godkjenn som:";
-$a->strings["Friend"] = "Venn";
-$a->strings["Sharer"] = "Deler";
-$a->strings["Fan/Admirer"] = "Fan/Beundrer";
-$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel";
-$a->strings["New Follower"] = "Ny følgesvenn";
-$a->strings["No introductions."] = "";
-$a->strings["Notifications"] = "Varslinger";
-$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg";
-$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg";
-$a->strings["%s is now friends with %s"] = "%s er nå venner med %s";
-$a->strings["%s created a new post"] = "%s skrev et nytt innlegg";
-$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg";
-$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["Could not access contact record."] = "Fikk ikke tilgang til kontaktposten.";
-$a->strings["Could not locate selected profile."] = "Kunne ikke lokalisere valgt profil.";
-$a->strings["Contact updated."] = "Kontakt oppdatert.";
-$a->strings["Contact has been blocked"] = "Kontakten er blokkert";
-$a->strings["Contact has been unblocked"] = "Kontakten er ikke blokkert lenger";
-$a->strings["Contact has been ignored"] = "Kontakten er ignorert";
-$a->strings["Contact has been unignored"] = "Kontakten er ikke ignorert lenger";
-$a->strings["Contact has been archived"] = "";
-$a->strings["Contact has been unarchived"] = "";
-$a->strings["Contact has been removed."] = "Kontakten er fjernet.";
-$a->strings["You are mutual friends with %s"] = "Du er gjensidig venn med %s";
-$a->strings["You are sharing with %s"] = "Du deler med %s";
-$a->strings["%s is sharing with you"] = "%s deler med deg";
-$a->strings["Private communications are not available for this contact."] = "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten.";
-$a->strings["Never"] = "Aldri";
-$a->strings["(Update was successful)"] = "(Oppdatering vellykket)";
-$a->strings["(Update was not successful)"] = "(Oppdatering mislykket)";
-$a->strings["Suggest friends"] = "Foreslå venner";
-$a->strings["Network type: %s"] = "Nettverkstype: %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d felles kontakt",
-       1 => "%d felles kontakter",
-);
-$a->strings["View all contacts"] = "Vis alle kontakter";
-$a->strings["Unblock"] = "Ikke blokker";
-$a->strings["Block"] = "Blokker";
-$a->strings["Toggle Blocked status"] = "";
-$a->strings["Unignore"] = "Fjern ignorering";
-$a->strings["Toggle Ignored status"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Toggle Archive status"] = "";
-$a->strings["Repair"] = "Reparer";
-$a->strings["Advanced Contact Settings"] = "";
-$a->strings["Communications lost with this contact!"] = "";
-$a->strings["Contact Editor"] = "Endre kontakt";
-$a->strings["Profile Visibility"] = "Profilens synlighet";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte.";
-$a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater";
-$a->strings["Edit contact notes"] = "Endre kontaktnotater";
-$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]";
-$a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt";
-$a->strings["Ignore contact"] = "Ignorer kontakt";
-$a->strings["Repair URL settings"] = "Reparer URL-innstillinger";
-$a->strings["View conversations"] = "Vis samtaler";
-$a->strings["Delete contact"] = "Slett kontakt";
-$a->strings["Last update:"] = "Siste oppdatering:";
-$a->strings["Update public posts"] = "Oppdater offentlige innlegg";
-$a->strings["Update now"] = "Oppdater nå";
-$a->strings["Currently blocked"] = "Blokkert nå";
-$a->strings["Currently ignored"] = "Ignorert nå";
-$a->strings["Currently archived"] = "";
-$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"] = "Alle kontakter";
-$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"] = "Gjensidig vennskap";
-$a->strings["is a fan of yours"] = "er en tilhenger av deg";
-$a->strings["you are a fan of"] = "du er en tilhenger av";
-$a->strings["Edit contact"] = "Endre kontakt";
-$a->strings["Contacts"] = "Kontakter";
-$a->strings["Search your contacts"] = "Søk i dine kontakter";
-$a->strings["Finding: "] = "Fant:";
-$a->strings["Find"] = "Finn";
-$a->strings["No valid account found."] = "Fant ingen gyldig konto.";
-$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din.";
-$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s";
-$a->strings["Administrator"] = "Administrator";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes.";
-$a->strings["Password Reset"] = "Passord tilbakestilling";
-$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt.";
-$a->strings["Your new password is"] = "Ditt nye passord er";
-$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter";
-$a->strings["click here to login"] = "klikk her for å logge inn";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn.";
-$a->strings["Forgot your Password?"] = "Glemte du passordet?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring.";
-$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:";
-$a->strings["Reset"] = "Tilbakestill";
-$a->strings["Additional features"] = "";
-$a->strings["Missing some important data!"] = "Mangler noen viktige data!";
-$a->strings["Update"] = "Oppdater";
-$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene.";
-$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert.";
-$a->strings["Features updated"] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret.";
-$a->strings["Password changed."] = "Passord endret.";
-$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen.";
-$a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn.";
-$a->strings[" Name too short."] = "Navnet er for kort.";
-$a->strings[" Not valid email."] = "Ugyldig e-postadresse.";
-$a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
-$a->strings["Settings updated."] = "Innstillinger oppdatert.";
-$a->strings["Add application"] = "Legg til program";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Omdiriger";
-$a->strings["Icon url"] = "Ikon URL";
-$a->strings["You can't edit this application."] = "Du kan ikke redigere dette programmet.";
-$a->strings["Connected Apps"] = "Tilkoblede programmer";
-$a->strings["Client key starts with"] = "Klientnøkkelen starter med";
-$a->strings["No name"] = "Ingen navn";
-$a->strings["Remove authorization"] = "Fjern tillatelse";
-$a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert";
-$a->strings["Plugin Settings"] = "Tilleggsinnstillinger";
-$a->strings["Off"] = "";
-$a->strings["On"] = "";
-$a->strings["Additional Features"] = "";
-$a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s";
-$a->strings["enabled"] = "aktivert";
-$a->strings["disabled"] = "avskrudd";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet.";
-$a->strings["Connector Settings"] = "Koblingsinnstillinger";
-$a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes.";
-$a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:";
-$a->strings["IMAP server name:"] = "IMAP-tjeners navn:";
-$a->strings["IMAP port:"] = "IMAP port:";
-$a->strings["Security:"] = "Sikkerhet:";
-$a->strings["None"] = "Ingen";
-$a->strings["Email login name:"] = "E-post brukernavn:";
-$a->strings["Email password:"] = "E-post passord:";
-$a->strings["Reply-to address:"] = "Svar-til-adresse:";
-$a->strings["Send public posts to all email contacts:"] = "Send offentlige meldinger til alle e-postkontakter:";
-$a->strings["Action after import:"] = "";
-$a->strings["Mark as seen"] = "";
-$a->strings["Move to folder"] = "";
-$a->strings["Move to folder:"] = "";
-$a->strings["No special theme for mobile devices"] = "";
-$a->strings["Display Settings"] = "";
-$a->strings["Display Theme:"] = "Vis tema:";
-$a->strings["Mobile Theme:"] = "";
-$a->strings["Update browser every xx seconds"] = "";
-$a->strings["Minimum of 10 seconds, no maximum"] = "";
-$a->strings["Number of items to display per page:"] = "";
-$a->strings["Maximum of 100 items"] = "";
-$a->strings["Don't show emoticons"] = "";
-$a->strings["Normal Account Page"] = "";
-$a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil";
-$a->strings["Soapbox Page"] = "";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter";
-$a->strings["Community Forum/Celebrity Account"] = "";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter";
-$a->strings["Automatic Friend Page"] = "";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner";
-$a->strings["Private Forum [Experimental]"] = "";
-$a->strings["Private forum - approved members only"] = "";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen.";
-$a->strings["Publish your default profile in your local site directory?"] = "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?";
-$a->strings["Publish your default profile in the global social directory?"] = "Skal standardprofilen din publiseres i den globale sosiale katalogen?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?";
-$a->strings["Hide your profile details from unknown viewers?"] = "";
-$a->strings["Allow friends to post to your profile page?"] = "Tillat venner å poste innlegg på din profilside?";
-$a->strings["Allow friends to tag your posts?"] = "Tillat venner å merke dine innlegg?";
-$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>."] = "Profilen er <strong>ikke publisert</strong>.";
-$a->strings["or"] = "eller";
-$a->strings["Your Identity Address is"] = "Din identitetsadresse er";
-$a->strings["Automatically expire posts after this many days:"] = "";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tomme innlegg utgår ikke. Utgåtte innlegg slettes.";
-$a->strings["Advanced expiration settings"] = "";
-$a->strings["Advanced Expiration"] = "";
-$a->strings["Expire posts:"] = "";
-$a->strings["Expire personal notes:"] = "";
-$a->strings["Expire starred posts:"] = "";
-$a->strings["Expire photos:"] = "";
-$a->strings["Only expire posts by others:"] = "";
-$a->strings["Account Settings"] = "Kontoinnstillinger";
-$a->strings["Password Settings"] = "Passordinnstillinger";
-$a->strings["New Password:"] = "Nytt passord:";
-$a->strings["Confirm:"] = "Bekreft:";
-$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå tomme hvis du ikke skal bytte";
-$a->strings["Basic Settings"] = "Grunninnstillinger";
-$a->strings["Full Name:"] = "Fullt navn:";
-$a->strings["Email Address:"] = "E-postadresse:";
-$a->strings["Your Timezone:"] = "Din tidssone:";
-$a->strings["Default Post Location:"] = "Standard oppholdssted når du poster:";
-$a->strings["Use Browser Location:"] = "Bruk nettleserens oppholdssted:";
-$a->strings["Security and Privacy Settings"] = "Sikkerhet og privatlivsinnstillinger";
-$a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:";
-$a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)";
-$a->strings["Default Post Permissions"] = "Standardtillatelser ved posting";
-$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)";
-$a->strings["Maximum private messages per day from unknown people:"] = "";
-$a->strings["Notification Settings"] = "Beskjedinnstillinger";
-$a->strings["By default post a status message when:"] = "";
-$a->strings["accepting a friend request"] = "";
-$a->strings["joining a forum/community"] = "";
-$a->strings["making an <em>interesting</em> profile change"] = "";
-$a->strings["Send a notification email when:"] = "Send en e-post med beskjed når:";
-$a->strings["You receive an introduction"] = "Du mottar en introduksjon";
-$a->strings["Your introductions are confirmed"] = "Dine introduksjoner er bekreftet";
-$a->strings["Someone writes on your profile wall"] = "Noen skriver på veggen til profilen din";
-$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgingskommentar";
-$a->strings["You receive a private message"] = "Du mottar en privat melding";
-$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["Advanced Account/Page Type Settings"] = "";
-$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser";
-$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:";
-$a->strings["Search Results For:"] = "";
-$a->strings["Remove term"] = "Fjern uttrykk";
-$a->strings["Saved Searches"] = "Lagrede søk";
-$a->strings["add"] = "";
-$a->strings["Commented Order"] = "Etter kommentarer";
-$a->strings["Sort by Comment Date"] = "";
-$a->strings["Posted Order"] = "Etter innlegg";
-$a->strings["Sort by Post Date"] = "";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "Ny";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Shared Links"] = "";
-$a->strings["Interesting Links"] = "";
-$a->strings["Starred"] = "Med stjerne";
-$a->strings["Favourite Posts"] = "";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.",
-       1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort.";
-$a->strings["Contact: "] = "Kontakt:";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort.";
-$a->strings["Invalid contact."] = "Ugyldig kontakt.";
-$a->strings["Personal Notes"] = "Personlige notater";
-$a->strings["Save"] = "Lagre";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
-$a->strings["Import"] = "";
-$a->strings["Move account"] = "";
-$a->strings["You can import an account from another Friendica server. <br>\r\n                            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.<br>\r\n                            <b>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 accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes.";
-$a->strings["No recipient selected."] = "Ingen mottaker valgt.";
-$a->strings["Unable to check your home location."] = "";
-$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes.";
-$a->strings["Message collection failure."] = "";
-$a->strings["Message sent."] = "Melding sendt.";
-$a->strings["No recipient."] = "";
-$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
-$a->strings["Send Private Message"] = "Send privat melding";
-$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:"] = "Til:";
-$a->strings["Subject:"] = "Emne:";
-$a->strings["Your message:"] = "Din melding:";
-$a->strings["Welcome to Friendica"] = "";
-$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer";
-$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."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg.";
 $a->strings["Profile"] = "Profil";
-$a->strings["Upload Profile Photo"] = "Last opp profilbilde";
-$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."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det.";
-$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."] = "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende.";
-$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."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap.";
-$a->strings["Connecting"] = "";
+$a->strings["Full Name:"] = "Fullt navn:";
+$a->strings["Gender:"] = "Kjønn:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Fødselsdag:";
+$a->strings["Age:"] = "Alder:";
+$a->strings["Status:"] = "Status:";
+$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Seksuell orientering:";
+$a->strings["Homepage:"] = "Hjemmeside:";
+$a->strings["Hometown:"] = "Hjemsted:";
+$a->strings["Tags:"] = "Merkelapper:";
+$a->strings["Political Views:"] = "Politisk ståsted:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["About:"] = "Om:";
+$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:";
+$a->strings["Likes:"] = "Liker:";
+$a->strings["Dislikes:"] = "Liker ikke:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
+$a->strings["Musical interests:"] = "Musikksmak:";
+$a->strings["Books, literature:"] = "Bøker, litteratur:";
+$a->strings["Television:"] = "TV:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
+$a->strings["Love/Romance:"] = "Kjærlighet/romanse:";
+$a->strings["Work/employment:"] = "Arbeid/ansatt hos:";
+$a->strings["School/education:"] = "Skole/utdanning:";
+$a->strings["Male"] = "Mann";
+$a->strings["Female"] = "Kvinne";
+$a->strings["Currently Male"] = "For øyeblikket mann";
+$a->strings["Currently Female"] = "For øyeblikket kvinne";
+$a->strings["Mostly Male"] = "Stort sett mann";
+$a->strings["Mostly Female"] = "Stort sett kvinne";
+$a->strings["Transgender"] = "Transkjønnet";
+$a->strings["Intersex"] = "Tvekjønnet";
+$a->strings["Transsexual"] = "Transseksuell";
+$a->strings["Hermaphrodite"] = "Hermafroditt";
+$a->strings["Neuter"] = "Intetkjønn";
+$a->strings["Non-specific"] = "Ikke spesifisert";
+$a->strings["Other"] = "Annet";
+$a->strings["Undecided"] = "Ubestemt";
+$a->strings["Males"] = "Menn";
+$a->strings["Females"] = "Kvinner";
+$a->strings["Gay"] = "Homse";
+$a->strings["Lesbian"] = "Lesbe";
+$a->strings["No Preference"] = "Ingen preferanse";
+$a->strings["Bisexual"] = "Biseksuell";
+$a->strings["Autosexual"] = "Autoseksuell";
+$a->strings["Abstinent"] = "Avholdende";
+$a->strings["Virgin"] = "Jomfru";
+$a->strings["Deviant"] = "Avvikende";
+$a->strings["Fetish"] = "Fetisj";
+$a->strings["Oodles"] = "Mange";
+$a->strings["Nonsexual"] = "Aseksuell";
+$a->strings["Single"] = "Alene";
+$a->strings["Lonely"] = "Ensom";
+$a->strings["Available"] = "Tilgjengelig";
+$a->strings["Unavailable"] = "Ikke tilgjengelig";
+$a->strings["Has crush"] = "Er forelsket";
+$a->strings["Infatuated"] = "Betatt";
+$a->strings["Dating"] = "Stevnemøter/dater";
+$a->strings["Unfaithful"] = "Utro";
+$a->strings["Sex Addict"] = "Sexavhengig";
+$a->strings["Friends"] = "Venner";
+$a->strings["Friends/Benefits"] = "Venner med fordeler";
+$a->strings["Casual"] = "Tilfeldig";
+$a->strings["Engaged"] = "Forlovet";
+$a->strings["Married"] = "Gift";
+$a->strings["Imaginarily married"] = "Fantasiekteskap";
+$a->strings["Partners"] = "Partnere";
+$a->strings["Cohabiting"] = "Samboere";
+$a->strings["Common law"] = "Samboer";
+$a->strings["Happy"] = "Lykkelig";
+$a->strings["Not looking"] = "Ikke på utkikk";
+$a->strings["Swinger"] = "Partnerbytte/swinger";
+$a->strings["Betrayed"] = "Bedratt";
+$a->strings["Separated"] = "Separert";
+$a->strings["Unstable"] = "Ustabil";
+$a->strings["Divorced"] = "Skilt";
+$a->strings["Imaginarily divorced"] = "Fantasiskilt";
+$a->strings["Widowed"] = "Enke/enkemann";
+$a->strings["Uncertain"] = "Usikker";
+$a->strings["It's complicated"] = "Det er komplisert";
+$a->strings["Don't care"] = "Uinteressert";
+$a->strings["Ask me"] = "Spør meg";
+$a->strings["stopped following"] = "sluttet å følge";
+$a->strings["Poke"] = "Dytt";
+$a->strings["View Status"] = "Vis status";
+$a->strings["View Profile"] = "Vis profil";
+$a->strings["View Photos"] = "Vis bilder";
+$a->strings["Network Posts"] = "Nettverksinnlegg";
+$a->strings["Edit Contact"] = "Endre kontakt";
+$a->strings["Send PM"] = "Send privat melding";
+$a->strings["Image/photo"] = "Bilde/fotografi";
+$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> skrev det følgende <a href=\"%s\" target=\"external-link\">innlegget</a>";
+$a->strings["$1 wrote:"] = "$1 skrev:";
+$a->strings["Encrypted content"] = "Kryptert innhold";
+$a->strings["Visible to everybody"] = "Synlig for alle";
+$a->strings["show"] = "vis";
+$a->strings["don't show"] = "ikke vis";
+$a->strings["Logged out."] = "Logget ut.";
+$a->strings["Login failed."] = "Innlogging mislyktes.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig.";
+$a->strings["The error message was:"] = "Feilmeldingen var:";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Starter:";
+$a->strings["Finishes:"] = "Slutter:";
+$a->strings["Location:"] = "Plassering:";
+$a->strings["Disallowed profile URL."] = "Underkjent profil-URL.";
+$a->strings["Connect URL missing."] = "Forbindelses-URL mangler.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget.";
+$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information.";
+$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn.";
+$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt.";
+$a->strings["Use mailto: in front of address to force email check."] = "Bruk mailto: foran adresser for å tvinge e-postsjekk.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg.";
+$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon.";
+$a->strings["following"] = "følger";
+$a->strings["An invitation is required."] = "En invitasjon er nødvendig.";
+$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
+$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL";
+$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen.";
+$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn.";
+$a->strings["Name too short."] = "Navnet er for kort.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet.";
+$a->strings["Not a valid email address."] = "Ugyldig e-postadresse.";
+$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav.";
+$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler.";
+$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen.";
+$a->strings["default"] = "standard";
+$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen.";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert";
+$a->strings["Block immediately"] = "Blokker umiddelbart";
+$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv";
+$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening";
+$a->strings["OK, probably harmless"] = "OK, antakelig harmløs";
+$a->strings["Reputable, has my trust"] = "Respektert, har min tillit";
+$a->strings["Frequently"] = "Ofte";
+$a->strings["Hourly"] = "Hver time";
+$a->strings["Twice daily"] = "To ganger daglig";
+$a->strings["Daily"] = "Daglig";
+$a->strings["Weekly"] = "Ukentlig";
+$a->strings["Monthly"] = "Månedlig";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-post";
+$a->strings["Diaspora"] = "Diaspora";
 $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."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler.";
-$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."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det.";
-$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."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side.";
-$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."] = "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet.";
-$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
-$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
-$a->strings["Group created."] = "Gruppen er laget.";
-$a->strings["Could not create group."] = "Kunne ikke lage gruppen.";
-$a->strings["Group not found."] = "Fant ikke gruppen.";
-$a->strings["Group name changed."] = "Gruppenavnet er endret";
-$a->strings["Permission denied"] = "Tilgang nektet";
-$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner.";
-$a->strings["Group Name: "] = "Gruppenavn:";
-$a->strings["Group removed."] = "Gruppe fjernet.";
-$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe.";
-$a->strings["Group Editor"] = "Gruppebehandler";
-$a->strings["Members"] = "Medlemmer";
-$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
-$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator.";
-$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet";
-$a->strings["Visible To"] = "Synlig for";
-$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)";
-$a->strings["No contacts."] = "Ingen kontakter.";
-$a->strings["View Contacts"] = "Vis kontakter";
-$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes.";
-$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
-$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene.";
-$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):";
-$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?";
-$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon.";
-$a->strings["Your invitation ID: "] = "Din invitasjons-ID:";
-$a->strings["Registration"] = "Registrering";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):";
-$a->strings["Your Email Address: "] = "Din e-postadresse:";
-$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>'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@\$sitename</strong>\".";
-$a->strings["Choose a nickname: "] = "Velg et kallenavn:";
-$a->strings["Register"] = "Registrer";
-$a->strings["People Search"] = "Personsøk";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["Add New Contact"] = "Legg til ny kontakt";
+$a->strings["Enter address or web location"] = "Skriv adresse eller web-plassering";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari";
+$a->strings["Connect"] = "Forbindelse";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitasjon tilgjengelig",
+       1 => "%d invitasjoner tilgjengelig",
+);
+$a->strings["Find People"] = "Finn personer";
+$a->strings["Enter name or interest"] = "Skriv navn eller interesse";
+$a->strings["Connect/Follow"] = "Koble/Følg";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Robert Morgenstein, fisking";
+$a->strings["Find"] = "Finn";
+$a->strings["Friend Suggestions"] = "Venneforslag";
+$a->strings["Similar Interests"] = "Liknende interesser";
+$a->strings["Random Profile"] = "Tilfeldig profil";
+$a->strings["Invite Friends"] = "Inviterer venner";
+$a->strings["Networks"] = "Nettverk";
+$a->strings["All Networks"] = "Alle nettverk";
+$a->strings["Saved Folders"] = "Lagrede mapper";
+$a->strings["Everything"] = "Alt";
+$a->strings["Categories"] = "Kategorier";
+$a->strings["%d contact in common"] = array(
+       0 => "%d felles kontakt",
+       1 => "%d felles kontakter",
+);
+$a->strings["show more"] = "vis mer";
+$a->strings[" on Last.fm"] = "på Last.fm";
+$a->strings["view full size"] = "Vis i full størrelse";
+$a->strings["Miscellaneous"] = "Diverse";
+$a->strings["year"] = "år";
+$a->strings["month"] = "måned";
+$a->strings["day"] = "dag";
+$a->strings["never"] = "aldri";
+$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
+$a->strings["years"] = "år";
+$a->strings["months"] = "måneder";
+$a->strings["week"] = "uke";
+$a->strings["weeks"] = "uker";
+$a->strings["days"] = "dager";
+$a->strings["hour"] = "time";
+$a->strings["hours"] = "timer";
+$a->strings["minute"] = "minutt";
+$a->strings["minutes"] = "minutter";
+$a->strings["second"] = "sekund";
+$a->strings["seconds"] = "sekunder";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden";
+$a->strings["%s's birthday"] = "%s sin bursdag";
+$a->strings["Happy Birthday %s"] = "Gratulerer med dagen, %s";
+$a->strings["Click here to upgrade."] = "Klikk her for oppgradere.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen overstiger grensene satt i din abonnementsplan.";
+$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan.";
+$a->strings["(no subject)"] = "(uten emne)";
+$a->strings["noreply"] = "ikke svar";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket";
 $a->strings["photo"] = "bilde";
 $a->strings["status"] = "status";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s";
+$a->strings["Attachments:"] = "Vedlegg:";
+$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]";
+$a->strings["A new person is sharing with you at "] = "En ny person deler med deg hos";
+$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på ";
 $a->strings["Item not found."] = "Enheten ble ikke funnet.";
-$a->strings["Access denied."] = "";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Files"] = "";
-$a->strings["Account approved."] = "Konto godkjent.";
-$a->strings["Registration revoked for %s"] = "Registreringen til  %s er trukket tilbake";
-$a->strings["Please login."] = "Vennligst logg inn.";
-$a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding.";
-$a->strings["Empty post discarded."] = "Tom melding forkastet.";
+$a->strings["Do you really want to delete this item?"] = "Ønsker du virkelig å slette dette elementet?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Cancel"] = "Avbryt";
+$a->strings["Permission denied."] = "Ingen tilgang.";
+$a->strings["Archives"] = "Arkiverer";
+$a->strings["General Features"] = "Generelle egenskaper";
+$a->strings["Multiple Profiles"] = "Flere profiler";
+$a->strings["Ability to create multiple profiles"] = "Mulighet for å lage flere profiler";
+$a->strings["Post Composition Features"] = "Funksjoner for å skrive innlegg";
+$a->strings["Richtext Editor"] = "Rik tekstredigering";
+$a->strings["Enable richtext editor"] = "Skru på rik tekstredigering";
+$a->strings["Post Preview"] = "Forhåndsvisning av innlegg";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Tillat forhåndsvisning av innlegg og kommentarer før publisering";
+$a->strings["Network Sidebar Widgets"] = "Småprogrammer i sidestolpen for Nettverk";
+$a->strings["Search by Date"] = "Søk etter dato";
+$a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområder";
+$a->strings["Group Filter"] = "Gruppefilter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen";
+$a->strings["Network Filter"] = "Nettverksfilter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk";
+$a->strings["Saved Searches"] = "Lagrede søk";
+$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for gjenbruk";
+$a->strings["Network Tabs"] = "Nettverksfaner";
+$a->strings["Network Personal Tab"] = "Nettverk personlig fane";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i";
+$a->strings["Network New Tab"] = "Nettverk Ny fane";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)";
+$a->strings["Network Shared Links Tab"] = "Nettverk Delte lenker fane";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem";
+$a->strings["Post/Comment Tools"] = "Innleggs-/kommentarverktøy";
+$a->strings["Multiple Deletion"] = "Slett flere";
+$a->strings["Select and delete multiple posts/comments at once"] = "Velg og slett flere innlegg/kommentarer på en gang";
+$a->strings["Edit Sent Posts"] = "Endre sendte innlegg";
+$a->strings["Edit and correct posts and comments after sending"] = "Endre og korriger innlegg og kommentarer etter sending";
+$a->strings["Tagging"] = "Merking";
+$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende innlegg";
+$a->strings["Post Categories"] = "Innleggskategorier";
+$a->strings["Add categories to your posts"] = "Legg til kategorier til dine innlegg";
+$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper";
+$a->strings["Dislike Posts"] = "Liker ikke innlegg";
+$a->strings["Ability to dislike posts/comments"] = "Mulighet til å ikke like innlegg/kommentarer";
+$a->strings["Star Posts"] = "Stjerneinnlegg";
+$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerneindikator";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' ";
+$a->strings["prev"] = "forrige";
+$a->strings["first"] = "første";
+$a->strings["last"] = "siste";
+$a->strings["next"] = "neste";
+$a->strings["newer"] = "nyere";
+$a->strings["older"] = "eldre";
+$a->strings["No contacts"] = "Ingen kontakter";
+$a->strings["%d Contact"] = array(
+       0 => "%d kontakt",
+       1 => "%d kontakter",
+);
+$a->strings["View Contacts"] = "Vis kontakter";
+$a->strings["Search"] = "Søk";
+$a->strings["Save"] = "Lagre";
+$a->strings["poke"] = "dytt";
+$a->strings["poked"] = "dyttet";
+$a->strings["ping"] = "ping";
+$a->strings["pinged"] = "pinget";
+$a->strings["prod"] = "dult";
+$a->strings["prodded"] = "dultet";
+$a->strings["slap"] = "klaske";
+$a->strings["slapped"] = "klasket";
+$a->strings["finger"] = "fingre";
+$a->strings["fingered"] = "fingret";
+$a->strings["rebuff"] = "avslå";
+$a->strings["rebuffed"] = "avslo";
+$a->strings["happy"] = "glad";
+$a->strings["sad"] = "trist";
+$a->strings["mellow"] = "dempet";
+$a->strings["tired"] = "trøtt";
+$a->strings["perky"] = "oppkvikket";
+$a->strings["angry"] = "sint";
+$a->strings["stupified"] = "tanketom";
+$a->strings["puzzled"] = "forundret";
+$a->strings["interested"] = "interessert";
+$a->strings["bitter"] = "bitter";
+$a->strings["cheerful"] = "munter";
+$a->strings["alive"] = "livlig";
+$a->strings["annoyed"] = "irritert";
+$a->strings["anxious"] = "nervøs";
+$a->strings["cranky"] = "grinete";
+$a->strings["disturbed"] = "forstyrret";
+$a->strings["frustrated"] = "frustrert";
+$a->strings["motivated"] = "motivert";
+$a->strings["relaxed"] = "avslappet";
+$a->strings["surprised"] = "overrasket";
+$a->strings["Monday"] = "mandag";
+$a->strings["Tuesday"] = "tirsdag";
+$a->strings["Wednesday"] = "onsdag";
+$a->strings["Thursday"] = "torsdag";
+$a->strings["Friday"] = "fredag";
+$a->strings["Saturday"] = "lørdag";
+$a->strings["Sunday"] = "søndag";
+$a->strings["January"] = "januar";
+$a->strings["February"] = "februar";
+$a->strings["March"] = "mars";
+$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"] = "desember";
+$a->strings["View Video"] = "Vis video";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Klikk for å åpne/lukke";
+$a->strings["link to source"] = "lenke til kilde";
+$a->strings["Select an alternate language"] = "Velg et annet språk";
+$a->strings["event"] = "hendelse";
+$a->strings["activity"] = "aktivitet";
+$a->strings["comment"] = array(
+       0 => "kommentar",
+       1 => "kommentarer",
+);
+$a->strings["post"] = "innlegg";
+$a->strings["Item filed"] = "Element arkivert";
+$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."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn.";
+$a->strings["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter";
+$a->strings["Everybody"] = "Alle";
+$a->strings["edit"] = "endre";
+$a->strings["Groups"] = "Grupper";
+$a->strings["Edit group"] = "Endre gruppe";
+$a->strings["Create a new group"] = "Lag en ny gruppe";
+$a->strings["Contacts not in any group"] = "Kontakter som ikke er i noen gruppe";
+$a->strings["add"] = "legg til";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s dyttet %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s";
+$a->strings["post/item"] = "innlegg/element";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merket %2\$s's %3\$s som en favoritt";
+$a->strings["Select"] = "Velg";
+$a->strings["Delete"] = "Slett";
+$a->strings["View %s's profile @ %s"] = "Besøk %ss profil [%s]";
+$a->strings["Categories:"] = "Kategorier:";
+$a->strings["Filed under:"] = "Lagret i:";
+$a->strings["%s from %s"] = "%s fra %s";
+$a->strings["View in context"] = "Vis i sammenheng";
+$a->strings["Please wait"] = "Vennligst vent";
+$a->strings["remove"] = "slett";
+$a->strings["Delete Selected Items"] = "Slette valgte elementer";
+$a->strings["Follow Thread"] = "Følg tråd";
+$a->strings["%s likes this."] = "%s liker dette.";
+$a->strings["%s doesn't like this."] = "%s liker ikke dette.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d personer</span> liker dette";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d personer</span> liker ikke dette";
+$a->strings["and"] = "og";
+$a->strings[", and %d other people"] = ", og %d andre personer";
+$a->strings["%s like this."] = "%s liker dette.";
+$a->strings["%s don't like this."] = "%s liker ikke dette.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Synlig for <strong>alle</strong>";
+$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
+$a->strings["Please enter a video link/URL:"] = "Vennligst skriv inn en videolenke/-URL:";
+$a->strings["Please enter an audio link/URL:"] = "Vennligst skriv inn en lydlenke/-URL:";
+$a->strings["Tag term:"] = "Merkelapp begrep:";
+$a->strings["Save to Folder:"] = "Lagre til mappe:";
+$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?";
+$a->strings["Delete item(s)?"] = "Slett element(er)?";
+$a->strings["Post to Email"] = "Innlegg til e-post";
+$a->strings["Share"] = "Del";
+$a->strings["Upload photo"] = "Last opp bilde";
+$a->strings["upload photo"] = "last opp bilde";
+$a->strings["Attach file"] = "Legg ved fil";
+$a->strings["attach file"] = "legg ved fil";
+$a->strings["Insert web link"] = "Sett inn web-adresse";
+$a->strings["web link"] = "web-adresse";
+$a->strings["Insert video link"] = "Sett inn video-link";
+$a->strings["video link"] = "videolink";
+$a->strings["Insert audio link"] = "Sett inn lydlink";
+$a->strings["audio link"] = "lydlink";
+$a->strings["Set your location"] = "Angi din plassering";
+$a->strings["set location"] = "angi plassering";
+$a->strings["Clear browser location"] = "Fjern nettleserplassering";
+$a->strings["clear location"] = "fjern plassering";
+$a->strings["Set title"] = "Lagre tittel";
+$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)";
+$a->strings["Permission settings"] = "Tillatelser";
+$a->strings["permissions"] = "tillatelser";
+$a->strings["CC: email addresses"] = "Kopi: e-postadresser";
+$a->strings["Public post"] = "Offentlig innlegg";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com";
+$a->strings["Preview"] = "forhåndsvisning";
+$a->strings["Post to Groups"] = "Innlegg til grupper";
+$a->strings["Post to Contacts"] = "Innlegg til kontakter";
+$a->strings["Private post"] = "Privat innlegg";
+$a->strings["Friendica Notification"] = "Friendica varsel";
+$a->strings["Thank You,"] = "Mange takk,";
+$a->strings["%s Administrator"] = "%s administrator";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Ny melding mottatt hos %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sendte deg en ny privat melding hos %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
+$a->strings["a private message"] = "en privat melding";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]%3\$s sin %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s] din %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Kommentar til samtale #%1\$d av %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s kommenterte på et element/en samtale du har fulgt.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare på samtalen.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s skrev et innlegg på veggen til din profil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s skrev et innlegg på veggen til din profil %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrev et innlegg til [url=%2\$s]din vegg[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merket deg";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s merket deg %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merket deg[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s dyttet deg";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s dyttet deg %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]dyttet deg[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merket ditt innlegg";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s merket ditt innlegg %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merket [url=%2\$s]ditt innlegg[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduksjon mottatt";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du mottok en introduksjon fra '%1\$s'  %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du mottok [url=%1\$s]en introduksjon[/url] fra %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Vennligst besøk %s for å godkjenne eller avslå introduksjonen.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Venneforslag mottatt";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du mottok et venneforslag fra '%1\$s'  %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du mottok  [url=%1\$s]et venneforslag[/url] om %2\$s fra %3\$s.";
+$a->strings["Name:"] = "Navn:";
+$a->strings["Photo:"] = "Bilde:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå forslaget.";
+$a->strings["[no subject]"] = "[ikke noe emne]";
 $a->strings["Wall Photos"] = "Veggbilder";
-$a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret.";
-$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"] = "Du kan besøke dem online på %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene.";
-$a->strings["%s posted an update."] = "%s postet en oppdatering.";
-$a->strings["%1\$s is currently %2\$s"] = "";
-$a->strings["Mood"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes.";
-$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart.";
-$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde";
-$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d";
-$a->strings["Upload File:"] = "Last opp fil:";
-$a->strings["Select a profile:"] = "";
-$a->strings["Upload"] = "Last opp";
-$a->strings["skip this step"] = "hopp over dette steget";
-$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
-$a->strings["Crop Image"] = "Beskjær bilde";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning.";
-$a->strings["Done Editing"] = "Behandling ferdig";
-$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp.";
-$a->strings["No profile"] = "Ingen profil";
-$a->strings["Remove My Account"] = "Slett min konto";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes.";
-$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:";
+$a->strings["Nothing new here"] = "Ikke noe nytt her";
+$a->strings["Clear notifications"] = "Fjern varslinger";
+$a->strings["Logout"] = "Logg ut";
+$a->strings["End this session"] = "Avslutt denne økten";
+$a->strings["Status"] = "Status";
+$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler";
+$a->strings["Your profile page"] = "Din profilside";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Your photos"] = "Dine bilder";
+$a->strings["Events"] = "Hendelser";
+$a->strings["Your events"] = "Dine hendelser";
+$a->strings["Personal notes"] = "Personlige notater";
+$a->strings["Your personal photos"] = "Dine personlige bilder";
+$a->strings["Login"] = "Logg inn";
+$a->strings["Sign in"] = "Logg inn";
+$a->strings["Home"] = "Hjem";
+$a->strings["Home Page"] = "Hovedside";
+$a->strings["Register"] = "Registrer";
+$a->strings["Create an account"] = "Lag konto";
+$a->strings["Help"] = "Hjelp";
+$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
+$a->strings["Apps"] = "Programmer";
+$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill";
+$a->strings["Search site content"] = "Søk i nettstedets innhold";
+$a->strings["Community"] = "Fellesskap";
+$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet";
+$a->strings["Directory"] = "Katalog";
+$a->strings["People directory"] = "Personkatalog";
+$a->strings["Network"] = "Nettverk";
+$a->strings["Conversations from your friends"] = "Samtaler fra dine venner";
+$a->strings["Network Reset"] = "Nettverk tilbakestilling";
+$a->strings["Load Network page with no filters"] = "Hent Nettverk-siden uten filter";
+$a->strings["Introductions"] = "Introduksjoner";
+$a->strings["Friend Requests"] = "Venneforespørsler";
+$a->strings["Notifications"] = "Varslinger";
+$a->strings["See all notifications"] = "Se alle varslinger";
+$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
+$a->strings["Messages"] = "Meldinger";
+$a->strings["Private mail"] = "Privat post";
+$a->strings["Inbox"] = "Innboks";
+$a->strings["Outbox"] = "Utboks";
 $a->strings["New Message"] = "Ny melding";
-$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon.";
-$a->strings["Message deleted."] = "Melding slettet.";
-$a->strings["Conversation removed."] = "Samtale slettet.";
-$a->strings["No messages."] = "Ingen meldinger.";
-$a->strings["Unknown sender - %s"] = "";
-$a->strings["You and %s"] = "";
-$a->strings["%s and You"] = "";
-$a->strings["Delete conversation"] = "Slett samtale";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "",
-       1 => "",
+$a->strings["Manage"] = "Behandle";
+$a->strings["Manage other pages"] = "Behandle andre sider";
+$a->strings["Delegations"] = "Delegasjoner";
+$a->strings["Delegate Page Management"] = "Deleger sidebehandling";
+$a->strings["Settings"] = "Innstillinger";
+$a->strings["Account settings"] = "Kontoinnstillinger";
+$a->strings["Profiles"] = "Profiler";
+$a->strings["Manage/Edit Profiles"] = "Behandle/endre profiler";
+$a->strings["Contacts"] = "Kontakter";
+$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter";
+$a->strings["Admin"] = "Administrator";
+$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon";
+$a->strings["Navigation"] = "Navigasjon";
+$a->strings["Site map"] = "Nettstedskart";
+$a->strings["Embedded content"] = "Innebygd innhold";
+$a->strings["Embedding disabled"] = "Innebygging avskrudd";
+$a->strings["Error decoding account file"] = "Feil ved dekoding av kontofil";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?";
+$a->strings["Error! Cannot check nickname"] = "Feil! Kan ikke sjekke kallenavn";
+$a->strings["User '%s' already exists on this server!"] = "Brukeren '%s' finnes allerede på denne tjeneren!";
+$a->strings["User creation error"] = "Feil ved oppretting av bruker";
+$a->strings["User profile creation error"] = "Feil ved opprettelsen av brukerprofil";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d kontakt ikke importert",
+       1 => "%d kontakter ikke importert",
 );
-$a->strings["Message not available."] = "Melding utilgjengelig.";
-$a->strings["Delete message"] = "Slett melding";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "Send svar";
-$a->strings["Friends of %s"] = "Venner av %s";
-$a->strings["No friends to display."] = "Ingen venner å vise.";
-$a->strings["Theme settings updated."] = "";
+$a->strings["Done. You can now login with your username and password"] = "Ferdig. Du kan nå logge inn med ditt brukernavn og passord";
+$a->strings["Welcome "] = "Velkommen";
+$a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde.";
+$a->strings["Welcome back "] = "Velkommen tilbake";
+$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."] = "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending.";
+$a->strings["Profile not found."] = "Fant ikke profilen.";
+$a->strings["Profile deleted."] = "Profil slettet.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Ny profil opprettet.";
+$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for kloning.";
+$a->strings["Profile Name is required."] = "Profilnavn er påkrevet.";
+$a->strings["Marital Status"] = "Ekteskapelig status";
+$a->strings["Romantic Partner"] = "Romantisk partner";
+$a->strings["Likes"] = "Liker";
+$a->strings["Dislikes"] = "Liker ikke";
+$a->strings["Work/Employment"] = "Arbeid/ansatt hos";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politisk ståsted";
+$a->strings["Gender"] = "Kjønn";
+$a->strings["Sexual Preference"] = "Seksuell orientering";
+$a->strings["Homepage"] = "Hjemmeside";
+$a->strings["Interests"] = "Interesser";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Plassering";
+$a->strings["Profile updated."] = "Profil oppdatert.";
+$a->strings[" and "] = "og";
+$a->strings["public profile"] = "offentlig profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s endret %2\$s til &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "- Besøk %1\$s sin %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakten/vennen din fra folk som kan se denne profilen?";
+$a->strings["No"] = "Nei";
+$a->strings["Edit Profile Details"] = "Endre profildetaljer";
+$a->strings["Submit"] = "Lagre";
+$a->strings["Change Profile Photo"] = "Endre profilbilde";
+$a->strings["View this profile"] = "Vis denne profilen";
+$a->strings["Create a new profile using these settings"] = "Opprett en ny profil med disse innstillingene";
+$a->strings["Clone this profile"] = "Klon denne profilen";
+$a->strings["Delete this profile"] = "Slette denne profilen";
+$a->strings["Profile Name:"] = "Profilnavn:";
+$a->strings["Your Full Name:"] = "Ditt fulle navn:";
+$a->strings["Title/Description:"] = "Tittel/Beskrivelse:";
+$a->strings["Your Gender:"] = "Ditt kjønn:";
+$a->strings["Birthday (%s):"] = "Fødselsdag (%s):";
+$a->strings["Street Address:"] = "Gateadresse:";
+$a->strings["Locality/City:"] = "Plassering/by:";
+$a->strings["Postal/Zip Code:"] = "Postnummer:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Region/State:"] = "Region/fylke:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Sivilstand:";
+$a->strings["Who: (if applicable)"] = "Hvem: (hvis gjeldende)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Nordmann, kari@example.com";
+$a->strings["Since [date]:"] = "Fra [dato]:";
+$a->strings["Homepage URL:"] = "Hjemmeside URL:";
+$a->strings["Religious Views:"] = "Religiøst ståsted:";
+$a->strings["Public Keywords:"] = "Offentlige nøkkelord:";
+$a->strings["Private Keywords:"] = "Private nøkkelord:";
+$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Brukes for å foreslå mulige venner, kan ses av andre)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Brukes for å søke i profiler, vises aldri til andre)";
+$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv...";
+$a->strings["Hobbies/Interests"] = "Hobbier/interesser";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk";
+$a->strings["Musical interests"] = "Musikksmak";
+$a->strings["Books, literature"] = "Bøker, litteratur";
+$a->strings["Television"] = "TV";
+$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning";
+$a->strings["Love/romance"] = "Kjærlighet/romanse";
+$a->strings["Work/employment"] = "Arbeid/ansatt hos";
+$a->strings["School/education"] = "Skole/utdanning";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet.";
+$a->strings["Age: "] = "Alder:";
+$a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler";
+$a->strings["Change profile photo"] = "Endre profilbilde";
+$a->strings["Create New Profile"] = "Lag ny profil";
+$a->strings["Profile Image"] = "Profilbilde";
+$a->strings["visible to everybody"] = "synlig for alle";
+$a->strings["Edit visibility"] = "Endre synlighet";
+$a->strings["Permission denied"] = "Tilgang nektet";
+$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator.";
+$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet";
+$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
+$a->strings["Visible To"] = "Synlig for";
+$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)";
+$a->strings["Personal Notes"] = "Personlige notater";
+$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";
+$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset.";
+$a->strings["Item has been removed."] = "Elementet har blitt slettet.";
+$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]";
+$a->strings["Edit contact"] = "Endre kontakt";
+$a->strings["Contacts who are not members of a group"] = "Kontakter som ikke er medlemmer av en gruppe";
+$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn";
+$a->strings["{0} sent you a message"] = "{0} sendte deg en melding";
+$a->strings["{0} requested registration"] = "{0} forespurte om registrering";
+$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg";
+$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg";
+$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg";
+$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s";
+$a->strings["{0} posted"] = "{0} postet et innlegg";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} nevnte deg i et innlegg";
+$a->strings["Theme settings updated."] = "Temainnstillinger oppdatert.";
 $a->strings["Site"] = "Nettsted";
 $a->strings["Users"] = "Brukere";
 $a->strings["Plugins"] = "Tillegg";
-$a->strings["Themes"] = "";
-$a->strings["DB updates"] = "";
+$a->strings["Themes"] = "Tema";
+$a->strings["DB updates"] = "Databaseoppdateringer";
 $a->strings["Logs"] = "Logger";
-$a->strings["Admin"] = "Administrator";
-$a->strings["Plugin Features"] = "";
+$a->strings["Plugin Features"] = "Utvidelse - egenskaper";
 $a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse";
 $a->strings["Normal Account"] = "Vanlig konto";
 $a->strings["Soapbox Account"] = "Talerstol-konto";
 $a->strings["Community/Celebrity Account"] = "Gruppe-/kjendiskonto";
 $a->strings["Automatic Friend Account"] = "Automatisk vennekonto";
-$a->strings["Blog Account"] = "";
-$a->strings["Private Forum"] = "";
-$a->strings["Message queues"] = "";
+$a->strings["Blog Account"] = "Bloggkonto";
+$a->strings["Private Forum"] = "Privat forum";
+$a->strings["Message queues"] = "Meldingskøer";
 $a->strings["Administration"] = "Administrasjon";
 $a->strings["Summary"] = "Oppsummering";
 $a->strings["Registered users"] = "Registrerte brukere";
@@ -786,92 +654,119 @@ $a->strings["Pending registrations"] = "Ventende registreringer";
 $a->strings["Version"] = "Versjon";
 $a->strings["Active plugins"] = "Aktive tillegg";
 $a->strings["Site settings updated."] = "Nettstedets innstillinger er oppdatert.";
+$a->strings["No special theme for mobile devices"] = "Ikke eget tema for mobile enheter";
+$a->strings["Never"] = "Aldri";
+$a->strings["Multi user instance"] = "Flerbrukerinstans";
 $a->strings["Closed"] = "Stengt";
 $a->strings["Requires approval"] = "Krever godkjenning";
 $a->strings["Open"] = "Åpen";
-$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["No SSL policy, links will track page SSL state"] = "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand";
+$a->strings["Force all links to use SSL"] = "Tving alle lenker til å bruke SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)";
+$a->strings["Registration"] = "Registrering";
 $a->strings["File upload"] = "Last opp fil";
 $a->strings["Policies"] = "Retningslinjer";
 $a->strings["Advanced"] = "Avansert";
+$a->strings["Performance"] = "Ytelse";
 $a->strings["Site name"] = "Nettstedets navn";
 $a->strings["Banner/Logo"] = "Banner/logo";
 $a->strings["System language"] = "Systemspråk";
 $a->strings["System theme"] = "Systemtema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$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["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Standard tema for systemet - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>";
+$a->strings["Mobile system theme"] = "Mobilt tema til systemet";
+$a->strings["Theme for mobile devices"] = "Tema for mobile enheter";
+$a->strings["SSL link policy"] = "Retningslinjer for SSL og lenker";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Avgjør om genererte lenker skal tvinges til å bruke SSL";
+$a->strings["'Share' element"] = "'Dele' element";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "Aktiverer BBCode-elementet 'dele' for å gjenta elementer.";
+$a->strings["Hide help entry from navigation menu"] = "Skjul punktet om hjelp fra navigasjonsmenyen";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte.";
+$a->strings["Single user instance"] = "Enkeltbrukerinstans";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren";
 $a->strings["Maximum image size"] = "Maksimum bildestørrelse";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Maximum image length"] = "";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
-$a->strings["JPEG image quality"] = "";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense.";
+$a->strings["Maximum image length"] = "Maksimal bildelenge";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense.";
+$a->strings["JPEG image quality"] = "JPEG-bildekvalitet";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet.";
 $a->strings["Register policy"] = "Registrer retningslinjer";
-$a->strings["Maximum Daily Registrations"] = "";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "";
+$a->strings["Maximum Daily Registrations"] = "Maksimalt antall daglige registreringer";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt.";
 $a->strings["Register text"] = "Registrer tekst";
-$a->strings["Will be displayed prominently on the registration page."] = "";
-$a->strings["Accounts abandoned after x days"] = "";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+$a->strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden.";
+$a->strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense.";
 $a->strings["Allowed friend domains"] = "Tillate vennedomener";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener.";
 $a->strings["Allowed email domains"] = "Tillate e-postdomener";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener.";
 $a->strings["Block public"] = "Utesteng publikum";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn.";
 $a->strings["Force publish"] = "Tving publisering";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen.";
 $a->strings["Global directory update URL"] = "URL for oppdatering av Global-katalog";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "";
-$a->strings["Allow infinite level threading for items on this site."] = "";
-$a->strings["Private posts by default for new users"] = "";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet.";
+$a->strings["Allow threaded items"] = "Tillat en tråd av elementer ";
+$a->strings["Allow infinite level threading for items on this site."] = "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet.";
+$a->strings["Private posts by default for new users"] = "Private meldinger som standard for nye brukere";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig.";
+$a->strings["Don't include post content in email notifications"] = "Ikke inkluder innholdet i en melding i epostvarsler";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer.";
+$a->strings["Don't embed private images in posts"] = "Ikke innebygg private bilder i innlegg";
+$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."] = "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund.";
 $a->strings["Block multiple registrations"] = "Blokker flere registreringer";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider.";
 $a->strings["OpenID support"] = "OpenID-støtte";
-$a->strings["OpenID support for registration and logins."] = "";
+$a->strings["OpenID support for registration and logins."] = "OpenID-støtte for registrering og innlogging.";
 $a->strings["Fullname check"] = "Sjekk fullt navn";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam).";
 $a->strings["UTF-8 Regular expressions"] = "UTF-8 regulære uttrykk";
-$a->strings["Use PHP UTF8 regular expressions"] = "";
+$a->strings["Use PHP UTF8 regular expressions"] = "Bruk PHP UTF8 regulære uttrykk";
 $a->strings["Show Community Page"] = "Vis Felleskap-side";
-$a->strings["Display a Community page showing all recent public postings on this site."] = "";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet.";
 $a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte";
-$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["Enable Diaspora support"] = "";
-$a->strings["Provide built-in Diaspora network compatibility."] = "";
-$a->strings["Only allow Friendica contacts"] = "";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
+$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."] = "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til.";
+$a->strings["OStatus conversation completion interval"] = "OStatus intervall for samtalefullførelse";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave.";
+$a->strings["Enable Diaspora support"] = "Aktiver Diaspora-støtte";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Tilby innebygget kompatibilitet med Diaspora-nettverket.";
+$a->strings["Only allow Friendica contacts"] = "Bare tillat Friendica-kontakter";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert.";
 $a->strings["Verify SSL"] = "Bekreft SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater.";
 $a->strings["Proxy user"] = "Brukernavn til mellomtjener";
 $a->strings["Proxy URL"] = "Mellomtjener URL";
 $a->strings["Network timeout"] = "Tidsavbrudd for nettverk";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Delivery interval"] = "";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
-$a->strings["Poll interval"] = "";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Update has been marked successful"] = "";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt).";
+$a->strings["Delivery interval"] = "Leveringsintervall";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere.";
+$a->strings["Poll interval"] = "Spørreintervall";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall.";
+$a->strings["Maximum Load Average"] = "Maksimal snittlast";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50.";
+$a->strings["Use MySQL full text engine"] = "Bruk MySQL fulltekstmotor";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn.";
+$a->strings["Path to item cache"] = "Sti til mellomlager for elementer";
+$a->strings["Cache duration in seconds"] = "Mellomlagringens varighet i sekunder";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn).";
+$a->strings["Path for lock file"] = "Sti til fillås";
+$a->strings["Temp path"] = "Temp-sti";
+$a->strings["Base path to installation"] = "Sti til installasjonsbasen";
+$a->strings["Update has been marked successful"] = "Oppdatering har blitt markert som vellykket";
 $a->strings["Executing %s failed. Check system logs."] = "Utføring av %s mislyktes. Sjekk systemlogger.";
-$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["Update %s was successfully applied."] = "Oppdatering %s ble iverksatt på en vellykket måte.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket.";
+$a->strings["Update function %s could not be found."] = "Oppdateringsfunksjon %s ble ikke funnet.";
 $a->strings["No failed updates."] = "Ingen mislykkede oppdateringer.";
 $a->strings["Failed Updates"] = "Mislykkede oppdateringer";
-$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["This does not include updates prior to 1139, which did not return a status."] = "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status.";
+$a->strings["Mark success (if update was manually applied)"] = "Marker vellykket (hvis oppdatering ble iverksatt manuelt)";
+$a->strings["Attempt to execute this update step automatically"] = "Forsøk å utføre dette oppdateringspunktet automatisk";
 $a->strings["%s user blocked/unblocked"] = array(
-       0 => "",
-       1 => "",
+       0 => "%s bruker blokkert/ikke blokkert",
+       1 => "%s brukere blokkert/ikke blokkert",
 );
 $a->strings["%s user deleted"] = array(
        0 => "%s bruker slettet",
@@ -883,10 +778,14 @@ $a->strings["User '%s' blocked"] = "Brukeren '%s' er blokkert";
 $a->strings["select all"] = "velg alle";
 $a->strings["User registrations waiting for confirm"] = "Brukerregistreringer venter på bekreftelse";
 $a->strings["Request date"] = "Forespørselsdato";
-$a->strings["Email"] = "E-post";
+$a->strings["Name"] = "Navn";
 $a->strings["No registrations."] = "Ingen registreringer.";
+$a->strings["Approve"] = "Godkjenn";
 $a->strings["Deny"] = "Nekt";
-$a->strings["Site admin"] = "";
+$a->strings["Block"] = "Blokker";
+$a->strings["Unblock"] = "Ikke blokker";
+$a->strings["Site admin"] = "Nettstedets administrator";
+$a->strings["Account expired"] = "Konto utgått";
 $a->strings["Register date"] = "Registreringsdato";
 $a->strings["Last login"] = "Siste innlogging";
 $a->strings["Last item"] = "Siste element";
@@ -898,177 +797,322 @@ $a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert.";
 $a->strings["Disable"] = "Skru av";
 $a->strings["Enable"] = "Aktiver";
 $a->strings["Toggle"] = "Veksle";
-$a->strings["Author: "] = "";
-$a->strings["Maintainer: "] = "";
-$a->strings["No themes found."] = "";
-$a->strings["Screenshot"] = "";
-$a->strings["[Experimental]"] = "";
-$a->strings["[Unsupported]"] = "";
+$a->strings["Author: "] = "Forfatter:";
+$a->strings["Maintainer: "] = "Vedlikeholder:";
+$a->strings["No themes found."] = "Ingen temaer funnet.";
+$a->strings["Screenshot"] = "Skjermbilde";
+$a->strings["[Experimental]"] = "[Eksperimentell]";
+$a->strings["[Unsupported]"] = "[Ikke støttet]";
 $a->strings["Log settings updated."] = "Logginnstillinger er oppdatert.";
 $a->strings["Clear"] = "Tøm";
-$a->strings["Debugging"] = "Feilsøking";
+$a->strings["Enable Debugging"] = "Aktiver feilsøking";
 $a->strings["Log file"] = "Loggfil";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas.";
 $a->strings["Log level"] = "Loggnivå";
+$a->strings["Update now"] = "Oppdater nå";
 $a->strings["Close"] = "Lukk";
 $a->strings["FTP Host"] = "FTP-tjener";
 $a->strings["FTP Path"] = "FTP-sti";
 $a->strings["FTP User"] = "FTP-bruker";
 $a->strings["FTP Password"] = "FTP-passord";
-$a->strings["Requested profile is not available."] = "";
-$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset.";
-$a->strings["Tips for New Members"] = "Tips til nye medlemmer";
-$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn";
-$a->strings["{0} sent you a message"] = "{0} sendte deg en melding";
-$a->strings["{0} requested registration"] = "{0} forespurte om registrering";
-$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg";
-$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg";
-$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg";
-$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s";
-$a->strings["{0} posted"] = "{0} postet et innlegg";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s";
-$a->strings["{0} mentioned you in a post"] = "";
-$a->strings["Contacts who are not members of a group"] = "";
-$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."] = "Innlogging mislyktes.";
-$a->strings["Contact added"] = "";
-$a->strings["Common Friends"] = "";
-$a->strings["No contacts in common."] = "";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["link"] = "";
-$a->strings["Item has been removed."] = "Elementet har blitt slettet.";
+$a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding.";
+$a->strings["Empty post discarded."] = "Tom melding forkastet.";
+$a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Denne meldingen ble sendt til deg av %s, et medlem av det sosiale nettverket Friendica.";
+$a->strings["You may visit them online at %s"] = "Du kan besøke dem online på %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene.";
+$a->strings["%s posted an update."] = "%s postet en oppdatering.";
+$a->strings["Friends of %s"] = "Venner av %s";
+$a->strings["No friends to display."] = "Ingen venner å vise.";
+$a->strings["Remove term"] = "Fjern uttrykk";
+$a->strings["No results."] = "Fant ikke noe.";
+$a->strings["Authorize application connection"] = "Tillat forbindelse til program";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:";
+$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?";
+$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes.";
+$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
+$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\".";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene.";
+$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):";
+$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?";
+$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon.";
+$a->strings["Your invitation ID: "] = "Din invitasjons-ID:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):";
+$a->strings["Your Email Address: "] = "Din e-postadresse:";
+$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>'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@\$sitename</strong>\".";
+$a->strings["Choose a nickname: "] = "Velg et kallenavn:";
+$a->strings["Account approved."] = "Konto godkjent.";
+$a->strings["Registration revoked for %s"] = "Registreringen til  %s er trukket tilbake";
+$a->strings["Please login."] = "Vennligst logg inn.";
+$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
+$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
+$a->strings["Remove My Account"] = "Slett min konto";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes.";
+$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:";
+$a->strings["Source (bbcode) text:"] = "BBcode kildetekst:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Diaspora kildetekst å konvertere til BBcode:";
+$a->strings["Source input: "] = "Kilde-input:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (rå 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): "] = "Diaspora-formatert kilde-input:";
+$a->strings["diaspora2bb: "] = "diaspora2bb:";
+$a->strings["Common Friends"] = "Felles venner";
+$a->strings["No contacts in common."] = "Ingen kontakter felles.";
+$a->strings["You must be logged in to use addons. "] = "Du må være innlogget for å bruke tillegg.";
 $a->strings["Applications"] = "Programmer";
 $a->strings["No installed applications."] = "Ingen installerte programmer.";
-$a->strings["Search"] = "Søk";
-$a->strings["Profile not found."] = "Fant ikke profilen.";
-$a->strings["Profile Name is required."] = "Profilnavn er påkrevet.";
-$a->strings["Marital Status"] = "";
-$a->strings["Romantic Partner"] = "";
-$a->strings["Likes"] = "";
-$a->strings["Dislikes"] = "";
-$a->strings["Work/Employment"] = "";
-$a->strings["Religion"] = "";
-$a->strings["Political Views"] = "";
-$a->strings["Gender"] = "";
-$a->strings["Sexual Preference"] = "";
-$a->strings["Homepage"] = "";
-$a->strings["Interests"] = "";
-$a->strings["Address"] = "";
-$a->strings["Location"] = "";
-$a->strings["Profile updated."] = "Profil oppdatert.";
-$a->strings[" and "] = "";
-$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["Profile deleted."] = "Profil slettet.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Ny profil opprettet.";
-$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for kloning.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakten/vennen din fra folk som kan se denne profilen?";
-$a->strings["Edit Profile Details"] = "Endre profildetaljer";
-$a->strings["View this profile"] = "Vis denne profilen";
-$a->strings["Create a new profile using these settings"] = "Opprett en ny profil med disse innstillingene";
-$a->strings["Clone this profile"] = "Klon denne profilen";
-$a->strings["Delete this profile"] = "Slette denne profilen";
-$a->strings["Profile Name:"] = "Profilnavn:";
-$a->strings["Your Full Name:"] = "Ditt fulle navn:";
-$a->strings["Title/Description:"] = "Tittel/Beskrivelse:";
-$a->strings["Your Gender:"] = "Ditt kjønn:";
-$a->strings["Birthday (%s):"] = "Fødselsdag (%s):";
-$a->strings["Street Address:"] = "Gateadresse:";
-$a->strings["Locality/City:"] = "Plassering/by:";
-$a->strings["Postal/Zip Code:"] = "Postnummer:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/fylke:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Sivilstand:";
-$a->strings["Who: (if applicable)"] = "Hvem: (hvis gjeldende)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Nordmann, kari@example.com";
-$a->strings["Since [date]:"] = "";
-$a->strings["Sexual Preference:"] = "Seksuell orientering:";
-$a->strings["Homepage URL:"] = "Hjemmeside URL:";
-$a->strings["Hometown:"] = "";
-$a->strings["Political Views:"] = "Politisk ståsted:";
-$a->strings["Religious Views:"] = "Religiøst ståsted:";
-$a->strings["Public Keywords:"] = "Offentlige nøkkelord:";
-$a->strings["Private Keywords:"] = "Private nøkkelord:";
-$a->strings["Likes:"] = "";
-$a->strings["Dislikes:"] = "";
-$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Brukes for å foreslå mulige venner, kan ses av andre)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Brukes for å søke i profiler, vises aldri til andre)";
-$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv...";
-$a->strings["Hobbies/Interests"] = "Hobbier/interesser";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk";
-$a->strings["Musical interests"] = "Musikksmak";
-$a->strings["Books, literature"] = "Bøker, litteratur";
-$a->strings["Television"] = "TV";
-$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning";
-$a->strings["Love/romance"] = "Kjærlighet/romanse";
-$a->strings["Work/employment"] = "Arbeid/ansatt hos";
-$a->strings["School/education"] = "Skole/utdanning";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet.";
-$a->strings["Age: "] = "Alder:";
-$a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler";
-$a->strings["Change profile photo"] = "Endre profilbilde";
-$a->strings["Create New Profile"] = "Lag ny profil";
-$a->strings["Profile Image"] = "Profilbilde";
-$a->strings["visible to everybody"] = "synlig for alle";
-$a->strings["Edit visibility"] = "Endre synlighet";
-$a->strings["Save to Folder:"] = "";
-$a->strings["- select -"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s";
-$a->strings["No potential page delegates located."] = "";
-$a->strings["Delegate Page Management"] = "Deleger sidebehandling";
+$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktposten.";
+$a->strings["Could not locate selected profile."] = "Kunne ikke lokalisere valgt profil.";
+$a->strings["Contact updated."] = "Kontakt oppdatert.";
+$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten.";
+$a->strings["Contact has been blocked"] = "Kontakten er blokkert";
+$a->strings["Contact has been unblocked"] = "Kontakten er ikke blokkert lenger";
+$a->strings["Contact has been ignored"] = "Kontakten er ignorert";
+$a->strings["Contact has been unignored"] = "Kontakten er ikke ignorert lenger";
+$a->strings["Contact has been archived"] = "Kontakt har blitt arkivert";
+$a->strings["Contact has been unarchived"] = "Kontakt har blitt hentet tilbake fra arkivet";
+$a->strings["Do you really want to delete this contact?"] = "Ønsker du virkelig å slette denne kontakten?";
+$a->strings["Contact has been removed."] = "Kontakten er fjernet.";
+$a->strings["You are mutual friends with %s"] = "Du er gjensidig venn med %s";
+$a->strings["You are sharing with %s"] = "Du deler med %s";
+$a->strings["%s is sharing with you"] = "%s deler med deg";
+$a->strings["Private communications are not available for this contact."] = "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten.";
+$a->strings["(Update was successful)"] = "(Oppdatering vellykket)";
+$a->strings["(Update was not successful)"] = "(Oppdatering mislykket)";
+$a->strings["Suggest friends"] = "Foreslå venner";
+$a->strings["Network type: %s"] = "Nettverkstype: %s";
+$a->strings["View all contacts"] = "Vis alle kontakter";
+$a->strings["Toggle Blocked status"] = "Veksle blokkeringsstatus";
+$a->strings["Unignore"] = "Fjern ignorering";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["Toggle Ignored status"] = "Veksle ingnorertstatus";
+$a->strings["Unarchive"] = "Hent ut av arkivet";
+$a->strings["Archive"] = "Arkiver";
+$a->strings["Toggle Archive status"] = "Veksle arkivertstatus";
+$a->strings["Repair"] = "Reparer";
+$a->strings["Advanced Contact Settings"] = "Avanserte kontaktinnstillinger";
+$a->strings["Communications lost with this contact!"] = "Kommunikasjon tapt med denne kontakten!";
+$a->strings["Contact Editor"] = "Endre kontakt";
+$a->strings["Profile Visibility"] = "Profilens synlighet";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte.";
+$a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater";
+$a->strings["Edit contact notes"] = "Endre kontaktnotater";
+$a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt";
+$a->strings["Ignore contact"] = "Ignorer kontakt";
+$a->strings["Repair URL settings"] = "Reparer URL-innstillinger";
+$a->strings["View conversations"] = "Vis samtaler";
+$a->strings["Delete contact"] = "Slett kontakt";
+$a->strings["Last update:"] = "Siste oppdatering:";
+$a->strings["Update public posts"] = "Oppdater offentlige innlegg";
+$a->strings["Currently blocked"] = "Blokkert nå";
+$a->strings["Currently ignored"] = "Ignorert nå";
+$a->strings["Currently archived"] = "For øyeblikket arkivert";
+$a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Svar/liker til dine offentlige innlegg <strong>kan</strong> fortsatt være synlige";
+$a->strings["Suggestions"] = "Forslag";
+$a->strings["Suggest potential friends"] = "Foreslå mulige venner";
+$a->strings["All Contacts"] = "Alle kontakter";
+$a->strings["Show all contacts"] = "Vis alle kontakter";
+$a->strings["Unblocked"] = "Ikke blokkert";
+$a->strings["Only show unblocked contacts"] = "Bare vis ikke blokkerte kontakter";
+$a->strings["Blocked"] = "Blokkert";
+$a->strings["Only show blocked contacts"] = "Bare vis blokkerte kontakter";
+$a->strings["Ignored"] = "Ignorert";
+$a->strings["Only show ignored contacts"] = "Bare vis ignorerte kontakter";
+$a->strings["Archived"] = "Arkivert";
+$a->strings["Only show archived contacts"] = "Bare vis arkiverte kontakter";
+$a->strings["Hidden"] = "Skjult";
+$a->strings["Only show hidden contacts"] = "Bare vis skjulte kontakter";
+$a->strings["Mutual Friendship"] = "Gjensidig vennskap";
+$a->strings["is a fan of yours"] = "er en tilhenger av deg";
+$a->strings["you are a fan of"] = "du er en tilhenger av";
+$a->strings["Search your contacts"] = "Søk i dine kontakter";
+$a->strings["Finding: "] = "Fant:";
+$a->strings["everybody"] = "alle";
+$a->strings["Additional features"] = "Tilleggsfunksjoner";
+$a->strings["Display settings"] = "Visningsinnstillinger";
+$a->strings["Connector settings"] = "Koblingsinnstillinger";
+$a->strings["Plugin settings"] = "Tilleggsinnstillinger";
+$a->strings["Connected apps"] = "Tilkoblede programmer";
+$a->strings["Export personal data"] = "Eksporter personlige data";
+$a->strings["Remove account"] = "Fjern konto";
+$a->strings["Missing some important data!"] = "Mangler noen viktige data!";
+$a->strings["Update"] = "Oppdater";
+$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene.";
+$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert.";
+$a->strings["Features updated"] = "Funksjoner oppdatert";
+$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret.";
+$a->strings["Wrong password."] = "Feil passord.";
+$a->strings["Password changed."] = "Passord endret.";
+$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen.";
+$a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn.";
+$a->strings[" Name too short."] = "Navnet er for kort.";
+$a->strings["Wrong Password"] = "Feil passord";
+$a->strings[" Not valid email."] = "Ugyldig e-postadresse.";
+$a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privat forum har ingen personverntillatelser og ingen standard personverngruppe.";
+$a->strings["Settings updated."] = "Innstillinger oppdatert.";
+$a->strings["Add application"] = "Legg til program";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Omdiriger";
+$a->strings["Icon url"] = "Ikon URL";
+$a->strings["You can't edit this application."] = "Du kan ikke redigere dette programmet.";
+$a->strings["Connected Apps"] = "Tilkoblede programmer";
+$a->strings["Edit"] = "Endre";
+$a->strings["Client key starts with"] = "Klientnøkkelen starter med";
+$a->strings["No name"] = "Ingen navn";
+$a->strings["Remove authorization"] = "Fjern tillatelse";
+$a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert";
+$a->strings["Plugin Settings"] = "Tilleggsinnstillinger";
+$a->strings["Off"] = "Av";
+$a->strings["On"] = "På";
+$a->strings["Additional Features"] = "Tilleggsfunksjoner";
+$a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s";
+$a->strings["enabled"] = "aktivert";
+$a->strings["disabled"] = "avskrudd";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet.";
+$a->strings["Connector Settings"] = "Koblingsinnstillinger";
+$a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes.";
+$a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:";
+$a->strings["IMAP server name:"] = "IMAP-tjeners navn:";
+$a->strings["IMAP port:"] = "IMAP port:";
+$a->strings["Security:"] = "Sikkerhet:";
+$a->strings["None"] = "Ingen";
+$a->strings["Email login name:"] = "E-post brukernavn:";
+$a->strings["Email password:"] = "E-post passord:";
+$a->strings["Reply-to address:"] = "Svar-til-adresse:";
+$a->strings["Send public posts to all email contacts:"] = "Send offentlige meldinger til alle e-postkontakter:";
+$a->strings["Action after import:"] = "Handling etter import:";
+$a->strings["Mark as seen"] = "Marker som sett";
+$a->strings["Move to folder"] = "Flytt til mappe";
+$a->strings["Move to folder:"] = "Flytt til mappe:";
+$a->strings["Display Settings"] = "Visningsinnstillinger";
+$a->strings["Display Theme:"] = "Vis tema:";
+$a->strings["Mobile Theme:"] = "Mobilt tema:";
+$a->strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekund";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum";
+$a->strings["Number of items to display per page:"] = "Antall elementer som vises per side:";
+$a->strings["Maximum of 100 items"] = "Maksimum 100 elementer";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Antall elementer å vise per side ved visning på mobil enhet:";
+$a->strings["Don't show emoticons"] = "Ikke vis uttrykksikoner";
+$a->strings["Normal Account Page"] = "Vanlig konto-side";
+$a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil";
+$a->strings["Soapbox Page"] = "Talerstol-side";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter";
+$a->strings["Community Forum/Celebrity Account"] = "Fellesskapsforum/Kjendis-side";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter";
+$a->strings["Automatic Friend Page"] = "Automatisk venn-side";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner";
+$a->strings["Private Forum [Experimental]"] = "Privat forum [Eksperimentell]";
+$a->strings["Private forum - approved members only"] = "Privat forum - kun godkjente medlemmer";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen.";
+$a->strings["Publish your default profile in your local site directory?"] = "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?";
+$a->strings["Publish your default profile in the global social directory?"] = "Skal standardprofilen din publiseres i den globale sosiale katalogen?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?";
+$a->strings["Hide your profile details from unknown viewers?"] = "Skjul dine profildetaljer fra ukjente besøkende?";
+$a->strings["Allow friends to post to your profile page?"] = "Tillat venner å poste innlegg på din profilside?";
+$a->strings["Allow friends to tag your posts?"] = "Tillat venner å merke dine innlegg?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?";
+$a->strings["Permit unknown people to send you private mail?"] = "Tillat ukjente personer å sende deg privat post?";
+$a->strings["Profile is <strong>not published</strong>."] = "Profilen er <strong>ikke publisert</strong>.";
+$a->strings["or"] = "eller";
+$a->strings["Your Identity Address is"] = "Din identitetsadresse er";
+$a->strings["Automatically expire posts after this many days:"] = "Innlegg utgår automatisk etter så mange dager:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tomme innlegg utgår ikke. Utgåtte innlegg slettes.";
+$a->strings["Advanced expiration settings"] = "Avanserte innstillinger for å utgå";
+$a->strings["Advanced Expiration"] = "Avansert utgå";
+$a->strings["Expire posts:"] = "Innlegg utgår:";
+$a->strings["Expire personal notes:"] = "Personlige notater utgår:";
+$a->strings["Expire starred posts:"] = "Innlegg med stjerne utgår:";
+$a->strings["Expire photos:"] = "Bilder utgår:";
+$a->strings["Only expire posts by others:"] = "Kun innlegg fra andre utgår:";
+$a->strings["Account Settings"] = "Kontoinnstillinger";
+$a->strings["Password Settings"] = "Passordinnstillinger";
+$a->strings["New Password:"] = "Nytt passord:";
+$a->strings["Confirm:"] = "Bekreft:";
+$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå tomme hvis du ikke skal bytte";
+$a->strings["Current Password:"] = "Gjeldende passord:";
+$a->strings["Your current password to confirm the changes"] = "Ditt gjeldende passord for å bekrefte endringene";
+$a->strings["Password:"] = "Passord:";
+$a->strings["Basic Settings"] = "Grunninnstillinger";
+$a->strings["Email Address:"] = "E-postadresse:";
+$a->strings["Your Timezone:"] = "Din tidssone:";
+$a->strings["Default Post Location:"] = "Standard oppholdssted når du poster:";
+$a->strings["Use Browser Location:"] = "Bruk nettleserens oppholdssted:";
+$a->strings["Security and Privacy Settings"] = "Sikkerhet og privatlivsinnstillinger";
+$a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:";
+$a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)";
+$a->strings["Default Post Permissions"] = "Standardtillatelser ved posting";
+$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)";
+$a->strings["Show to Groups"] = "Vis til grupper";
+$a->strings["Show to Contacts"] = "Vis til kontakter";
+$a->strings["Default Private Post"] = "Standard privat innlegg";
+$a->strings["Default Public Post"] = "Standard offentlig innlegg";
+$a->strings["Default Permissions for New Posts"] = "Standard tillatelser for nye innlegg";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:";
+$a->strings["Notification Settings"] = "Beskjedinnstillinger";
+$a->strings["By default post a status message when:"] = "Standard å legge inn en statusmelding når:";
+$a->strings["accepting a friend request"] = "aksepterer en venneforespørsel";
+$a->strings["joining a forum/community"] = "blir med i et forum/fellesskap";
+$a->strings["making an <em>interesting</em> profile change"] = "gjør en <em>interessant</em> profilendring";
+$a->strings["Send a notification email when:"] = "Send en e-post med beskjed når:";
+$a->strings["You receive an introduction"] = "Du mottar en introduksjon";
+$a->strings["Your introductions are confirmed"] = "Dine introduksjoner er bekreftet";
+$a->strings["Someone writes on your profile wall"] = "Noen skriver på veggen til profilen din";
+$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgingskommentar";
+$a->strings["You receive a private message"] = "Du mottar en privat melding";
+$a->strings["You receive a friend suggestion"] = "Du mottar et venneforslag";
+$a->strings["You are tagged in a post"] = "Du er merket i et innlegg";
+$a->strings["You are poked/prodded/etc. in a post"] = "Du er dyttet/dultet/etc i et innlegg";
+$a->strings["Advanced Account/Page Type Settings"] = "Avanserte konto-/sidetype-innstillinger";
+$a->strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner";
+$a->strings["link"] = "lenke";
+$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk.";
+$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes.";
+$a->strings["Contact not found."] = "Kontakt ikke funnet.";
+$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden.";
+$a->strings["Return to contact editor"] = "Gå tilbake til å endre kontakt";
+$a->strings["Account Nickname"] = "Konto Kallenavn";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn";
+$a->strings["Account URL"] = "Konto URL";
+$a->strings["Friend Request URL"] = "Venneforespørsel URL";
+$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL";
+$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed";
+$a->strings["Poll/Feed URL"] = "Poll/Feed URL";
+$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en";
+$a->strings["No potential page delegates located."] = "Fant ingen potensielle sidedelegater.";
 $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."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på.";
 $a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere";
-$a->strings["Existing Page Delegates"] = "";
-$a->strings["Potential Delegates"] = "";
-$a->strings["Add"] = "";
-$a->strings["No entries."] = "";
-$a->strings["Source (bbcode) text:"] = "";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
-$a->strings["Source input: "] = "";
-$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["Friend Suggestions"] = "Venneforslag";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Ignore/Hide"] = "Ignorér/Skjul";
-$a->strings["Global Directory"] = "Global katalog";
-$a->strings["Find on this site"] = "";
-$a->strings["Site Directory"] = "Stedets katalog";
-$a->strings["Gender: "] = "Kjønn:";
-$a->strings["Gender:"] = "Kjønn:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Hjemmeside:";
-$a->strings["About:"] = "Om:";
-$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte).";
-$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse.";
-$a->strings["Please join us on Friendica"] = "";
-$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen.";
-$a->strings["%d message sent."] = array(
-       0 => "one: %d melding sendt.",
-       1 => "other: %d meldinger sendt.",
-);
-$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner";
-$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."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer.";
-$a->strings["Send invitations"] = "Send invitasjoner";
-$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
-$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"] = "Du må oppgi denne invitasjonskoden: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
+$a->strings["Existing Page Delegates"] = "Eksisterende sidedelegater";
+$a->strings["Potential Delegates"] = "Mulige delegater";
+$a->strings["Remove"] = "Slett";
+$a->strings["Add"] = "Legg til";
+$a->strings["No entries."] = "Ingen oppføringer";
+$a->strings["Poke/Prod"] = "Dytt/dult";
+$a->strings["poke, prod or do other things to somebody"] = "dytt, dult eller gjør andre ting med noen";
+$a->strings["Recipient"] = "Mottaker";
+$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren";
+$a->strings["Make this post private"] = "Gjør dette innlegget privat";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent.";
 $a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet.";
 $a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:";
 $a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. ";
@@ -1076,1016 +1120,532 @@ $a->strings["Remote site reported: "] = "Det andre stedet rapporterte:";
 $a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen.";
 $a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake.";
 $a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s";
 $a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'";
 $a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt.";
 $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss.";
 $a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted.";
-$a->strings["Site public key not available in contact record for URL %s."] = "";
+$a->strings["Site public key not available in contact record for URL %s."] = "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s.";
 $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen.";
 $a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system.";
 $a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system.";
 $a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s";
-$a->strings["%1\$s has joined %2\$s"] = "";
-$a->strings["Google+ Import Settings"] = "";
-$a->strings["Enable Google+ Import"] = "";
-$a->strings["Google Account ID"] = "";
-$a->strings["Google+ Import Settings saved."] = "";
-$a->strings["Facebook disabled"] = "Facebook avskrudd";
-$a->strings["Updating contacts"] = "Oppdaterer kontakter";
-$a->strings["Facebook API key is missing."] = "Facebook API-nøkkel mangler.";
-$a->strings["Facebook Connect"] = "Facebook-kobling";
-$a->strings["Install Facebook connector for this account."] = "Legg til Facebook-kobling for denne kontoen.";
-$a->strings["Remove Facebook connector"] = "Fjern Facebook-kobling";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
-$a->strings["Post to Facebook by default"] = "Post til Facebook som standard";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
-$a->strings["Do not import your Facebook profile wall conversations"] = "";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
-$a->strings["Comma separated applications to ignore"] = "";
-$a->strings["Problems with Facebook Real-Time Updates"] = "";
-$a->strings["Facebook Connector Settings"] = "Innstillinger for Facebook-kobling";
-$a->strings["Facebook API Key"] = "";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
-$a->strings["The given API Key seems to work correctly."] = "";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
-$a->strings["App-ID / API-Key"] = "";
-$a->strings["Application secret"] = "";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
-$a->strings["Real-Time Updates"] = "";
-$a->strings["Real-Time Updates are activated."] = "";
-$a->strings["Deactivate Real-Time Updates"] = "";
-$a->strings["Real-Time Updates not activated."] = "";
-$a->strings["Activate Real-Time Updates"] = "";
-$a->strings["The new values have been saved."] = "";
-$a->strings["Post to Facebook"] = "Post til Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk.";
-$a->strings["View on Friendica"] = "";
-$a->strings["Facebook post failed. Queued for retry."] = "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen.";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
-$a->strings["Facebook connection became invalid"] = "";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
-$a->strings["StatusNet AutoFollow settings updated."] = "";
-$a->strings["StatusNet AutoFollow Settings"] = "";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Lifetime of the cache (in hours)"] = "";
-$a->strings["Cache Statistics"] = "";
-$a->strings["Number of items"] = "";
-$a->strings["Size of the cache"] = "";
-$a->strings["Delete the whole cache"] = "";
-$a->strings["Facebook Post disabled"] = "";
-$a->strings["Facebook Post"] = "";
-$a->strings["Install Facebook Post connector for this account."] = "";
-$a->strings["Remove Facebook Post connector"] = "";
-$a->strings["Facebook Post Settings"] = "";
-$a->strings["%d person likes this"] = array(
-       0 => "",
-       1 => "",
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s har blitt med %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s hilser %2\$s";
+$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn.";
+$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted",
+       1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted",
 );
-$a->strings["%d person doesn't like this"] = array(
-       0 => "",
-       1 => "",
+$a->strings["Introduction complete."] = "Introduksjon ferdig.";
+$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil.";
+$a->strings["Profile unavailable."] = "Profil utilgjengelig.";
+$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag.";
+$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer.";
+$a->strings["Invalid locator"] = "Ugyldig stedsangivelse";
+$a->strings["Invalid email address."] = "Ugyldig e-postadresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes.";
+$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet.";
+$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her.";
+$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s.";
+$a->strings["Invalid profile URL."] = "Ugyldig profil-URL.";
+$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt.";
+$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen.";
+$a->strings["Hide this contact"] = "Skjul denne kontakten";
+$a->strings["Welcome home %s."] = "Velkommen hjem %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s.";
+$a->strings["Confirm"] = "Bekreft";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Koble til som en e-postfølgesvenn</strike> (Kommer snart)";
+$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>."] = "Hvis du ennå ikke er en del av den frie sosiale webben, <a href=\"http://dir.friendica.com/siteinfo\">følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag</a>.";
+$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Vennligst svar på følgende:";
+$a->strings["Does %s know you?"] = "Kjenner %s deg?";
+$a->strings["Add a personal note:"] = "Legg til en personlig melding:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora.";
+$a->strings["Your Identity Address:"] = "Din identitetsadresse:";
+$a->strings["Submit Request"] = "Send forespørsel";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s";
+$a->strings["Global Directory"] = "Global katalog";
+$a->strings["Find on this site"] = "Finn på dette nettstedet";
+$a->strings["Site Directory"] = "Stedets katalog";
+$a->strings["Gender: "] = "Kjønn:";
+$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte).";
+$a->strings["Do you really want to delete this suggestion?"] = "Vil du virkelig slette dette forslaget?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer.";
+$a->strings["Ignore/Hide"] = "Ignorér/Skjul";
+$a->strings["People Search"] = "Personsøk";
+$a->strings["No matches"] = "Ingen treff";
+$a->strings["No videos selected"] = "Ingen videoer er valgt";
+$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
+$a->strings["View Album"] = "Vis album";
+$a->strings["Recent Videos"] = "Nye videoer";
+$a->strings["Upload New Videos"] = "Last opp nye videoer";
+$a->strings["Tag removed"] = "Fjernet tag";
+$a->strings["Remove Item Tag"] = "Fjern tag";
+$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:";
+$a->strings["Item not found"] = "Fant ikke elementet";
+$a->strings["Edit post"] = "Endre innlegg";
+$a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Rediger hendelse";
+$a->strings["Create New Event"] = "Lag ny hendelse";
+$a->strings["Previous"] = "Forrige";
+$a->strings["Next"] = "Neste";
+$a->strings["hour:minute"] = "time:minutt";
+$a->strings["Event details"] = "Hendelsesdetaljer";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet er  %s %s. Startdato og tittel er påkrevet.";
+$a->strings["Event Starts:"] = "Hendelsen  starter:";
+$a->strings["Required"] = "Påkrevet";
+$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant";
+$a->strings["Event Finishes:"] = "Hendelsen slutter:";
+$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone";
+$a->strings["Description:"] = "Beskrivelse:";
+$a->strings["Title:"] = "Tittel:";
+$a->strings["Share this event"] = "Del denne hendelsen";
+$a->strings["Files"] = "Filer";
+$a->strings["Export account"] = "Eksporter konto";
+$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."] = "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener.";
+$a->strings["Export all"] = "Eksporter alt";
+$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)"] = "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)";
+$a->strings["- select -"] = "- velg -";
+$a->strings["Import"] = "Importer";
+$a->strings["Move account"] = "Flytt konto";
+$a->strings["You can import an account from another Friendica server."] = "Du kan importere en konto fra en annen Friendica-tjener.";
+$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 må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora";
+$a->strings["Account file"] = "Kontofil";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "For å eksportere din konto, gå til \"Innstillnger -> Eksporter dine personlige data\" og velg \"Eksporter konto\"";
+$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]";
+$a->strings["Contact added"] = "Kontakt lagt til ";
+$a->strings["This is Friendica, version"] = "Dette er Friendica, versjon";
+$a->strings["running at web location"] = "kjører på web-plassering";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Vennligst besøk <a href=\"http://friendica.com\">Friendica.com</a> for å lære mer om Friendica-prosjektet.";
+$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com";
+$a->strings["Installed plugins/addons/apps:"] = "Installerte plugins/tillegg/apper:";
+$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper";
+$a->strings["Friend suggestion sent."] = "Venneforslag sendt.";
+$a->strings["Suggest Friends"] = "Foreslå venner";
+$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s";
+$a->strings["Group created."] = "Gruppen er laget.";
+$a->strings["Could not create group."] = "Kunne ikke lage gruppen.";
+$a->strings["Group not found."] = "Fant ikke gruppen.";
+$a->strings["Group name changed."] = "Gruppenavnet er endret";
+$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner.";
+$a->strings["Group Name: "] = "Gruppenavn:";
+$a->strings["Group removed."] = "Gruppe fjernet.";
+$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe.";
+$a->strings["Group Editor"] = "Gruppebehandler";
+$a->strings["Members"] = "Medlemmer";
+$a->strings["No profile"] = "Ingen profil";
+$a->strings["Help:"] = "Hjelp:";
+$a->strings["Not Found"] = "Ikke funnet";
+$a->strings["Page not found."] = "Fant ikke siden.";
+$a->strings["No contacts."] = "Ingen kontakter.";
+$a->strings["Welcome to %s"] = "Velkommen til %s";
+$a->strings["Access denied."] = "Tilgang avslått.";
+$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d";
+$a->strings["File upload failed."] = "Opplasting av filen mislyktes.";
+$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d";
+$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet.";
+$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde.";
+$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet.";
+$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse.";
+$a->strings["Please join us on Friendica"] = "Vær med oss på Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted.";
+$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen.";
+$a->strings["%d message sent."] = array(
+       0 => "one: %d melding sendt.",
+       1 => "other: %d meldinger sendt.",
 );
-$a->strings["Get added to this list!"] = "";
-$a->strings["Generate new key"] = "Lag ny nøkkel";
-$a->strings["Widgets key"] = "Nøkkel til småprogrammer";
-$a->strings["Widgets available"] = "Småprogrammer er tilgjengelige";
-$a->strings["Connect on Friendica!"] = "";
-$a->strings["bitchslap"] = "";
-$a->strings["bitchslapped"] = "";
-$a->strings["shag"] = "";
-$a->strings["shagged"] = "";
-$a->strings["do something obscenely biological to"] = "";
-$a->strings["did something obscenely biological to"] = "";
-$a->strings["point out the poke feature to"] = "";
-$a->strings["pointed out the poke feature to"] = "";
-$a->strings["declare undying love for"] = "";
-$a->strings["declared undying love for"] = "";
-$a->strings["patent"] = "";
-$a->strings["patented"] = "";
-$a->strings["stroke beard"] = "";
-$a->strings["stroked their beard at"] = "";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["hug"] = "";
-$a->strings["hugged"] = "";
-$a->strings["kiss"] = "";
-$a->strings["kissed"] = "";
-$a->strings["raise eyebrows at"] = "";
-$a->strings["raised their eyebrows at"] = "";
-$a->strings["insult"] = "";
-$a->strings["insulted"] = "";
-$a->strings["praise"] = "";
-$a->strings["praised"] = "";
-$a->strings["be dubious of"] = "";
-$a->strings["was dubious of"] = "";
-$a->strings["eat"] = "";
-$a->strings["ate"] = "";
-$a->strings["giggle and fawn at"] = "";
-$a->strings["giggled and fawned at"] = "";
-$a->strings["doubt"] = "";
-$a->strings["doubted"] = "";
-$a->strings["glare"] = "";
-$a->strings["glared at"] = "";
-$a->strings["YourLS Settings"] = "";
-$a->strings["URL: http://"] = "";
-$a->strings["Username:"] = "";
-$a->strings["Password:"] = "";
-$a->strings["Use SSL "] = "";
-$a->strings["yourls Settings saved."] = "";
-$a->strings["Post to LiveJournal"] = "";
-$a->strings["LiveJournal Post Settings"] = "";
-$a->strings["Enable LiveJournal Post Plugin"] = "";
-$a->strings["LiveJournal username"] = "";
-$a->strings["LiveJournal password"] = "";
-$a->strings["Post to LiveJournal by default"] = "";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
-$a->strings["Enable Content filter"] = "";
-$a->strings["Comma separated list of keywords to hide"] = "";
-$a->strings["Use /expression/ to provide regular expressions"] = "";
-$a->strings["NSFW Settings saved."] = "";
-$a->strings["%s - Click to open/close"] = "";
-$a->strings["Forums"] = "";
-$a->strings["Forums:"] = "";
-$a->strings["Page settings updated."] = "";
-$a->strings["Page Settings"] = "";
-$a->strings["How many forums to display on sidebar without paging"] = "";
-$a->strings["Randomise Page/Forum list"] = "";
-$a->strings["Show pages/forums on profile page"] = "";
-$a->strings["Planets Settings"] = "";
-$a->strings["Enable Planets Plugin"] = "";
-$a->strings["Forum Directory"] = "";
-$a->strings["Login"] = "Logg inn";
-$a->strings["OpenID"] = "";
-$a->strings["Latest users"] = "";
-$a->strings["Most active users"] = "";
-$a->strings["Latest photos"] = "";
-$a->strings["Latest likes"] = "";
-$a->strings["event"] = "hendelse";
-$a->strings["No access"] = "";
-$a->strings["Could not open component for editing"] = "";
-$a->strings["Go back to the calendar"] = "";
-$a->strings["Event data"] = "";
-$a->strings["Calendar"] = "";
-$a->strings["Special color"] = "";
-$a->strings["Subject"] = "";
-$a->strings["Starts"] = "";
-$a->strings["Ends"] = "";
-$a->strings["Description"] = "";
-$a->strings["Recurrence"] = "";
-$a->strings["Frequency"] = "";
-$a->strings["Daily"] = "Daglig";
-$a->strings["Weekly"] = "Ukentlig";
-$a->strings["Monthly"] = "Månedlig";
-$a->strings["Yearly"] = "";
-$a->strings["days"] = "dager";
-$a->strings["weeks"] = "uker";
-$a->strings["months"] = "måneder";
-$a->strings["years"] = "år";
-$a->strings["Interval"] = "";
-$a->strings["All %select% %time%"] = "";
-$a->strings["Days"] = "";
-$a->strings["Sunday"] = "søndag";
-$a->strings["Monday"] = "mandag";
-$a->strings["Tuesday"] = "tirsdag";
-$a->strings["Wednesday"] = "onsdag";
-$a->strings["Thursday"] = "torsdag";
-$a->strings["Friday"] = "fredag";
-$a->strings["Saturday"] = "lørdag";
-$a->strings["First day of week:"] = "";
-$a->strings["Day of month"] = "";
-$a->strings["#num#th of each month"] = "";
-$a->strings["#num#th-last of each month"] = "";
-$a->strings["#num#th #wkday# of each month"] = "";
-$a->strings["#num#th-last #wkday# of each month"] = "";
-$a->strings["Month"] = "";
-$a->strings["#num#th of the given month"] = "";
-$a->strings["#num#th-last of the given month"] = "";
-$a->strings["#num#th #wkday# of the given month"] = "";
-$a->strings["#num#th-last #wkday# of the given month"] = "";
-$a->strings["Repeat until"] = "";
-$a->strings["Infinite"] = "";
-$a->strings["Until the following date"] = "";
-$a->strings["Number of times"] = "";
-$a->strings["Exceptions"] = "";
-$a->strings["none"] = "";
-$a->strings["Notification"] = "";
-$a->strings["Notify by"] = "";
-$a->strings["E-Mail"] = "";
-$a->strings["On Friendica / Display"] = "";
-$a->strings["Time"] = "";
-$a->strings["Hours"] = "";
-$a->strings["Minutes"] = "";
-$a->strings["Seconds"] = "";
-$a->strings["Weeks"] = "";
-$a->strings["before the"] = "";
-$a->strings["start of the event"] = "";
-$a->strings["end of the event"] = "";
-$a->strings["Add a notification"] = "";
-$a->strings["The event #name# will start at #date"] = "";
-$a->strings["#name# is about to begin."] = "";
-$a->strings["Saved"] = "";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "";
-$a->strings["Private Events"] = "";
-$a->strings["Private Addressbooks"] = "";
-$a->strings["Friendica-Native events"] = "";
-$a->strings["Friendica-Contacts"] = "";
-$a->strings["Your Friendica-Contacts"] = "";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
-$a->strings["The ICS-File has been imported."] = "";
-$a->strings["No file was uploaded."] = "";
-$a->strings["Import a ICS-file"] = "";
-$a->strings["ICS-File"] = "";
-$a->strings["Overwrite all #num# existing events"] = "";
-$a->strings["New event"] = "";
-$a->strings["Today"] = "";
-$a->strings["Day"] = "";
-$a->strings["Week"] = "";
-$a->strings["Reload"] = "";
-$a->strings["Date"] = "";
-$a->strings["Error"] = "";
-$a->strings["The calendar has been updated."] = "";
-$a->strings["The new calendar has been created."] = "";
-$a->strings["The calendar has been deleted."] = "";
-$a->strings["Calendar Settings"] = "";
-$a->strings["Date format"] = "";
-$a->strings["Time zone"] = "";
-$a->strings["Calendars"] = "";
-$a->strings["Create a new calendar"] = "";
-$a->strings["Limitations"] = "";
-$a->strings["Warning"] = "";
-$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
-$a->strings["Synchronizing this calendar with the iPhone"] = "";
-$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
-$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
-$a->strings["Extended calendar with CalDAV-support"] = "";
-$a->strings["noreply"] = "ikke svar";
-$a->strings["Notification: "] = "";
-$a->strings["The database tables have been installed."] = "";
-$a->strings["An error occurred during the installation."] = "";
-$a->strings["The database tables have been updated."] = "";
-$a->strings["An error occurred during the update."] = "";
-$a->strings["No system-wide settings yet."] = "";
-$a->strings["Database status"] = "";
-$a->strings["Installed"] = "";
-$a->strings["Upgrade needed"] = "";
-$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
-$a->strings["Upgrade"] = "";
-$a->strings["Not installed"] = "";
-$a->strings["Install"] = "";
-$a->strings["Unknown"] = "";
-$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
-$a->strings["Troubleshooting"] = "";
-$a->strings["Manual creation of the database tables:"] = "";
-$a->strings["Show SQL-statements"] = "";
-$a->strings["Private Calendar"] = "";
-$a->strings["Friendica Events: Mine"] = "";
-$a->strings["Friendica Events: Contacts"] = "";
-$a->strings["Private Addresses"] = "";
-$a->strings["Friendica Contacts"] = "";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
-$a->strings["Template URL (with {category})"] = "";
-$a->strings["OAuth end-point"] = "";
-$a->strings["Api"] = "";
-$a->strings["Member since:"] = "";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tredimensjonal tre-på-rad";
-$a->strings["3D Tic-Tac-Toe"] = "3D tre-på-rad";
-$a->strings["New game"] = "Nytt spill";
-$a->strings["New game with handicap"] = "Nytt spill med handikapp";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige nivåer.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel.";
-$a->strings["You go first..."] = "Du starter først...";
-$a->strings["I'm going first this time..."] = "Jeg starter først denne gangen...";
-$a->strings["You won!"] = "Du vant!";
-$a->strings["\"Cat\" game!"] = "\"Katte\"-spill!";
-$a->strings["I won!"] = "Jeg vant!";
-$a->strings["Randplace Settings"] = "Tilfeldig plassering";
-$a->strings["Enable Randplace Plugin"] = "Aktiver Tilfeldig plassering-tillegget";
-$a->strings["Post to Dreamwidth"] = "";
-$a->strings["Dreamwidth Post Settings"] = "";
-$a->strings["Enable dreamwidth Post Plugin"] = "";
-$a->strings["dreamwidth username"] = "";
-$a->strings["dreamwidth password"] = "";
-$a->strings["Post to dreamwidth by default"] = "";
-$a->strings["Remote Permissions Settings"] = "";
-$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
-$a->strings["Remote Permissions settings updated."] = "";
-$a->strings["Visible to"] = "";
-$a->strings["may only be a partial list"] = "";
-$a->strings["Global"] = "";
-$a->strings["The posts of every user on this server show the post recipients"] = "";
-$a->strings["Individual"] = "";
-$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
-$a->strings["Startpage Settings"] = "";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
-$a->strings["Geonames settings updated."] = "";
-$a->strings["Geonames Settings"] = "";
-$a->strings["Enable Geonames Plugin"] = "";
-$a->strings["Your account on %s will expire in a few days."] = "";
-$a->strings["Your Friendica account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
-$a->strings["Upload a file"] = "Last opp en fil";
-$a->strings["Drop files here to upload"] = "Slipp filer her for å laste de opp";
-$a->strings["Failed"] = "Mislyktes";
-$a->strings["No files were uploaded."] = "Ingen filer ble lastet opp.";
-$a->strings["Uploaded file is empty"] = "Opplastet fil er tom";
-$a->strings["File has an invalid extension, it should be one of "] = "Filen har en ugyldig endelse, den må være en av ";
-$a->strings["Upload was cancelled, or server error encountered"] = "Opplasting avbrutt, eller det oppstod en feil på tjeneren";
-$a->strings["show/hide"] = "";
-$a->strings["No forum subscriptions"] = "";
-$a->strings["Forumlist settings updated."] = "";
-$a->strings["Forumlist Settings"] = "";
-$a->strings["Randomise forum list"] = "";
-$a->strings["Show forums on profile page"] = "";
-$a->strings["Show forums on network page"] = "";
-$a->strings["Impressum"] = "Informasjon om nettstedet";
-$a->strings["Site Owner"] = "Nettstedets eier";
-$a->strings["Email Address"] = "E-postadresse";
-$a->strings["Postal Address"] = "Postadresse";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Tillegget for \"Informasjon om nettstedet\" må konfigureres!<br />Vennligst fyll ut minst <tt>eier</tt> variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget.";
-$a->strings["The page operators name."] = "";
-$a->strings["Site Owners Profile"] = "Nettstedseiers profil";
-$a->strings["Profile address of the operator."] = "";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
-$a->strings["Notes"] = "Notater";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
-$a->strings["Footer note"] = "";
-$a->strings["Text for the footer. You can use BBCode here."] = "";
-$a->strings["Report Bug"] = "";
-$a->strings["No Timeline settings updated."] = "";
-$a->strings["No Timeline Settings"] = "";
-$a->strings["Disable Archive selector on profile wall"] = "";
-$a->strings["\"Blockem\" Settings"] = "";
-$a->strings["Comma separated profile URLS to block"] = "";
-$a->strings["BLOCKEM Settings saved."] = "";
-$a->strings["Blocked %s - Click to open/close"] = "";
-$a->strings["Unblock Author"] = "";
-$a->strings["Block Author"] = "";
-$a->strings["blockem settings updated"] = "";
-$a->strings[":-)"] = "";
-$a->strings[":-("] = "";
-$a->strings["lol"] = "";
-$a->strings["Quick Comment Settings"] = "";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
-$a->strings["Enter quick comments, one per line"] = "";
-$a->strings["Quick Comment settings saved."] = "";
-$a->strings["Tile Server URL"] = "";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
-$a->strings["Default zoom"] = "";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
-$a->strings["Editplain settings updated."] = "";
-$a->strings["Group Text"] = "";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
-$a->strings["generic profile image"] = "";
-$a->strings["random geometric pattern"] = "";
-$a->strings["monster face"] = "";
-$a->strings["computer generated face"] = "";
-$a->strings["retro arcade style face"] = "";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
-$a->strings["This addon is not functional on your server."] = "";
-$a->strings["Information"] = "";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Default avatar image"] = "";
-$a->strings["Select default avatar image if none was found. See README"] = "";
-$a->strings["Libravatar settings updated."] = "";
-$a->strings["Post to libertree"] = "";
-$a->strings["libertree Post Settings"] = "";
-$a->strings["Enable Libertree Post Plugin"] = "";
-$a->strings["Libertree API token"] = "";
-$a->strings["Libertree site URL"] = "";
-$a->strings["Post to Libertree by default"] = "";
-$a->strings["Altpager settings updated."] = "";
-$a->strings["Alternate Pagination Setting"] = "";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
-$a->strings["Use the MathJax renderer"] = "";
-$a->strings["MathJax Base URL"] = "";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
-$a->strings["Editplain Settings"] = "";
-$a->strings["Disable richtext status editor"] = "";
-$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
-$a->strings["Rating of images"] = "";
-$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
-$a->strings["Gravatar settings updated."] = "";
-$a->strings["Your Friendica test account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
-$a->strings["\"pageheader\" Settings"] = "";
-$a->strings["pageheader Settings saved."] = "";
-$a->strings["Post to Insanejournal"] = "";
-$a->strings["InsaneJournal Post Settings"] = "";
-$a->strings["Enable InsaneJournal Post Plugin"] = "";
-$a->strings["InsaneJournal username"] = "";
-$a->strings["InsaneJournal password"] = "";
-$a->strings["Post to InsaneJournal by default"] = "";
-$a->strings["Jappix Mini addon settings"] = "";
-$a->strings["Activate addon"] = "";
-$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
-$a->strings["Jabber username"] = "";
-$a->strings["Jabber server"] = "";
-$a->strings["Jabber BOSH host"] = "";
-$a->strings["Jabber password"] = "";
-$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
-$a->strings["Friendica password"] = "";
-$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
-$a->strings["Subscribe to Friendica contacts automatically"] = "";
-$a->strings["Purge internal list of jabber addresses of contacts"] = "";
-$a->strings["Add contact"] = "";
-$a->strings["View Source"] = "";
-$a->strings["Post to StatusNet"] = "Post til StatusNet";
-$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Vennligst kontakt administratoren på nettstedet ditt.<br />Den oppgitter API URL-en er ikke gyldig.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav.";
-$a->strings["StatusNet settings updated."] = "StatusNet-innstillinger er oppdatert.";
-$a->strings["StatusNet Posting Settings"] = "Innstillinger for posting til StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "Globalt tilgjengelige StatusNet OAuthKeys";
-$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor).";
-$a->strings["Provide your own OAuth Credentials"] = "Oppgi din egen OAuth-legitimasjon";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
-$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
-$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
-$a->strings["Base API Path (remember the trailing /)"] = "Base API Path (husk / på slutten)";
-$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine <strong>offentlige</strong> meldinger som blir postet til StatusNet.";
-$a->strings["Log in with StatusNet"] = "Logg inn med StatusNet";
-$a->strings["Copy the security code from StatusNet here"] = "Kopier sikkerhetskoden fra StatusNet hit";
-$a->strings["Cancel Connection Process"] = "Avbryt forbindelsesprosessen";
-$a->strings["Current StatusNet API is"] = "Gjeldende StatusNet API er";
-$a->strings["Cancel StatusNet Connection"] = "Avbryt StatusNet-forbindelsen";
-$a->strings["Currently connected to: "] = "For øyeblikket tilkoblet til:";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
-$a->strings["Allow posting to StatusNet"] = "Tillat innlegg til StatusNet";
-$a->strings["Send public postings to StatusNet by default"] = "Send offentlige innlegg til StatusNet som standard";
-$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
-$a->strings["Clear OAuth configuration"] = "Fjern OAuth-konfigurasjon";
-$a->strings["API URL"] = "API URL";
-$a->strings["Infinite Improbability Drive"] = "";
-$a->strings["Post to Tumblr"] = "";
-$a->strings["Tumblr Post Settings"] = "";
-$a->strings["Enable Tumblr Post Plugin"] = "";
-$a->strings["Tumblr login"] = "";
-$a->strings["Tumblr password"] = "";
-$a->strings["Post to Tumblr by default"] = "";
-$a->strings["Numfriends settings updated."] = "";
-$a->strings["Numfriends Settings"] = "";
-$a->strings["How many contacts to display on profile sidebar"] = "";
-$a->strings["Gnot settings updated."] = "";
-$a->strings["Gnot Settings"] = "";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
-$a->strings["Enable this plugin/addon?"] = "";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
-$a->strings["Post to Wordpress"] = "";
-$a->strings["WordPress Post Settings"] = "";
-$a->strings["Enable WordPress Post Plugin"] = "";
-$a->strings["WordPress username"] = "";
-$a->strings["WordPress password"] = "";
-$a->strings["WordPress API URL"] = "";
-$a->strings["Post to WordPress by default"] = "";
-$a->strings["Provide a backlink to the Friendica post"] = "";
-$a->strings["Post from Friendica"] = "";
-$a->strings["Read the original post and comment stream on Friendica"] = "";
-$a->strings["\"Show more\" Settings"] = "";
-$a->strings["Enable Show More"] = "";
-$a->strings["Cutting posts after how much characters"] = "";
-$a->strings["Show More Settings saved."] = "";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
-$a->strings["Piwik Base URL"] = "Piwik Base URL";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
-$a->strings["Site ID"] = "Nettstedets ID";
-$a->strings["Show opt-out cookie link?"] = "Vis lenke for å velge bort cookie?";
-$a->strings["Asynchronous tracking"] = "";
-$a->strings["Post to Twitter"] = "Post til Twitter";
-$a->strings["Twitter settings updated."] = "Twitter-innstilinger oppdatert.";
-$a->strings["Twitter Posting Settings"] = "Innstillinger for posting til Twitter";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator.";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine <strong>offentlige</strong> innlegg vil bli lagt inn på Twitter. ";
-$a->strings["Log in with Twitter"] = "Logg inn via Twitter";
-$a->strings["Copy the PIN from Twitter here"] = "Kopier PIN-kode fra Twitter hit";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
-$a->strings["Allow posting to Twitter"] = "Tillat posting til Twitter";
-$a->strings["Send public postings to Twitter by default"] = "Send offentlige innlegg til Twitter som standard";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "";
-$a->strings["Consumer key"] = "Consumer key";
-$a->strings["Consumer secret"] = "Consumer secret";
-$a->strings["IRC Settings"] = "";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "";
-$a->strings["Popular Channels (comma separated)"] = "";
-$a->strings["IRC settings saved."] = "";
-$a->strings["IRC Chatroom"] = "";
-$a->strings["Popular Channels"] = "";
-$a->strings["Fromapp settings updated."] = "";
-$a->strings["FromApp Settings"] = "";
-$a->strings["The application name you would like to show your posts originating from."] = "";
-$a->strings["Use this application name even if another application was used."] = "";
-$a->strings["Post to blogger"] = "";
-$a->strings["Blogger Post Settings"] = "";
-$a->strings["Enable Blogger Post Plugin"] = "";
-$a->strings["Blogger username"] = "";
-$a->strings["Blogger password"] = "";
-$a->strings["Blogger API URL"] = "";
-$a->strings["Post to Blogger by default"] = "";
-$a->strings["Post to Posterous"] = "";
-$a->strings["Posterous Post Settings"] = "";
-$a->strings["Enable Posterous Post Plugin"] = "";
-$a->strings["Posterous login"] = "";
-$a->strings["Posterous password"] = "";
-$a->strings["Posterous site ID"] = "";
-$a->strings["Posterous API token"] = "";
-$a->strings["Post to Posterous by default"] = "";
-$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["Your posts and conversations"] = "Dine innlegg og samtaler";
-$a->strings["Your profile page"] = "";
-$a->strings["Your contacts"] = "";
-$a->strings["Your photos"] = "";
-$a->strings["Your events"] = "";
-$a->strings["Personal notes"] = "";
-$a->strings["Your personal photos"] = "";
-$a->strings["Community Pages"] = "";
-$a->strings["Community Profiles"] = "";
-$a->strings["Last users"] = "";
-$a->strings["Last likes"] = "";
-$a->strings["Last photos"] = "";
-$a->strings["Find Friends"] = "";
-$a->strings["Local Directory"] = "";
-$a->strings["Similar Interests"] = "";
-$a->strings["Invite Friends"] = "Inviterer venner";
-$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["Last Tweets"] = "";
-$a->strings["Set twitter search term"] = "";
-$a->strings["don't show"] = "ikke vis";
-$a->strings["show"] = "vis";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Set color scheme"] = "";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Last tweets"] = "";
-$a->strings["Alignment"] = "";
-$a->strings["Left"] = "";
-$a->strings["Center"] = "";
-$a->strings["Posts font size"] = "";
-$a->strings["Textareas font size"] = "";
-$a->strings["Set colour scheme"] = "";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Fødselsdag:";
-$a->strings["Age:"] = "Alder:";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Tags:"] = "";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
-$a->strings["Musical interests:"] = "Musikksmak:";
-$a->strings["Books, literature:"] = "Bøker, litteratur:";
-$a->strings["Television:"] = "TV:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
-$a->strings["Love/Romance:"] = "Kjærlighet/romanse:";
-$a->strings["Work/employment:"] = "Arbeid/ansatt hos:";
-$a->strings["School/education:"] = "Skole/utdanning:";
-$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert";
-$a->strings["Block immediately"] = "Blokker umiddelbart";
-$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv";
-$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening";
-$a->strings["OK, probably harmless"] = "OK, antakelig harmløs";
-$a->strings["Reputable, has my trust"] = "Respektert, har min tillit";
-$a->strings["Frequently"] = "Ofte";
-$a->strings["Hourly"] = "Hver time";
-$a->strings["Twice daily"] = "To ganger daglig";
-$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["Male"] = "Mann";
-$a->strings["Female"] = "Kvinne";
-$a->strings["Currently Male"] = "For øyeblikket mann";
-$a->strings["Currently Female"] = "For øyeblikket kvinne";
-$a->strings["Mostly Male"] = "Stort sett mann";
-$a->strings["Mostly Female"] = "Stort sett kvinne";
-$a->strings["Transgender"] = "Transkjønnet";
-$a->strings["Intersex"] = "Tvekjønnet";
-$a->strings["Transsexual"] = "Transseksuell";
-$a->strings["Hermaphrodite"] = "Hermafroditt";
-$a->strings["Neuter"] = "Intetkjønn";
-$a->strings["Non-specific"] = "Ikke spesifisert";
-$a->strings["Other"] = "Annet";
-$a->strings["Undecided"] = "Ubestemt";
-$a->strings["Males"] = "Menn";
-$a->strings["Females"] = "Kvinner";
-$a->strings["Gay"] = "Homse";
-$a->strings["Lesbian"] = "Lesbe";
-$a->strings["No Preference"] = "Ingen preferanse";
-$a->strings["Bisexual"] = "Biseksuell";
-$a->strings["Autosexual"] = "Autoseksuell";
-$a->strings["Abstinent"] = "Avholdende";
-$a->strings["Virgin"] = "Jomfru";
-$a->strings["Deviant"] = "Avvikende";
-$a->strings["Fetish"] = "Fetisj";
-$a->strings["Oodles"] = "Mange";
-$a->strings["Nonsexual"] = "Aseksuell";
-$a->strings["Single"] = "Alene";
-$a->strings["Lonely"] = "Ensom";
-$a->strings["Available"] = "Tilgjengelig";
-$a->strings["Unavailable"] = "Ikke tilgjengelig";
-$a->strings["Has crush"] = "";
-$a->strings["Infatuated"] = "";
-$a->strings["Dating"] = "Stevnemøter/dater";
-$a->strings["Unfaithful"] = "Utro";
-$a->strings["Sex Addict"] = "Sexavhengig";
-$a->strings["Friends"] = "Venner";
-$a->strings["Friends/Benefits"] = "Venner med fordeler";
-$a->strings["Casual"] = "Tilfeldig";
-$a->strings["Engaged"] = "Forlovet";
-$a->strings["Married"] = "Gift";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "Partnere";
-$a->strings["Cohabiting"] = "Samboere";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "Lykkelig";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "Partnerbytte/swinger";
-$a->strings["Betrayed"] = "Bedratt";
-$a->strings["Separated"] = "Separert";
-$a->strings["Unstable"] = "Ustabil";
-$a->strings["Divorced"] = "Skilt";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "Enke/enkemann";
-$a->strings["Uncertain"] = "Usikker";
-$a->strings["It's complicated"] = "";
-$a->strings["Don't care"] = "Uinteressert";
-$a->strings["Ask me"] = "Spør meg";
-$a->strings["Starts:"] = "Starter:";
-$a->strings["Finishes:"] = "Slutter:";
-$a->strings["(no subject)"] = "(uten emne)";
-$a->strings[" on Last.fm"] = "";
-$a->strings["prev"] = "forrige";
-$a->strings["first"] = "første";
-$a->strings["last"] = "siste";
-$a->strings["next"] = "neste";
-$a->strings["newer"] = "";
-$a->strings["older"] = "";
-$a->strings["No contacts"] = "Ingen kontakter";
-$a->strings["%d Contact"] = array(
-       0 => "%d kontakt",
-       1 => "%d kontakter",
+$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner";
+$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."] = "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted.";
+$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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk  som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer.";
+$a->strings["Send invitations"] = "Send invitasjoner";
+$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
+$a->strings["Your message:"] = "Din melding:";
+$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 er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes.";
+$a->strings["No recipient selected."] = "Ingen mottaker valgt.";
+$a->strings["Unable to check your home location."] = "Ikke i stand til avgjøre plasseringen til ditt hjemsted.";
+$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes.";
+$a->strings["Message collection failure."] = "Meldingsinnsamling mislyktes.";
+$a->strings["Message sent."] = "Melding sendt.";
+$a->strings["No recipient."] = "Ingen mottaker.";
+$a->strings["Send Private Message"] = "Send privat melding";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere.";
+$a->strings["To:"] = "Til:";
+$a->strings["Subject:"] = "Emne:";
+$a->strings["Time Conversion"] = "Tidskonvertering";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner.";
+$a->strings["UTC time: %s"] = "UTC tid: %s";
+$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s";
+$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s";
+$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:";
+$a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig.";
+$a->strings["Visible to:"] = "Synlig for:";
+$a->strings["No valid account found."] = "Fant ingen gyldig konto.";
+$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din.";
+$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes.";
+$a->strings["Password Reset"] = "Passord tilbakestilling";
+$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt.";
+$a->strings["Your new password is"] = "Ditt nye passord er";
+$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter";
+$a->strings["click here to login"] = "klikk her for å logge inn";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn.";
+$a->strings["Your password has been changed at %s"] = "Ditt passord har blitt endret %s";
+$a->strings["Forgot your Password?"] = "Glemte du passordet?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring.";
+$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:";
+$a->strings["Reset"] = "Tilbakestill";
+$a->strings["System down for maintenance"] = "Systemet er nede for vedlikehold";
+$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser";
+$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:";
+$a->strings["Profile Match"] = "Profiltreff";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil.";
+$a->strings["is interested in:"] = "er interessert i:";
+$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon.";
+$a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?";
+$a->strings["Message deleted."] = "Melding slettet.";
+$a->strings["Conversation removed."] = "Samtale slettet.";
+$a->strings["No messages."] = "Ingen meldinger.";
+$a->strings["Unknown sender - %s"] = "Ukjent avsender - %s";
+$a->strings["You and %s"] = "Du og %s";
+$a->strings["%s and You"] = "%s og du";
+$a->strings["Delete conversation"] = "Slett samtale";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d melding",
+       1 => "%d meldinger",
 );
-$a->strings["poke"] = "";
-$a->strings["poked"] = "";
-$a->strings["ping"] = "";
-$a->strings["pinged"] = "";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
-$a->strings["slap"] = "";
-$a->strings["slapped"] = "";
-$a->strings["finger"] = "";
-$a->strings["fingered"] = "";
-$a->strings["rebuff"] = "";
-$a->strings["rebuffed"] = "";
-$a->strings["happy"] = "";
-$a->strings["sad"] = "";
-$a->strings["mellow"] = "";
-$a->strings["tired"] = "";
-$a->strings["perky"] = "";
-$a->strings["angry"] = "";
-$a->strings["stupified"] = "";
-$a->strings["puzzled"] = "";
-$a->strings["interested"] = "";
-$a->strings["bitter"] = "";
-$a->strings["cheerful"] = "";
-$a->strings["alive"] = "";
-$a->strings["annoyed"] = "";
-$a->strings["anxious"] = "";
-$a->strings["cranky"] = "";
-$a->strings["disturbed"] = "";
-$a->strings["frustrated"] = "";
-$a->strings["motivated"] = "";
-$a->strings["relaxed"] = "";
-$a->strings["surprised"] = "";
-$a->strings["January"] = "januar";
-$a->strings["February"] = "februar";
-$a->strings["March"] = "mars";
-$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"] = "desember";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "";
-$a->strings["default"] = "";
-$a->strings["Select an alternate language"] = "Velg et annet språk";
-$a->strings["activity"] = "";
-$a->strings["post"] = "";
-$a->strings["Item filed"] = "";
-$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket";
-$a->strings["Attachments:"] = "";
-$a->strings["view full size"] = "";
-$a->strings["Embedded content"] = "";
-$a->strings["Embedding disabled"] = "Innebygging avskrudd";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
-$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["Message not available."] = "Melding utilgjengelig.";
+$a->strings["Delete message"] = "Slett melding";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong> svare fra senderens profilside.";
+$a->strings["Send Reply"] = "Send svar";
+$a->strings["Mood"] = "Stemning";
+$a->strings["Set your current mood and tell your friends"] = "Angi din stemning og fortell dine venner";
+$a->strings["Search Results For:"] = "Søkeresultater for:";
+$a->strings["Commented Order"] = "Etter kommentarer";
+$a->strings["Sort by Comment Date"] = "Sorter etter kommentardato";
+$a->strings["Posted Order"] = "Etter innlegg";
+$a->strings["Sort by Post Date"] = "Sorter etter innleggsdato";
+$a->strings["Personal"] = "Personlig";
+$a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg";
+$a->strings["New"] = "Ny";
+$a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato";
+$a->strings["Shared Links"] = "Delte lenker";
+$a->strings["Interesting Links"] = "Interessante lenker";
+$a->strings["Starred"] = "Med stjerne";
+$a->strings["Favourite Posts"] = "Favorittinnlegg";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.",
+       1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.",
 );
-$a->strings["Done. You can now login with your username and password"] = "";
-$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"] = "Alle";
-$a->strings["edit"] = "";
-$a->strings["Edit group"] = "";
-$a->strings["Create a new group"] = "Lag en ny gruppe";
-$a->strings["Contacts not in any group"] = "";
-$a->strings["Logout"] = "Logg ut";
-$a->strings["End this session"] = "Avslutt denne økten";
-$a->strings["Status"] = "Status";
-$a->strings["Sign in"] = "Logg inn";
-$a->strings["Home Page"] = "Hovedside";
-$a->strings["Create an account"] = "Lag konto";
-$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
-$a->strings["Apps"] = "Programmer";
-$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill";
-$a->strings["Search site content"] = "Søk i nettstedets innhold";
-$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet";
-$a->strings["Directory"] = "Katalog";
-$a->strings["People directory"] = "Personkatalog";
-$a->strings["Conversations from your friends"] = "Samtaler fra dine venner";
-$a->strings["Network Reset"] = "";
-$a->strings["Load Network page with no filters"] = "";
-$a->strings["Friend Requests"] = "";
-$a->strings["See all notifications"] = "";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Private mail"] = "Privat post";
-$a->strings["Inbox"] = "Innboks";
-$a->strings["Outbox"] = "Utboks";
-$a->strings["Manage"] = "Behandle";
-$a->strings["Manage other pages"] = "Behandle andre sider";
-$a->strings["Profiles"] = "Profiler";
-$a->strings["Manage/Edit Profiles"] = "";
-$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter";
-$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon";
-$a->strings["Nothing new here"] = "";
-$a->strings["Add New Contact"] = "";
-$a->strings["Enter address or web location"] = "";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitasjon tilgjengelig",
-       1 => "%d invitasjoner tilgjengelig",
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort.";
+$a->strings["No such group"] = "Gruppen finnes ikke";
+$a->strings["Group is empty"] = "Gruppen er tom";
+$a->strings["Group: "] = "Gruppe:";
+$a->strings["Contact: "] = "Kontakt:";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort.";
+$a->strings["Invalid contact."] = "Ugyldig kontakt.";
+$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
+$a->strings["Discard"] = "Forkast";
+$a->strings["System"] = "System";
+$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler";
+$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler";
+$a->strings["Notification type: "] = "Beskjedtype:";
+$a->strings["Friend Suggestion"] = "Venneforslag";
+$a->strings["suggested by %s"] = "foreslått av %s";
+$a->strings["Post a new friend activity"] = "Post om en ny venn";
+$a->strings["if applicable"] = "hvis gyldig";
+$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "ei";
+$a->strings["Approve as: "] = "Godkjenn som:";
+$a->strings["Friend"] = "Venn";
+$a->strings["Sharer"] = "Deler";
+$a->strings["Fan/Admirer"] = "Fan/Beundrer";
+$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel";
+$a->strings["New Follower"] = "Ny følgesvenn";
+$a->strings["No introductions."] = "Ingen introduksjoner.";
+$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg";
+$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg";
+$a->strings["%s is now friends with %s"] = "%s er nå venner med %s";
+$a->strings["%s created a new post"] = "%s skrev et nytt innlegg";
+$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg";
+$a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger.";
+$a->strings["Network Notifications"] = "Nettverksvarslinger";
+$a->strings["No more system notifications."] = "Ingen flere systemvarsler.";
+$a->strings["System Notifications"] = "Systemvarsler";
+$a->strings["No more personal notifications."] = "Ingen flere personlige varsler.";
+$a->strings["Personal Notifications"] = "Personlige varsler";
+$a->strings["No more home notifications."] = "Ingen flere hjemmevarsler.";
+$a->strings["Home Notifications"] = "Hjemmevarsler";
+$a->strings["Photo Albums"] = "Fotoalbum";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Upload New Photos"] = "Last opp nye bilder";
+$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig";
+$a->strings["Album not found."] = "Album ble ikke funnet.";
+$a->strings["Delete Album"] = "Slett album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?";
+$a->strings["Delete Photo"] = "Slett bilde";
+$a->strings["Do you really want to delete this photo?"] = "Ønsker du virkelig å slette dette bildet?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s ble merket i %2\$s av %3\$s";
+$a->strings["a photo"] = "et bilde";
+$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på ";
+$a->strings["Image file is empty."] = "Bildefilen er tom.";
+$a->strings["No photos selected"] = "Ingen bilder er valgt";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring.";
+$a->strings["Upload Photos"] = "Last opp bilder";
+$a->strings["New album name: "] = "Nytt albumnavn:";
+$a->strings["or existing album name: "] = "eller eksisterende albumnavn:";
+$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen";
+$a->strings["Permissions"] = "Tillatelser";
+$a->strings["Private Photo"] = "Privat bilde";
+$a->strings["Public Photo"] = "Offentlig bilde";
+$a->strings["Edit Album"] = "Endre album";
+$a->strings["Show Newest First"] = "Vis nyeste først";
+$a->strings["Show Oldest First"] = "Vis eldste først";
+$a->strings["View Photo"] = "Vis bilde";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset.";
+$a->strings["Photo not available"] = "Bilde ikke tilgjengelig";
+$a->strings["View photo"] = "Vis foto";
+$a->strings["Edit photo"] = "Endre bilde";
+$a->strings["Use as profile photo"] = "Bruk som profilbilde";
+$a->strings["Private Message"] = "Privat melding";
+$a->strings["View Full Size"] = "Vis i full størrelse";
+$a->strings["Tags: "] = "Tagger:";
+$a->strings["[Remove any tag]"] = "[Fjern en tag]";
+$a->strings["Rotate CW (right)"] = "Roter med klokka (høyre)";
+$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
+$a->strings["New album name"] = "Nytt albumnavn";
+$a->strings["Caption"] = "Overskrift";
+$a->strings["Add a Tag"] = "Legg til tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Privat bilde";
+$a->strings["Public photo"] = "Offentlig bilde";
+$a->strings["I like this (toggle)"] = "Jeg liker dette (skru på/av)";
+$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru på/av)";
+$a->strings["This is you"] = "Dette er deg";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Recent Photos"] = "Nye bilder";
+$a->strings["Welcome to Friendica"] = "Velkommen til Friendica";
+$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer";
+$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."] = "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv.";
+$a->strings["Getting Started"] = "Komme igang";
+$a->strings["Friendica Walk-Through"] = "Friendica gjennomgang";
+$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."] = "På <em>Hurtigstart</em>-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i.";
+$a->strings["Go to Your Settings"] = "Gå til Dine innstillinger";
+$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."] = "På siden <em>Innstillinger</em> - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en.";
+$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."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg.";
+$a->strings["Upload Profile Photo"] = "Last opp profilbilde";
+$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."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det.";
+$a->strings["Edit Your Profile"] = "Endre profilen din";
+$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."] = "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende.";
+$a->strings["Profile Keywords"] = "Profilnøkkelord";
+$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."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap.";
+$a->strings["Connecting"] = "Kobling";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler.";
+$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>Hvis</em> dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere.";
+$a->strings["Importing Emails"] = "Importere e-post";
+$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"] = "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS";
+$a->strings["Go to Your Contacts Page"] = "Gå til Dine kontakter-siden";
+$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."] = "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen <em>Legg til ny kontakt</em>";
+$a->strings["Go to Your Site's Directory"] = "Gå til Din lokale katalog";
+$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."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det.";
+$a->strings["Finding New People"] = "Finn nye personer";
+$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."] = "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer.";
+$a->strings["Group Your Contacts"] = "Kontaktgrupper";
+$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."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side.";
+$a->strings["Why Aren't My Posts Public?"] = "Hvorfor er ikke mine innlegg offentlige?";
+$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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor.";
+$a->strings["Getting Help"] = "Få hjelp";
+$a->strings["Go to the Help Section"] = "Gå til Hjelp-siden";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet.";
+$a->strings["Requested profile is not available."] = "Profil utilgjengelig.";
+$a->strings["Tips for New Members"] = "Tips til nye medlemmer";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikasjonstjeneste - oppsett";
+$a->strings["Could not connect to database."] = "Kunne ikke koble til database.";
+$a->strings["Could not create table."] = "Kunne ikke lage tabell.";
+$a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\".";
+$a->strings["System check"] = "Systemsjekk";
+$a->strings["Check again"] = "Sjekk på nytt";
+$a->strings["Database connection"] = "Databaseforbindelse";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "For å installere Friendica må vi vite hvordan man kan koble seg til din database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter.";
+$a->strings["Database Server Name"] = "Databasetjenerens navn";
+$a->strings["Database Login Name"] = "Database brukernavn";
+$a->strings["Database Login Password"] = "Database passord";
+$a->strings["Database Name"] = "Databasenavn";
+$a->strings["Site administrator email address"] = "Nettstedsadministrator sin e-postadresse";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon.";
+$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
+$a->strings["Site settings"] = "Innstillinger for nettstedet";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens 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>"] = "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se <a href='http://friendica.com/node/27'>'Aktivere tidsstyrte oppgaver'</a>";
+$a->strings["PHP executable path"] = "PHP kjørefil sin sti";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen.";
+$a->strings["Command line PHP"] = "Kommandolinje PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)";
+$a->strings["Found PHP version: "] = "Fant PHP-versjon:";
+$a->strings["PHP cli binary"] = "PHP cli binærfil";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert.";
+$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke.";
+$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"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler";
+$a->strings["libCurl PHP module"] = "libCurl PHP modul";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
+$a->strings["mysqli PHP module"] = "mysqli PHP modul";
+$a->strings["mb_string PHP module"] = "mb_string PHP modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert.";
+$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
+$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan.";
+$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."] = "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrivbar";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere.";
+$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."] = "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen.";
+$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."] = "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 er skrivbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten.";
+$a->strings["Url rewrite is working"] = "URL omskriving virker";
+$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener.";
+$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
+$a->strings["<h1>What next</h1>"] = "<h1>Hva nå</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering.";
+$a->strings["Post successful."] = "Innlegg vellykket.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet.";
+$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes.";
+$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart.";
+$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde";
+$a->strings["Upload File:"] = "Last opp fil:";
+$a->strings["Select a profile:"] = "Velg en profil:";
+$a->strings["Upload"] = "Last opp";
+$a->strings["skip this step"] = "hopp over dette steget";
+$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
+$a->strings["Crop Image"] = "Beskjær bilde";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning.";
+$a->strings["Done Editing"] = "Behandling ferdig";
+$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp.";
+$a->strings["Not available."] = "Ikke tilgjengelig.";
+$a->strings["%d comment"] = array(
+       0 => "%d kommentar",
+       1 => "%d kommentarer",
 );
-$a->strings["Find People"] = "";
-$a->strings["Enter name or interest"] = "";
-$a->strings["Connect/Follow"] = "Koble/Følg";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "";
-$a->strings["Random Profile"] = "";
-$a->strings["Networks"] = "";
-$a->strings["All Networks"] = "";
-$a->strings["Saved Folders"] = "";
-$a->strings["Everything"] = "";
-$a->strings["Categories"] = "";
-$a->strings["Logged out."] = "Logget ut.";
-$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["Miscellaneous"] = "Diverse";
-$a->strings["year"] = "år";
-$a->strings["month"] = "måned";
-$a->strings["day"] = "dag";
-$a->strings["never"] = "aldri";
-$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
-$a->strings["week"] = "uke";
-$a->strings["hour"] = "time";
-$a->strings["hours"] = "timer";
-$a->strings["minute"] = "minutt";
-$a->strings["minutes"] = "minutter";
-$a->strings["second"] = "sekund";
-$a->strings["seconds"] = "sekunder";
-$a->strings["%1\$d %2\$s ago"] = "";
-$a->strings["%s's birthday"] = "";
-$a->strings["Happy Birthday %s"] = "";
-$a->strings["From: "] = "Fra: ";
-$a->strings["Image/photo"] = "Bilde/fotografi";
-$a->strings["$1 wrote:"] = "";
-$a->strings["Encrypted content"] = "";
-$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["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' ";
-$a->strings["[no subject]"] = "[ikke noe emne]";
-$a->strings["Visible to everybody"] = "Synlig for alle";
-$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["Connect URL missing."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget.";
-$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information.";
-$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn.";
-$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen.";
-$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."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg.";
-$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon.";
-$a->strings["following"] = "følger";
-$a->strings["A new person is sharing with you at "] = "";
-$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på ";
-$a->strings["Archives"] = "";
-$a->strings["An invitation is required."] = "En invitasjon er nødvendig.";
-$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
-$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL";
-$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen.";
-$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn.";
-$a->strings["Name too short."] = "Navnet er for kort.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet.";
-$a->strings["Not a valid email address."] = "Ugyldig e-postadresse.";
-$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav.";
-$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet.";
-$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."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler.";
-$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen.";
-$a->strings["Welcome "] = "Velkommen";
-$a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde.";
-$a->strings["Welcome back "] = "Velkommen tilbake";
-$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["stopped following"] = "sluttet å følge";
-$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["Send PM"] = "Send privat melding";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["post/item"] = "";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
-$a->strings["remove"] = "";
-$a->strings["Delete Selected Items"] = "Slette valgte elementer";
-$a->strings["Follow Thread"] = "";
-$a->strings["%s likes this."] = "%s liker dette.";
-$a->strings["%s doesn't like this."] = "%s liker ikke dette.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d personer</span> liker dette.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = "<span %1\$s>%2\$d personer</span> liker ikke dette.";
-$a->strings["and"] = "og";
-$a->strings[", and %d other people"] = ", og %d andre personer";
-$a->strings["%s like this."] = "%s liker dette.";
-$a->strings["%s don't like this."] = "%s liker ikke dette.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Synlig for <strong>alle</strong>";
-$a->strings["Please enter a video link/URL:"] = "";
-$a->strings["Please enter an audio link/URL:"] = "";
-$a->strings["Tag term:"] = "";
-$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?";
-$a->strings["Delete item(s)?"] = "";
-$a->strings["permissions"] = "";
-$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["like"] = "liker";
+$a->strings["dislike"] = "liker ikke";
+$a->strings["Share this"] = "Del denne";
+$a->strings["share"] = "Del";
+$a->strings["Bold"] = "uthevet";
+$a->strings["Italic"] = "kursiv";
+$a->strings["Underline"] = "understrek";
+$a->strings["Quote"] = "sitat";
+$a->strings["Code"] = "kode";
+$a->strings["Image"] = "Bilde/fotografi";
+$a->strings["Link"] = "lenke";
+$a->strings["Video"] = "video";
+$a->strings["add star"] = "legg til stjerne";
+$a->strings["remove star"] = "fjern stjerne";
+$a->strings["toggle star status"] = "veksle stjernestatus";
+$a->strings["starred"] = "Med stjerne";
+$a->strings["add tag"] = "Legg til merkelapp";
+$a->strings["save to folder"] = "lagre i mappe";
+$a->strings["to"] = "til";
+$a->strings["Wall-to-Wall"] = "vegg-til-vegg";
+$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg";
+$a->strings["This entry was edited"] = "Denne oppføringen ble endret";
+$a->strings["via"] = "via";
+$a->strings["Theme settings"] = "Temainnstillinger";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)";
+$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer";
+$a->strings["Set theme width"] = "Angi temabredde";
+$a->strings["Color scheme"] = "Fargekart";
+$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer";
+$a->strings["Set resolution for middle column"] = "Angi oppløsning for midtkolonnen";
+$a->strings["Set color scheme"] = "Angi fargekart";
+$a->strings["Set twitter search term"] = "Angi twitter søkeord";
+$a->strings["Set zoomfactor for Earth Layer"] = "Angi zoomfaktor for Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers";
+$a->strings["Community Pages"] = "Felleskapssider";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Community Profiles"] = "Fellesskapsprofiler";
+$a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?";
+$a->strings["Connect Services"] = "Forbindelse til tjenester";
+$a->strings["Find Friends"] = "Finn venner";
+$a->strings["Last tweets"] = "Siste kvitringer";
+$a->strings["Last users"] = "Siste brukere";
+$a->strings["Last photos"] = "Siste bilder";
+$a->strings["Last likes"] = "Siste liker";
+$a->strings["Your contacts"] = "Dine kontakter";
+$a->strings["Local Directory"] = "Lokal katalog";
+$a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers";
+$a->strings["Last Tweets"] = "Siste Tweets";
+$a->strings["Show/hide boxes at right-hand column:"] = "Vis/skjul bokser i kolonnen til høyre:";
+$a->strings["Set colour scheme"] = "Angi fargekart";
+$a->strings["Alignment"] = "Justering";
+$a->strings["Left"] = "Venstre";
+$a->strings["Center"] = "Midtstilt";
+$a->strings["Posts font size"] = "Skriftstørrelse for innlegg";
+$a->strings["Textareas font size"] = "Skriftstørrelse for tekstområder";
+$a->strings["toggle mobile"] = "Velg mobilvisning";
 $a->strings["Delete this item?"] = "Slett dette elementet?";
-$a->strings["show fewer"] = "";
+$a->strings["show fewer"] = "vis færre";
 $a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene.";
-$a->strings["Update Error at %s"] = "";
+$a->strings["Update Error at %s"] = "Oppdateringsfeil i %s";
 $a->strings["Create a New Account"] = "Lag en ny konto";
 $a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: ";
 $a->strings["Password: "] = "Passord: ";
-$a->strings["Remember me"] = "";
-$a->strings["Or login using OpenID: "] = "";
+$a->strings["Remember me"] = "Husk meg";
+$a->strings["Or login using OpenID: "] = "Eller logg inn med OpenID:";
 $a->strings["Forgot your password?"] = "Glemt passordet?";
-$a->strings["Requested account is not available."] = "";
+$a->strings["Website Terms of Service"] = "Nettstedets bruksbetingelser";
+$a->strings["terms of service"] = "bruksbetingelser";
+$a->strings["Website Privacy Policy"] = "Nettstedets retningslinjer for personvern";
+$a->strings["privacy policy"] = "retningslinjer for personvern";
+$a->strings["Requested account is not available."] = "Profil utilgjengelig.";
 $a->strings["Edit profile"] = "Rediger profil";
-$a->strings["Message"] = "";
+$a->strings["Message"] = "Melding";
 $a->strings["Manage/edit profiles"] = "Behandle/endre profiler";
-$a->strings["g A l F d"] = "";
-$a->strings["F d"] = "";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
 $a->strings["[today]"] = "[idag]";
 $a->strings["Birthday Reminders"] = "Fødselsdager";
 $a->strings["Birthdays this week:"] = "Fødselsdager denne uken:";
 $a->strings["[No description]"] = "[Ingen beskrivelse]";
 $a->strings["Event Reminders"] = "Påminnelser om hendelser";
 $a->strings["Events this week:"] = "Hendelser denne uken:";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Events and Calendar"] = "";
-$a->strings["Only You Can See This"] = "";
-$a->strings["via"] = "";
-$a->strings["toggle mobile"] = "";
-$a->strings["Bg settings updated."] = "";
-$a->strings["Bg Settings"] = "";
-$a->strings["Post to Drupal"] = "";
-$a->strings["Drupal Post Settings"] = "";
-$a->strings["Enable Drupal Post Plugin"] = "";
-$a->strings["Drupal username"] = "";
-$a->strings["Drupal password"] = "";
-$a->strings["Post Type - article,page,or blog"] = "";
-$a->strings["Drupal site URL"] = "";
-$a->strings["Drupal site uses clean URLS"] = "";
-$a->strings["Post to Drupal by default"] = "";
-$a->strings["OEmbed settings updated"] = "OEmbed-innstillingene er oppdatert";
-$a->strings["Use OEmbed for YouTube videos"] = "Bruk OEmbed til YouTube-videoer";
-$a->strings["URL to embed:"] = "URL som skal innebygges:";
+$a->strings["Status Messages and Posts"] = "Status meldinger og innlegg";
+$a->strings["Profile Details"] = "Profildetaljer";
+$a->strings["Videos"] = "Videoer";
+$a->strings["Events and Calendar"] = "Hendelser og kalender";
+$a->strings["Only You Can See This"] = "Bare du kan se dette";
index a4a3cf9508aa00c16f498e20b7bdae760f279ee3..ba526f2b9fb21ca29bf7387e64fe9c89aca6444e 100644 (file)
@@ -1,5 +1,5 @@
 Hei,  \r
-jeg er $sitename.   \r
+Jeg er $sitename;   \r
 Friendica-utviklerne slapp nylig oppdateringen $update, \r
 men da jeg prøvde å installere den, gikk noe forferdelig galt.  \r
 Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en \r
diff --git a/view/templates/paginate.tpl b/view/templates/paginate.tpl
new file mode 100644 (file)
index 0000000..21d5650
--- /dev/null
@@ -0,0 +1,13 @@
+<div class="pager">\r
+       {{if $pager}}\r
+       {{if $pager.prev}}<span class="pager_prev {{$pager.prev.class}}"><a href="{{$pager.prev.url}}">{{$pager.prev.text}}</a></span>{{/if}}\r
+\r
+       {{if $pager.first}}<span class="pager_first $pager.first.class"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></span>{{/if}}\r
+\r
+       {{foreach $pager.pages as $p}}<span class="pager_{{$p.class}}"><a href="{{$p.url}}">{{$p.text}}</a></span>{{/foreach}}\r
+\r
+       {{if $pager.last}}&nbsp;<span class="pager_last {{$pager.last.class}}"><a href="{{$pager.last.url}}">{{$pager.last.text}}</a></span>{{/if}}\r
+\r
+       {{if $pager.next}}<span class="pager_next {{$pager.next.class}}"><a href="{{$pager.next.url}}">{{$pager.next.text}}</a></span>{{/if}}\r
+       {{/if}}\r
+</div>\r
index be5909293f14affd7a4967c9297597a6a924507a..387d4f8dcd6ff7a7b86edfcf2e2dc9859cbc032e 100644 (file)
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-04-25 00:02-0700\n"
-"PO-Revision-Date: 2013-04-28 09:36+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2013-06-12 00:01-0700\n"
+"PO-Revision-Date: 2013-06-07 13:45+0000\n"
+"Last-Translator: matthew_exon <transifex.mexon@spamgourmet.com>\n"
 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +23,7 @@ msgstr ""
 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
 #: ../../include/nav.php:77 ../../mod/profperm.php:103
 #: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
-#: ../../boot.php:1945
+#: ../../boot.php:1947
 msgid "Profile"
 msgstr "简介"
 
@@ -32,7 +32,7 @@ msgid "Full Name:"
 msgstr "全名:"
 
 #: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
-#: ../../boot.php:1485
+#: ../../boot.php:1487
 msgid "Gender:"
 msgstr "性别:"
 
@@ -53,7 +53,7 @@ msgid "Age:"
 msgstr "年纪:"
 
 #: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
-#: ../../boot.php:1488
+#: ../../boot.php:1490
 msgid "Status:"
 msgstr "现状:"
 
@@ -67,7 +67,7 @@ msgid "Sexual Preference:"
 msgstr "性取向"
 
 #: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
-#: ../../boot.php:1490
+#: ../../boot.php:1492
 msgid "Homepage:"
 msgstr "主页:"
 
@@ -372,1105 +372,1110 @@ msgstr "问我"
 msgid "stopped following"
 msgstr "结束关注了"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:838
+#: ../../include/Contact.php:225 ../../include/conversation.php:878
 msgid "Poke"
 msgstr "戳"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:832
+#: ../../include/Contact.php:226 ../../include/conversation.php:872
 msgid "View Status"
 msgstr "看现状"
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:833
+#: ../../include/Contact.php:227 ../../include/conversation.php:873
 msgid "View Profile"
 msgstr "看简介"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:834
+#: ../../include/Contact.php:228 ../../include/conversation.php:874
 msgid "View Photos"
 msgstr "看照片"
 
 #: ../../include/Contact.php:229 ../../include/Contact.php:251
-#: ../../include/conversation.php:835
+#: ../../include/conversation.php:875
 msgid "Network Posts"
 msgstr "网络文章"
 
 #: ../../include/Contact.php:230 ../../include/Contact.php:251
-#: ../../include/conversation.php:836
+#: ../../include/conversation.php:876
 msgid "Edit Contact"
 msgstr "编辑熟人"
 
 #: ../../include/Contact.php:231 ../../include/Contact.php:251
-#: ../../include/conversation.php:837
+#: ../../include/conversation.php:877
 msgid "Send PM"
 msgstr "法私人的新闻"
 
-#: ../../include/text.php:294
-msgid "prev"
-msgstr "上个"
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:550
+#: ../../include/bbcode.php:551
+msgid "Image/photo"
+msgstr "图像/照片"
 
-#: ../../include/text.php:296
-msgid "first"
-msgstr "首先"
+#: ../../include/bbcode.php:272
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>"
 
-#: ../../include/text.php:325
-msgid "last"
-msgstr "最后"
+#: ../../include/bbcode.php:514 ../../include/bbcode.php:534
+msgid "$1 wrote:"
+msgstr "$1写:"
 
-#: ../../include/text.php:328
-msgid "next"
-msgstr "下个"
+#: ../../include/bbcode.php:559 ../../include/bbcode.php:560
+msgid "Encrypted content"
+msgstr "加密的内容"
 
-#: ../../include/text.php:352
-msgid "newer"
-msgstr "更新"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "任何人可见的"
 
-#: ../../include/text.php:356
-msgid "older"
-msgstr "更旧"
+#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "show"
+msgstr "著"
 
-#: ../../include/text.php:807
-msgid "No contacts"
-msgstr "没有熟人"
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "don't show"
+msgstr "别著"
 
-#: ../../include/text.php:816
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d熟人"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "注销了"
 
-#: ../../include/text.php:828 ../../mod/viewcontacts.php:76
-msgid "View Contacts"
-msgstr "看熟人"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "登记失败了。"
 
-#: ../../include/text.php:905 ../../include/text.php:906
-#: ../../include/nav.php:118 ../../mod/search.php:99
-msgid "Search"
-msgstr "搜索"
+#: ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"
 
-#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "保存"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "错误通知是:"
 
-#: ../../include/text.php:957
-msgid "poke"
-msgstr "戳"
+#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../include/text.php:957 ../../include/conversation.php:211
-msgid "poked"
-msgstr "戳了"
+#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
+msgid "Starts:"
+msgstr "开始:"
 
-#: ../../include/text.php:958
-msgid "ping"
-msgstr "ç °"
+#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "ç»\93æ\9d\9fï¼\9a"
 
-#: ../../include/text.php:958
-msgid "pinged"
-msgstr "砰了"
+#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485
+msgid "Location:"
+msgstr "位置:"
 
-#: ../../include/text.php:959
-msgid "prod"
-msgstr "柔戳"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
+msgid "Disallowed profile URL."
+msgstr "不允许的简介地址."
 
-#: ../../include/text.php:959
-msgid "prodded"
-msgstr "柔戳了"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "连接URL失踪的。"
 
-#: ../../include/text.php:960
-msgid "slap"
-msgstr "掌击"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "这网站没配置允许跟别的网络交流."
 
-#: ../../include/text.php:960
-msgid "slapped"
-msgstr "æ\8e\8cå\87»äº\86"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "没æ\9c\89å\85¼å®¹å\8d\8fè®®æ\88\96è\80\85æ\91\98è¦\81æ\89¾å\88°äº\86."
 
-#: ../../include/text.php:961
-msgid "finger"
-msgstr ""
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "输入的简介地址没有够消息。"
 
-#: ../../include/text.php:961
-msgid "fingered"
-msgstr "æ\8c\87äº\86"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "æ\89¾ä¸\8då\88°ä½\9cè\80\85æ\88\96å\90\8dã\80\82"
 
-#: ../../include/text.php:962
-msgid "rebuff"
-msgstr "窝脖儿"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "这个地址没有符合什么游览器URL。"
 
-#: ../../include/text.php:962
-msgid "rebuffed"
-msgstr "窝脖儿了"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "使不了知道的相配或邮件熟人相配 "
 
-#: ../../include/text.php:976
-msgid "happy"
-msgstr "开心"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "输入mailto:地址前为要求电子邮件检查。"
 
-#: ../../include/text.php:977
-msgid "sad"
-msgstr "伤心"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "输入的简介地址属在这个网站使不可用的网络。"
 
-#: ../../include/text.php:978
-msgid "mellow"
-msgstr "轻松"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "有限的简介。这人不会接受直达/私人通信从您。"
 
-#: ../../include/text.php:979
-msgid "tired"
-msgstr ""
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "不能取回熟人消息。"
 
-#: ../../include/text.php:980
-msgid "perky"
-msgstr "机敏"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "关注"
 
-#: ../../include/text.php:981
-msgid "angry"
-msgstr "生气"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "邀请必要的。"
 
-#: ../../include/text.php:982
-msgid "stupified"
-msgstr "麻醉"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "不能证实邀请。"
 
-#: ../../include/text.php:983
-msgid "puzzled"
-msgstr "纳闷"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "无效的OpenID url"
 
-#: ../../include/text.php:984
-msgid "interested"
-msgstr "有兴趣"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "请输入必要的信息。"
 
-#: ../../include/text.php:985
-msgid "bitter"
-msgstr "è\8b¦"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "请ç\94¨ç\9f­ä¸\80ç\82¹å\90\8dã\80\82"
 
-#: ../../include/text.php:986
-msgid "cheerful"
-msgstr "å¿«ä¹\90"
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "å\90\8då­\97太ç\9f­ã\80\82"
 
-#: ../../include/text.php:987
-msgid "alive"
-msgstr "活着"
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "这看上去不是您的全姓名。"
 
-#: ../../include/text.php:988
-msgid "annoyed"
-msgstr "被ç\83¦æ\81¼"
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "è¿\99ç½\91ç«\99å\85\81许ç\9a\84å\9f\9få\90\8d中没æ\9c\89æ\82¨ç\9a\84"
 
-#: ../../include/text.php:989
-msgid "anxious"
-msgstr "心焦"
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "无效的邮件地址。"
 
-#: ../../include/text.php:990
-msgid "cranky"
-msgstr "不"
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "不能用这个邮件地址。"
 
-#: ../../include/text.php:991
-msgid "disturbed"
-msgstr "不安"
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "您的昵称只能包含\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"
 
-#: ../../include/text.php:992
-msgid "frustrated"
-msgstr "被作梗"
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "昵称已经报到。请选择新的。"
 
-#: ../../include/text.php:993
-msgid "motivated"
-msgstr "士气高涨"
+#: ../../include/user.php:138
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "昵称曾经这里注册于是不能再用。请选择别的。"
 
-#: ../../include/text.php:994
-msgid "relaxed"
-msgstr "è½»æ\9d¾"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "è¦\81ç´§é\94\99误ï¼\9a产ç\94\9få®\89å\85¨é\92¥å\8c\99失败äº\86ã\80\82"
 
-#: ../../include/text.php:995
-msgid "surprised"
-msgstr "诧å¼\82"
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "æ\8a¥å\88°å\87ºäº\86é\97®é¢\98ã\80\82请å\86\8dè¯\95ã\80\82"
 
-#: ../../include/text.php:1161
-msgid "Monday"
-msgstr "星期一"
+#: ../../include/user.php:237 ../../include/text.php:1596
+msgid "default"
+msgstr "默认"
 
-#: ../../include/text.php:1161
-msgid "Tuesday"
-msgstr "星期二"
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "造成默认简介出了问题。请再试。"
 
-#: ../../include/text.php:1161
-msgid "Wednesday"
-msgstr "星期三"
+#: ../../include/user.php:325 ../../include/user.php:332
+#: ../../include/user.php:339 ../../mod/photos.php:154
+#: ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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:493
+msgid "Profile Photos"
+msgstr "简介照片"
 
-#: ../../include/text.php:1161
-msgid "Thursday"
-msgstr "æ\98\9fæ\9c\9få\9b\9b"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "æ\9cªç\9f¥ç\9a\84 ï½\9cæ\97 å\88\86ç±»"
 
-#: ../../include/text.php:1161
-msgid "Friday"
-msgstr "星期五"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "立即拦"
 
-#: ../../include/text.php:1161
-msgid "Saturday"
-msgstr "星期六"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "可疑,发垃圾者,自市场开发者"
 
-#: ../../include/text.php:1161
-msgid "Sunday"
-msgstr "æ\98\9fæ\9c\9f天"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "æ\88\91认è¯\86ï¼\8cä½\86没æ\9c\89æ\84\8fè§\81"
 
-#: ../../include/text.php:1165
-msgid "January"
-msgstr "一月"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "行,大概无恶意的"
 
-#: ../../include/text.php:1165
-msgid "February"
-msgstr "二月"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "可信的,有我的信任"
 
-#: ../../include/text.php:1165
-msgid "March"
-msgstr "三月"
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
+msgid "Frequently"
+msgstr "时常"
 
-#: ../../include/text.php:1165
-msgid "April"
-msgstr "四月"
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
+msgid "Hourly"
+msgstr "每小时"
 
-#: ../../include/text.php:1165
-msgid "May"
-msgstr "五月"
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
+msgid "Twice daily"
+msgstr "每日两次"
 
-#: ../../include/text.php:1165
-msgid "June"
-msgstr "六月"
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
+msgid "Daily"
+msgstr "每日"
 
-#: ../../include/text.php:1165
-msgid "July"
-msgstr "七月"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "每周"
 
-#: ../../include/text.php:1165
-msgid "August"
-msgstr "月"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "月"
 
-#: ../../include/text.php:1165
-msgid "September"
-msgstr "九月"
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../include/text.php:1165
-msgid "October"
-msgstr "十月"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../include/text.php:1165
-msgid "November"
-msgstr "十一月"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../include/text.php:1165
-msgid "December"
-msgstr "十二月"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
+#: ../../mod/admin.php:777
+msgid "Email"
+msgstr "电子邮件"
 
-#: ../../include/text.php:1322
-msgid "bytes"
-msgstr "字节"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705
+#: ../../mod/dfrn_request.php:842
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../include/text.php:1349 ../../include/text.php:1361
-msgid "Click to open/close"
-msgstr "点击为开关"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../include/text.php:1523 ../../mod/events.php:335
-msgid "link to source"
-msgstr "链接到来源"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../include/text.php:1566 ../../include/user.php:237
-msgid "default"
-msgstr "默认"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../include/text.php:1578
-msgid "Select an alternate language"
-msgstr "选择别的语言"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../include/text.php:1830 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
-msgid "event"
-msgstr "项目"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../include/text.php:1832 ../../include/diaspora.php:1874
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
-#: ../../view/theme/diabook/theme.php:464
-msgid "photo"
-msgstr "照片"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../include/text.php:1834
-msgid "activity"
-msgstr "活动"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "增添新的熟人"
 
-#: ../../include/text.php:1836 ../../mod/content.php:628
-#: ../../object/Item.php:364 ../../object/Item.php:377
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "评论"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "输入地址或网位置"
 
-#: ../../include/text.php:1837
-msgid "post"
-msgstr "æ\96\87ç« "
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "æ¯\94å¦\82ï¼\9ali@example.com, http://example.com/li"
 
-#: ../../include/text.php:1992
-msgid "Item filed"
-msgstr "把项目归档了"
+#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
+#: ../../mod/match.php:58 ../../boot.php:1417
+msgid "Connect"
+msgstr "连接"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "任何人可见的"
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d邀请可用的"
 
-#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "show"
-msgstr "著"
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "找人物"
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "don't show"
-msgstr "别著"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "输入名字或兴趣"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "注销了"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "连接/关注"
 
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "登记失败了。"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "比如:李某,打鱼"
 
-#: ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"
+#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
+#: ../../mod/directory.php:61
+msgid "Find"
+msgstr "搜索"
 
-#: ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "错误通知是:"
+#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
+#: ../../view/theme/diabook/theme.php:520
+msgid "Friend Suggestions"
+msgstr "友谊建议"
 
-#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
-#: ../../mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
+msgid "Similar Interests"
+msgstr "相似兴趣"
 
-#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
-msgid "Starts:"
-msgstr "开始:"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "随机简介"
 
-#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "结束:"
-
-#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
-#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1483
-msgid "Location:"
-msgstr "位置:"
+#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
+msgid "Invite Friends"
+msgstr "邀请朋友们"
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
-msgid "Disallowed profile URL."
-msgstr "不允许的简介地址."
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "网络"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "连接URL失踪的。"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "所有网络"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "这网站没配置允许跟别的网络交流."
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "保存的文件夹"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "没有兼容协议或者摘要找到了."
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "一切"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "输入的简介地址没有够消息。"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "种类"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "找不到作者或名。"
+#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d共同熟人"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "这个地址没有符合什么游览器URL。"
+#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
+#: ../../object/Item.php:365 ../../boot.php:671
+msgid "show more"
+msgstr "看多"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "使不了知道的相配或邮件熟人相配 "
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "在Last.fm"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "输入mailto:地址前为要求电子邮件检查。"
+#: ../../include/network.php:877
+msgid "view full size"
+msgstr "看全尺寸"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "输入的简介地址属在这个网站使不可用的网络。"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "形形色色"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "有限的简介。这人不会接受直达/私人通信从您。"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "年"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "不能取回熟人消息。"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr ""
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "关注"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr ""
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "邀请必要的。"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "从未"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "ä¸\8dè\83½è¯\81å®\9eé\82\80请ã\80\82"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "ä¸\80ç§\92以å\86\85"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "无效的OpenID url"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr ""
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "请输入必要的信息。"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr ""
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "请用短一点名。"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "星期"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "名字太短。"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "星期"
 
-#: ../../include/user.php:98
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "这看上去不是您的全姓名。"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr ""
 
-#: ../../include/user.php:103
-msgid "Your email domain is not among those allowed on this site."
-msgstr "这网站允许的域名中没有您的"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "小时"
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "无效的邮件地址。"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "小时"
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "不能用这个邮件地址。"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "分钟"
 
-#: ../../include/user.php:122
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "您的昵称只能包含\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "分钟"
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "昵称已经报到。请选择新的。"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr ""
 
-#: ../../include/user.php:138
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "昵称曾经这里注册于是不能再用。请选择别的。"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "秒"
 
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "要紧错误:产生安全钥匙失败了。"
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s以前"
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "报到出了问题。请再试。"
+#: ../../include/datetime.php:472 ../../include/items.php:1813
+#, php-format
+msgid "%s's birthday"
+msgstr "%s的生日"
 
-#: ../../include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "造成默认简介出了问题。请再试。"
+#: ../../include/datetime.php:473 ../../include/items.php:1814
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "生日快乐%s"
 
-#: ../../include/user.php:325 ../../include/user.php:332
-#: ../../include/user.php:339 ../../mod/photos.php:154
-#: ../../mod/photos.php:725 ../../mod/photos.php:1183
-#: ../../mod/photos.php:1206 ../../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:493
-msgid "Profile Photos"
-msgstr "简介照片"
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "这里点击为更新。"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "未知的 |无分类"
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "这个行动超过您订阅的限制。"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "立即拦"
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "这个行动在您的订阅不可用的。"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "可疑,发垃圾者,自市场开发者"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "沒有题目"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "我认识,但没有意见"
+#: ../../include/delivery.php:468 ../../include/enotify.php:28
+#: ../../include/notifier.php:785
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "行,大概无恶意的"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s是成为%2$s的朋友"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "å\8f¯ä¿¡ç\9a\84ï¼\8cæ\9c\89æ\88\91ç\9a\84ä¿¡ä»»"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "å\88\86享é\80\9aç\9f¥ä»\8eDiasporaç½\91ç»\9c"
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
-msgid "Frequently"
-msgstr "时常"
+#: ../../include/diaspora.php:1874 ../../include/text.php:1862
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../view/theme/diabook/theme.php:464
+msgid "photo"
+msgstr "照片"
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
-msgid "Hourly"
-msgstr "每小时"
-
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
-msgid "Twice daily"
-msgstr "每日两次"
-
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
-msgid "Daily"
-msgstr "每日"
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468
+msgid "status"
+msgstr "现状"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "每周"
+#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
+#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s喜欢%2$s的%3$s"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "每月"
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "附件:"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[名字拒给]"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/items.php:3495
+msgid "A new person is sharing with you at "
+msgstr "一位新人给你分享在"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/items.php:3495
+msgid "You have a new follower at "
+msgstr "你有新的关注者在"
 
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
-#: ../../mod/admin.php:777
-msgid "Email"
-msgstr "电子邮件"
+#: ../../include/items.php:3979 ../../mod/display.php:51
+#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809
+#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
+msgid "Item not found."
+msgstr "项目找不到。"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705
-#: ../../mod/dfrn_request.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../include/items.php:4018
+msgid "Do you really want to delete this item?"
+msgstr "您真的想删除这个项目吗?"
 
-#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
-#: ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../include/items.php:4020 ../../mod/profiles.php:610
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:961 ../../mod/settings.php:967
+#: ../../mod/settings.php:975 ../../mod/settings.php:979
+#: ../../mod/settings.php:984 ../../mod/settings.php:990
+#: ../../mod/settings.php:996 ../../mod/settings.php:1002
+#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
+#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "是"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../include/items.php:4023 ../../include/conversation.php:1120
+#: ../../mod/contacts.php:249 ../../mod/settings.php:585
+#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848
+#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
+#: ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "退消"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/items.php:4143 ../../mod/profiles.php:146
+#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242
+#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159
+#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/settings.php:91
+#: ../../mod/settings.php:566 ../../mod/settings.php:571
+#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
+#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
+#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/notifications.php:66
+#: ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/install.php:151 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../index.php:346
+msgid "Permission denied."
+msgstr "权限不够。"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/items.php:4213
+msgid "Archives"
+msgstr "档案"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "总的特点"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "多简介"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "增添新的熟人"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "能穿凿多简介"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "输入地址或网位置"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "写文章特点"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "比如:li@example.com, http://example.com/li"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "富文本格式编辑"
 
-#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
-#: ../../mod/match.php:58 ../../boot.php:1415
-msgid "Connect"
-msgstr "连接"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "使富文本格式编辑可用"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d邀请可用的"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "文章预演"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "找人物"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "允许文章和评论出版前预演"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "è¾\93å\85¥å\90\8då­\97æ\88\96å\85´è¶£"
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr "ç½\91ç»\9cå·¥å\85·æ \8få°\8fçª\97å\8f£"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "连接/关注"
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "按日期搜索"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "比如:李某,打鱼"
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr "能按时期范围选择文章"
 
-#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
-#: ../../mod/directory.php:61
-msgid "Find"
-msgstr "搜索"
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "组滤器"
 
-#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
-#: ../../view/theme/diabook/theme.php:520
-msgid "Friend Suggestions"
-msgstr "友谊建议"
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "使光表示网络文章从选择的组小窗口"
 
-#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
-msgid "Similar Interests"
-msgstr "ç\9b¸ä¼¼å\85´è¶£"
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr "ç½\91ç»\9c滤å\99¨"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "随机简介"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "使光表示网络文章从选择的网络小窗口"
 
-#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
-msgid "Invite Friends"
-msgstr "邀请朋友们"
+#: ../../include/features.php:41 ../../mod/search.php:30
+#: ../../mod/network.php:233
+msgid "Saved Searches"
+msgstr "保存的搜索"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "网络"
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr "保存搜索关键为再用"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "所有网络"
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr "网络分页"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "保存的文件夹"
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr "网络私人分页"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "ä¸\80å\88\87"
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "使表示å\85\89ç½\91ç»\9cæ\96\87ç« æ\82¨å\8f\82å\8a äº\86å\88\86页å\8f¯ç\94¨"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "ç§\8dç±»"
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr "ç½\91ç»\9cæ\96°å\88\86页"
 
-#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d共同熟人"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "使表示光网络文章在12小时内分页可用"
 
-#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
-#: ../../object/Item.php:365 ../../boot.php:669
-msgid "show more"
-msgstr "看多"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr "网络分享链接分页"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "在Last.fm"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "使表示光网络文章包括链接分页可用"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
-msgid "Image/photo"
-msgstr "图像/照片"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr "文章/评论工具"
 
-#: ../../include/bbcode.php:272
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>"
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr "多删除"
 
-#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
-msgid "$1 wrote:"
-msgstr "$1写:"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr "选择和删除多文章/评论一次"
 
-#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
-msgid "Encrypted content"
-msgstr "加密的内容"
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr "编辑发送的文章"
 
-#: ../../include/network.php:875
-msgid "view full size"
-msgstr "ç\9c\8bå\85¨å°ºå¯¸"
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr "ç¼\96è¾\91æ\88\96ä¿®æ\94¹æ\96\87ç« å\92\8cè¯\84论å\8f\91é\80\81å\90\8e"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "形形色色"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "标签"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr ""
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr "能把目前的文章标签"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "æ\9c\88"
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr "æ\96\87ç« ç§\8dç±»"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr ""
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "加入种类给您的文章"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "从未"
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr "能把文章归档在文件夹 "
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "ä¸\80ç§\92以å\86\85"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr "ä¸\8då\96\9c欢æ\96\87ç« "
 
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr ""
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr "能不喜欢文章/评论"
 
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "æ\9c\88"
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "æ\96\87ç« æ\98\9f"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "星期"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr "能把优秀文章跟星标注"
 
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "星期"
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "找不到DNS信息为数据库服务器「%s」"
 
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr ""
+#: ../../include/text.php:294
+msgid "prev"
+msgstr "上个"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "小时"
+#: ../../include/text.php:296
+msgid "first"
+msgstr "首先"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "小时"
+#: ../../include/text.php:325
+msgid "last"
+msgstr "最后"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "分钟"
+#: ../../include/text.php:328
+msgid "next"
+msgstr "下个"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "分钟"
+#: ../../include/text.php:352
+msgid "newer"
+msgstr "更新"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr ""
+#: ../../include/text.php:356
+msgid "older"
+msgstr "更旧"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr ""
+#: ../../include/text.php:807
+msgid "No contacts"
+msgstr "没有熟人"
 
-#: ../../include/datetime.php:300
+#: ../../include/text.php:816
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s以前"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d熟人"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1813
-#, php-format
-msgid "%s's birthday"
-msgstr "%s的生日"
+#: ../../include/text.php:828 ../../mod/viewcontacts.php:76
+msgid "View Contacts"
+msgstr "看熟人"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1814
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "生日快乐%s"
+#: ../../include/text.php:905 ../../include/text.php:906
+#: ../../include/nav.php:118 ../../mod/search.php:99
+msgid "Search"
+msgstr "搜索"
 
-#: ../../include/plugin.php:439 ../../include/plugin.php:441
-msgid "Click here to upgrade."
-msgstr "这里点击为更新。"
+#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "保存"
 
-#: ../../include/plugin.php:447
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "这个行动超过您订阅的限制。"
+#: ../../include/text.php:957
+msgid "poke"
+msgstr ""
 
-#: ../../include/plugin.php:452
-msgid "This action is not available under your subscription plan."
-msgstr "这个行动在您的订阅不可用的。"
+#: ../../include/text.php:957 ../../include/conversation.php:211
+msgid "poked"
+msgstr "戳了"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "沒有题目"
+#: ../../include/text.php:958
+msgid "ping"
+msgstr ""
 
-#: ../../include/delivery.php:468 ../../include/enotify.php:28
-#: ../../include/notifier.php:785
-msgid "noreply"
-msgstr "noreply"
+#: ../../include/text.php:958
+msgid "pinged"
+msgstr "砰了"
 
-#: ../../include/diaspora.php:621 ../../include/conversation.php:172
-#: ../../mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s是成为%2$s的朋友"
+#: ../../include/text.php:959
+msgid "prod"
+msgstr "柔戳"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "分享通知从Diaspora网络"
+#: ../../include/text.php:959
+msgid "prodded"
+msgstr "柔戳了"
 
-#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
-#: ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468
-msgid "status"
-msgstr "现状"
+#: ../../include/text.php:960
+msgid "slap"
+msgstr "掌击"
 
-#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
-#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s喜欢%2$s的%3$s"
+#: ../../include/text.php:960
+msgid "slapped"
+msgstr "掌击了"
 
-#: ../../include/diaspora.php:2262
-msgid "Attachments:"
-msgstr "附件:"
+#: ../../include/text.php:961
+msgid "finger"
+msgstr ""
 
-#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716
-msgid "[Name Withheld]"
-msgstr "[名字拒给]"
+#: ../../include/text.php:961
+msgid "fingered"
+msgstr "指了"
 
-#: ../../include/items.php:3495
-msgid "A new person is sharing with you at "
-msgstr "一位新人给你分享在"
+#: ../../include/text.php:962
+msgid "rebuff"
+msgstr "窝脖儿"
 
-#: ../../include/items.php:3495
-msgid "You have a new follower at "
-msgstr "你有新的关注者在"
+#: ../../include/text.php:962
+msgid "rebuffed"
+msgstr "窝脖儿了"
 
-#: ../../include/items.php:3979 ../../mod/display.php:51
-#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809
-#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
-msgid "Item not found."
-msgstr "项目找不到。"
+#: ../../include/text.php:976
+msgid "happy"
+msgstr "开心"
 
-#: ../../include/items.php:4018
-msgid "Do you really want to delete this item?"
-msgstr "您真的想删除这个项目吗?"
+#: ../../include/text.php:977
+msgid "sad"
+msgstr "伤心"
 
-#: ../../include/items.php:4020 ../../mod/profiles.php:610
-#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:961 ../../mod/settings.php:967
-#: ../../mod/settings.php:975 ../../mod/settings.php:979
-#: ../../mod/settings.php:984 ../../mod/settings.php:990
-#: ../../mod/settings.php:996 ../../mod/settings.php:1002
-#: ../../mod/settings.php:1032 ../../mod/settings.php:1033
-#: ../../mod/settings.php:1034 ../../mod/settings.php:1035
-#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-msgid "Yes"
-msgstr "是"
+#: ../../include/text.php:978
+msgid "mellow"
+msgstr "轻松"
 
-#: ../../include/items.php:4023 ../../include/conversation.php:1080
-#: ../../mod/contacts.php:249 ../../mod/settings.php:585
-#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848
-#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
-#: ../../mod/photos.php:202 ../../mod/photos.php:290
-msgid "Cancel"
-msgstr "退消"
+#: ../../include/text.php:979
+msgid "tired"
+msgstr "累"
 
-#: ../../include/items.php:4143 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242
-#: ../../mod/nogroup.php:25 ../../mod/item.php:140 ../../mod/item.php:156
-#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33
-#: ../../mod/contacts.php:147 ../../mod/settings.php:91
-#: ../../mod/settings.php:566 ../../mod/settings.php:571
-#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135
-#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
-#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
-#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
-#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
-#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
-#: ../../mod/network.php:6 ../../mod/notifications.php:66
-#: ../../mod/photos.php:133 ../../mod/photos.php:1044
-#: ../../mod/install.php:151 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../index.php:346
-msgid "Permission denied."
-msgstr "权限不够。"
+#: ../../include/text.php:980
+msgid "perky"
+msgstr "机敏"
 
-#: ../../include/items.php:4213
-msgid "Archives"
-msgstr "档案"
+#: ../../include/text.php:981
+msgid "angry"
+msgstr "生气"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "总的特点"
+#: ../../include/text.php:982
+msgid "stupified"
+msgstr "麻醉"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "多简介"
+#: ../../include/text.php:983
+msgid "puzzled"
+msgstr "纳闷"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "能穿凿多简介"
+#: ../../include/text.php:984
+msgid "interested"
+msgstr "有兴趣"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "写文章特点"
+#: ../../include/text.php:985
+msgid "bitter"
+msgstr ""
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "å¯\8cæ\96\87æ\9c¬æ ¼å¼\8fç¼\96è¾\91"
+#: ../../include/text.php:986
+msgid "cheerful"
+msgstr "å¿«ä¹\90"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "使富文本格式编辑可用"
+#: ../../include/text.php:987
+msgid "alive"
+msgstr "活着"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "文章预演"
+#: ../../include/text.php:988
+msgid "annoyed"
+msgstr "被烦恼"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "å\85\81许æ\96\87ç« å\92\8cè¯\84论å\87ºç\89\88å\89\8dé¢\84æ¼\94"
+#: ../../include/text.php:989
+msgid "anxious"
+msgstr "å¿\83ç\84¦"
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "网络工具栏小窗口"
+#: ../../include/text.php:990
+msgid "cranky"
+msgstr "不稳"
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "按日期搜索"
+#: ../../include/text.php:991
+msgid "disturbed"
+msgstr "不安"
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "è\83½æ\8c\89æ\97¶æ\9c\9fè\8c\83å\9b´é\80\89æ\8b©æ\96\87ç« "
+#: ../../include/text.php:992
+msgid "frustrated"
+msgstr "被ä½\9cæ¢\97"
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "ç»\84滤å\99¨"
+#: ../../include/text.php:993
+msgid "motivated"
+msgstr "士æ°\94é«\98涨"
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "使光表示网络文章从选择的组小窗口"
+#: ../../include/text.php:994
+msgid "relaxed"
+msgstr "轻松"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "网络滤器"
+#: ../../include/text.php:995
+msgid "surprised"
+msgstr "诧异"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "使光表示网络文章从选择的网络小窗口"
+#: ../../include/text.php:1163
+msgid "Monday"
+msgstr "星期一"
 
-#: ../../include/features.php:41 ../../mod/search.php:30
-#: ../../mod/network.php:233
-msgid "Saved Searches"
-msgstr "保存的搜索"
+#: ../../include/text.php:1163
+msgid "Tuesday"
+msgstr "星期二"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "保存搜索关键为再用"
+#: ../../include/text.php:1163
+msgid "Wednesday"
+msgstr "星期三"
 
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "网络分页"
+#: ../../include/text.php:1163
+msgid "Thursday"
+msgstr "星期四"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "网络私人分页"
+#: ../../include/text.php:1163
+msgid "Friday"
+msgstr "星期五"
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "使表示光网络文章您参加了分页可用"
+#: ../../include/text.php:1163
+msgid "Saturday"
+msgstr "星期六"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "网络新分页"
+#: ../../include/text.php:1163
+msgid "Sunday"
+msgstr "星期天"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "使表示å\85\89ç½\91ç»\9cæ\96\87ç« å\9c¨12å°\8fæ\97¶å\86\85å\88\86页å\8f¯ç\94¨"
+#: ../../include/text.php:1167
+msgid "January"
+msgstr "ä¸\80æ\9c\88"
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr "网络分享链接分页"
+#: ../../include/text.php:1167
+msgid "February"
+msgstr "二月"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "使表示å\85\89ç½\91ç»\9cæ\96\87ç« å\8c\85æ\8b¬é\93¾æ\8e¥å\88\86页å\8f¯ç\94¨"
+#: ../../include/text.php:1167
+msgid "March"
+msgstr "ä¸\89æ\9c\88"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "文章/评论工具"
+#: ../../include/text.php:1167
+msgid "April"
+msgstr "四月"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "多删除"
+#: ../../include/text.php:1167
+msgid "May"
+msgstr "五月"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "选择和删除多文章/评论一次"
+#: ../../include/text.php:1167
+msgid "June"
+msgstr "六月"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "编辑发送的文章"
+#: ../../include/text.php:1167
+msgid "July"
+msgstr "七月"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "编辑或修改文章和评论发送后"
+#: ../../include/text.php:1167
+msgid "August"
+msgstr "八月"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "标签"
+#: ../../include/text.php:1167
+msgid "September"
+msgstr "九月"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "能把目前的文章标签"
+#: ../../include/text.php:1167
+msgid "October"
+msgstr "十月"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "文章种类"
+#: ../../include/text.php:1167
+msgid "November"
+msgstr "十一月"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "å\8a å\85¥ç§\8dç±»ç»\99æ\82¨ç\9a\84æ\96\87ç« "
+#: ../../include/text.php:1167
+msgid "December"
+msgstr "å\8d\81äº\8cæ\9c\88"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "能把文章归档在文件夹 "
+#: ../../include/text.php:1323 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "看视频"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "不喜欢文章"
+#: ../../include/text.php:1355
+msgid "bytes"
+msgstr "字节"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "能不喜欢文章/评论"
+#: ../../include/text.php:1379 ../../include/text.php:1391
+msgid "Click to open/close"
+msgstr "点击为开关"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "文章星"
+#: ../../include/text.php:1553 ../../mod/events.php:335
+msgid "link to source"
+msgstr "链接到来源"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr "能把优秀文章跟星标注"
+#: ../../include/text.php:1608
+msgid "Select an alternate language"
+msgstr "选择别的语言"
 
-#: ../../include/dba.php:44
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "找不到DNS信息为数据库服务器「%s」"
+#: ../../include/text.php:1860 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
+msgid "event"
+msgstr "项目"
+
+#: ../../include/text.php:1864
+msgid "activity"
+msgstr "活动"
+
+#: ../../include/text.php:1866 ../../mod/content.php:628
+#: ../../object/Item.php:364 ../../object/Item.php:377
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "评论"
+
+#: ../../include/text.php:1867
+msgid "post"
+msgstr "文章"
+
+#: ../../include/text.php:2022
+msgid "Item filed"
+msgstr "把项目归档了"
 
 #: ../../include/group.php:25
 msgid ""
@@ -1540,44 +1545,44 @@ msgstr "文章/项目"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s标注%2$s的%3$s为偏爱"
 
-#: ../../include/conversation.php:587 ../../mod/content.php:461
+#: ../../include/conversation.php:612 ../../mod/content.php:461
 #: ../../mod/content.php:763 ../../object/Item.php:126
 msgid "Select"
 msgstr "选择"
 
-#: ../../include/conversation.php:588 ../../mod/admin.php:770
+#: ../../include/conversation.php:613 ../../mod/admin.php:770
 #: ../../mod/settings.php:647 ../../mod/group.php:171
 #: ../../mod/photos.php:1637 ../../mod/content.php:462
 #: ../../mod/content.php:764 ../../object/Item.php:127
 msgid "Delete"
 msgstr "删除"
 
-#: ../../include/conversation.php:627 ../../mod/content.php:495
+#: ../../include/conversation.php:652 ../../mod/content.php:495
 #: ../../mod/content.php:875 ../../mod/content.php:876
 #: ../../object/Item.php:306 ../../object/Item.php:307
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "看%s的简介@ %s"
 
-#: ../../include/conversation.php:639 ../../object/Item.php:297
+#: ../../include/conversation.php:664 ../../object/Item.php:297
 msgid "Categories:"
 msgstr "种类:"
 
-#: ../../include/conversation.php:640 ../../object/Item.php:298
+#: ../../include/conversation.php:665 ../../object/Item.php:298
 msgid "Filed under:"
 msgstr "归档在:"
 
-#: ../../include/conversation.php:647 ../../mod/content.php:505
+#: ../../include/conversation.php:672 ../../mod/content.php:505
 #: ../../mod/content.php:887 ../../object/Item.php:320
 #, php-format
 msgid "%s from %s"
 msgstr "%s从%s"
 
-#: ../../include/conversation.php:662 ../../mod/content.php:520
+#: ../../include/conversation.php:687 ../../mod/content.php:520
 msgid "View in context"
 msgstr "看在上下文"
 
-#: ../../include/conversation.php:664 ../../include/conversation.php:1060
+#: ../../include/conversation.php:689 ../../include/conversation.php:1100
 #: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
 #: ../../mod/message.php:334 ../../mod/message.php:565
 #: ../../mod/photos.php:1532 ../../mod/content.php:522
@@ -1585,205 +1590,205 @@ msgstr "看在上下文"
 msgid "Please wait"
 msgstr "请等一下"
 
-#: ../../include/conversation.php:728
+#: ../../include/conversation.php:768
 msgid "remove"
 msgstr "删除"
 
-#: ../../include/conversation.php:732
+#: ../../include/conversation.php:772
 msgid "Delete Selected Items"
 msgstr "删除选的项目"
 
-#: ../../include/conversation.php:831
+#: ../../include/conversation.php:871
 msgid "Follow Thread"
 msgstr "关注线绳"
 
-#: ../../include/conversation.php:900
+#: ../../include/conversation.php:940
 #, php-format
 msgid "%s likes this."
 msgstr "%s喜欢这个."
 
-#: ../../include/conversation.php:900
+#: ../../include/conversation.php:940
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s没有喜欢这个."
 
-#: ../../include/conversation.php:905
+#: ../../include/conversation.php:945
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr "<span  %1$s>%2$d人们</span>喜欢这个"
 
-#: ../../include/conversation.php:908
+#: ../../include/conversation.php:948
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr "<span  %1$s>%2$d人们</span>不喜欢这个"
 
-#: ../../include/conversation.php:922
+#: ../../include/conversation.php:962
 msgid "and"
 msgstr "和"
 
-#: ../../include/conversation.php:928
+#: ../../include/conversation.php:968
 #, php-format
 msgid ", and %d other people"
 msgstr ",和%d别人"
 
-#: ../../include/conversation.php:930
+#: ../../include/conversation.php:970
 #, php-format
 msgid "%s like this."
 msgstr "%s喜欢这个"
 
-#: ../../include/conversation.php:930
+#: ../../include/conversation.php:970
 #, php-format
 msgid "%s don't like this."
 msgstr "%s不喜欢这个"
 
-#: ../../include/conversation.php:957 ../../include/conversation.php:975
+#: ../../include/conversation.php:997 ../../include/conversation.php:1015
 msgid "Visible to <strong>everybody</strong>"
 msgstr "<strong>大家</strong>可见的"
 
-#: ../../include/conversation.php:958 ../../include/conversation.php:976
+#: ../../include/conversation.php:998 ../../include/conversation.php:1016
 #: ../../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 "请输入环节URL:"
 
-#: ../../include/conversation.php:959 ../../include/conversation.php:977
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
 msgid "Please enter a video link/URL:"
 msgstr "请输入视频连接/URL:"
 
-#: ../../include/conversation.php:960 ../../include/conversation.php:978
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
 msgid "Please enter an audio link/URL:"
 msgstr "请输入音响连接/URL:"
 
-#: ../../include/conversation.php:961 ../../include/conversation.php:979
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
 msgid "Tag term:"
 msgstr "标签:"
 
-#: ../../include/conversation.php:962 ../../include/conversation.php:980
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
 #: ../../mod/filer.php:30
 msgid "Save to Folder:"
 msgstr "保存再文件夹:"
 
-#: ../../include/conversation.php:963 ../../include/conversation.php:981
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
 msgid "Where are you right now?"
 msgstr "你在哪里?"
 
-#: ../../include/conversation.php:964
+#: ../../include/conversation.php:1004
 msgid "Delete item(s)?"
 msgstr "把项目删除吗?"
 
-#: ../../include/conversation.php:1006
+#: ../../include/conversation.php:1046
 msgid "Post to Email"
 msgstr "电邮发布"
 
-#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
+#: ../../include/conversation.php:1081 ../../mod/photos.php:1531
 msgid "Share"
 msgstr "分享"
 
-#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1082 ../../mod/editpost.php:110
 #: ../../mod/wallmessage.php:154 ../../mod/message.php:332
 #: ../../mod/message.php:562
 msgid "Upload photo"
 msgstr "上传照片"
 
-#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
+#: ../../include/conversation.php:1083 ../../mod/editpost.php:111
 msgid "upload photo"
 msgstr "上传照片"
 
-#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
+#: ../../include/conversation.php:1084 ../../mod/editpost.php:112
 msgid "Attach file"
 msgstr "附上文件"
 
-#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1085 ../../mod/editpost.php:113
 msgid "attach file"
 msgstr "附上文件"
 
-#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1086 ../../mod/editpost.php:114
 #: ../../mod/wallmessage.php:155 ../../mod/message.php:333
 #: ../../mod/message.php:563
 msgid "Insert web link"
 msgstr "插入网页环节"
 
-#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
+#: ../../include/conversation.php:1087 ../../mod/editpost.php:115
 msgid "web link"
 msgstr "网页环节"
 
-#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
+#: ../../include/conversation.php:1088 ../../mod/editpost.php:116
 msgid "Insert video link"
 msgstr "插入视频环节"
 
-#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
+#: ../../include/conversation.php:1089 ../../mod/editpost.php:117
 msgid "video link"
 msgstr "视频环节"
 
-#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
+#: ../../include/conversation.php:1090 ../../mod/editpost.php:118
 msgid "Insert audio link"
 msgstr "插入录音环节"
 
-#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:119
 msgid "audio link"
 msgstr "录音环节"
 
-#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:120
 msgid "Set your location"
 msgstr "设定您的位置"
 
-#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:121
 msgid "set location"
 msgstr "指定位置"
 
-#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
+#: ../../include/conversation.php:1094 ../../mod/editpost.php:122
 msgid "Clear browser location"
 msgstr "清空浏览器位置"
 
-#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:123
 msgid "clear location"
 msgstr "清理出位置"
 
-#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:137
 msgid "Set title"
 msgstr "指定标题"
 
-#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:139
 msgid "Categories (comma-separated list)"
 msgstr "种类(逗号分隔单)"
 
-#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:125
 msgid "Permission settings"
 msgstr "权设置"
 
-#: ../../include/conversation.php:1062
+#: ../../include/conversation.php:1102
 msgid "permissions"
 msgstr "权利"
 
-#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
+#: ../../include/conversation.php:1110 ../../mod/editpost.php:133
 msgid "CC: email addresses"
 msgstr "抄送: 电子邮件地址"
 
-#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:134
 msgid "Public post"
 msgstr "公开的消息"
 
-#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:140
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "比如: li@example.com, wang@example.com"
 
-#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
+#: ../../include/conversation.php:1117 ../../mod/editpost.php:145
 #: ../../mod/photos.php:1553 ../../mod/photos.php:1597
 #: ../../mod/photos.php:1680 ../../mod/content.php:742
 #: ../../object/Item.php:662
 msgid "Preview"
 msgstr "预演"
 
-#: ../../include/conversation.php:1086
+#: ../../include/conversation.php:1126
 msgid "Post to Groups"
 msgstr "发到组"
 
-#: ../../include/conversation.php:1087
+#: ../../include/conversation.php:1127
 msgid "Post to Contacts"
 msgstr "发到熟人"
 
-#: ../../include/conversation.php:1088
+#: ../../include/conversation.php:1128
 msgid "Private post"
 msgstr "私人文章"
 
@@ -1977,7 +1982,7 @@ msgstr "请批准或拒绝建议在%s"
 msgid "[no subject]"
 msgstr "[无题目]"
 
-#: ../../include/message.php:144 ../../mod/item.php:443
+#: ../../include/message.php:144 ../../mod/item.php:446
 #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
 #: ../../mod/wall_upload.php:151
 msgid "Wall Photos"
@@ -1991,7 +1996,7 @@ msgstr "这里没有什么新的"
 msgid "Clear notifications"
 msgstr "清理出通知"
 
-#: ../../include/nav.php:73 ../../boot.php:1134
+#: ../../include/nav.php:73 ../../boot.php:1136
 msgid "Logout"
 msgstr "注销"
 
@@ -1999,7 +2004,7 @@ msgstr "注销"
 msgid "End this session"
 msgstr "结束这段时间"
 
-#: ../../include/nav.php:76 ../../boot.php:1938
+#: ../../include/nav.php:76 ../../boot.php:1940
 msgid "Status"
 msgstr "现状"
 
@@ -2013,7 +2018,7 @@ msgid "Your profile page"
 msgstr "你的简介页"
 
 #: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1952
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954
 msgid "Photos"
 msgstr "照片"
 
@@ -2022,7 +2027,7 @@ msgid "Your photos"
 msgstr "你的照片"
 
 #: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1962
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971
 msgid "Events"
 msgstr "事件"
 
@@ -2038,7 +2043,7 @@ msgstr "私人的便条"
 msgid "Your personal photos"
 msgstr "你私人的照片"
 
-#: ../../include/nav.php:91 ../../boot.php:1135
+#: ../../include/nav.php:91 ../../boot.php:1137
 msgid "Login"
 msgstr "登录"
 
@@ -2055,7 +2060,7 @@ msgstr "主页"
 msgid "Home Page"
 msgstr "主页"
 
-#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1110
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112
 msgid "Register"
 msgstr "注册"
 
@@ -2184,7 +2189,7 @@ msgstr "配置"
 msgid "Account settings"
 msgstr "帐户配置"
 
-#: ../../include/nav.php:169 ../../boot.php:1437
+#: ../../include/nav.php:169 ../../boot.php:1439
 msgid "Profiles"
 msgstr "简介"
 
@@ -2582,23 +2587,23 @@ msgstr "年纪:"
 msgid "Edit/Manage Profiles"
 msgstr "编辑/管理简介"
 
-#: ../../mod/profiles.php:726 ../../boot.php:1443 ../../boot.php:1469
+#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471
 msgid "Change profile photo"
 msgstr "换简介照片"
 
-#: ../../mod/profiles.php:727 ../../boot.php:1444
+#: ../../mod/profiles.php:727 ../../boot.php:1446
 msgid "Create New Profile"
 msgstr "创造新的简介"
 
-#: ../../mod/profiles.php:738 ../../boot.php:1454
+#: ../../mod/profiles.php:738 ../../boot.php:1456
 msgid "Profile Image"
 msgstr "简介图像"
 
-#: ../../mod/profiles.php:740 ../../boot.php:1457
+#: ../../mod/profiles.php:740 ../../boot.php:1459
 msgid "visible to everybody"
 msgstr "给打假可见的"
 
-#: ../../mod/profiles.php:741 ../../boot.php:1458
+#: ../../mod/profiles.php:741 ../../boot.php:1460
 msgid "Edit visibility"
 msgstr "修改能见度"
 
@@ -2626,14 +2631,14 @@ msgstr "能见被"
 msgid "All Contacts (with secure profile access)"
 msgstr "所有熟人(跟安全地简介使用权)"
 
-#: ../../mod/notes.php:44 ../../boot.php:1969
+#: ../../mod/notes.php:44 ../../boot.php:1978
 msgid "Personal Notes"
 msgstr "私人便条"
 
 #: ../../mod/display.php:19 ../../mod/search.php:89
 #: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
-#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914
-#: ../../mod/community.php:18
+#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17
+#: ../../mod/photos.php:914 ../../mod/community.php:18
 msgid "Public access denied."
 msgstr "公众看拒绝"
 
@@ -3500,37 +3505,37 @@ msgstr "FTP用户"
 msgid "FTP Password"
 msgstr "FTP密码"
 
-#: ../../mod/item.php:105
+#: ../../mod/item.php:108
 msgid "Unable to locate original post."
 msgstr "找不到当初的新闻"
 
-#: ../../mod/item.php:307
+#: ../../mod/item.php:310
 msgid "Empty post discarded."
 msgstr "空心的新闻丢弃了"
 
-#: ../../mod/item.php:869
+#: ../../mod/item.php:872
 msgid "System error. Post not saved."
 msgstr "系统错误。x"
 
-#: ../../mod/item.php:894
+#: ../../mod/item.php:897
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
 
-#: ../../mod/item.php:896
+#: ../../mod/item.php:899
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "你可以网上拜访他在%s"
 
-#: ../../mod/item.php:897
+#: ../../mod/item.php:900
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
 
-#: ../../mod/item.php:901
+#: ../../mod/item.php:904
 #, php-format
 msgid "%s posted an update."
 msgstr "%s贴上一个新闻。"
@@ -5041,6 +5046,26 @@ msgstr "搜索人物"
 msgid "No matches"
 msgstr "没有结果"
 
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "没选择的视频"
+
+#: ../../mod/videos.php:226 ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "这个项目使用权限的。"
+
+#: ../../mod/videos.php:308 ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "看照片册"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "最近视频"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "上传新视频"
+
 #: ../../mod/tagrm.php:41
 msgid "Tag removed"
 msgstr "标签去除了"
@@ -5544,7 +5569,7 @@ msgid ""
 "Password reset failed."
 msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。"
 
-#: ../../mod/lostpass.php:84 ../../boot.php:1149
+#: ../../mod/lostpass.php:84 ../../boot.php:1151
 msgid "Password Reset"
 msgstr "复位密码"
 
@@ -5928,7 +5953,7 @@ msgstr "没有别的家通信。"
 msgid "Home Notifications"
 msgstr "主页通知"
 
-#: ../../mod/photos.php:51 ../../boot.php:1955
+#: ../../mod/photos.php:51 ../../boot.php:1957
 msgid "Photo Albums"
 msgstr "相册"
 
@@ -5988,10 +6013,6 @@ msgstr "图片文件空的。"
 msgid "No photos selected"
 msgstr "没有照片挑选了"
 
-#: ../../mod/photos.php:1025
-msgid "Access to this item is restricted."
-msgstr "这个项目使用权限的。"
-
 #: ../../mod/photos.php:1088
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
@@ -6129,14 +6150,10 @@ msgstr "这是你"
 
 #: ../../mod/photos.php:1551 ../../mod/photos.php:1595
 #: ../../mod/photos.php:1678 ../../mod/content.php:732
-#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:668
+#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670
 msgid "Comment"
 msgstr "评论"
 
-#: ../../mod/photos.php:1784
-msgid "View Album"
-msgstr "看照片册"
-
 #: ../../mod/photos.php:1793
 msgid "Recent Photos"
 msgstr "最近的照片"
@@ -6322,7 +6339,7 @@ msgid ""
 " features and resources."
 msgstr "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。"
 
-#: ../../mod/profile.php:21 ../../boot.php:1323
+#: ../../mod/profile.php:21 ../../boot.php:1325
 msgid "Requested profile is not available."
 msgstr "要求的简介联系不上的。"
 
@@ -6331,8 +6348,8 @@ msgid "Tips for New Members"
 msgstr "提示对新成员"
 
 #: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Friendica社会交通服务器-安装"
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica通服务器-安装"
 
 #: ../../mod/install.php:123
 msgid "Could not connect to database."
@@ -6961,124 +6978,128 @@ msgstr "文本区字体大小"
 msgid "toggle mobile"
 msgstr "交替手机"
 
-#: ../../boot.php:667
+#: ../../boot.php:669
 msgid "Delete this item?"
 msgstr "删除这个项目?"
 
-#: ../../boot.php:670
+#: ../../boot.php:672
 msgid "show fewer"
 msgstr "显示更小"
 
-#: ../../boot.php:997
+#: ../../boot.php:999
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "更新%s美通过。看错误记录。"
 
-#: ../../boot.php:999
+#: ../../boot.php:1001
 #, php-format
 msgid "Update Error at %s"
 msgstr "更新错误在%s"
 
-#: ../../boot.php:1109
+#: ../../boot.php:1111
 msgid "Create a New Account"
 msgstr "创造新的账户"
 
-#: ../../boot.php:1137
+#: ../../boot.php:1139
 msgid "Nickname or Email address: "
 msgstr "绰号或电子邮件地址: "
 
-#: ../../boot.php:1138
+#: ../../boot.php:1140
 msgid "Password: "
 msgstr "密码: "
 
-#: ../../boot.php:1139
+#: ../../boot.php:1141
 msgid "Remember me"
 msgstr "记住我"
 
-#: ../../boot.php:1142
+#: ../../boot.php:1144
 msgid "Or login using OpenID: "
 msgstr "或者用OpenID登记:"
 
-#: ../../boot.php:1148
+#: ../../boot.php:1150
 msgid "Forgot your password?"
 msgstr "忘记你的密码吗?"
 
-#: ../../boot.php:1151
+#: ../../boot.php:1153
 msgid "Website Terms of Service"
 msgstr "网站的各项规定"
 
-#: ../../boot.php:1152
+#: ../../boot.php:1154
 msgid "terms of service"
 msgstr "各项规定"
 
-#: ../../boot.php:1154
+#: ../../boot.php:1156
 msgid "Website Privacy Policy"
 msgstr "网站隐私政策"
 
-#: ../../boot.php:1155
+#: ../../boot.php:1157
 msgid "privacy policy"
 msgstr "隐私政策"
 
-#: ../../boot.php:1284
+#: ../../boot.php:1286
 msgid "Requested account is not available."
 msgstr "要求的账户不可用。"
 
-#: ../../boot.php:1363 ../../boot.php:1467
+#: ../../boot.php:1365 ../../boot.php:1469
 msgid "Edit profile"
 msgstr "修改简介"
 
-#: ../../boot.php:1429
+#: ../../boot.php:1431
 msgid "Message"
 msgstr "通知"
 
-#: ../../boot.php:1437
+#: ../../boot.php:1439
 msgid "Manage/edit profiles"
 msgstr "管理/修改简介"
 
-#: ../../boot.php:1566 ../../boot.php:1652
+#: ../../boot.php:1568 ../../boot.php:1654
 msgid "g A l F d"
 msgstr "g A l d F"
 
-#: ../../boot.php:1567 ../../boot.php:1653
+#: ../../boot.php:1569 ../../boot.php:1655
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1612 ../../boot.php:1693
+#: ../../boot.php:1614 ../../boot.php:1695
 msgid "[today]"
 msgstr "[今天]"
 
-#: ../../boot.php:1624
+#: ../../boot.php:1626
 msgid "Birthday Reminders"
 msgstr "提醒生日"
 
-#: ../../boot.php:1625
+#: ../../boot.php:1627
 msgid "Birthdays this week:"
 msgstr "这周的生日:"
 
-#: ../../boot.php:1686
+#: ../../boot.php:1688
 msgid "[No description]"
 msgstr "[无描述]"
 
-#: ../../boot.php:1704
+#: ../../boot.php:1706
 msgid "Event Reminders"
 msgstr "事件提醒"
 
-#: ../../boot.php:1705
+#: ../../boot.php:1707
 msgid "Events this week:"
 msgstr "这周的事件:"
 
-#: ../../boot.php:1941
+#: ../../boot.php:1943
 msgid "Status Messages and Posts"
 msgstr "现状通知和文章"
 
-#: ../../boot.php:1948
+#: ../../boot.php:1950
 msgid "Profile Details"
 msgstr "简介内容"
 
-#: ../../boot.php:1965
+#: ../../boot.php:1961 ../../boot.php:1964
+msgid "Videos"
+msgstr "视频"
+
+#: ../../boot.php:1974
 msgid "Events and Calendar"
 msgstr "项目和日历"
 
-#: ../../boot.php:1972
+#: ../../boot.php:1981
 msgid "Only You Can See This"
 msgstr "只您许看这个"
index da920f55dd5fc17e3dd6fb8e3a2bd5af5283229d..335b7511b296d716cdf2eb07d99f7567083d7656 100644 (file)
@@ -98,83 +98,10 @@ $a->strings["View Photos"] = "看照片";
 $a->strings["Network Posts"] = "网络文章";
 $a->strings["Edit Contact"] = "编辑熟人";
 $a->strings["Send PM"] = "法私人的新闻";
-$a->strings["prev"] = "上个";
-$a->strings["first"] = "首先";
-$a->strings["last"] = "最后";
-$a->strings["next"] = "下个";
-$a->strings["newer"] = "更新";
-$a->strings["older"] = "更旧";
-$a->strings["No contacts"] = "没有熟人";
-$a->strings["%d Contact"] = array(
-       0 => "%d熟人",
-);
-$a->strings["View Contacts"] = "看熟人";
-$a->strings["Search"] = "搜索";
-$a->strings["Save"] = "保存";
-$a->strings["poke"] = "戳";
-$a->strings["poked"] = "戳了";
-$a->strings["ping"] = "砰";
-$a->strings["pinged"] = "砰了";
-$a->strings["prod"] = "柔戳";
-$a->strings["prodded"] = "柔戳了";
-$a->strings["slap"] = "掌击";
-$a->strings["slapped"] = "掌击了";
-$a->strings["finger"] = "指";
-$a->strings["fingered"] = "指了";
-$a->strings["rebuff"] = "窝脖儿";
-$a->strings["rebuffed"] = "窝脖儿了";
-$a->strings["happy"] = "开心";
-$a->strings["sad"] = "伤心";
-$a->strings["mellow"] = "轻松";
-$a->strings["tired"] = "累";
-$a->strings["perky"] = "机敏";
-$a->strings["angry"] = "生气";
-$a->strings["stupified"] = "麻醉";
-$a->strings["puzzled"] = "纳闷";
-$a->strings["interested"] = "有兴趣";
-$a->strings["bitter"] = "苦";
-$a->strings["cheerful"] = "快乐";
-$a->strings["alive"] = "活着";
-$a->strings["annoyed"] = "被烦恼";
-$a->strings["anxious"] = "心焦";
-$a->strings["cranky"] = "不稳";
-$a->strings["disturbed"] = "不安";
-$a->strings["frustrated"] = "被作梗";
-$a->strings["motivated"] = "士气高涨";
-$a->strings["relaxed"] = "轻松";
-$a->strings["surprised"] = "诧异";
-$a->strings["Monday"] = "星期一";
-$a->strings["Tuesday"] = "星期二";
-$a->strings["Wednesday"] = "星期三";
-$a->strings["Thursday"] = "星期四";
-$a->strings["Friday"] = "星期五";
-$a->strings["Saturday"] = "星期六";
-$a->strings["Sunday"] = "星期天";
-$a->strings["January"] = "一月";
-$a->strings["February"] = "二月";
-$a->strings["March"] = "三月";
-$a->strings["April"] = "四月";
-$a->strings["May"] = "五月";
-$a->strings["June"] = "六月";
-$a->strings["July"] = "七月";
-$a->strings["August"] = "八月";
-$a->strings["September"] = "九月";
-$a->strings["October"] = "十月";
-$a->strings["November"] = "十一月";
-$a->strings["December"] = "十二月";
-$a->strings["bytes"] = "字节";
-$a->strings["Click to open/close"] = "点击为开关";
-$a->strings["link to source"] = "链接到来源";
-$a->strings["default"] = "默认";
-$a->strings["Select an alternate language"] = "选择别的语言";
-$a->strings["event"] = "项目";
-$a->strings["photo"] = "照片";
-$a->strings["activity"] = "活动";
-$a->strings["comment"] = array(
-       0 => "评论",
-);
-$a->strings["post"] = "文章";
-$a->strings["Item filed"] = "把项目归档了";
+$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>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>";
+$a->strings["$1 wrote:"] = "$1写:";
+$a->strings["Encrypted content"] = "加密的内容";
 $a->strings["Visible to everybody"] = "任何人可见的";
 $a->strings["show"] = "著";
 $a->strings["don't show"] = "别著";
@@ -214,6 +141,7 @@ $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["default"] = "默认";
 $a->strings["An error occurred creating your default profile. Please try again."] = "造成默认简介出了问题。请再试。";
 $a->strings["Profile Photos"] = "简介照片";
 $a->strings["Unknown | Not categorised"] = "未知的 |无分类";
@@ -265,10 +193,6 @@ $a->strings["%d contact in common"] = array(
 );
 $a->strings["show more"] = "看多";
 $a->strings[" on Last.fm"] = "在Last.fm";
-$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>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>";
-$a->strings["$1 wrote:"] = "$1写:";
-$a->strings["Encrypted content"] = "加密的内容";
 $a->strings["view full size"] = "看全尺寸";
 $a->strings["Miscellaneous"] = "形形色色";
 $a->strings["year"] = "年";
@@ -297,6 +221,7 @@ $a->strings["(no subject)"] = "沒有题目";
 $a->strings["noreply"] = "noreply";
 $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友";
 $a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络";
+$a->strings["photo"] = "照片";
 $a->strings["status"] = "现状";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s";
 $a->strings["Attachments:"] = "附件:";
@@ -348,6 +273,82 @@ $a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论"
 $a->strings["Star Posts"] = "文章星";
 $a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」";
+$a->strings["prev"] = "上个";
+$a->strings["first"] = "首先";
+$a->strings["last"] = "最后";
+$a->strings["next"] = "下个";
+$a->strings["newer"] = "更新";
+$a->strings["older"] = "更旧";
+$a->strings["No contacts"] = "没有熟人";
+$a->strings["%d Contact"] = array(
+       0 => "%d熟人",
+);
+$a->strings["View Contacts"] = "看熟人";
+$a->strings["Search"] = "搜索";
+$a->strings["Save"] = "保存";
+$a->strings["poke"] = "戳";
+$a->strings["poked"] = "戳了";
+$a->strings["ping"] = "砰";
+$a->strings["pinged"] = "砰了";
+$a->strings["prod"] = "柔戳";
+$a->strings["prodded"] = "柔戳了";
+$a->strings["slap"] = "掌击";
+$a->strings["slapped"] = "掌击了";
+$a->strings["finger"] = "指";
+$a->strings["fingered"] = "指了";
+$a->strings["rebuff"] = "窝脖儿";
+$a->strings["rebuffed"] = "窝脖儿了";
+$a->strings["happy"] = "开心";
+$a->strings["sad"] = "伤心";
+$a->strings["mellow"] = "轻松";
+$a->strings["tired"] = "累";
+$a->strings["perky"] = "机敏";
+$a->strings["angry"] = "生气";
+$a->strings["stupified"] = "麻醉";
+$a->strings["puzzled"] = "纳闷";
+$a->strings["interested"] = "有兴趣";
+$a->strings["bitter"] = "苦";
+$a->strings["cheerful"] = "快乐";
+$a->strings["alive"] = "活着";
+$a->strings["annoyed"] = "被烦恼";
+$a->strings["anxious"] = "心焦";
+$a->strings["cranky"] = "不稳";
+$a->strings["disturbed"] = "不安";
+$a->strings["frustrated"] = "被作梗";
+$a->strings["motivated"] = "士气高涨";
+$a->strings["relaxed"] = "轻松";
+$a->strings["surprised"] = "诧异";
+$a->strings["Monday"] = "星期一";
+$a->strings["Tuesday"] = "星期二";
+$a->strings["Wednesday"] = "星期三";
+$a->strings["Thursday"] = "星期四";
+$a->strings["Friday"] = "星期五";
+$a->strings["Saturday"] = "星期六";
+$a->strings["Sunday"] = "星期天";
+$a->strings["January"] = "一月";
+$a->strings["February"] = "二月";
+$a->strings["March"] = "三月";
+$a->strings["April"] = "四月";
+$a->strings["May"] = "五月";
+$a->strings["June"] = "六月";
+$a->strings["July"] = "七月";
+$a->strings["August"] = "八月";
+$a->strings["September"] = "九月";
+$a->strings["October"] = "十月";
+$a->strings["November"] = "十一月";
+$a->strings["December"] = "十二月";
+$a->strings["View Video"] = "看视频";
+$a->strings["bytes"] = "字节";
+$a->strings["Click to open/close"] = "点击为开关";
+$a->strings["link to source"] = "链接到来源";
+$a->strings["Select an alternate language"] = "选择别的语言";
+$a->strings["event"] = "项目";
+$a->strings["activity"] = "活动";
+$a->strings["comment"] = array(
+       0 => "评论",
+);
+$a->strings["post"] = "文章";
+$a->strings["Item filed"] = "把项目归档了";
 $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."] = "一个删除的组用这名被复兴。现有的项目权利<strong>可能</strong>还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。";
 $a->strings["Default privacy group for new contacts"] = "默认隐私组为新熟人";
 $a->strings["Everybody"] = "每人";
@@ -1173,6 +1174,11 @@ $a->strings["No suggestions available. If this is a new site, please try again i
 $a->strings["Ignore/Hide"] = "不理/隐藏";
 $a->strings["People Search"] = "搜索人物";
 $a->strings["No matches"] = "没有结果";
+$a->strings["No videos selected"] = "没选择的视频";
+$a->strings["Access to this item is restricted."] = "这个项目使用权限的。";
+$a->strings["View Album"] = "看照片册";
+$a->strings["Recent Videos"] = "最近视频";
+$a->strings["Upload New Videos"] = "上传新视频";
 $a->strings["Tag removed"] = "标签去除了";
 $a->strings["Remove Item Tag"] = "去除项目标签";
 $a->strings["Select a tag to remove: "] = "选择标签去除";
@@ -1392,7 +1398,6 @@ $a->strings["a photo"] = "一张照片";
 $a->strings["Image exceeds size limit of "] = "图片超出最大尺寸";
 $a->strings["Image file is empty."] = "图片文件空的。";
 $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."] = "您用%2$.2f兆字节的%1$.2f兆字节照片存储。";
 $a->strings["Upload Photos"] = "上传照片";
 $a->strings["New album name: "] = "新册名:";
@@ -1426,7 +1431,6 @@ $a->strings["I like this (toggle)"] = "我喜欢这(交替)";
 $a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)";
 $a->strings["This is you"] = "这是你";
 $a->strings["Comment"] = "评论";
-$a->strings["View Album"] = "看照片册";
 $a->strings["Recent Photos"] = "最近的照片";
 $a->strings["Welcome to Friendica"] = "Friendica欢迎你";
 $a->strings["New Member Checklist"] = "新的成员一览表";
@@ -1463,7 +1467,7 @@ $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."] = "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。";
 $a->strings["Requested profile is not available."] = "要求的简介联系不上的。";
 $a->strings["Tips for New Members"] = "提示对新成员";
-$a->strings["Friendica Social Communications Server - Setup"] = "Friendica社会交通服务器-安装";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica沟通服务器-安装";
 $a->strings["Could not connect to database."] = "解不了数据库。";
 $a->strings["Could not create table."] = "造成不了表格。";
 $a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。";
@@ -1630,5 +1634,6 @@ $a->strings["Event Reminders"] = "事件提醒";
 $a->strings["Events this week:"] = "这周的事件:";
 $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"] = "只您许看这个";
index f68a3dece12bb14cfa0a07ccb804108401b1e98c..d52c175830da35458a555e1dd8360113e8b708a7 100644 (file)
@@ -1,11 +1,11 @@
-Hey, \r
-I'm $sitename.   \r
-The friendica developers released update $update recently, \r
-but when I tried to install it, something went terribly wrong.  \r
-This needs to be fixed soon and I can't do it alone. Please contact a \r
-friendica developer if you can not help me on your own. My database might be invalid. \r
+你好, \r
+我是$sitename;   \r
+Friendica开发者最近出版更新$update, \r
+可我安装的时候,遇到什么灾害,  \r
+这要紧急地维修,可我不会自己做。请联系 \r
+一个Friendica开发者如果你不会自己帮我。我的数据库会不效。 \r
 \r
-The error message is '$error'.   \r
+错误通信是「$error」   \r
 \r
-I'm sorry, \r
-your friendica server at $siteurl
\ No newline at end of file
+不好意思, \r
+你Friendica服务器在$siteurl
\ No newline at end of file