aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.htaccess14
-rw-r--r--assets/home.html277
-rw-r--r--error_log1
-rw-r--r--robots.txt35
-rw-r--r--view/fr/cmnt_received_html_body_eml.tpl2
-rw-r--r--view/fr/follow_notify_eml.tpl12
-rw-r--r--view/fr/friend_complete_eml.tpl24
-rw-r--r--view/fr/htconfig.tpl55
-rw-r--r--view/fr/intro_complete_eml.tpl26
-rw-r--r--view/fr/lostpass_eml.tpl32
-rw-r--r--view/fr/mail_received_html_body_eml.tpl2
-rw-r--r--view/fr/messages.po9778
-rw-r--r--view/fr/passchanged_eml.tpl23
-rw-r--r--view/fr/register_open_eml.tpl26
-rw-r--r--view/fr/register_verify_eml.tpl19
-rw-r--r--view/fr/register_verify_member.tpl24
-rw-r--r--view/fr/request_notify_eml.tpl16
-rw-r--r--view/fr/strings.php2478
-rw-r--r--view/fr/update_fail_eml.tpl29
-rw-r--r--view/fr/wall_received_eml.tpl2
-rw-r--r--view/tpl/hdr.tpl5
-rwxr-xr-xview/tpl/head.tpl4
22 files changed, 6892 insertions, 5992 deletions
diff --git a/.htaccess b/.htaccess
index 39fd89e04..acfe4d346 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,7 +1,7 @@
Options -Indexes
AddType application/x-java-archive .jar
AddType audio/ogg .oga
-#SSLCipherSuite HIGH:AES256-SHA:AES128-SHA:RC4:!aNULL:!eNULL:!EDH
+SSLCipherSuite HIGH:AES256-SHA:AES128-SHA:RC4:!aNULL:!eNULL:!EDH
# don't allow any web access to logfiles, even after rotation/compression
<FilesMatch "\.(out|log|gz)$">
@@ -25,3 +25,15 @@ Deny from all
</IfModule>
+# Set Apache compression
+# compress text, html, javascript, css, xml:
+AddOutputFilterByType DEFLATE text/plain
+AddOutputFilterByType DEFLATE text/html
+AddOutputFilterByType DEFLATE text/xml
+AddOutputFilterByType DEFLATE text/css
+AddOutputFilterByType DEFLATE application/xml
+AddOutputFilterByType DEFLATE application/xhtml+xml
+AddOutputFilterByType DEFLATE application/rss+xml
+AddOutputFilterByType DEFLATE application/javascript
+AddOutputFilterByType DEFLATE application/x-javascript
+
diff --git a/assets/home.html b/assets/home.html
index 9fc58f0e8..5b4278001 100644
--- a/assets/home.html
+++ b/assets/home.html
@@ -36,58 +36,54 @@ body::after {
</style>
<script>
-
-var terms = new Array(
-"Internet-scale Privacy",
-"Social Networking",
-"Single Sign-On",
-"Photo Albums",
-"Decentralised",
-"Cloud Storage",
-"Own Your Content",
-"Blogging",
-"End-to-end Encryption",
-"Chatrooms",
-"Shareable Apps",
-"Cross-Site Access Control",
-"Unsend Private Mail",
-"Webpage Creation",
-"Content Management",
-"Message Expiration",
-"Games and Utilities",
-"Unincorporated",
-"Forums",
-"Like + Dislike",
-"Share Anything Digital",
-"Communications",
-"Identity-Aware Content",
-"Pseudonyms",
-"Multiple Identities",
-"No Advertising",
-"Rich Text Post/Comment",
-"Event Calendar",
-"Bookmarking",
-"Community Tagging",
-"Mirrored Directory",
-"Nomadic Identity",
-"Derivative Channels",
-"Customised Encryption",
-"Multiple Profiles",
-"Privacy Groups",
-"File Sharing",
-"MIT license",
-"Autonomy",
-"Affinity Filtering",
-"Friend Suggestions",
-"Cross-Site Auth",
-"Themes",
-"Plugins",
-"External API",
-"3rd Party Apps",
-"Open Source",
-null
-);
-
+var terms = new Array("Internet-scale Privacy",
+ "Social Networking",
+ "Single Sign-On",
+ "Photo Albums",
+ "Decentralised",
+ "Cloud Storage",
+ "Own Your Content",
+ "Blogging",
+ "End-to-end Encryption",
+ "Chatrooms",
+ "Shareable Apps",
+ "Cross-Site Access Control",
+ "Unsend Private Mail",
+ "Webpage Creation",
+ "Content Management",
+ "Message Expiration",
+ "Games and Utilities",
+ "Unincorporated",
+ "Forums",
+ "Like + Dislike",
+ "Share Anything Digital",
+ "Communications",
+ "Identity-Aware Content",
+ "Pseudonyms",
+ "Multiple Identities",
+ "No Advertising",
+ "Rich Text Post/Comment",
+ "Event Calendar",
+ "Bookmarking",
+ "Community Tagging",
+ "Mirrored Directory",
+ "Nomadic Identity",
+ "Derivative Channels",
+ "Customised Encryption",
+ "Multiple Profiles",
+ "Privacy Groups",
+ "File Sharing",
+ "MIT license",
+ "Autonomy",
+ "Affinity Filtering",
+ "Friend Suggestions",
+ "Cross-Site Auth",
+ "Themes",
+ "Plugins",
+ "External API",
+ "3rd Party Apps",
+ "Open Source",
+ null);
var r = 0;
var g = 0;
var b = 0;
@@ -104,23 +100,6 @@ var nindex = 0;
var firstTime = 1;
var curr = null;
-function update_element() {
-
- if(firstTime) {
- firstTime = 0;
- fadeout();
- return;
- }
- curr = terms[nindex];
- nindex ++;
- if(terms[nindex] == null)
- nindex = 0;
-
- var id = document.getElementById(element);
- id.innerHTML = curr;
- timer = setTimeout('fadein();',3);
-}
-
function fadeout() {
var id = document.getElementById(element);
@@ -157,19 +136,110 @@ function fadein() {
$(document).ready(function() {
timer = setTimeout('update_element();',2000);
+ var known = {
+ en: true, // ENGLISH
+ fr: true, // FRENCH
+ nl: true // NETHERLANDS
+ // ADD YOUR LANGUAGE HERE.
+ };
+ // Figure out the language, default to English because that's
+ // what I speak.
+ var lang = (navigator.language || navigator.userLanguage || 'en').substr(0, 2);
+ if(!known[lang])
+ lang = 'en';
+ if(lang=="fr") // FRENCH TRANSLATIONS
+ terms = new Array("R&eacute;seau social",
+ "Authentification unique",
+ "Albums Photos",
+ "Decentralis&eacute;e",
+ "Entreposage dans le nuage",
+ "Vous avez le contr&ocirc;le sur vos partages",
+ "Blogue",
+ "Encryption des donn&eacute;es",
+ "Salle de clavardage",
+ "Partage d&rsquo;applications",
+ "Permissions actives sur toute la matrice",
+ "Reprise de courrier",
+ "Cr&eacute;ation de pages web",
+ "Gestion du contenu",
+ "Expiration des messages",
+ "Jeux et Utilitaires",
+ "Non-Incorpor&eacute;",
+ "Forums",
+ "J&rsquo;aime + Je D&eacute;teste",
+ "Partagez tous types de fichiers",
+ "Plateforme de communications",
+ "Le contenu s&rsquo;ajuste aux individus",
+ "Pseudonymes",
+ "Identit&eacute;s multiples",
+ "Aucune publicit&eacute;",
+ "&Eacute;diteur de texte enrichi (partages/commentaires)",
+ "Calendrier d&rsquo;&eacute;v&eacute;nements",
+ "Favoris",
+ "Suivre des personnes/communaut&eacute;s",
+ "R&eacute;pertoire d&rsquo;utilisateurs synchronis&eacute;",
+ "Identit&eacute; nomade",
+ "Canaux d&rsquo;int&eacute;r&ecirc;ts",
+ "Encryption du traffic (SSL)",
+ "Profils multiples",
+ "Groupes priv&eacute;s",
+ "Partage de fichiers",
+ "License MIT",
+ "Autonomie",
+ "Filtre selon les affinit&eacute;s",
+ "Suggestions d&rsquo;amis potentiel",
+ "Authentification sur tous les HUBs de la matrice",
+ "Th&egrave;mes",
+ "Plugins",
+ "API externe",
+ "Application Tierce Partie",
+ "Code Source Ouvert",
+ "Gratuit",
+ null);
+
+ // Find all <div>s with a class of "wrapper" and lang attribute equal
+ // to `lang` and make them visibile.
+ $('div.wrapper[lang=' + lang + ']').show();
+
+ // Find all <div>s with a class of "wrapper" and lang attribute not
+ // equal to `lang` and make them invisibile.
+ $('div.wrapper[lang!=' + lang + ']').hide();
});
+function update_element() {
-</script>
+ if(firstTime) {
+ firstTime = 0;
+ fadeout();
+ return;
+ }
+ curr = terms[nindex];
+ nindex ++;
+ if(terms[nindex] == null)
+ nindex = 0;
+
+ var id = document.getElementById(element);
+ id.innerHTML = curr;
+ timer = setTimeout('fadein();',3);
+}
+</script>
+
<div style="margin-top: 50px;"></div>
<center>
+
<img style="width: 330px; margin-top: 30px; margin-bottom: 30px;" src="assets/hashlogo.png" >
<div id="word-flasher" style="font-size: 2.5em; font-weight: bold; margin-bottom: 30px;">&quot;The Network&quot;</div>
+
+<!-- TRANSLATIONS START HERE - REMEMBER TO ADD YOUR LANGUAGE IN THE FUNCTION ABOVE($(document).ready(function() ...)
+
+<!-- ENGLISH FRONTPAGE TRANSLATION STARTS HERE -->
+
+<div lang="en" class="wrapper">
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
-One of the traditional problems with independent publishing on the internet has always been the fact that independent publishers often operate as isolated islands within their own website, and spend most of their resources attracting visitors. The rise of corporate providers and social networking services alleviated many of these problems; however centralisation has led to a situation where your content where is no longer under your direct control. It is shared fully with corporate advertisers and governments, but ironically you are now often asked to pay money to ensure that your friends can see it. What if you could have advantages of scale and connections that centralisation offers whilst maintaining independent control over your own web presence?
+One of the traditional problems with independent publishing on the internet has always been the fact that independent publishers often operate as isolated islands within their own website, and spend most of their resources attracting visitors. The rise of corporate providers and social networking services alleviated many of these problems; however centralisation has led to a situation where your content where is no longer under your direct control. It is shared fully with corporate advertisers and governments, but ironically you are now often asked to pay money to ensure that your friends can see it. What if you could have advantages of scale and connections that centralisation offers whilst maintaining independent control over your own web presence?
</div>
<br />
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
@@ -185,8 +255,69 @@ The RedMatrix is ideal for social communities of any size, from private individu
</div>
<br />
<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - &quot;The Network&quot;</strong></div>
-<div style="font-size: 1.4em;"><a href="pubsites" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Sign up now!</a></div>
+<div style="font-size: 1.4em;">
+<a href="register" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Sign up now!</a>
+<a href="donate" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Donate / Sponsor</a>
+</div>
+<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Public Sites</a> | <a href="https://redmatrix.me">Project Home</a> | <a href="https://github.com/friendica/red">Code</a> | <a href="https://zothub.com/channel/one">Developers</a></div>
+</div>
+<!-- FRENCH FRONTPAGE TRANSLATION STARTS HERE -->
-<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Public Sites</a> | <a href="https://redmatrix.me">Project Home</a> | <a href="https://github.com/friendica/red">Code</a> | <a href="https://zothub.com/channel/one">Developers</a></div></center>
+<div lang="fr" class="wrapper" style="display: none;">
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+La Matrice <span style="color: #c60032;">Rouge</span> &laquo; <span style="color: #c60032;">Red</span>Matrix &raquo; est une <strong>application web d&eacute;centralis&eacute;e</strong>. La centralisation des donn&eacute;es sur des serveurs corporatifs met en jeux votre vie priv&eacute;e et vous assujettit &agrave; la volont&eacute; d&#039;un tiers. Ainsi vos messages, fichiers, photos ne sont plus sous votre contr&ocirc;le et sont partag&eacute;s avec les agences de marketing ainsi que les gouvernements. La Matrice <span style="color: #c60032;">Rouge</span>, c&#039;est un moyen de prot&eacute;ger votre identit&eacute; ainsi que votre vie priv&eacute;e tout en conservant le plein contr&ocirc;le sur le partage de vos donn&eacute;es avec le monde.
+</div>
+<br />
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+La Matrice <span style="color: #c60032;">Rouge</span> est un r&eacute;seau constitu&eacute; de serveurs autonomes et ind&eacute;pendants. Ces serveurs, appel&eacute;s &laquo; hubs &raquo;, assurent la r&eacute;silience de vos donn&eacute;es sur le r&eacute;seau. Chacun de ces &laquo; hubs &raquo; garantit des fonctions de communications (Messages priv&eacute;s, clavardage, blogue, forums et toutes les fonctions des r&eacute;seaux sociaux) ainsi que des fonctions de gestions (photos, calendrier, partage de fichiers, cr&eacute;ation de pages web, cr&eacute;ation d&#039;applications) &agrave; ses membres. En tout temps, votre vie priv&eacute;e et le choix du partage de votre contenu sont sous votre contr&ocirc;le exclusif.
+</div>
+<br />
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+La Matrice <span style="color: #c60032;">Rouge</span> est unique; elle transporte votre identit&eacute; &agrave; l&#039;aide d'une m&eacute;thode d&#039;authentification innovatrice appel&eacute;e &laquo; authentification magique &raquo; - laquelle est le r&eacute;sultat de la recherche et du d&eacute;veloppement appliqu&eacute;e au service d&#039;<strong>identit&eacute; d&eacute;centralis&eacute;e</strong>. Aucune autre plateforme n&#039;offre ce type d&#039;identit&eacute; &laquo; nomade &raquo;. Ainsi, une fois authentifi&eacute;, vous avez le loisir de vous &laquo; promener &raquo; d&#039;un serveur &agrave; l&#039;autre sans avoir &agrave; reconfirmer votre identit&eacute;. De plus, la Matrice <span style="color: #c60032;">Rouge</span> vous permet de &laquo; cloner &raquo; votre identit&eacute; et de la porter sur un &laquo; hub &raquo; diff&eacute;rent de celui ou vous vous &ecirc;tes inscrit. Voil&agrave; encore un moyen de vous d&eacute;fendre contre toutes formes de censure pour pr&eacute;server votre identit&eacute;, vos listes d&#039;amis, vos publications, photos et fichiers advenant le cas ou votre &laquo; hub &raquo; pr&eacute;f&eacute;r&eacute; serait mis hors ligne. (temporairement ou permanemment).
+</div>
+<br />
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+La Matrice <span style="color: #c60032;">Rouge</span> est un outil id&eacute;al pour toutes les communaut&eacute;s en passant par les particuliers et les familles tout en incluant les forums, sites-web d'affaires ainsi que les organisations. C&#039;est une solution de remplacement, non n&eacute;gligeable, aux r&eacute;seaux sociaux actuels rendue accessible &agrave; tous ceux qui sont soucieux de leur vie priv&eacute;e et qui souhaitent conserver le contr&ocirc;le de leur pr&eacute;sence sur internet.<br />
+</div>
+<br />
+<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - &quot;The Network&quot;</strong></div>
+<div style="font-size: 1.4em;">
+<a href="register" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">M'inscrire!</a>
+<a href="donate" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Dons / Sponsors</a>
+</div>
+<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Hubs public</a> | <a href="https://redmatrix.me">Le Projet</a> | <a href="https://github.com/friendica/red">Source</a> | <a href="https://zothub.com/channel/one">Developpeurs</a></div>
+</div>
+
+<!-- NETHERLANDS TRANSLATIONS STARTS HERE -->
+
+<div lang="nl" class="wrapper" style="display: none;">
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+De <strong>Red Matrix</strong> (ook bekend als "<span style="color: #c60032;">red</span>") is een opensource webapplicatie dat een volledig systeem biedt voor <em>gedecentraliseerd</em> publiceren, delen en communiceren. Het combineert communicatie (een <em>sociaal netwerk</em>, chat en priv&#233;communicatie) en mediabeheer (foto's, bookmarks, bestanden, webpagina's en apps), met zoveel mogelijkheden dat het je begint te duizelen.
+</div>
+<br />
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+Wat de Red Matrix uniek maakt is de zogenaamde &#8220;magische authenticatie&#8221;. Wat gebaseerd is op ons baanbrekende werk in gedecentraliseerde identificatie. Dit knoopt alle Red Matrix-hubs en -kanalen aan elkaar, waardoor er &#233;&#233;n groot supernetwerk ontstaat waarin de grenzen tussen verschillende websites zijn vervaagd of niet meer lijken te bestaan. Waar &#8220;wie je bent&#8221; niets te maken heeft met met &#8220;wat voor computerserver je verbonden bent&#8221; en waar de inhoud van webpagina's zich kan aanpassen aan wie er naar kijkt.
+</div>
+<br />
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+Waarschuwing: Nadat je de &#8220;magische authenticatie&#8221; en een &#8220;nomadische identiteit&#8221; ervaren hebt, kan het erg storend zijn en een beetje &#8220;primitief&#8221; om terug te moeten keren naar het oude internet. Je hoeft geen honderden verschillende wachtwoorden te onthouden om het web te gebruiken... of om volledig ge&#239;soleerd te zijn van je vrienden en familie, omdat een server of router in een ander land "<em>problemen</em>" ondervindt.
+</div>
+<br />
+<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
+Voor een gewoon mens is het grootste voordeel van een gedecentraliseerde identiteit dat jij kan beslissen met wie je jouw gegevens deelt. En wanneer iemand niet jouw toestemming heeft, dan krijgt hij/zij het ook niet te zien. Je hebt alles onder controle, gebruik de Red Matrix als een sociaal netwerk &#243;f een bedrijfswebsite &#243;f als persoonlijke cloud-opslag &#243;f om media te publiceren, of voor wat voor toepassing dan ook. Als grens geldt alleen jouw verbeelding.<br />
+</div>
+<br />
+<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - &quot;The Network&quot;</strong></div>
+<div style="font-size: 1.4em;">
+<a href="register" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Meld je nu aan!</a>
+<a href="donate" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">schenking</a>
+</div>
+<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Andere openbare hubs</a> | <a href="https://redmatrix.me">Projectwebsite</a> | <a href="https://github.com/friendica/red">Broncode</a> | <a href="https://zothub.com/channel/one">Ontwikkelaars</a></div>
+</div>
+<!-- INSERT NEW TRANSLATIONS HERE -->
+
+<!-- DO NOT REMOVE THE 2 LINES BELOW -->
+</div>
+</center>
diff --git a/error_log b/error_log
new file mode 100644
index 000000000..d6ae239a0
--- /dev/null
+++ b/error_log
@@ -0,0 +1 @@
+[24-Jul-2014 22:00:18 UTC] PHP Warning: file_get_contents(version.inc): failed to open stream: No such file or directory in /home/mycocham/public_html/red/boot.php on line 47
diff --git a/robots.txt b/robots.txt
new file mode 100644
index 000000000..632a2fa81
--- /dev/null
+++ b/robots.txt
@@ -0,0 +1,35 @@
+# If the Joomla site is installed within a folder such as at
+# e.g. www.example.com/joomla/ the robots.txt file MUST be
+# moved to the site root at e.g. www.example.com/robots.txt
+# AND the joomla folder name MUST be prefixed to the disallowed
+# path, e.g. the Disallow rule for the /administrator/ folder
+# MUST be changed to read Disallow: /joomla/administrator/
+#
+# For more information about the robots.txt standard, see:
+# http://www.robotstxt.org/orig.html
+#
+# For syntax checking, see:
+# http://tool.motoricerca.info/robots-checker.phtml
+
+User-agent: *
+Disallow: /.git/
+Disallow: /store/
+Disallow: /addon/
+Disallow: /include/
+Disallow: /view/
+Disallow: /vendor/
+Disallow: /util/
+Disallow: /tests/
+Disallow: /mod/
+Disallow: /library/
+Disallow: /install/
+Disallow: /images/
+Disallow: /doc/
+Disallow: /assets/
+Disallow: /app/
+
+#Begin Attracta SEO Tools Sitemap. Do not remove
+sitemap: http://cdn.attracta.com/sitemap/3798343.xml.gz
+#End Attracta SEO Tools Sitemap. Do not remove
+
+
diff --git a/view/fr/cmnt_received_html_body_eml.tpl b/view/fr/cmnt_received_html_body_eml.tpl
index b56ef9e64..94b33c2b4 100644
--- a/view/fr/cmnt_received_html_body_eml.tpl
+++ b/view/fr/cmnt_received_html_body_eml.tpl
@@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
<html>
<head>
- <title>Message de Friendica</title>
+ <title>Message de la Matrice</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
diff --git a/view/fr/follow_notify_eml.tpl b/view/fr/follow_notify_eml.tpl
index ba07b19da..600168a59 100644
--- a/view/fr/follow_notify_eml.tpl
+++ b/view/fr/follow_notify_eml.tpl
@@ -1,14 +1,14 @@
-Dear {{$myname}},
+Cher {{$myname}},
-You have a new follower at {{$sitename}} - '{{$requestor}}'.
+Vous avez un nouvel admirateur {{$sitename}} - '{{$requestor}}'.
-You may visit their profile at {{$url}}.
+Vous pouvez visiter son profil ici {{$url}}.
-Please login to your site to approve or ignore/cancel the request.
+Veuillez vous enregistrer sur votre hub pour approuver ou ignorer/supprimer cette requête.
{{$siteurl}}
-Regards,
+Bien à vous,
- {{$sitename}} administrator
+ Administrateur {{$sitename}} \ No newline at end of file
diff --git a/view/fr/friend_complete_eml.tpl b/view/fr/friend_complete_eml.tpl
index 1c647b994..5226b380d 100644
--- a/view/fr/friend_complete_eml.tpl
+++ b/view/fr/friend_complete_eml.tpl
@@ -1,22 +1,22 @@
-Dear {{$username}},
+Cher {{$username}},
- Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
-your connection request at '{{$sitename}}'.
+ Bonne nouvelle... '{{$fn}}' de '{{$dfrn_url}}' a accepté
+votre requête de contact sur '{{$sitename}}'.
-You are now mutual friends and may exchange status updates, photos, and email
-without restriction.
+Vous entrer maintenant en relation et pouvez échanger vos statuts, photos et courriel
+sans restrictions.
-Please visit your 'Connnections' page at {{$sitename}} if you wish to make
-any changes to this relationship.
+Visiter la page de vos 'relations' {{$sitename}} pour tout
+changements de statut avec cette relation.
{{$siteurl}}
-[For instance, you may create a separate profile with information that is not
-available to the general public - and assign viewing rights to '{{$fn}}'].
+[Par exemple, vous pouvez créer un profil distinct avec des information qui ne sont pas
+accessible au public en général - et définir les autorisations de '{{$fn}}'].
-Sincerely,
+Sincèrement,
- {{$sitename}} Administrator
+ Administrateur {{$sitename}}
-
+ \ No newline at end of file
diff --git a/view/fr/htconfig.tpl b/view/fr/htconfig.tpl
index 493cb5d00..2a7f77186 100644
--- a/view/fr/htconfig.tpl
+++ b/view/fr/htconfig.tpl
@@ -1,7 +1,9 @@
<?php
// Set the following for your MySQL installation
+// Utilisez ces informations pour configurer votre instance de BD (MySQL)
// Copy or rename this file to .htconfig.php
+// Copier ou renomer ce fichier .htconfig.php et placer le à la racine de l'installation de la Matrice Rouge.
$db_host = '{{$dbhost}}';
$db_port = '{{$dbport}}';
@@ -10,61 +12,60 @@ $db_pass = '{{$dbpass}}';
$db_data = '{{$dbdata}}';
/*
- * Notice: Many of the following settings will be available in the admin panel
- * after a successful site install. Once they are set in the admin panel, they
- * are stored in the DB - and the DB setting will over-ride any corresponding
- * setting in this file
+ * Note: Plusieurs de ces réglages seront disponibles via le panneau d'administration
+ * après l'installation. Lorsque des modifications sont apportés à travers le panneau d'administration
+ * elle sont automatiquement enregistrées dans la base de données.
+ * Les configurations inscrites dans la BD prévalent sur celles de ce fichier de configuration.
*
- * The command-line tool util/config is able to query and set the DB items
- * directly if for some reason the admin panel is not available and a system
- * setting requires modification.
+ * En cas de difficultés d'accès au panneau d'administration, nous mettons à votre disposition,
+ * un outil en ligne de commande est disponible [util/config] pour rechercher et apporter des modifications
+ * sur les entrées dans la BD.
*
*/
-
-// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
-// It can be changed later and only applies to timestamps for anonymous viewers.
+// Choisissez votre emplacement géographique. Si vous n'êtes pas certain, utilisez "America/Los_Angeles".
+// Vous pourrez le changer plus tard et ce réglage n'affecte que les visiteurs anonymes.
$default_timezone = '{{$timezone}}';
-// What is your site name?
+// Quel sera le nom de votre site?
$a->config['system']['baseurl'] = '{{$siteurl}}';
-$a->config['system']['sitename'] = "Red Matrix";
+$a->config['system']['sitename'] = "Matrice Rouge";
$a->config['system']['location_hash'] = '{{$site_id}}';
-// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
-// Be certain to create your own personal account before setting
-// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
-// the registration page. REGISTER_APPROVE requires you set 'admin_email'
-// to the email address of an already registered person who can authorise
-// and/or approve/deny the request.
+// Vos choix sont REGISTER_OPEN, REGISTER_APPROVE, ou REGISTER_CLOSED.
+// Soyez certains de créer votre compte personnel avant de déclarer
+// votre site REGISTER_CLOSED. 'register_text' (si vous décider de l'utiliser)
+// renvois son contenu systématiquement sur la page d'enregistrement des nouveaux membres.
+// REGISTER_APPROVE requiert la configuration de 'admin_email' avec l'adresse de courriel
+// d'un membre déjà inscrit qui pourra autoriser et/ou approuver/supprimer la demande.
$a->config['system']['register_policy'] = REGISTER_OPEN;
$a->config['system']['register_text'] = '';
$a->config['system']['admin_email'] = '{{$adminmail}}';
-// Maximum size of an imported message, 0 is unlimited
+// taille maximale pour l'importation d'un message, 0 est illimité
$a->config['system']['max_import_size'] = 200000;
-// maximum size of uploaded photos
+// taille maximale pour le téléversement de photos
$a->config['system']['maximagesize'] = 800000;
-// Location of PHP command line processor
+// Lien absolu vers le compilateur PHP
$a->config['system']['php_path'] = '{{$phpath}}';
-// Configure how we communicate with directory servers.
-// DIRECTORY_MODE_NORMAL = directory client, we will find a directory
-// DIRECTORY_MODE_SECONDARY = caching directory or mirror
-// DIRECTORY_MODE_PRIMARY = main directory server
-// DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services
+// configurez la façon dont votre site communique avec les autres serveurs. [Répertoire des membres inscrits à la Matrice]
+// DIRECTORY_MODE_NORMAL = client du répertoire de membres, nous vous trouverons un répertoire accessible autre serveur.
+// DIRECTORY_MODE_SECONDARY = copie mirroir du répertoire des membres.
+// DIRECTORY_MODE_PRIMARY = répertoire des membres principal.
+// DIRECTORY_MODE_STANDALONE = "autonome/déconnecté" ou répertoire de membres privés
$a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL;
-// default system theme
+// Thème par défaut
$a->config['system']['theme'] = 'redbasic';
diff --git a/view/fr/intro_complete_eml.tpl b/view/fr/intro_complete_eml.tpl
index 2c2428d68..6486257af 100644
--- a/view/fr/intro_complete_eml.tpl
+++ b/view/fr/intro_complete_eml.tpl
@@ -1,22 +1,22 @@
-Dear {{$username}},
+Cher {{$username}},
- '{{$fn}}' at '{{$dfrn_url}}' has accepted
-your connection request at '{{$sitename}}'.
+ '{{$fn}}' de '{{$dfrn_url}}' a accepté
+votre requête de relation sur '{{$sitename}}'.
- '{{$fn}}' has chosen to accept you a "fan", which restricts
-some forms of communication - such as private messaging and some profile
-interactions. If this is a celebrity or community page, these settings were
-applied automatically.
+ '{{$fn}}' vous accepte comme un "fan", ceci restreint
+certaines formes de communications - tel que les messages privés et quelques modes
+d'intéractions avec le profil. S'il s'agît de la page d'une célébrité ou de la page d'une communauté,
+ ces réglages ont été appliqués automatiquement.
- '{{$fn}}' may choose to extend this into a two-way or more permissive
-relationship in the future.
+ '{{$fn}}' peut choisir d'étendre les permissions de cette relation
+dans le futur.
- You will start receiving public status updates from '{{$fn}}',
-which will appear on your 'Matrix' page at
+ Vous allez commencer à recevoir les changements de statuts de '{{$fn}}',
+ils seront ajoutés à votre fil de nouvelle sur
{{$siteurl}}
-Sincerely,
+Sincèrement,
- {{$sitename}} Administrator
+ Administrateur {{$sitename}} \ No newline at end of file
diff --git a/view/fr/lostpass_eml.tpl b/view/fr/lostpass_eml.tpl
index 3b79d2791..04292dca8 100644
--- a/view/fr/lostpass_eml.tpl
+++ b/view/fr/lostpass_eml.tpl
@@ -1,32 +1,30 @@
-Dear {{$username}},
- A request was recently received at {{$sitename}} to reset your account
-password. In order to confirm this request, please select the verification link
-below or paste it into your web browser address bar.
+Cher {{$username}},
+ Une demande pour réinitialiser votre mot de passe a récemment été reçu de {{$sitename}}
+Pour confirmer cette requête, veuillez suivre le lien de vérification
+suivant ou copier-coller le dans la barre d'adresse de votre navigateur.
-If you did NOT request this change, please DO NOT follow the link
-provided and ignore and/or delete this email.
+Si vous N'AVEZ PAS demander ce changement, NE SUIVEZ PAS ce lien, ignorez simplement et/ou supprimer ce courriel.
-Your password will not be changed unless we can verify that you
-issued this request.
+Votre mot de passe ne sera pas changé à moins que nous puissions vérifier vos intentions.
-Follow this link to verify your identity:
+Suivez ce lien pour vérifier votre identité:
{{$reset_link}}
-You will then receive a follow-up message containing the new password.
+Vous recevrez ensuite un second courriel avec votre nouveau mot de passe.
-You may change that password from your account settings page after logging in.
+Vous pouvez changez ce mot de passe à partir de la page des configurations de votre profil.
-The login details are as follows:
+Voici les détails de connections:
-Site Location: {{$siteurl}}
-Login Name: {{$email}}
+Emplacement du site:⇥{{$siteurl}}
+Usager:⇥{{$email}}
-Sincerely,
- {{$sitename}} Administrator
+Sincèrement,
+ Administrateur {{$sitename}}
-
+ \ No newline at end of file
diff --git a/view/fr/mail_received_html_body_eml.tpl b/view/fr/mail_received_html_body_eml.tpl
index 9961a0c01..f8038f07e 100644
--- a/view/fr/mail_received_html_body_eml.tpl
+++ b/view/fr/mail_received_html_body_eml.tpl
@@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
<html>
<head>
- <title>Message de Friendica</title>
+ <title>Message de la Matrice</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
diff --git a/view/fr/messages.po b/view/fr/messages.po
index 8eecf1ddd..225c22332 100644
--- a/view/fr/messages.po
+++ b/view/fr/messages.po
@@ -4,13 +4,14 @@
#
# Translators:
# Olivier <olivier+transifex@migeot.org>, 2013-2014
+# Webmaster_Redmatrix.ca <webmaster@redmatrix.ca>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-14 00:02-0800\n"
-"PO-Revision-Date: 2014-02-20 09:28+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2014-07-18 00:03-0700\n"
+"PO-Revision-Date: 2014-07-24 13:35+0000\n"
+"Last-Translator: Webmaster_Redmatrix.ca <webmaster@redmatrix.ca>\n"
"Language-Team: French (http://www.transifex.com/projects/p/red-matrix/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,1047 +19,1038 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Catégories"
-
-#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
-#: ../../mod/directory.php:184 ../../mod/match.php:62
-#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
-msgid "Connect"
-msgstr "Relier"
-
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorer/Cacher"
-
-#: ../../include/widgets.php:123 ../../mod/connections.php:238
-msgid "Suggestions"
-msgstr "Suggestion"
-
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Voir plus..."
-
-#: ../../include/widgets.php:146
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
-
-#: ../../include/widgets.php:152
-msgid "Add New Connection"
-msgstr "Ajouter une nouvelle relation"
-
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse du canal"
-
-#: ../../include/widgets.php:154
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara"
-
-#: ../../include/widgets.php:171
-msgid "Notes"
-msgstr "Notes"
-
-#: ../../include/widgets.php:173 ../../include/text.php:754
-#: ../../include/text.php:768 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Sauver"
-
-#: ../../include/widgets.php:243
-msgid "Remove term"
-msgstr "Retirer le terme"
-
-#: ../../include/widgets.php:252 ../../include/features.php:52
-msgid "Saved Searches"
-msgstr "Recherches sauvées"
-
-#: ../../include/widgets.php:253 ../../include/group.php:290
-msgid "add"
-msgstr "ajouter"
-
-#: ../../include/widgets.php:283 ../../include/features.php:66
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
-
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Tout"
-
-#: ../../include/widgets.php:318 ../../include/items.php:3636
-msgid "Archives"
-msgstr "Archives"
-
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Actualiser"
-
-#: ../../include/widgets.php:371 ../../mod/connedit.php:389
-msgid "Me"
-msgstr "Moi"
-
-#: ../../include/widgets.php:372 ../../mod/connedit.php:391
-msgid "Best Friends"
-msgstr "Mes meilleurs amis"
-
-#: ../../include/widgets.php:373 ../../include/identity.php:310
-#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
-msgid "Friends"
-msgstr "Amis"
-
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Mes collègues"
-
-#: ../../include/widgets.php:375 ../../mod/connedit.php:393
-msgid "Former Friends"
-msgstr "Mes anciens amis"
-
-#: ../../include/widgets.php:376 ../../mod/connedit.php:394
-msgid "Acquaintances"
-msgstr "Mes accointances"
-
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Tout le monde"
-
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Compte"
-
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Canal"
-
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Fonc. supplémentaires"
-
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Fonctionnalités"
-
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Affichage"
-
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Applications"
-
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Exporter canal"
-
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Permissions automatiques (avancé)"
-
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Canal Premium"
-
-#: ../../include/widgets.php:476 ../../include/features.php:43
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Canaux sources"
-
-#: ../../include/widgets.php:487 ../../include/nav.php:181
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
-msgid "Settings"
-msgstr "Réglages"
-
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "Vérifier courriel"
-
-#: ../../include/widgets.php:509 ../../include/nav.php:172
-msgid "New Message"
-msgstr "Nouveau message"
-
-#: ../../include/widgets.php:585
-msgid "Chat Rooms"
-msgstr "Salons"
-
-#: ../../include/acl_selectors.php:235
-msgid "Visible to everybody"
-msgstr "Visible par tous"
-
-#: ../../include/acl_selectors.php:236
-msgid "show"
-msgstr "montrer"
-
-#: ../../include/acl_selectors.php:237
-msgid "don't show"
-msgstr "cacher"
-
-#: ../../include/activities.php:39
-msgid " and "
-msgstr "et"
-
-#: ../../include/activities.php:47
-msgid "public profile"
-msgstr "profil public"
-
-#: ../../include/activities.php:52
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
-
-#: ../../include/activities.php:53
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Visiter %1$s de %2$s"
-
-#: ../../include/activities.php:56
+#: ../../include/dba/dba_driver.php:50
#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s a mis-à-jour %2$s, modifiant %3$s."
-
-#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
-msgid "Logout"
-msgstr "Déconnexion"
-
-#: ../../include/nav.php:72 ../../include/nav.php:91
-msgid "End this session"
-msgstr "Mettre fin à la session"
-
-#: ../../include/nav.php:75 ../../include/nav.php:125
-msgid "Home"
-msgstr "Canal"
-
-#: ../../include/nav.php:75
-msgid "Your posts and conversations"
-msgstr "Vos publications et conversations"
-
-#: ../../include/nav.php:76 ../../include/conversation.php:933
-#: ../../mod/connedit.php:312 ../../mod/connedit.php:426
-msgid "View Profile"
-msgstr "Voir profil"
-
-#: ../../include/nav.php:76
-msgid "Your profile page"
-msgstr "Votre profil"
-
-#: ../../include/nav.php:78
-msgid "Edit Profiles"
-msgstr "Éditer profils"
-
-#: ../../include/nav.php:78
-msgid "Manage/Edit profiles"
-msgstr "Gérer/éditer profils"
-
-#: ../../include/nav.php:79 ../../include/conversation.php:1475
-#: ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Photos"
-
-#: ../../include/nav.php:79
-msgid "Your photos"
-msgstr "Vos photos"
-
-#: ../../include/nav.php:80 ../../include/conversation.php:1484
-#: ../../mod/fbrowser.php:114
-msgid "Files"
-msgstr "Fichiers"
-
-#: ../../include/nav.php:80
-msgid "Your files"
-msgstr "Vos fichiers"
-
-#: ../../include/nav.php:81
-msgid "Chat"
-msgstr "Discussion"
-
-#: ../../include/nav.php:81
-msgid "Your chatrooms"
-msgstr "Vos salons"
-
-#: ../../include/nav.php:82 ../../include/nav.php:175
-#: ../../include/conversation.php:1506 ../../mod/events.php:354
-msgid "Events"
-msgstr "Événements"
-
-#: ../../include/nav.php:82
-msgid "Your events"
-msgstr "Vos événements"
-
-#: ../../include/nav.php:83 ../../include/conversation.php:1514
-msgid "Bookmarks"
-msgstr "Marque-pages"
-
-#: ../../include/nav.php:83
-msgid "Your bookmarks"
-msgstr "Vos marque-pages"
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de trouver les infos DNS du serveur de BD '%s'"
-#: ../../include/nav.php:85 ../../include/conversation.php:1525
-msgid "Webpages"
-msgstr "Pages web"
+#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
+#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301
+#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91
+#: ../../mod/photos.php:653 ../../mod/photos.php:675
+msgid "Profile Photos"
+msgstr "Photos du profil"
-#: ../../include/nav.php:85
-msgid "Your webpages"
-msgstr "Vos pages web"
+#: ../../include/oembed.php:163
+msgid "Embedded content"
+msgstr "Contenu imbriqué"
-#: ../../include/nav.php:89 ../../boot.php:1424
-msgid "Login"
-msgstr "Connexion"
+#: ../../include/oembed.php:172
+msgid "Embedding disabled"
+msgstr "Imbrication désactivée"
-#: ../../include/nav.php:89
-msgid "Sign in"
-msgstr "Connexion"
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "a publié"
-#: ../../include/nav.php:106
+#: ../../include/notify.php:24
#, php-format
-msgid "%s - click to logout"
-msgstr "%s - cliquer pour déconnecter"
-
-#: ../../include/nav.php:111
-msgid "Click to authenticate to your home hub"
-msgstr "S'authentifier auprès de son hébergement"
-
-#: ../../include/nav.php:125
-msgid "Home Page"
-msgstr "Page d'accueil"
-
-#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
-msgid "Register"
-msgstr "Inscription"
-
-#: ../../include/nav.php:129
-msgid "Create an account"
-msgstr "Créer un compte"
-
-#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:64
-msgid "Help"
-msgstr "Aide"
-
-#: ../../include/nav.php:134
-msgid "Help and documentation"
-msgstr "Aide et documentation"
-
-#: ../../include/nav.php:137
-msgid "Apps"
-msgstr "Applications"
-
-#: ../../include/nav.php:137
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, jeux, utilitaires"
-
-#: ../../include/nav.php:139 ../../include/text.php:752
-#: ../../include/text.php:766 ../../mod/search.php:29
-msgid "Search"
-msgstr "Recherche"
-
-#: ../../include/nav.php:139
-msgid "Search site content"
-msgstr "Recherche parmi le contenu du site"
-
-#: ../../include/nav.php:142 ../../mod/directory.php:211
-msgid "Directory"
-msgstr "Annuaire"
-
-#: ../../include/nav.php:142
-msgid "Channel Locator"
-msgstr "Localisation de canaux"
-
-#: ../../include/nav.php:153
-msgid "Matrix"
-msgstr "Matrice"
-
-#: ../../include/nav.php:153
-msgid "Your matrix"
-msgstr "Votre matrice"
-
-#: ../../include/nav.php:154
-msgid "Mark all matrix notifications seen"
-msgstr "Marquer toutes les notifications de la matrice comme vues"
-
-#: ../../include/nav.php:156
-msgid "Channel Home"
-msgstr "Mon canal"
-
-#: ../../include/nav.php:156
-msgid "Channel home"
-msgstr "Mon canal"
-
-#: ../../include/nav.php:157
-msgid "Mark all channel notifications seen"
-msgstr "Marquer toutes les notifications du canal comme vues"
-
-#: ../../include/nav.php:160
-msgid "Intros"
-msgstr "Introductions"
-
-#: ../../include/nav.php:160 ../../mod/connections.php:244
-msgid "New Connections"
-msgstr "Nouvelles relations"
-
-#: ../../include/nav.php:163
-msgid "Notices"
-msgstr "Notifications"
-
-#: ../../include/nav.php:163
-msgid "Notifications"
-msgstr "Notifications"
-
-#: ../../include/nav.php:164
-msgid "See all notifications"
-msgstr "Voir toutes les notifications"
-
-#: ../../include/nav.php:165
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme vues"
-
-#: ../../include/nav.php:167
-msgid "Mail"
-msgstr "Messages"
-
-#: ../../include/nav.php:167
-msgid "Private mail"
-msgstr "Messages privés"
-
-#: ../../include/nav.php:168
-msgid "See all private messages"
-msgstr "Voir tous les messages privés"
-
-#: ../../include/nav.php:169
-msgid "Mark all private messages seen"
-msgstr "Marquer tous les messages privés comme vus"
-
-#: ../../include/nav.php:170
-msgid "Inbox"
-msgstr "Boîte de réception"
-
-#: ../../include/nav.php:171
-msgid "Outbox"
-msgstr "Boîte d'envoi"
-
-#: ../../include/nav.php:175
-msgid "Event Calendar"
-msgstr "Calendrier des événements"
-
-#: ../../include/nav.php:176
-msgid "See all events"
-msgstr "Voir tous les événements"
-
-#: ../../include/nav.php:177
-msgid "Mark all events seen"
-msgstr "Marquer tous les événements comme vus"
-
-#: ../../include/nav.php:179
-msgid "Channel Select"
-msgstr "Changer de canal"
-
-#: ../../include/nav.php:179
-msgid "Manage Your Channels"
-msgstr "Gérer vos canaux"
-
-#: ../../include/nav.php:181
-msgid "Account/Channel Settings"
-msgstr "Compte/Canal"
-
-#: ../../include/nav.php:183 ../../mod/connections.php:351
-msgid "Connections"
-msgstr "Relations"
-
-#: ../../include/nav.php:183
-msgid "Manage/Edit Friends and Connections"
-msgstr "Gérer les amis et relations"
-
-#: ../../include/nav.php:190 ../../mod/admin.php:112
-msgid "Admin"
-msgstr "Admin"
-
-#: ../../include/nav.php:190
-msgid "Site Setup and Configuration"
-msgstr "Configuration du site"
-
-#: ../../include/nav.php:216
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
-
-#: ../../include/nav.php:221
-msgid "Please wait..."
-msgstr "Merci de patienter..."
+msgid "commented on %s's post"
+msgstr "a commenté la publication de %s"
-#: ../../include/text.php:315
+#: ../../include/text.php:321
msgid "prev"
msgstr "préc."
-#: ../../include/text.php:317
+#: ../../include/text.php:323
msgid "first"
msgstr "premier"
-#: ../../include/text.php:346
+#: ../../include/text.php:352
msgid "last"
msgstr "dernier"
-#: ../../include/text.php:349
+#: ../../include/text.php:355
msgid "next"
msgstr "suiv."
-#: ../../include/text.php:361
+#: ../../include/text.php:367
msgid "older"
msgstr "plus ancien"
-#: ../../include/text.php:363
+#: ../../include/text.php:369
msgid "newer"
msgstr "plus récent"
-#: ../../include/text.php:670
+#: ../../include/text.php:730
msgid "No connections"
msgstr "Sans relations"
-#: ../../include/text.php:681
+#: ../../include/text.php:743
#, php-format
msgid "%d Connection"
msgid_plural "%d Connections"
msgstr[0] "%d relation"
msgstr[1] "%d relations"
-#: ../../include/text.php:693
+#: ../../include/text.php:756
msgid "View Connections"
msgstr "Voir les relations"
-#: ../../include/text.php:834
+#: ../../include/text.php:815 ../../include/text.php:829
+#: ../../include/nav.php:149 ../../include/apps.php:142
+#: ../../mod/search.php:29
+msgid "Search"
+msgstr "Recherche"
+
+#: ../../include/text.php:817 ../../include/text.php:831
+#: ../../include/widgets.php:186 ../../mod/rbmark.php:28
+#: ../../mod/rbmark.php:98 ../../mod/filer.php:50
+msgid "Save"
+msgstr "Sauver"
+
+#: ../../include/text.php:897
msgid "poke"
-msgstr "tapoter"
+msgstr "cogne"
-#: ../../include/text.php:834 ../../include/conversation.php:240
+#: ../../include/text.php:897 ../../include/conversation.php:243
msgid "poked"
-msgstr "tapoté"
+msgstr "C'est fait cogner"
-#: ../../include/text.php:835
+#: ../../include/text.php:898
msgid "ping"
msgstr "solliciter"
-#: ../../include/text.php:835
+#: ../../include/text.php:898
msgid "pinged"
msgstr "sollicité"
-#: ../../include/text.php:836
+#: ../../include/text.php:899
msgid "prod"
msgstr "aiguillonner"
-#: ../../include/text.php:836
+#: ../../include/text.php:899
msgid "prodded"
msgstr "aiguillonné"
-#: ../../include/text.php:837
+#: ../../include/text.php:900
msgid "slap"
-msgstr "baffer"
+msgstr "giffle"
-#: ../../include/text.php:837
+#: ../../include/text.php:900
msgid "slapped"
-msgstr "baffé"
+msgstr "gifflé"
-#: ../../include/text.php:838
+#: ../../include/text.php:901
msgid "finger"
msgstr "pointer"
-#: ../../include/text.php:838
+#: ../../include/text.php:901
msgid "fingered"
msgstr "pointé"
-#: ../../include/text.php:839
+#: ../../include/text.php:902
msgid "rebuff"
msgstr "rejetter"
-#: ../../include/text.php:839
+#: ../../include/text.php:902
msgid "rebuffed"
msgstr "rejetté"
-#: ../../include/text.php:851
+#: ../../include/text.php:911
msgid "happy"
-msgstr "bonheur"
+msgstr "heureux"
-#: ../../include/text.php:852
+#: ../../include/text.php:912
msgid "sad"
msgstr "triste"
-#: ../../include/text.php:853
+#: ../../include/text.php:913
msgid "mellow"
-msgstr "mélancolie"
+msgstr "mélancolique"
-#: ../../include/text.php:854
+#: ../../include/text.php:914
msgid "tired"
-msgstr "fatigue"
+msgstr "fatigué"
-#: ../../include/text.php:855
+#: ../../include/text.php:915
msgid "perky"
-msgstr "impertinence"
+msgstr "impertinent"
-#: ../../include/text.php:856
+#: ../../include/text.php:916
msgid "angry"
-msgstr "colère"
+msgstr "colèrique"
-#: ../../include/text.php:857
+#: ../../include/text.php:917
msgid "stupified"
-msgstr "stupeur"
+msgstr "stupéfié"
-#: ../../include/text.php:858
+#: ../../include/text.php:918
msgid "puzzled"
-msgstr "perplexité"
+msgstr "perplexe"
-#: ../../include/text.php:859
+#: ../../include/text.php:919
msgid "interested"
-msgstr "intérêt"
+msgstr "intéressé"
-#: ../../include/text.php:860
+#: ../../include/text.php:920
msgid "bitter"
-msgstr "amertune"
+msgstr "amer"
-#: ../../include/text.php:861
+#: ../../include/text.php:921
msgid "cheerful"
msgstr "entrain"
-#: ../../include/text.php:862
+#: ../../include/text.php:922
msgid "alive"
-msgstr "vivacité"
+msgstr "énergique"
-#: ../../include/text.php:863
+#: ../../include/text.php:923
msgid "annoyed"
-msgstr "agaçement"
+msgstr "agaçé"
-#: ../../include/text.php:864
+#: ../../include/text.php:924
msgid "anxious"
-msgstr "anxiété"
+msgstr "anxieux"
-#: ../../include/text.php:865
+#: ../../include/text.php:925
msgid "cranky"
-msgstr "mauvais poil"
+msgstr "énervé"
-#: ../../include/text.php:866
+#: ../../include/text.php:926
msgid "disturbed"
-msgstr "perturbation"
+msgstr "perturbé"
-#: ../../include/text.php:867
+#: ../../include/text.php:927
msgid "frustrated"
-msgstr "frustration"
+msgstr "frustré"
+
+#: ../../include/text.php:928
+msgid "depressed"
+msgstr "déprimé"
-#: ../../include/text.php:868
+#: ../../include/text.php:929
msgid "motivated"
-msgstr "motivation"
+msgstr "motivé"
-#: ../../include/text.php:869
+#: ../../include/text.php:930
msgid "relaxed"
-msgstr "détente"
+msgstr "détendu"
-#: ../../include/text.php:870
+#: ../../include/text.php:931
msgid "surprised"
-msgstr "surprise"
+msgstr "surpris"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Monday"
msgstr "Lundi"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Tuesday"
msgstr "Mardi"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Wednesday"
msgstr "Mercredi"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Thursday"
msgstr "Jeudi"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Friday"
msgstr "Vendredi"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Saturday"
msgstr "Samedi"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1092
msgid "Sunday"
msgstr "Dimanche"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "January"
msgstr "Janvier"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "February"
msgstr "Février"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "March"
msgstr "Mars"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "April"
msgstr "Avril"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "May"
msgstr "Mai"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "June"
msgstr "Juin"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "July"
msgstr "Juillet"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "August"
msgstr "Août"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "September"
msgstr "Septembre"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "October"
msgstr "Octobre"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "November"
msgstr "Novembre"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1096
msgid "December"
msgstr "Décembre"
-#: ../../include/text.php:1113
+#: ../../include/text.php:1174
msgid "unknown.???"
msgstr "inconnu.???"
-#: ../../include/text.php:1114
+#: ../../include/text.php:1175
msgid "bytes"
msgstr "octets"
-#: ../../include/text.php:1149
+#: ../../include/text.php:1210
msgid "remove category"
-msgstr "suppr. catégorie"
+msgstr "supprimer la catégorie"
-#: ../../include/text.php:1171
+#: ../../include/text.php:1280
msgid "remove from file"
-msgstr "supprimer du fichier"
+msgstr "retirer du fichier"
-#: ../../include/text.php:1229 ../../include/text.php:1241
+#: ../../include/text.php:1345 ../../include/text.php:1357
msgid "Click to open/close"
msgstr "Cliquer pour ouvrir/fermer"
-#: ../../include/text.php:1417 ../../mod/events.php:332
-msgid "link to source"
-msgstr "lien vers source"
+#: ../../include/text.php:1512 ../../mod/events.php:374
+msgid "Link to Source"
+msgstr "Lien vers la Source"
-#: ../../include/text.php:1436
+#: ../../include/text.php:1531
msgid "Select a page layout: "
msgstr "Choisir une mise en page&nbsp;:"
-#: ../../include/text.php:1439 ../../include/text.php:1504
+#: ../../include/text.php:1534 ../../include/text.php:1599
msgid "default"
msgstr "défaut"
-#: ../../include/text.php:1475
+#: ../../include/text.php:1570
msgid "Page content type: "
msgstr "Type de contenu&nbsp;:"
-#: ../../include/text.php:1516
+#: ../../include/text.php:1611
msgid "Select an alternate language"
msgstr "Choisir une langue alternative"
-#: ../../include/text.php:1637 ../../include/conversation.php:117
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+#: ../../include/text.php:1732 ../../include/conversation.php:120
+#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
+#: ../../mod/tagger.php:45 ../../mod/like.php:294
msgid "photo"
msgstr "photo"
-#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../include/text.php:1735 ../../include/conversation.php:123
#: ../../mod/tagger.php:49
msgid "event"
msgstr "événement"
-#: ../../include/text.php:1643 ../../include/conversation.php:145
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+#: ../../include/text.php:1738 ../../include/conversation.php:148
+#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
+#: ../../mod/tagger.php:53 ../../mod/like.php:294
msgid "status"
msgstr "le statut"
-#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../include/text.php:1740 ../../include/conversation.php:150
#: ../../mod/tagger.php:55
msgid "comment"
msgstr "commentaire"
-#: ../../include/text.php:1650
+#: ../../include/text.php:1745
msgid "activity"
msgstr "activité"
-#: ../../include/text.php:1907
+#: ../../include/text.php:2004
msgid "Design"
msgstr "Conception"
-#: ../../include/text.php:1909
+#: ../../include/text.php:2006
msgid "Blocks"
msgstr "Blocs"
-#: ../../include/text.php:1910
+#: ../../include/text.php:2007
msgid "Menus"
msgstr "Menus"
-#: ../../include/text.php:1911
+#: ../../include/text.php:2008
msgid "Layouts"
msgstr "Mises-en-page"
-#: ../../include/text.php:1912
+#: ../../include/text.php:2009
msgid "Pages"
msgstr "Pages"
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
-#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
-#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
-#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
-#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
-#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
-#: ../../include/bbcode.php:633
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Nouvelle page"
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
+#: ../../include/reddav.php:1289 ../../include/apps.php:240
+#: ../../include/menu.php:42 ../../include/ItemObject.php:96
+#: ../../mod/settings.php:577 ../../mod/blocks.php:94
+#: ../../mod/connections.php:393 ../../mod/editblock.php:111
+#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:143 ../../mod/thing.php:235
+#: ../../mod/layouts.php:112 ../../mod/menu.php:59 ../../mod/webpages.php:120
+msgid "Edit"
+msgstr "Éditer"
-#: ../../include/bbcode.php:170
-msgid "QR code"
-msgstr "QR code"
+#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97
+#: ../../mod/layouts.php:116 ../../mod/webpages.php:123
+msgid "View"
+msgstr "Voir"
+
+#: ../../include/page_widgets.php:40 ../../include/conversation.php:1091
+#: ../../include/ItemObject.php:592 ../../mod/editblock.php:141
+#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140
+#: ../../mod/editwebpage.php:174 ../../mod/photos.php:997
+#: ../../mod/webpages.php:124
+msgid "Preview"
+msgstr "Aperçu"
+
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:125
+msgid "Actions"
+msgstr "Actions"
+
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:126
+msgid "Page Link"
+msgstr "Lien vers la page"
+
+#: ../../include/page_widgets.php:43 ../../mod/webpages.php:127
+msgid "Title"
+msgstr "Titre"
+
+#: ../../include/page_widgets.php:44 ../../mod/webpages.php:128
+msgid "Created"
+msgstr "Créé"
+
+#: ../../include/page_widgets.php:45 ../../mod/webpages.php:129
+msgid "Edited"
+msgstr "Édité"
+
+#: ../../include/security.php:301
+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 formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."
+
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Ce n'est pas une adresse de courriel valide"
+
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"
+
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "Votre adresse de courriel est déjà inscrite sur ce site."
+
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
+
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Votre invitation n'a pas pu être vérifiée."
+
+#: ../../include/account.php:119
+msgid "Please enter the required information."
+msgstr "Merci d'entrer les informations requises."
+
+#: ../../include/account.php:187
+msgid "Failed to store account information."
+msgstr "Impossible de stocker les informations liées au compte."
-#: ../../include/bbcode.php:213
+#: ../../include/account.php:245
#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s a écrit %2$s qui suit %3$s"
+msgid "Registration confirmation for %s"
+msgstr "Confirmation de l'enregistrement pour %s"
-#: ../../include/bbcode.php:215
-msgid "post"
-msgstr "l'article"
+#: ../../include/account.php:313
+#, php-format
+msgid "Registration request at %s"
+msgstr "Demande d'inscription sur %s"
-#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
-msgid "$1 wrote:"
-msgstr "$1 a écrit&nbsp;:"
+#: ../../include/account.php:315 ../../include/account.php:342
+#: ../../include/account.php:399
+msgid "Administrator"
+msgstr "Administrateur"
-#: ../../include/Contact.php:120
-msgid "New window"
-msgstr "Nouvelle fenêtre"
+#: ../../include/account.php:337
+msgid "your registration password"
+msgstr "votre mot de passe d'inscription"
-#: ../../include/Contact.php:121
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent"
+#: ../../include/account.php:340 ../../include/account.php:397
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails de l'inscription à %s"
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Fonctionnalités générales"
+#: ../../include/account.php:406
+msgid "Account approved."
+msgstr "Compte approuvé."
-#: ../../include/features.php:25
-msgid "Content Expiration"
-msgstr "Expiration de contenu"
+#: ../../include/account.php:440
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
-#: ../../include/features.php:25
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Supprimer les contributions/commentaires et/ou messages privés à un moment futur"
+#: ../../include/account.php:486
+msgid "Account verified. Please login."
+msgstr "Compte vérifié. Veuillez vous connecter."
+
+#: ../../include/photos.php:15 ../../include/attach.php:119
+#: ../../include/attach.php:166 ../../include/attach.php:229
+#: ../../include/attach.php:243 ../../include/attach.php:283
+#: ../../include/attach.php:297 ../../include/attach.php:322
+#: ../../include/attach.php:513 ../../include/attach.php:585
+#: ../../include/chat.php:116 ../../include/items.php:3662
+#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:27
+#: ../../mod/settings.php:492 ../../mod/poke.php:128 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64
+#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72
+#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276
+#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152
+#: ../../mod/profiles.php:462 ../../mod/bookmarks.php:46
+#: ../../mod/channel.php:89 ../../mod/channel.php:193
+#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95
+#: ../../mod/register.php:71 ../../mod/regmod.php:18 ../../mod/common.php:35
+#: ../../mod/network.php:12 ../../mod/connections.php:169
+#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30
+#: ../../mod/page.php:80 ../../mod/setup.php:203 ../../mod/editblock.php:34
+#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:48
+#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/photos.php:68
+#: ../../mod/photos.php:526 ../../mod/sources.php:66 ../../mod/events.php:160
+#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59
+#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98
+#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9
+#: ../../mod/thing.php:249 ../../mod/thing.php:266 ../../mod/thing.php:301
+#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179
+#: ../../mod/item.php:187 ../../mod/item.php:908 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:39 ../../mod/like.php:154
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/viewsrc.php:12 ../../mod/mail.php:108 ../../mod/manage.php:6
+#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/message.php:16
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/notifications.php:66 ../../mod/appman.php:66 ../../index.php:186
+#: ../../index.php:361
+msgid "Permission denied."
+msgstr "Permission refusée."
-#: ../../include/features.php:26
-msgid "Multiple Profiles"
-msgstr "Profils multiples"
+#: ../../include/photos.php:89
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "L'image dépasse la taille limite de %lu octets"
-#: ../../include/features.php:26
-msgid "Ability to create multiple profiles"
-msgstr "Possibilité de créer plusieurs profils"
+#: ../../include/photos.php:96
+msgid "Image file is empty."
+msgstr "L'image est vide."
-#: ../../include/features.php:27
-msgid "Web Pages"
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:216
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
+
+#: ../../include/photos.php:186
+msgid "Photo storage failed."
+msgstr "Le stockage de l'image a échoué."
+
+#: ../../include/photos.php:313 ../../include/conversation.php:1515
+msgid "Photo Albums"
+msgstr "Albums photo"
+
+#: ../../include/photos.php:317 ../../mod/photos.php:691
+#: ../../mod/photos.php:1193
+msgid "Upload New Photos"
+msgstr "Ajouter des photos"
+
+#: ../../include/acl_selectors.php:240
+msgid "Visible to everybody"
+msgstr "Visible pour tous"
+
+#: ../../include/acl_selectors.php:241
+msgid "Show"
+msgstr "Voir plus"
+
+#: ../../include/acl_selectors.php:242
+msgid "Don't show"
+msgstr "Cacher"
+
+#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209
+#: ../../mod/photos.php:604 ../../mod/photos.php:952
+#: ../../mod/filestorage.php:128
+msgid "Permissions"
+msgstr "Permissions"
+
+#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:289
+msgid "Close"
+msgstr "Fermer"
+
+#: ../../include/activities.php:39
+msgid " and "
+msgstr "et"
+
+#: ../../include/activities.php:47
+msgid "public profile"
+msgstr "profil public"
+
+#: ../../include/activities.php:52
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
+
+#: ../../include/activities.php:53
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Visiter %1$s de %2$s"
+
+#: ../../include/activities.php:56
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s a mis-à-jour %2$s, modifiant %3$s."
+
+#: ../../include/api.php:1016
+msgid "Public Timeline"
+msgstr "Fil public"
+
+#: ../../include/attach.php:224 ../../include/attach.php:278
+msgid "Item was not found."
+msgstr "Élément introuvable."
+
+#: ../../include/attach.php:335
+msgid "No source file."
+msgstr "Pas de fichier source."
+
+#: ../../include/attach.php:352
+msgid "Cannot locate file to replace"
+msgstr "Impossible de trouver le fichier à remplacer."
+
+#: ../../include/attach.php:370
+msgid "Cannot locate file to revise/update"
+msgstr "Impossible de trouver le fichier à corriger/mettre-à-jour"
+
+#: ../../include/attach.php:381
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Le fichier dépasse la taille limite de %d"
+
+#: ../../include/attach.php:393
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes"
+
+#: ../../include/attach.php:475
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Envoi du fichier impossible. Limite système ou action avortée."
+
+#: ../../include/attach.php:487
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Le fichier stocké n'a pu être vérifié. Envoi impossible."
+
+#: ../../include/attach.php:528 ../../include/attach.php:545
+msgid "Path not available."
+msgstr "Chemin non disponible."
+
+#: ../../include/attach.php:590
+msgid "Empty pathname"
+msgstr "Chemin vide"
+
+#: ../../include/attach.php:606
+msgid "duplicate filename or path"
+msgstr "doublon de chemin ou de fichier"
+
+#: ../../include/attach.php:630
+msgid "Path not found."
+msgstr "Chemin introuvable."
+
+#: ../../include/attach.php:681
+msgid "mkdir failed."
+msgstr "mkdir a échoué."
+
+#: ../../include/attach.php:685
+msgid "database storage failed."
+msgstr "l'écriture dans la BD a échoué"
+
+#: ../../include/plugin.php:504 ../../include/plugin.php:506
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
+
+#: ../../include/plugin.php:512
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action outrepasserait les limites prévues par votre forfait."
+
+#: ../../include/plugin.php:517
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas possible avec la formule choisie."
+
+#: ../../include/bb2diaspora.php:463 ../../include/event.php:11
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\à G\\hi"
+
+#: ../../include/bb2diaspora.php:469 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Début&nbsp;:"
+
+#: ../../include/bb2diaspora.php:477 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Fin&nbsp;:"
+
+#: ../../include/bb2diaspora.php:485 ../../include/event.php:40
+#: ../../include/identity.php:726 ../../mod/directory.php:156
+#: ../../mod/dirprofile.php:105 ../../mod/events.php:504
+msgid "Location:"
+msgstr "Emplacement&nbsp;:"
+
+#: ../../include/nav.php:77 ../../include/nav.php:101 ../../boot.php:1487
+msgid "Logout"
+msgstr "Déconnexion"
+
+#: ../../include/nav.php:77 ../../include/nav.php:101
+msgid "End this session"
+msgstr "Mettre fin à la session"
+
+#: ../../include/nav.php:80 ../../include/nav.php:135
+msgid "Home"
+msgstr "Canal"
+
+#: ../../include/nav.php:80
+msgid "Your posts and conversations"
+msgstr "Vos publications et conversations"
+
+#: ../../include/nav.php:81 ../../include/conversation.php:940
+#: ../../mod/connedit.php:351 ../../mod/connedit.php:465
+msgid "View Profile"
+msgstr "Voir profil"
+
+#: ../../include/nav.php:81
+msgid "Your profile page"
+msgstr "Votre profil"
+
+#: ../../include/nav.php:83
+msgid "Edit Profiles"
+msgstr "Éditer les profils"
+
+#: ../../include/nav.php:83
+msgid "Manage/Edit profiles"
+msgstr "Gérer/éditer les profils"
+
+#: ../../include/nav.php:84 ../../include/conversation.php:1512
+#: ../../include/apps.php:134 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Photos"
+
+#: ../../include/nav.php:84
+msgid "Your photos"
+msgstr "Vos photos"
+
+#: ../../include/nav.php:85 ../../include/reddav.php:1280
+#: ../../include/conversation.php:1521 ../../include/apps.php:130
+#: ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Fichiers"
+
+#: ../../include/nav.php:85
+msgid "Your files"
+msgstr "Vos fichiers"
+
+#: ../../include/nav.php:90 ../../include/apps.php:141
+msgid "Chat"
+msgstr "Clavardage"
+
+#: ../../include/nav.php:90
+msgid "Your chatrooms"
+msgstr "Vos salons"
+
+#: ../../include/nav.php:93 ../../include/conversation.php:1543
+#: ../../include/apps.php:124
+msgid "Bookmarks"
+msgstr "Favoris"
+
+#: ../../include/nav.php:93
+msgid "Your bookmarks"
+msgstr "Vos favoris"
+
+#: ../../include/nav.php:95 ../../include/conversation.php:1554
+#: ../../include/apps.php:131 ../../mod/webpages.php:79
+msgid "Webpages"
msgstr "Pages web"
-#: ../../include/features.php:27
-msgid "Provide managed web pages on your channel"
-msgstr "Fournir des pages web, sous votre contrôle, sur votre canal"
+#: ../../include/nav.php:95
+msgid "Your webpages"
+msgstr "Vos pages web"
-#: ../../include/features.php:28
-msgid "Private Notes"
-msgstr "Notes privées"
+#: ../../include/nav.php:99 ../../include/apps.php:126 ../../boot.php:1488
+msgid "Login"
+msgstr "Connexion"
-#: ../../include/features.php:28
-msgid "Enables a tool to store notes and reminders"
-msgstr "Active un outil pour stocker notes et mémos"
+#: ../../include/nav.php:99
+msgid "Sign in"
+msgstr "Connexion"
-#: ../../include/features.php:33
-msgid "Extended Identity Sharing"
-msgstr "Partage d'identité étendue"
+#: ../../include/nav.php:116
+#, php-format
+msgid "%s - click to logout"
+msgstr "%s - cliquer ici pour déconnecter"
-#: ../../include/features.php:33
-msgid ""
-"Share your identity with all websites on the internet. When disabled, "
-"identity is only shared with sites in the matrix."
-msgstr "Partage votre identité avec tous les sites web du Monde. Si décoché, l'identité sera seulement partagée avec les sites de la matrice."
+#: ../../include/nav.php:121
+msgid "Click to authenticate to your home hub"
+msgstr "S'authentifier auprès de votre hub"
-#: ../../include/features.php:34
-msgid "Expert Mode"
-msgstr "Mode expert"
+#: ../../include/nav.php:135
+msgid "Home Page"
+msgstr "Page d'accueil"
-#: ../../include/features.php:34
-msgid "Enable Expert Mode to provide advanced configuration options"
-msgstr "Activer le mode expert pour accéder aux options avancées"
+#: ../../include/nav.php:139 ../../mod/register.php:221 ../../boot.php:1464
+msgid "Register"
+msgstr "S'inscrire"
-#: ../../include/features.php:35
-msgid "Premium Channel"
-msgstr "Canal Premium"
+#: ../../include/nav.php:139
+msgid "Create an account"
+msgstr "Créer un compte"
-#: ../../include/features.php:35
-msgid ""
-"Allows you to set restrictions and terms on those that connect with your "
-"channel"
-msgstr "Vous permet d'appliquer des règles et restrictions aux relations de votre canal"
+#: ../../include/nav.php:144 ../../include/apps.php:137 ../../mod/help.php:60
+#: ../../mod/help.php:65
+msgid "Help"
+msgstr "Aide"
-#: ../../include/features.php:40
-msgid "Post Composition Features"
-msgstr "Fonctionnalités de composition"
+#: ../../include/nav.php:144
+msgid "Help and documentation"
+msgstr "Aide et documentation"
-#: ../../include/features.php:41
-msgid "Richtext Editor"
-msgstr "Éditeur enrichi"
+#: ../../include/nav.php:147 ../../include/widgets.php:79
+#: ../../mod/apps.php:33
+msgid "Apps"
+msgstr "Applications"
-#: ../../include/features.php:41
-msgid "Enable richtext editor"
-msgstr "Activer l'éditeur de texte enrichi"
+#: ../../include/nav.php:147
+msgid "Applications, utilities, links, games"
+msgstr "Applications, utilitaires, liens, jeux"
-#: ../../include/features.php:42
-msgid "Post Preview"
-msgstr "Aperçu avant publication"
+#: ../../include/nav.php:149
+msgid "Search site content"
+msgstr "Rechercher parmi le contenu du site"
-#: ../../include/features.php:42
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permettre de voir les publications/commentaires avant de les valider"
+#: ../../include/nav.php:152 ../../include/apps.php:136
+#: ../../mod/directory.php:210
+msgid "Directory"
+msgstr "Annuaire"
-#: ../../include/features.php:43
-msgid "Automatically import channel content from other channels or feeds"
-msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours"
+#: ../../include/nav.php:152
+msgid "Channel Locator"
+msgstr "Localisation de canaux"
-#: ../../include/features.php:44
-msgid "Even More Encryption"
-msgstr "Encore plus de chiffrement"
+#: ../../include/nav.php:163 ../../include/apps.php:128
+msgid "Matrix"
+msgstr "Matrice"
-#: ../../include/features.php:44
-msgid ""
-"Allow optional encryption of content end-to-end with a shared secret key"
-msgstr "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé"
+#: ../../include/nav.php:163
+msgid "Your matrix"
+msgstr "Votre matrice"
-#: ../../include/features.php:49
-msgid "Network and Stream Filtering"
-msgstr "Filtrage du réseau et des flux"
+#: ../../include/nav.php:164
+msgid "Mark all matrix notifications seen"
+msgstr "Marquer toutes les notifications de la matrice comme vues"
-#: ../../include/features.php:50
-msgid "Search by Date"
-msgstr "Chercher par date"
+#: ../../include/nav.php:166 ../../include/apps.php:132
+msgid "Channel Home"
+msgstr "Mon canal"
-#: ../../include/features.php:50
-msgid "Ability to select posts by date ranges"
-msgstr "Pouvoir choisir des publications par date"
+#: ../../include/nav.php:166
+msgid "Channel home"
+msgstr "Mon canal"
-#: ../../include/features.php:51
-msgid "Collections Filter"
-msgstr "Filtre des collections"
+#: ../../include/nav.php:167
+msgid "Mark all channel notifications seen"
+msgstr "Marquer toutes les notifications du canal comme vues"
-#: ../../include/features.php:51
-msgid "Enable widget to display Network posts only from selected collections"
-msgstr "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées"
+#: ../../include/nav.php:170 ../../mod/connections.php:386
+msgid "Connections"
+msgstr "Relations"
-#: ../../include/features.php:52
-msgid "Save search terms for re-use"
-msgstr "Sauver des termes de recherche pour utilisation ultérieure"
+#: ../../include/nav.php:173
+msgid "Notices"
+msgstr "Notifications"
-#: ../../include/features.php:53
-msgid "Network Personal Tab"
-msgstr "Onglet \"réseau personnel\""
+#: ../../include/nav.php:173
+msgid "Notifications"
+msgstr "Notifications"
-#: ../../include/features.php:53
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu"
+#: ../../include/nav.php:174
+msgid "See all notifications"
+msgstr "Voir toutes les notifications"
-#: ../../include/features.php:54
-msgid "Network New Tab"
-msgstr "Onglet \"nouveautés réseau\""
+#: ../../include/nav.php:175 ../../mod/notifications.php:99
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme vues"
-#: ../../include/features.php:54
-msgid "Enable tab to display all new Network activity"
-msgstr "Activer un onglet avec toute activité récente sur le réseau"
+#: ../../include/nav.php:177 ../../include/apps.php:138
+msgid "Mail"
+msgstr "Messages"
-#: ../../include/features.php:55
-msgid "Affinity Tool"
-msgstr "Gérer l'affinité"
+#: ../../include/nav.php:177
+msgid "Private mail"
+msgstr "Messages privés"
-#: ../../include/features.php:55
-msgid "Filter stream activity by depth of relationships"
-msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations"
+#: ../../include/nav.php:178
+msgid "See all private messages"
+msgstr "Voir tous les messages privés"
-#: ../../include/features.php:56
-msgid "Suggest Channels"
-msgstr "Suggérer des canaux"
+#: ../../include/nav.php:179
+msgid "Mark all private messages seen"
+msgstr "Marquer tous les messages privés comme vus"
-#: ../../include/features.php:56
-msgid "Show channel suggestions"
-msgstr "Montrer les suggestions de canaux"
+#: ../../include/nav.php:180
+msgid "Inbox"
+msgstr "Boîte de réception"
-#: ../../include/features.php:61
-msgid "Post/Comment Tools"
-msgstr "Gérer les publications/commentaires"
+#: ../../include/nav.php:181
+msgid "Outbox"
+msgstr "Boîte d'envoi"
-#: ../../include/features.php:63
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
+#: ../../include/nav.php:182 ../../include/widgets.php:536
+msgid "New Message"
+msgstr "Nouveau message"
-#: ../../include/features.php:63
-msgid "Edit and correct posts and comments after sending"
-msgstr "Permettre d'éditer/corriger les publications/commentaires après envoi"
+#: ../../include/nav.php:185 ../../include/apps.php:135
+#: ../../mod/events.php:396
+msgid "Events"
+msgstr "Événements"
-#: ../../include/features.php:64
-msgid "Tagging"
-msgstr "Marquage"
+#: ../../include/nav.php:185
+msgid "Event Calendar"
+msgstr "Calendrier des événements"
-#: ../../include/features.php:64
-msgid "Ability to tag existing posts"
-msgstr "Permettre de marquer les publications existantes"
+#: ../../include/nav.php:186
+msgid "See all events"
+msgstr "Voir tous les événements"
-#: ../../include/features.php:65
-msgid "Post Categories"
-msgstr "Catégoriser les publications"
+#: ../../include/nav.php:187
+msgid "Mark all events seen"
+msgstr "Marquer tous les événements comme vus"
-#: ../../include/features.php:65
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
+#: ../../include/nav.php:189 ../../include/apps.php:127
+msgid "Channel Select"
+msgstr "Changer de canal"
-#: ../../include/features.php:66
-msgid "Ability to file posts under folders"
-msgstr "Permettre de classer les publications dans des dossiers"
+#: ../../include/nav.php:189
+msgid "Manage Your Channels"
+msgstr "Gérer vos canaux"
-#: ../../include/features.php:67
-msgid "Dislike Posts"
-msgstr "Détester une publication"
+#: ../../include/nav.php:191 ../../include/apps.php:129
+#: ../../include/widgets.php:514 ../../mod/admin.php:978
+#: ../../mod/admin.php:1183
+msgid "Settings"
+msgstr "Réglages"
-#: ../../include/features.php:67
-msgid "Ability to dislike posts/comments"
-msgstr "Pouvoir détester les publications/commentaires"
+#: ../../include/nav.php:191
+msgid "Account/Channel Settings"
+msgstr "Réglages du Compte/Canal"
-#: ../../include/features.php:68
-msgid "Star Posts"
-msgstr "Mettre en avant les publications"
+#: ../../include/nav.php:199 ../../mod/admin.php:117
+msgid "Admin"
+msgstr "Administrateur"
-#: ../../include/features.php:68
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Pouvoir marquer certaines publications d'une étoile"
+#: ../../include/nav.php:199
+msgid "Site Setup and Configuration"
+msgstr "Configuration du site"
-#: ../../include/features.php:69
-msgid "Tag Cloud"
-msgstr "Nuage de tags"
+#: ../../include/nav.php:224
+msgid "Nothing new here"
+msgstr "Aucun nouveau contenu trouvé"
-#: ../../include/features.php:69
-msgid "Provide a personal tag cloud on your channel page"
-msgstr "Afficher un nuage de vos tags sur votre canal"
+#: ../../include/nav.php:228
+msgid "Please wait..."
+msgstr "Merci de patienter..."
+
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "Favoris de %1$s"
+
+#: ../../include/chat.php:10
+msgid "Missing room name"
+msgstr "Il manque le nom du salon"
+
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
+msgstr "Un salon de ce nom existe déjà"
+
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
+msgstr "Identifiant de salon invalide."
+
+#: ../../include/chat.php:105
+msgid "Room not found."
+msgstr "Salon introuvable."
+
+#: ../../include/chat.php:126
+msgid "Room is full"
+msgstr "Le salon est plein"
+
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Étiquettes"
+
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Mots-clefs"
+
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "ont"
+
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "a"
+
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "veulent"
+
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "veut"
+
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:208
+msgid "like"
+msgstr "aime"
+
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "aiment"
+
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:209
+msgid "dislike"
+msgstr "déteste"
+
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "détestent"
+
+#: ../../include/taxonomy.php:338 ../../include/identity.php:968
+#: ../../include/ItemObject.php:134
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "J'aime"
+msgstr[1] "J'aime"
+
+#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185
+msgid "Default"
+msgstr "Défaut"
#: ../../include/contact_selectors.php:30
msgid "Unknown | Not categorised"
@@ -1066,7 +1058,7 @@ msgstr "Inconnu / Non-classé"
#: ../../include/contact_selectors.php:31
msgid "Block immediately"
-msgstr "Bloquer directement"
+msgstr "Bloquer"
#: ../../include/contact_selectors.php:32
msgid "Shady, spammer, self-marketer"
@@ -1120,8 +1112,8 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
-#: ../../mod/admin.php:750 ../../boot.php:1426
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:754
+#: ../../mod/admin.php:763 ../../boot.php:1490
msgid "Email"
msgstr "Courriel"
@@ -1149,6 +1141,100 @@ msgstr "XMPP/IM"
msgid "MySpace"
msgstr "MySpace"
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation disponible"
+msgstr[1] "%d invitations disponibles"
+
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:446
+msgid "Advanced"
+msgstr "Avancé"
+
+#: ../../include/contact_widgets.php:22
+msgid "Find Channels"
+msgstr "Trouver des canaux"
+
+#: ../../include/contact_widgets.php:23
+msgid "Enter name or interest"
+msgstr "Saisir nom ou centre d'intérêt"
+
+#: ../../include/contact_widgets.php:24
+msgid "Connect/Follow"
+msgstr "Ajouter/Suivre"
+
+#: ../../include/contact_widgets.php:25
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Robert Morgenstein, Course à pieds"
+
+#: ../../include/contact_widgets.php:26 ../../mod/connections.php:392
+#: ../../mod/directory.php:206 ../../mod/directory.php:211
+msgid "Find"
+msgstr "Trouver"
+
+#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Canaux suggérés"
+
+#: ../../include/contact_widgets.php:29
+msgid "Random Profile"
+msgstr "Un profil au hasard"
+
+#: ../../include/contact_widgets.php:30
+msgid "Invite Friends"
+msgstr "Inviter des amis"
+
+#: ../../include/contact_widgets.php:32
+msgid "Exammple: name=fred and country=iceland"
+msgstr "Exemple: name=fred and country=iceland"
+
+#: ../../include/contact_widgets.php:33
+msgid "Advanced Find"
+msgstr "Recherche avancée"
+
+#: ../../include/contact_widgets.php:58 ../../include/features.php:67
+#: ../../include/widgets.php:296
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
+
+#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95
+#: ../../include/widgets.php:299
+msgid "Everything"
+msgstr "Tout"
+
+#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29
+msgid "Categories"
+msgstr "Catégories"
+
+#: ../../include/contact_widgets.php:125
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d relation en commun"
+msgstr[1] "%d relations en commun"
+
+#: ../../include/contact_widgets.php:130
+msgid "show more"
+msgstr "montrer plus"
+
+#: ../../include/event.php:326
+msgid "This event has been added to your calendar."
+msgstr "Cet événement a été ajouté à votre calendrier."
+
+#: ../../include/zot.php:624
+msgid "Invalid data packet"
+msgstr "Paquet de données invalide"
+
+#: ../../include/zot.php:634
+msgid "Unable to verify channel signature"
+msgstr "Impossible de vérifier la signature du canal"
+
+#: ../../include/zot.php:831
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Impossible de vérifier la signature de site pour %s"
+
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Divers"
@@ -1222,1133 +1308,1802 @@ msgstr "secondes"
msgid "%1$d %2$s ago"
msgstr "il y a %1$d %2$s"
-#: ../../include/dba/dba_driver.php:50
+#: ../../include/datetime.php:504
#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de trouver les infos DNS du serveur de DB '%s'"
+msgid "%1$s's birthday"
+msgstr "Anniversaire de %1$s"
-#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d F Y \\à G\\hi"
+#: ../../include/datetime.php:505
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Joyeux Anniversaire %1$s"
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
-msgid "Starts:"
-msgstr "Début&nbsp;:"
+#: ../../include/dir_fns.php:36
+msgid "Sort Options"
+msgstr "Options de tri"
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
-msgid "Finishes:"
-msgstr "Fin&nbsp;:"
+#: ../../include/dir_fns.php:37
+msgid "Alphabetic"
+msgstr "Alphabétique"
-#: ../../include/event.php:40 ../../include/identity.php:679
-#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
-#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
-msgid "Location:"
-msgstr "Localisation&nbsp;:"
+#: ../../include/dir_fns.php:38
+msgid "Reverse Alphabetic"
+msgstr "Alphabétique inversé"
-#: ../../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é portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent."
+#: ../../include/dir_fns.php:39
+msgid "Newest to Oldest"
+msgstr "Anté-chronologique"
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
-msgstr "Groupe de confidentialité par défaut pour les nouveaux contacts"
+#: ../../include/dir_fns.php:51
+msgid "Enable Safe Search"
+msgstr "Activer la recherche sûre"
-#: ../../include/group.php:242 ../../mod/admin.php:750
-msgid "All Channels"
-msgstr "Tous canaux"
+#: ../../include/dir_fns.php:53
+msgid "Disable Safe Search"
+msgstr "Désactiver la recherche sûre"
-#: ../../include/group.php:264
-msgid "edit"
-msgstr "éditer"
+#: ../../include/dir_fns.php:55
+msgid "Safe Mode"
+msgstr "Mode sûr"
-#: ../../include/group.php:285
-msgid "Collections"
-msgstr "Collections"
+#: ../../include/enotify.php:41
+msgid "Red Matrix Notification"
+msgstr "Notification Matrice Rouge"
-#: ../../include/group.php:286
-msgid "Edit collection"
-msgstr "Éditer collection"
+#: ../../include/enotify.php:42
+msgid "redmatrix"
+msgstr "Matrice Rouge"
-#: ../../include/group.php:287
-msgid "Create a new collection"
-msgstr "Créer collection"
+#: ../../include/enotify.php:44
+msgid "Thank You,"
+msgstr "Merci,"
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
-msgstr "Canaux dans aucune collection"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%s Administrator"
+msgstr "l'administrateur de %s"
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr "Supprimer cet élément?"
+#: ../../include/enotify.php:81
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:547
-#: ../../mod/photos.php:993 ../../mod/photos.php:1080
-msgid "Comment"
-msgstr "Commenter"
+#: ../../include/enotify.php:85
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red:Notification] Nouveau message reçu sur %s"
-#: ../../include/js_strings.php:7 ../../include/ItemObject.php:281
-#: ../../include/contact_widgets.php:125
-msgid "show more"
-msgstr "montrer plus"
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr "%1$s, vous avez reçu un message privé sur %3$s, de la part de %2$s."
-#: ../../include/js_strings.php:8
-msgid "show fewer"
-msgstr "montrer moins"
+#: ../../include/enotify.php:88
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
-#: ../../include/js_strings.php:9
-msgid "Password too short"
-msgstr "Mot de passe trop court"
+#: ../../include/enotify.php:88
+msgid "a private message"
+msgstr "un message privé"
-#: ../../include/js_strings.php:10
-msgid "Passwords do not match"
-msgstr "Les mots de passe ne correspondent pas"
+#: ../../include/enotify.php:89
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés."
-#: ../../include/js_strings.php:11 ../../mod/photos.php:39
-msgid "everybody"
-msgstr "tout le monde"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%4$s[/zrl]"
-#: ../../include/js_strings.php:12
-msgid "Secret Passphrase"
-msgstr "Phrase de passe secrète"
+#: ../../include/enotify.php:152
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%5$s de %4$s[/zrl]"
-#: ../../include/js_strings.php:13
-msgid "Passphrase hint"
-msgstr "Indice pour la phrase de passe"
+#: ../../include/enotify.php:161
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]"
-#: ../../include/js_strings.php:15
-msgid "timeago.prefixAgo"
-msgstr "timeago.prefixAgo"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Notification] Commentaire de %2$s sur conversation #%1$d"
-#: ../../include/js_strings.php:16
-msgid "timeago.suffixAgo"
-msgstr "timeago.suffixAgo"
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez."
-#: ../../include/js_strings.php:17
-msgid "ago"
-msgstr "auparavant"
+#: ../../include/enotify.php:176 ../../include/enotify.php:191
+#: ../../include/enotify.php:217 ../../include/enotify.php:236
+#: ../../include/enotify.php:250
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation."
-#: ../../include/js_strings.php:18
-msgid "from now"
-msgstr "de maintenant"
+#: ../../include/enotify.php:182
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Matrice Rouge:Notification] %s a publié sur votre profil"
-#: ../../include/js_strings.php:19
-msgid "less than a minute"
-msgstr "moins d'une minute"
+#: ../../include/enotify.php:184
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr "%1$s, %2$s a publié sur votre profil à %3$s"
-#: ../../include/js_strings.php:20
-msgid "about a minute"
-msgstr "environ une minute"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr "%1$s, %2$s a publié sur [zrl=%3$s]votre profil[/zrl]"
-#: ../../include/js_strings.php:21
+#: ../../include/enotify.php:210
#, php-format
-msgid "%d minutes"
-msgstr "%d minutes"
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red:Notification] %s vous a étiqueté"
-#: ../../include/js_strings.php:22
-msgid "about an hour"
-msgstr "environ une heure"
+#: ../../include/enotify.php:211
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s"
-#: ../../include/js_strings.php:23
+#: ../../include/enotify.php:212
#, php-format
-msgid "about %d hours"
-msgstr "environ %d heures"
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%3$s]vous a étiqueté[/zrl]."
-#: ../../include/js_strings.php:24
-msgid "a day"
-msgstr "un jour"
+#: ../../include/enotify.php:225
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red:Notification] %1$s vous a cogné"
-#: ../../include/js_strings.php:25
+#: ../../include/enotify.php:226
#, php-format
-msgid "%d days"
-msgstr "%d jours"
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, vous avez été cogné/pointé/sollicité par %2$s sur %3$s"
-#: ../../include/js_strings.php:26
-msgid "about a month"
-msgstr "environ un mois"
+#: ../../include/enotify.php:227
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%2$s]vous a cogné[/zrl]."
-#: ../../include/js_strings.php:27
+#: ../../include/enotify.php:243
#, php-format
-msgid "%d months"
-msgstr "%d mois"
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Matrice Rouge:Notification] %s a étiqueté votre publication"
-#: ../../include/js_strings.php:28
-msgid "about a year"
-msgstr "environ un an"
+#: ../../include/enotify.php:244
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr "%1$s, %2$s a étiqueté votre publication sur %3$s"
-#: ../../include/js_strings.php:29
+#: ../../include/enotify.php:245
#, php-format
-msgid "%d years"
-msgstr "%d années"
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr "%1$s, %2$s a étiqueté [zrl=%3$s]votre publication[/zrl]"
-#: ../../include/js_strings.php:30
-msgid " "
-msgstr " "
+#: ../../include/enotify.php:257
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notification] Nouvelle introduction"
-#: ../../include/js_strings.php:31
-msgid "timeago.numbers"
-msgstr "timeago.numbers"
+#: ../../include/enotify.php:258
+#, php-format
+msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
+msgstr "%1$s, vous avez reçu une demande de mise en relation de '%2$s' sur %3$s"
-#: ../../include/message.php:18
-msgid "No recipient provided."
-msgstr "Pas de destinataire."
+#: ../../include/enotify.php:259
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
+msgstr "%1$s, vous avez reçu [zrl=%2$s]une demande de mise en relation[/zrl] de %3$s."
-#: ../../include/message.php:23
-msgid "[no subject]"
-msgstr "[sans objet]"
+#: ../../include/enotify.php:263 ../../include/enotify.php:282
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter leur profil sur %s"
-#: ../../include/message.php:42
-msgid "Unable to determine sender."
-msgstr "Impossible de déterminer l'émetteur."
+#: ../../include/enotify.php:265
+#, php-format
+msgid "Please visit %s to approve or reject the connection request."
+msgstr "Merci de visiter %s avant d'approuver (ou non) cette demande de relation."
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
-msgstr "Le message stocké n'a pas pu être vérifié."
+#: ../../include/enotify.php:272
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Matrice Rouge:Notification] Nouvelle suggestion d'amitié"
-#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
-#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
-#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
-#: ../../mod/photos.php:656 ../../mod/photos.php:678
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../include/enotify.php:273
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr "%1$s, vous avez reçu une suggestion de relation de '%2$s' à %3$s"
-#: ../../include/attach.php:98 ../../include/attach.php:129
-#: ../../include/attach.php:185 ../../include/attach.php:200
-#: ../../include/attach.php:233 ../../include/attach.php:247
-#: ../../include/attach.php:268 ../../include/attach.php:463
-#: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3515
-#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
-#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
-#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
-#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
-#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
-#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
-#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
-#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
-#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
-#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
-#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/settings.php:493
-#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
-#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
-#: ../../mod/connections.php:169 ../../mod/notifications.php:66
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44
-#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83
-#: ../../mod/poke.php:128 ../../mod/channel.php:88 ../../mod/channel.php:188
-#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
-#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
-#: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
-#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:526
-#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
-msgid "Permission denied."
-msgstr "Permission refusée."
+#: ../../include/enotify.php:274
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
+"%4$s."
+msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion de relation[/zrl] de %4$s."
-#: ../../include/attach.php:180 ../../include/attach.php:228
-msgid "Item was not found."
-msgstr "Élément introuvable."
+#: ../../include/enotify.php:280
+msgid "Name:"
+msgstr "Nom&nbsp;:"
-#: ../../include/attach.php:281
-msgid "No source file."
-msgstr "Pas de fichier source."
+#: ../../include/enotify.php:281
+msgid "Photo:"
+msgstr "Photo&nbsp;:"
-#: ../../include/attach.php:298
-msgid "Cannot locate file to replace"
-msgstr "Impossible de trouver le fichier à remplacer."
+#: ../../include/enotify.php:284
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion."
-#: ../../include/attach.php:316
-msgid "Cannot locate file to revise/update"
-msgstr "Impossible de trouver le fichier à corriger/mettre-à-jour"
+#: ../../include/reddav.php:1145 ../../include/reddav.php:1288
+msgid "parent"
+msgstr "retour"
+
+#: ../../include/reddav.php:1169
+msgid "Collection"
+msgstr "Collection"
-#: ../../include/attach.php:327
+#: ../../include/reddav.php:1172
+msgid "Principal"
+msgstr "Principal"
+
+#: ../../include/reddav.php:1175
+msgid "Addressbook"
+msgstr "Carnet d'adresse"
+
+#: ../../include/reddav.php:1178
+msgid "Calendar"
+msgstr "Calendrier"
+
+#: ../../include/reddav.php:1181
+msgid "Schedule Inbox"
+msgstr "Calendrier - Message entrants"
+
+#: ../../include/reddav.php:1184
+msgid "Schedule Outbox"
+msgstr "Calendrier - Message sortants"
+
+#: ../../include/reddav.php:1202 ../../include/apps.php:322
+#: ../../include/apps.php:373 ../../mod/connedit.php:434
+msgid "Unknown"
+msgstr "Inconnu"
+
+#: ../../include/reddav.php:1262
#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Le fichier dépasse la taille limite de %d"
+msgid "%1$s used"
+msgstr "%1$s utilisé"
-#: ../../include/attach.php:339
+#: ../../include/reddav.php:1267
#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes"
+msgid "%1$s used of %2$s (%3$s&#37;)"
+msgstr "%1$s utilisé de %2$s (%3$s&#37;)"
-#: ../../include/attach.php:423
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr "Envoi du fichier impossible. Limite système ou action avortée."
+#: ../../include/reddav.php:1284 ../../mod/settings.php:517
+#: ../../mod/settings.php:543 ../../mod/admin.php:893
+msgid "Name"
+msgstr "Nom"
-#: ../../include/attach.php:435
-msgid "Stored file could not be verified. Upload failed."
-msgstr "Le fichier stocké n'a pu être vérifié. Envoi impossible."
+#: ../../include/reddav.php:1285
+msgid "Type"
+msgstr "Type"
-#: ../../include/attach.php:479 ../../include/attach.php:496
-msgid "Path not available."
-msgstr "Chemin non disponible."
+#: ../../include/reddav.php:1286
+msgid "Size"
+msgstr "Taille"
-#: ../../include/attach.php:546
-msgid "Empty pathname"
-msgstr "Chemin vide"
+#: ../../include/reddav.php:1287
+msgid "Last Modified"
+msgstr "Modifié le"
-#: ../../include/attach.php:564
-msgid "duplicate filename or path"
-msgstr "doublon de chemin ou de fichier"
+#: ../../include/reddav.php:1290 ../../include/conversation.php:635
+#: ../../include/apps.php:241 ../../include/ItemObject.php:108
+#: ../../mod/settings.php:578 ../../mod/connedit.php:398
+#: ../../mod/photos.php:1046 ../../mod/group.php:176 ../../mod/admin.php:758
+#: ../../mod/admin.php:888 ../../mod/thing.php:236
+msgid "Delete"
+msgstr "Supprimer"
-#: ../../include/attach.php:589
-msgid "Path not found."
-msgstr "Chemin introuvable."
+#: ../../include/reddav.php:1291
+msgid "Total"
+msgstr "Total"
-#: ../../include/attach.php:634
-msgid "mkdir failed."
-msgstr "mkdir a échoué."
+#: ../../include/reddav.php:1344
+msgid "Create new folder"
+msgstr "Nouveau dossier"
-#: ../../include/attach.php:638
-msgid "database storage failed."
-msgstr "le stockage en BD a échoué"
+#: ../../include/reddav.php:1345 ../../mod/mitem.php:142 ../../mod/menu.php:84
+#: ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Créer"
-#: ../../include/bookmarks.php:31
-#, php-format
-msgid "%1$s's bookmarks"
-msgstr "Marque-pages de %1$s"
+#: ../../include/reddav.php:1346
+msgid "Upload file"
+msgstr "Téléverser un fichier"
+
+#: ../../include/reddav.php:1347 ../../mod/profile_photo.php:361
+msgid "Upload"
+msgstr "Envoyer"
-#: ../../include/conversation.php:123
+#: ../../include/conversation.php:126 ../../mod/like.php:89
msgid "channel"
msgstr "canal"
-#: ../../include/conversation.php:161 ../../mod/like.php:134
+#: ../../include/conversation.php:164 ../../mod/like.php:331
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s aime %3$s de %2$s"
-#: ../../include/conversation.php:164 ../../mod/like.php:136
+#: ../../include/conversation.php:167 ../../mod/like.php:333
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s déteste %3$s de %2$s"
-#: ../../include/conversation.php:201
+#: ../../include/conversation.php:204
#, php-format
msgid "%1$s is now connected with %2$s"
-msgstr "%1$s est désormais relié à %2$s"
+msgstr "%1$s ajoute %2$s à ses relations"
-#: ../../include/conversation.php:236
+#: ../../include/conversation.php:239
#, php-format
msgid "%1$s poked %2$s"
-msgstr "%1$s a tapoté %2$s"
+msgstr "%1$s a cogné %2$s"
-#: ../../include/conversation.php:258 ../../mod/mood.php:63
+#: ../../include/conversation.php:261 ../../mod/mood.php:63
#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s est actuellement %2$s"
+msgctxt "mood"
+msgid "%1$s is %2$s"
+msgstr "%1$s est %2$s"
-#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+#: ../../include/conversation.php:634 ../../include/ItemObject.php:114
msgid "Select"
msgstr "Sélectionner"
-#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
-#: ../../mod/connedit.php:359 ../../mod/settings.php:579
-#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
-msgid "Delete"
-msgstr "Supprimer"
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:89
+#: ../../mod/photos.php:844
+msgid "Private Message"
+msgstr "Message Privé"
-#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+#: ../../include/conversation.php:649 ../../include/ItemObject.php:182
msgid "Message is verified"
msgstr "Message vérifié"
-#: ../../include/conversation.php:662
+#: ../../include/conversation.php:669
#, php-format
msgid "View %s's profile @ %s"
msgstr "Voir le profil de %s @ %s"
-#: ../../include/conversation.php:676
+#: ../../include/conversation.php:683
msgid "Categories:"
msgstr "Catégories&nbsp;:"
-#: ../../include/conversation.php:677
+#: ../../include/conversation.php:684
msgid "Filed under:"
msgstr "Classé sous&nbsp;:"
-#: ../../include/conversation.php:686 ../../include/ItemObject.php:226
+#: ../../include/conversation.php:693 ../../include/ItemObject.php:250
#, php-format
msgid " from %s"
msgstr "de %s"
-#: ../../include/conversation.php:689 ../../include/ItemObject.php:229
+#: ../../include/conversation.php:696 ../../include/ItemObject.php:253
#, php-format
msgid "last edited: %s"
msgstr "dernière édition&nbsp;: %s"
-#: ../../include/conversation.php:690 ../../include/ItemObject.php:230
+#: ../../include/conversation.php:697 ../../include/ItemObject.php:254
#, php-format
msgid "Expires: %s"
msgstr "Expire&nbsp;: %s"
-#: ../../include/conversation.php:705
+#: ../../include/conversation.php:712
msgid "View in context"
msgstr "Voir en contexte"
-#: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
-#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
-#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
-#: ../../mod/photos.php:975
+#: ../../include/conversation.php:714 ../../include/conversation.php:1130
+#: ../../include/ItemObject.php:294 ../../mod/editblock.php:120
+#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121
+#: ../../mod/editwebpage.php:152 ../../mod/photos.php:977
+#: ../../mod/mail.php:231 ../../mod/mail.php:346
msgid "Please wait"
msgstr "Merci de patienter"
-#: ../../include/conversation.php:834
+#: ../../include/conversation.php:841
msgid "remove"
msgstr "supprimer"
-#: ../../include/conversation.php:838
+#: ../../include/conversation.php:845
msgid "Loading..."
msgstr "Chargement..."
-#: ../../include/conversation.php:839
+#: ../../include/conversation.php:846
msgid "Delete Selected Items"
msgstr "Supprimer les éléments selectionnés"
-#: ../../include/conversation.php:930
+#: ../../include/conversation.php:937
msgid "View Source"
msgstr "Voir source"
-#: ../../include/conversation.php:931
+#: ../../include/conversation.php:938
msgid "Follow Thread"
msgstr "Suivre discussion"
-#: ../../include/conversation.php:932
+#: ../../include/conversation.php:939
msgid "View Status"
msgstr "Voir état"
-#: ../../include/conversation.php:934
+#: ../../include/conversation.php:941
msgid "View Photos"
msgstr "Voir photos"
-#: ../../include/conversation.php:935
+#: ../../include/conversation.php:942
msgid "Matrix Activity"
-msgstr "Activité de la matrice"
+msgstr "Activité sur la matrice"
-#: ../../include/conversation.php:936
+#: ../../include/conversation.php:943
msgid "Edit Contact"
msgstr "Éditer contact"
-#: ../../include/conversation.php:937
+#: ../../include/conversation.php:944
msgid "Send PM"
-msgstr "Message privé"
+msgstr "Envoyer un Message Privé"
-#: ../../include/conversation.php:938
+#: ../../include/conversation.php:945 ../../include/apps.php:140
msgid "Poke"
-msgstr "Tapoter"
+msgstr "Cogner"
-#: ../../include/conversation.php:1000
+#: ../../include/conversation.php:1001
#, php-format
msgid "%s likes this."
msgstr "%s aime ça."
-#: ../../include/conversation.php:1000
+#: ../../include/conversation.php:1001
#, php-format
msgid "%s doesn't like this."
msgstr "%s déteste ça."
-#: ../../include/conversation.php:1004
+#: ../../include/conversation.php:1005
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgid_plural "<span %1$s>%2$d people</span> like this."
msgstr[0] ""
msgstr[1] "<span %1$s>%2$d personne(s)</span> aime(nt) ça."
-#: ../../include/conversation.php:1006
+#: ../../include/conversation.php:1007
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgid_plural "<span %1$s>%2$d people</span> don't like this."
msgstr[0] ""
msgstr[1] "<span %1$s>%2$d personne(s)</span> déteste(nt) ça."
-#: ../../include/conversation.php:1012
+#: ../../include/conversation.php:1013
msgid "and"
msgstr "et"
-#: ../../include/conversation.php:1015
+#: ../../include/conversation.php:1016
#, php-format
msgid ", and %d other people"
msgid_plural ", and %d other people"
msgstr[0] ""
msgstr[1] ", et %d autre(s) personne(s)"
-#: ../../include/conversation.php:1016
+#: ../../include/conversation.php:1017
#, php-format
msgid "%s like this."
msgstr "%s aime ça."
-#: ../../include/conversation.php:1016
+#: ../../include/conversation.php:1017
#, php-format
msgid "%s don't like this."
msgstr "%s déteste ça."
-#: ../../include/conversation.php:1066
+#: ../../include/conversation.php:1074
msgid "Visible to <strong>everybody</strong>"
msgstr "Visible par <strong>tout le monde</strong>"
-#: ../../include/conversation.php:1067 ../../mod/mail.php:171
-#: ../../mod/mail.php:269
+#: ../../include/conversation.php:1075 ../../mod/mail.php:167
+#: ../../mod/mail.php:279
msgid "Please enter a link URL:"
msgstr "Merci d'entrer l'URL d'un lien&nbsp;:"
-#: ../../include/conversation.php:1068
+#: ../../include/conversation.php:1076
msgid "Please enter a video link/URL:"
msgstr "Merci d'entrer l'URL d'une video&nbsp;:"
-#: ../../include/conversation.php:1069
+#: ../../include/conversation.php:1077
msgid "Please enter an audio link/URL:"
msgstr "Merci d'entrer l'URL d'un contenu audio&nsbp;:"
-#: ../../include/conversation.php:1070
+#: ../../include/conversation.php:1078
msgid "Tag term:"
msgstr "Étiquette&nbsp;:"
-#: ../../include/conversation.php:1071 ../../mod/filer.php:35
+#: ../../include/conversation.php:1079 ../../mod/filer.php:49
msgid "Save to Folder:"
-msgstr "Classer dans Dossier&nbsp;:"
+msgstr "Classer dans le dossier&nbsp;:"
-#: ../../include/conversation.php:1072
+#: ../../include/conversation.php:1080
msgid "Where are you right now?"
msgstr "Où êtes-vous présentement?"
-#: ../../include/conversation.php:1073 ../../mod/editpost.php:52
-#: ../../mod/mail.php:172 ../../mod/mail.php:270
+#: ../../include/conversation.php:1081 ../../mod/editpost.php:52
+#: ../../mod/mail.php:168 ../../mod/mail.php:280
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Expire YYYY-MM-DD HH:MM"
-#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
-#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
-#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
-#: ../../mod/editblock.php:151 ../../mod/photos.php:995
-msgid "Preview"
-msgstr "Aperçu"
-
-#: ../../include/conversation.php:1097 ../../mod/photos.php:974
+#: ../../include/conversation.php:1105 ../../mod/photos.php:976
+#: ../../mod/layouts.php:113
msgid "Share"
msgstr "Partager"
-#: ../../include/conversation.php:1099 ../../mod/editwebpage.php:140
+#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139
msgid "Page link title"
-msgstr "Titre de la page liée"
+msgstr "Titre du lien vers la page"
+
+#: ../../include/conversation.php:1110
+msgid "Post as"
+msgstr "Publier en tant que"
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:104
-#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
-#: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
+#: ../../include/conversation.php:1111 ../../mod/editblock.php:112
+#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113
+#: ../../mod/editwebpage.php:144 ../../mod/mail.php:228 ../../mod/mail.php:342
msgid "Upload photo"
-msgstr "Téléverser photo"
+msgstr "Téléverser une photo"
-#: ../../include/conversation.php:1102
+#: ../../include/conversation.php:1112
msgid "upload photo"
-msgstr "téléverser photo"
+msgstr "téléverser une photo"
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
-#: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
-#: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
+#: ../../include/conversation.php:1113 ../../mod/editblock.php:113
+#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114
+#: ../../mod/editwebpage.php:145 ../../mod/mail.php:229 ../../mod/mail.php:343
msgid "Attach file"
-msgstr "Attacher fichier"
+msgstr "Attacher un fichier"
-#: ../../include/conversation.php:1104
+#: ../../include/conversation.php:1114
msgid "attach file"
-msgstr "attacher fichier"
+msgstr "attacher un fichier"
-#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
-#: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
-#: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
+#: ../../include/conversation.php:1115 ../../mod/editblock.php:114
+#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115
+#: ../../mod/editwebpage.php:146 ../../mod/mail.php:230 ../../mod/mail.php:344
msgid "Insert web link"
msgstr "Insérer lien web"
-#: ../../include/conversation.php:1106
+#: ../../include/conversation.php:1116
msgid "web link"
msgstr "lien web"
-#: ../../include/conversation.php:1107
+#: ../../include/conversation.php:1117
msgid "Insert video link"
msgstr "Insérer lien vidéo"
-#: ../../include/conversation.php:1108
+#: ../../include/conversation.php:1118
msgid "video link"
msgstr "lien vidéo"
-#: ../../include/conversation.php:1109
+#: ../../include/conversation.php:1119
msgid "Insert audio link"
-msgstr "Insérer lien audio"
+msgstr "Insérer un lien audio"
-#: ../../include/conversation.php:1110
+#: ../../include/conversation.php:1120
msgid "audio link"
msgstr "lien audio"
-#: ../../include/conversation.php:1111 ../../mod/editpost.php:110
-#: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
-#: ../../mod/editblock.php:127
+#: ../../include/conversation.php:1121 ../../mod/editblock.php:118
+#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119
+#: ../../mod/editwebpage.php:150
msgid "Set your location"
-msgstr "Spécifier votre localisation"
+msgstr "Spécifier votre emplacement géographique"
-#: ../../include/conversation.php:1112
+#: ../../include/conversation.php:1122
msgid "set location"
-msgstr "spécifier localisation"
+msgstr "spécifier l'emplacement géographique"
-#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
-#: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
-#: ../../mod/editblock.php:128
+#: ../../include/conversation.php:1123 ../../mod/editblock.php:119
+#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120
+#: ../../mod/editwebpage.php:151
msgid "Clear browser location"
-msgstr "Nettoyer la localisation du navigateur"
+msgstr "Nettoyer l'emplacement géographique du navigateur"
-#: ../../include/conversation.php:1114
+#: ../../include/conversation.php:1124
msgid "clear location"
-msgstr "nettoyer localisation"
+msgstr "nettoyer l'emplacement géographique"
-#: ../../include/conversation.php:1116 ../../mod/editpost.php:124
-#: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
-#: ../../mod/editblock.php:142
+#: ../../include/conversation.php:1126 ../../mod/editblock.php:132
+#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132
+#: ../../mod/editwebpage.php:167
msgid "Set title"
msgstr "Spécifier le titre"
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
-#: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
-#: ../../mod/editblock.php:145
+#: ../../include/conversation.php:1129 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134
+#: ../../mod/editwebpage.php:169
msgid "Categories (comma-separated list)"
msgstr "Catégories (séparées par des virgules)"
-#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
-#: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
-#: ../../mod/editblock.php:130
+#: ../../include/conversation.php:1131 ../../mod/editblock.php:121
+#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122
+#: ../../mod/editwebpage.php:153
msgid "Permission settings"
msgstr "Permissions"
-#: ../../include/conversation.php:1122
+#: ../../include/conversation.php:1132
msgid "permissions"
msgstr "permissions"
-#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
-#: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
-#: ../../mod/editblock.php:139
+#: ../../include/conversation.php:1139 ../../mod/editblock.php:129
+#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:162
msgid "Public post"
msgstr "Contenu public"
-#: ../../include/conversation.php:1132 ../../mod/editpost.php:127
-#: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
-#: ../../mod/editblock.php:146
+#: ../../include/conversation.php:1141 ../../mod/editblock.php:136
+#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135
+#: ../../mod/editwebpage.php:170
msgid "Example: bob@example.com, mary@example.com"
msgstr "Exemple: robert@exemple.com, marie@exemple.com"
-#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
-#: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
-#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
+#: ../../include/conversation.php:1154 ../../mod/editblock.php:146
+#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146
+#: ../../mod/editwebpage.php:179 ../../mod/mail.php:235 ../../mod/mail.php:349
msgid "Set expiration date"
msgstr "Définir la date d'expiration"
-#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
-#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+#: ../../include/conversation.php:1156 ../../include/ItemObject.php:595
+#: ../../mod/editpost.php:148 ../../mod/mail.php:237 ../../mod/mail.php:351
msgid "Encrypt text"
msgstr "Chiffrer le texte"
-#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+#: ../../include/conversation.php:1158 ../../mod/editpost.php:150
msgid "OK"
msgstr "Ok"
-#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1159 ../../mod/settings.php:516
+#: ../../mod/settings.php:542 ../../mod/editpost.php:151
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94
msgid "Cancel"
msgstr "Annuler"
-#: ../../include/conversation.php:1381
+#: ../../include/conversation.php:1401
+msgid "Discover"
+msgstr "À découvrir"
+
+#: ../../include/conversation.php:1404
+msgid "Imported public streams"
+msgstr "Flux publics importés"
+
+#: ../../include/conversation.php:1409
msgid "Commented Order"
-msgstr "Dans l'ordre des commentaires"
+msgstr "Commentaires Récents"
-#: ../../include/conversation.php:1384
+#: ../../include/conversation.php:1412
msgid "Sort by Comment Date"
msgstr "Trier par date de dernier commentaire"
-#: ../../include/conversation.php:1387
+#: ../../include/conversation.php:1416
msgid "Posted Order"
-msgstr "Dans l'ordre des publications"
+msgstr "Publications Récentes"
-#: ../../include/conversation.php:1390
+#: ../../include/conversation.php:1419
msgid "Sort by Post Date"
msgstr "Trier par date de publication"
-#: ../../include/conversation.php:1394
+#: ../../include/conversation.php:1424 ../../include/widgets.php:82
msgid "Personal"
msgstr "Personnel"
-#: ../../include/conversation.php:1397
+#: ../../include/conversation.php:1427
msgid "Posts that mention or involve you"
msgstr "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre"
-#: ../../include/conversation.php:1400 ../../mod/menu.php:61
-#: ../../mod/connections.php:211
+#: ../../include/conversation.php:1433 ../../mod/connections.php:211
+#: ../../mod/connections.php:224 ../../mod/menu.php:61
msgid "New"
msgstr "Nouveautés"
-#: ../../include/conversation.php:1403
+#: ../../include/conversation.php:1436
msgid "Activity Stream - by date"
msgstr "Flux d'activité - par date"
-#: ../../include/conversation.php:1410
+#: ../../include/conversation.php:1442
msgid "Starred"
msgstr "Mis en avant"
-#: ../../include/conversation.php:1413
+#: ../../include/conversation.php:1445
msgid "Favourite Posts"
msgstr "Publications préférées"
-#: ../../include/conversation.php:1420
+#: ../../include/conversation.php:1452
msgid "Spam"
-msgstr "Spam"
+msgstr "Indésirable"
-#: ../../include/conversation.php:1423
+#: ../../include/conversation.php:1455
msgid "Posts flagged as SPAM"
msgstr "Publications marquées comme indésirables"
-#: ../../include/conversation.php:1454
+#: ../../include/conversation.php:1491 ../../mod/admin.php:892
msgid "Channel"
msgstr "Canal"
-#: ../../include/conversation.php:1457
+#: ../../include/conversation.php:1494
msgid "Status Messages and Posts"
msgstr "Messages d'état et contributions"
-#: ../../include/conversation.php:1466
+#: ../../include/conversation.php:1503
msgid "About"
msgstr "À propos"
-#: ../../include/conversation.php:1469
+#: ../../include/conversation.php:1506
msgid "Profile Details"
msgstr "Détails du profil"
-#: ../../include/conversation.php:1478 ../../include/photos.php:302
-msgid "Photo Albums"
-msgstr "Albums photo"
-
-#: ../../include/conversation.php:1487
+#: ../../include/conversation.php:1524
msgid "Files and Storage"
msgstr "Fichiers et Stockage"
-#: ../../include/conversation.php:1496 ../../include/conversation.php:1499
+#: ../../include/conversation.php:1533 ../../include/conversation.php:1536
msgid "Chatrooms"
-msgstr "Salons"
-
-#: ../../include/conversation.php:1509
-msgid "Events and Calendar"
-msgstr "Événements et agenda"
+msgstr "Salons de clavardage"
-#: ../../include/conversation.php:1517
+#: ../../include/conversation.php:1546
msgid "Saved Bookmarks"
-msgstr "Marque-pages sauvegardés"
+msgstr "Favoris sauvegardés"
-#: ../../include/conversation.php:1528
+#: ../../include/conversation.php:1557
msgid "Manage Webpages"
msgstr "Gérer les pages web"
-#: ../../include/identity.php:29 ../../mod/item.php:1177
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Fonctionnalités générales"
+
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Expiration de contenu"
+
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard"
+
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
+
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
+
+#: ../../include/features.php:27
+msgid "Web Pages"
+msgstr "Pages web"
+
+#: ../../include/features.php:27
+msgid "Provide managed web pages on your channel"
+msgstr "Fournir des pages web, sous votre contrôle, sur votre canal"
+
+#: ../../include/features.php:28
+msgid "Private Notes"
+msgstr "Notes privées"
+
+#: ../../include/features.php:28
+msgid "Enables a tool to store notes and reminders"
+msgstr "Active un outil pour stocker notes et mémos"
+
+#: ../../include/features.php:33
+msgid "Extended Identity Sharing"
+msgstr "Partage d'identité étendue"
+
+#: ../../include/features.php:33
+msgid ""
+"Share your identity with all websites on the internet. When disabled, "
+"identity is only shared with sites in the matrix."
+msgstr "Partage votre identité avec tous les sites web du Monde. Si décoché, l'identité sera seulement partagée avec les sites de la matrice."
+
+#: ../../include/features.php:34
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../include/features.php:34
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "Activer le mode expert pour accéder aux options avancées"
+
+#: ../../include/features.php:35
+msgid "Premium Channel"
+msgstr "Canal VIP"
+
+#: ../../include/features.php:35
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr "Vous permet d'appliquer des règles et restrictions aux relations de votre canal"
+
+#: ../../include/features.php:40
+msgid "Post Composition Features"
+msgstr "Fonctionnalités de composition"
+
+#: ../../include/features.php:42
+msgid "Use Markdown"
+msgstr "Utiliser Markdown"
+
+#: ../../include/features.php:42
+msgid "Allow use of \"Markdown\" to format posts"
+msgstr "Authoriser l'usage de \"Markdown\" pour le format des partages"
+
+#: ../../include/features.php:43
+msgid "Post Preview"
+msgstr "Aperçu avant publication"
+
+#: ../../include/features.php:43
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permettre de prévisualiser les publications/commentaires"
+
+#: ../../include/features.php:44 ../../include/widgets.php:503
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Canaux sources"
+
+#: ../../include/features.php:44
+msgid "Automatically import channel content from other channels or feeds"
+msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours"
+
+#: ../../include/features.php:45
+msgid "Even More Encryption"
+msgstr "Encore plus de chiffrement"
+
+#: ../../include/features.php:45
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
+msgstr "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé"
+
+#: ../../include/features.php:50
+msgid "Network and Stream Filtering"
+msgstr "Filtrage du réseau et des flux"
+
+#: ../../include/features.php:51
+msgid "Search by Date"
+msgstr "Chercher par date"
+
+#: ../../include/features.php:51
+msgid "Ability to select posts by date ranges"
+msgstr "Pouvoir choisir des publications par date"
+
+#: ../../include/features.php:52
+msgid "Collections Filter"
+msgstr "Filtre des collections"
+
+#: ../../include/features.php:52
+msgid "Enable widget to display Network posts only from selected collections"
+msgstr "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées"
+
+#: ../../include/features.php:53 ../../include/widgets.php:265
+msgid "Saved Searches"
+msgstr "Recherches sauvées"
+
+#: ../../include/features.php:53
+msgid "Save search terms for re-use"
+msgstr "Sauver des termes de recherche pour utilisation ultérieure"
+
+#: ../../include/features.php:54
+msgid "Network Personal Tab"
+msgstr "Onglet \"réseau personnel\""
+
+#: ../../include/features.php:54
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu"
+
+#: ../../include/features.php:55
+msgid "Network New Tab"
+msgstr "Onglet \"nouveautés réseau\""
+
+#: ../../include/features.php:55
+msgid "Enable tab to display all new Network activity"
+msgstr "Activer un onglet avec toute activité récente sur le réseau"
+
+#: ../../include/features.php:56
+msgid "Affinity Tool"
+msgstr "Gérer l'affinité"
+
+#: ../../include/features.php:56
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations"
+
+#: ../../include/features.php:57
+msgid "Suggest Channels"
+msgstr "Suggérer des canaux"
+
+#: ../../include/features.php:57
+msgid "Show channel suggestions"
+msgstr "Montrer les suggestions de canaux"
+
+#: ../../include/features.php:62
+msgid "Post/Comment Tools"
+msgstr "Gérer les publications/commentaires"
+
+#: ../../include/features.php:64
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
+
+#: ../../include/features.php:64
+msgid "Edit and correct posts and comments after sending"
+msgstr "Permettre d'éditer/corriger les publications/commentaires après envoi"
+
+#: ../../include/features.php:65
+msgid "Tagging"
+msgstr "Étiquettes"
+
+#: ../../include/features.php:65
+msgid "Ability to tag existing posts"
+msgstr "Permettre de marquer les publications existantes"
+
+#: ../../include/features.php:66
+msgid "Post Categories"
+msgstr "Catégoriser les publications"
+
+#: ../../include/features.php:66
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
+
+#: ../../include/features.php:67
+msgid "Ability to file posts under folders"
+msgstr "Permettre de classer les publications dans des dossiers"
+
+#: ../../include/features.php:68
+msgid "Dislike Posts"
+msgstr "Détester les publications"
+
+#: ../../include/features.php:68
+msgid "Ability to dislike posts/comments"
+msgstr "Pouvoir détester les publications/commentaires"
+
+#: ../../include/features.php:69
+msgid "Star Posts"
+msgstr "Mettre en avant les publications"
+
+#: ../../include/features.php:69
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Pouvoir marquer certaines publications d'une étoile"
+
+#: ../../include/features.php:70
+msgid "Tag Cloud"
+msgstr "Nuage de tags"
+
+#: ../../include/features.php:70
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Afficher un nuage de vos tags sur votre canal"
+
+#: ../../include/follow.php:23
+msgid "Channel is blocked on this site."
+msgstr "Ce canal est bloqué sur ce site."
+
+#: ../../include/follow.php:28
+msgid "Channel location missing."
+msgstr "Emplacement du canal introuvable."
+
+#: ../../include/follow.php:54
+msgid "Response from remote channel was incomplete."
+msgstr "La réponse du canal distant était incomplète."
+
+#: ../../include/follow.php:85
+msgid "Channel was deleted and no longer exists."
+msgstr "Le canal a été supprimé et n'existe plus."
+
+#: ../../include/follow.php:132
+msgid "Channel discovery failed."
+msgstr "La tentative d'accéder au canal a échouée."
+
+#: ../../include/follow.php:149
+msgid "local account not found."
+msgstr "compte local introuvable."
+
+#: ../../include/follow.php:158
+msgid "Cannot connect to yourself."
+msgstr "Ne peut pas se connecter à vous."
+
+#: ../../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é portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent."
+
+#: ../../include/group.php:234
+msgid "Default privacy group for new contacts"
+msgstr "Groupe de confidentialité par défaut pour les nouveaux contacts"
+
+#: ../../include/group.php:253 ../../mod/admin.php:763
+msgid "All Channels"
+msgstr "Tous canaux"
+
+#: ../../include/group.php:275
+msgid "edit"
+msgstr "éditer"
+
+#: ../../include/group.php:296
+msgid "Collections"
+msgstr "Collections"
+
+#: ../../include/group.php:297
+msgid "Edit collection"
+msgstr "Éditer collection"
+
+#: ../../include/group.php:298
+msgid "Create a new collection"
+msgstr "Créer une nouvelle collection"
+
+#: ../../include/group.php:299
+msgid "Channels not in any collection"
+msgstr "Ces canaux ne sont dans aucune collection"
+
+#: ../../include/group.php:301 ../../include/widgets.php:266
+msgid "add"
+msgstr "ajouter"
+
+#: ../../include/identity.php:30 ../../mod/item.php:1280
msgid "Unable to obtain identity information from database"
msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
-#: ../../include/identity.php:62
+#: ../../include/identity.php:63
msgid "Empty name"
msgstr "Nom vide"
-#: ../../include/identity.php:64
+#: ../../include/identity.php:65
msgid "Name too long"
msgstr "Nom trop long"
-#: ../../include/identity.php:143
+#: ../../include/identity.php:166
msgid "No account identifier"
msgstr "Pas d'identifiant de compte"
-#: ../../include/identity.php:153
+#: ../../include/identity.php:176
msgid "Nickname is required."
msgstr "Un surnom est requis."
-#: ../../include/identity.php:167
+#: ../../include/identity.php:190
+msgid "Reserved nickname. Please choose another."
+msgstr "Pseudonyme réservé. Merci d'en choisir un autre."
+
+#: ../../include/identity.php:195
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr "Le surnom contient des caractères interdits, ou est déjà pris sur ce site."
-#: ../../include/identity.php:226
+#: ../../include/identity.php:258
msgid "Unable to retrieve created identity"
msgstr "Impossible de récupérer l'identité créée"
-#: ../../include/identity.php:285
+#: ../../include/identity.php:317
msgid "Default Profile"
msgstr "Profil par défaut"
-#: ../../include/identity.php:477
+#: ../../include/identity.php:342 ../../include/widgets.php:400
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:431
+msgid "Friends"
+msgstr "Amis"
+
+#: ../../include/identity.php:509
msgid "Requested channel is not available."
msgstr "Canal demandé non-disponible."
-#: ../../include/identity.php:489
-msgid " Sorry, you don't have the permission to view this profile. "
-msgstr "Désolé, mais vous n'avez pas l'autorisation de voir ce profil."
-
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
-#: ../../mod/connect.php:13 ../../mod/layouts.php:8
-#: ../../mod/achievements.php:8 ../../mod/blocks.php:10
-#: ../../mod/profile.php:16 ../../mod/filestorage.php:40
+#: ../../include/identity.php:557 ../../mod/achievements.php:8
+#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13
+#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8
+#: ../../mod/webpages.php:8
msgid "Requested profile is not available."
msgstr "Profil demandé inaccessible."
-#: ../../include/identity.php:642 ../../mod/profiles.php:603
+#: ../../include/identity.php:675 ../../include/widgets.php:128
+#: ../../include/widgets.php:168 ../../include/Contact.php:107
+#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164
+#: ../../mod/suggest.php:51 ../../mod/match.php:62
+msgid "Connect"
+msgstr "Ajouter"
+
+#: ../../include/identity.php:689 ../../mod/profiles.php:612
msgid "Change profile photo"
msgstr "Changer la photo du profil"
-#: ../../include/identity.php:648
+#: ../../include/identity.php:695
msgid "Profiles"
msgstr "Profils"
-#: ../../include/identity.php:648
+#: ../../include/identity.php:695
msgid "Manage/edit profiles"
-msgstr "Gérer/éditer profils"
+msgstr "Gérer/éditer les profils"
-#: ../../include/identity.php:649 ../../mod/profiles.php:604
+#: ../../include/identity.php:696 ../../mod/profiles.php:613
msgid "Create New Profile"
msgstr "Créer un nouveau profil"
-#: ../../include/identity.php:652
+#: ../../include/identity.php:699
msgid "Edit Profile"
-msgstr "Éditer profil"
+msgstr "Éditer le profil"
-#: ../../include/identity.php:663 ../../mod/profiles.php:615
+#: ../../include/identity.php:710 ../../mod/profiles.php:624
msgid "Profile Image"
msgstr "Image du profil"
-#: ../../include/identity.php:666 ../../mod/profiles.php:618
+#: ../../include/identity.php:713 ../../mod/profiles.php:627
msgid "visible to everybody"
-msgstr "visible par tous"
+msgstr "visible pour tous"
-#: ../../include/identity.php:667 ../../mod/profiles.php:619
+#: ../../include/identity.php:714 ../../mod/profiles.php:628
msgid "Edit visibility"
msgstr "Éditer la visibilité"
-#: ../../include/identity.php:681 ../../include/identity.php:908
-#: ../../mod/directory.php:159
+#: ../../include/identity.php:728 ../../include/identity.php:952
+#: ../../mod/directory.php:158
msgid "Gender:"
msgstr "Sexe&nbsp;:"
-#: ../../include/identity.php:682 ../../include/identity.php:928
-#: ../../mod/directory.php:161
+#: ../../include/identity.php:729 ../../include/identity.php:996
+#: ../../mod/directory.php:160
msgid "Status:"
msgstr "État&nbsp;:"
-#: ../../include/identity.php:683 ../../include/identity.php:939
-#: ../../mod/directory.php:163
+#: ../../include/identity.php:730 ../../include/identity.php:1007
+#: ../../mod/directory.php:162
msgid "Homepage:"
msgstr "Site web&nbsp;:"
-#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+#: ../../include/identity.php:731 ../../mod/dirprofile.php:151
msgid "Online Now"
msgstr "Connecté"
-#: ../../include/identity.php:752 ../../include/identity.php:832
-#: ../../mod/ping.php:262
+#: ../../include/identity.php:796 ../../include/identity.php:876
+#: ../../mod/ping.php:298
msgid "g A l F d"
msgstr "H:i l d F"
-#: ../../include/identity.php:753 ../../include/identity.php:833
+#: ../../include/identity.php:797 ../../include/identity.php:877
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:798 ../../include/identity.php:873
-#: ../../mod/ping.php:284
+#: ../../include/identity.php:842 ../../include/identity.php:917
+#: ../../mod/ping.php:320
msgid "[today]"
msgstr "[aujourd'hui]"
-#: ../../include/identity.php:810
+#: ../../include/identity.php:854
msgid "Birthday Reminders"
msgstr "Rappels d'anniversaires"
-#: ../../include/identity.php:811
+#: ../../include/identity.php:855
msgid "Birthdays this week:"
msgstr "Anniversaires cette semaine&nbsp;:"
-#: ../../include/identity.php:866
+#: ../../include/identity.php:910
msgid "[No description]"
msgstr "[Pas de description]"
-#: ../../include/identity.php:884
+#: ../../include/identity.php:928
msgid "Event Reminders"
msgstr "Rappels d'événements"
-#: ../../include/identity.php:885
+#: ../../include/identity.php:929
msgid "Events this week:"
msgstr "Événements cette semaine&nbsp;:"
-#: ../../include/identity.php:898 ../../include/identity.php:982
-#: ../../mod/profperm.php:107
+#: ../../include/identity.php:942 ../../include/identity.php:1050
+#: ../../include/apps.php:133 ../../mod/profperm.php:112
msgid "Profile"
msgstr "Profil"
-#: ../../include/identity.php:906 ../../mod/settings.php:924
+#: ../../include/identity.php:950 ../../mod/settings.php:935
msgid "Full Name:"
msgstr "Nom complet&nbsp;:"
-#: ../../include/identity.php:913
+#: ../../include/identity.php:957
+msgid "Like this channel"
+msgstr "J'aime ce canal"
+
+#: ../../include/identity.php:981
msgid "j F, Y"
msgstr "j F Y"
-#: ../../include/identity.php:914
+#: ../../include/identity.php:982
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:921
+#: ../../include/identity.php:989
msgid "Birthday:"
msgstr "Date de naissance&nbsp;:"
-#: ../../include/identity.php:925
+#: ../../include/identity.php:993
msgid "Age:"
msgstr "Age&nbsp;:"
-#: ../../include/identity.php:934
+#: ../../include/identity.php:1002
#, php-format
msgid "for %1$d %2$s"
msgstr "depuis %1$d %2$s"
-#: ../../include/identity.php:937 ../../mod/profiles.php:526
+#: ../../include/identity.php:1005 ../../mod/profiles.php:535
msgid "Sexual Preference:"
msgstr "Orientation sexuelle&nbsp;:"
-#: ../../include/identity.php:941 ../../mod/profiles.php:528
+#: ../../include/identity.php:1009 ../../mod/profiles.php:537
msgid "Hometown:"
msgstr "Ville natale&nbsp;:"
-#: ../../include/identity.php:943
+#: ../../include/identity.php:1011
msgid "Tags:"
-msgstr "Tags:"
+msgstr "Étiquettes:"
-#: ../../include/identity.php:945 ../../mod/profiles.php:529
+#: ../../include/identity.php:1013 ../../mod/profiles.php:538
msgid "Political Views:"
msgstr "Opinions politiques&nbsp;:"
-#: ../../include/identity.php:947
+#: ../../include/identity.php:1015
msgid "Religion:"
msgstr "Religion&nbsp;:"
-#: ../../include/identity.php:949 ../../mod/directory.php:165
+#: ../../include/identity.php:1017 ../../mod/directory.php:164
msgid "About:"
msgstr "À propos&nbsp;:"
-#: ../../include/identity.php:951
+#: ../../include/identity.php:1019
msgid "Hobbies/Interests:"
msgstr "Occupations/Centres d'intérêt&nbsp;:"
-#: ../../include/identity.php:953 ../../mod/profiles.php:532
+#: ../../include/identity.php:1021 ../../mod/profiles.php:541
msgid "Likes:"
msgstr "Aime&nbsp;:"
-#: ../../include/identity.php:955 ../../mod/profiles.php:533
+#: ../../include/identity.php:1023 ../../mod/profiles.php:542
msgid "Dislikes:"
msgstr "N'aime pas&nbsp;:"
-#: ../../include/identity.php:958
+#: ../../include/identity.php:1026
msgid "Contact information and Social Networks:"
msgstr "Coordonnées et réseaux sociaux&nbsp;:"
-#: ../../include/identity.php:960
+#: ../../include/identity.php:1028
msgid "My other channels:"
msgstr "Mes autres canaux&nbsp;:"
-#: ../../include/identity.php:962
+#: ../../include/identity.php:1030
msgid "Musical interests:"
msgstr "Goûts musicaux&nbsp;:"
-#: ../../include/identity.php:964
+#: ../../include/identity.php:1032
msgid "Books, literature:"
msgstr "Lectures, goûts littéraires&nbsp;:"
-#: ../../include/identity.php:966
+#: ../../include/identity.php:1034
msgid "Television:"
msgstr "Télévision&nbsp;:"
-#: ../../include/identity.php:968
+#: ../../include/identity.php:1036
msgid "Film/dance/culture/entertainment:"
msgstr "Cinéma/danse/culture/divertissement&nsbp;:"
-#: ../../include/identity.php:970
+#: ../../include/identity.php:1038
msgid "Love/Romance:"
msgstr "Vie sentimentale/amoureuse&nbsp;:"
-#: ../../include/identity.php:972
+#: ../../include/identity.php:1040
msgid "Work/employment:"
msgstr "Travail&nbsp;:"
-#: ../../include/identity.php:974
+#: ../../include/identity.php:1042
msgid "School/education:"
msgstr "Cursus&nbsp;:"
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:847
-msgid "Private Message"
-msgstr "Message Privé"
+#: ../../include/identity.php:1052
+msgid "Like this thing"
+msgstr "J'aime ceci"
-#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
-#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
-#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
-#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
-msgid "Edit"
-msgstr "Éditer"
+#: ../../include/network.php:652
+msgid "view full size"
+msgstr "pleine taille"
+
+#: ../../include/apps.php:123
+msgid "Site Admin"
+msgstr "Administrateur"
+
+#: ../../include/apps.php:125
+msgid "Address Book"
+msgstr "Carnet d'adresse"
+
+#: ../../include/apps.php:139 ../../mod/mood.php:131
+msgid "Mood"
+msgstr "Humeur"
+
+#: ../../include/apps.php:143
+msgid "Probe"
+msgstr "Sonder"
+
+#: ../../include/apps.php:144
+msgid "Suggest"
+msgstr "Suggérer"
+
+#: ../../include/apps.php:233 ../../mod/settings.php:79
+#: ../../mod/settings.php:541
+msgid "Update"
+msgstr "Mise-à-jour"
+
+#: ../../include/apps.php:233
+msgid "Install"
+msgstr "Installer"
+
+#: ../../include/apps.php:238
+msgid "Purchase"
+msgstr "Acheter"
+
+#: ../../include/bbcode.php:112 ../../include/bbcode.php:638
+#: ../../include/bbcode.php:641 ../../include/bbcode.php:646
+#: ../../include/bbcode.php:649 ../../include/bbcode.php:652
+#: ../../include/bbcode.php:655 ../../include/bbcode.php:660
+#: ../../include/bbcode.php:663 ../../include/bbcode.php:668
+#: ../../include/bbcode.php:671 ../../include/bbcode.php:674
+#: ../../include/bbcode.php:677
+msgid "Image/photo"
+msgstr "Image/photo"
+
+#: ../../include/bbcode.php:147 ../../include/bbcode.php:688
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
+
+#: ../../include/bbcode.php:163
+msgid "QR code"
+msgstr "code QR"
+
+#: ../../include/bbcode.php:212
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s a écrit %2$s qui suit %3$s"
+
+#: ../../include/bbcode.php:214
+msgid "post"
+msgstr "l'article"
+
+#: ../../include/bbcode.php:606 ../../include/bbcode.php:626
+msgid "$1 wrote:"
+msgstr "$1 a écrit&nbsp;:"
+
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Pas de destinataire."
+
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[sans objet]"
+
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Impossible de déterminer l'émetteur."
+
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr "Le message stocké n'a pas pu être vérifié."
+
+#: ../../include/widgets.php:80
+msgid "System"
+msgstr "Système"
+
+#: ../../include/widgets.php:83
+msgid "Create Personal App"
+msgstr "Créer Votre Application"
+
+#: ../../include/widgets.php:84
+msgid "Edit Personal App"
+msgstr "Éditer Votre Application"
+
+#: ../../include/widgets.php:130 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorer/Cacher"
+
+#: ../../include/widgets.php:136 ../../mod/connections.php:267
+msgid "Suggestions"
+msgstr "Suggestion"
+
+#: ../../include/widgets.php:137
+msgid "See more..."
+msgstr "Voir plus..."
+
+#: ../../include/widgets.php:159
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
+
+#: ../../include/widgets.php:165
+msgid "Add New Connection"
+msgstr "Ajouter une nouvelle relation"
+
+#: ../../include/widgets.php:166
+msgid "Enter the channel address"
+msgstr "Adresse du canal"
+
+#: ../../include/widgets.php:167
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara"
+
+#: ../../include/widgets.php:184
+msgid "Notes"
+msgstr "Notes"
+
+#: ../../include/widgets.php:256
+msgid "Remove term"
+msgstr "Retirer le terme"
+
+#: ../../include/widgets.php:335
+msgid "Archives"
+msgstr "Archives"
+
+#: ../../include/widgets.php:397
+msgid "Refresh"
+msgstr "Actualiser"
+
+#: ../../include/widgets.php:398 ../../mod/connedit.php:428
+msgid "Me"
+msgstr "Moi"
+
+#: ../../include/widgets.php:399 ../../mod/connedit.php:430
+msgid "Best Friends"
+msgstr "Mes meilleurs amis"
+
+#: ../../include/widgets.php:401
+msgid "Co-workers"
+msgstr "Mes collègues"
+
+#: ../../include/widgets.php:402 ../../mod/connedit.php:432
+msgid "Former Friends"
+msgstr "Mes anciens amis"
+
+#: ../../include/widgets.php:403 ../../mod/connedit.php:433
+msgid "Acquaintances"
+msgstr "Mes connaissances"
+
+#: ../../include/widgets.php:404
+msgid "Everybody"
+msgstr "Tout le monde"
+
+#: ../../include/widgets.php:436
+msgid "Account settings"
+msgstr "Réglages du Compte"
+
+#: ../../include/widgets.php:442
+msgid "Channel settings"
+msgstr "Réglages du Canal"
+
+#: ../../include/widgets.php:448
+msgid "Additional features"
+msgstr "Fonctions supplémentaires"
+
+#: ../../include/widgets.php:454
+msgid "Feature settings"
+msgstr "Extensions"
+
+#: ../../include/widgets.php:460
+msgid "Display settings"
+msgstr "Réglages d'affichage"
+
+#: ../../include/widgets.php:466
+msgid "Connected apps"
+msgstr "Applications connectées"
+
+#: ../../include/widgets.php:472
+msgid "Export channel"
+msgstr "Exporter le canal"
+
+#: ../../include/widgets.php:484
+msgid "Automatic Permissions (Advanced)"
+msgstr "Permissions automatiques (avancé)"
+
+#: ../../include/widgets.php:494
+msgid "Premium Channel Settings"
+msgstr "Canal VIP"
+
+#: ../../include/widgets.php:531
+msgid "Check Mail"
+msgstr "Vérifier le courrier"
+
+#: ../../include/widgets.php:612
+msgid "Chat Rooms"
+msgstr "Salons de clavardage"
+
+#: ../../include/widgets.php:630
+msgid "Bookmarked Chatrooms"
+msgstr "Salons favoris"
+
+#: ../../include/widgets.php:648
+msgid "Suggested Chatrooms"
+msgstr "Salons suggérés"
#: ../../include/ItemObject.php:118
-msgid "save to folder"
-msgstr "classer dans un dossier"
+msgid "Save to Folder"
+msgstr "Sauvegarder dans le dossier"
-#: ../../include/ItemObject.php:146
-msgid "add star"
-msgstr "mettre en avant"
+#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142
+msgid "View all"
+msgstr "Voir tout"
-#: ../../include/ItemObject.php:147
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: ../../include/ItemObject.php:139
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Je déteste"
+msgstr[1] "Je déteste"
-#: ../../include/ItemObject.php:148
-msgid "toggle star status"
-msgstr "(dé)marquer"
+#: ../../include/ItemObject.php:167
+msgid "Add Star"
+msgstr "Ajouter Étoile"
-#: ../../include/ItemObject.php:152
+#: ../../include/ItemObject.php:168
+msgid "Remove Star"
+msgstr "Supprimer Étoile"
+
+#: ../../include/ItemObject.php:169
+msgid "Toggle Star Status"
+msgstr "Changer le Statut des Étoiles"
+
+#: ../../include/ItemObject.php:173
msgid "starred"
msgstr "mis en avant"
-#: ../../include/ItemObject.php:169
-msgid "add tag"
-msgstr "étiquetter"
+#: ../../include/ItemObject.php:190
+msgid "Add Tag"
+msgstr "Ajouter une balise"
-#: ../../include/ItemObject.php:184 ../../mod/photos.php:972
+#: ../../include/ItemObject.php:208 ../../mod/photos.php:974
msgid "I like this (toggle)"
msgstr "J'aime (oui/non)"
-#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254
-msgid "like"
-msgstr "aime"
-
-#: ../../include/ItemObject.php:185 ../../mod/photos.php:973
+#: ../../include/ItemObject.php:209 ../../mod/photos.php:975
msgid "I don't like this (toggle)"
msgstr "Je déteste (oui/non)"
-#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255
-msgid "dislike"
-msgstr "déteste"
-
-#: ../../include/ItemObject.php:187
-msgid "Share this"
-msgstr "Partager ça"
+#: ../../include/ItemObject.php:211
+msgid "Share This"
+msgstr "Partager"
-#: ../../include/ItemObject.php:187
+#: ../../include/ItemObject.php:211
msgid "share"
-msgstr "partage"
+msgstr "partager"
-#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212
+#: ../../include/ItemObject.php:235 ../../include/ItemObject.php:236
#, php-format
msgid "View %s's profile - %s"
msgstr "Voir le profil de %s - %s"
-#: ../../include/ItemObject.php:213
+#: ../../include/ItemObject.php:237
msgid "to"
msgstr "à"
-#: ../../include/ItemObject.php:214
+#: ../../include/ItemObject.php:238
msgid "via"
msgstr "via"
-#: ../../include/ItemObject.php:215
+#: ../../include/ItemObject.php:239
msgid "Wall-to-Wall"
msgstr "Mur-mur"
-#: ../../include/ItemObject.php:216
+#: ../../include/ItemObject.php:240
msgid "via Wall-To-Wall:"
msgstr "par Mur-mur&nbsp;:"
-#: ../../include/ItemObject.php:250
-msgid "Bookmark Links"
-msgstr "Transformer les liens en marque-pages"
+#: ../../include/ItemObject.php:274
+msgid "Save Bookmarks"
+msgstr "Enregistrer les favoris"
+
+#: ../../include/ItemObject.php:275
+msgid "Add to Calendar"
+msgstr "Ajouter au Calendrier"
-#: ../../include/ItemObject.php:280
+#: ../../include/ItemObject.php:283
+msgctxt "noun"
+msgid "Likes"
+msgstr "Aimes"
+
+#: ../../include/ItemObject.php:284
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "Détestes"
+
+#: ../../include/ItemObject.php:315
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d commentaire"
msgstr[1] "%d commentaires"
-#: ../../include/ItemObject.php:545 ../../mod/photos.php:991
-#: ../../mod/photos.php:1078
+#: ../../include/ItemObject.php:316 ../../include/js_strings.php:7
+msgid "[+] show all"
+msgstr "[+] voir plus"
+
+#: ../../include/ItemObject.php:580 ../../mod/photos.php:993
+#: ../../mod/photos.php:1080
msgid "This is you"
msgstr "C'est vous"
-#: ../../include/ItemObject.php:548 ../../mod/events.php:469
-#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
-#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
-#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
-#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
-#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
-#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/settings.php:516
-#: ../../mod/settings.php:628 ../../mod/settings.php:656
-#: ../../mod/settings.php:680 ../../mod/settings.php:752
-#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
-#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
-#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
-#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
-#: ../../mod/photos.php:1081 ../../mod/mood.php:142
-#: ../../view/theme/redbasic/php/config.php:95
-#: ../../view/theme/apw/php/config.php:231
-#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../include/ItemObject.php:582 ../../include/js_strings.php:6
+#: ../../mod/photos.php:995 ../../mod/photos.php:1082
+msgid "Comment"
+msgstr "Commenter"
+
+#: ../../include/ItemObject.php:583 ../../mod/mood.php:135
+#: ../../mod/settings.php:515 ../../mod/settings.php:627
+#: ../../mod/settings.php:655 ../../mod/settings.php:679
+#: ../../mod/settings.php:749 ../../mod/settings.php:927
+#: ../../mod/poke.php:166 ../../mod/profiles.php:515 ../../mod/chat.php:177
+#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476
+#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58
+#: ../../mod/photos.php:563 ../../mod/photos.php:668 ../../mod/photos.php:956
+#: ../../mod/photos.php:996 ../../mod/photos.php:1083
+#: ../../mod/sources.php:104 ../../mod/sources.php:138
+#: ../../mod/events.php:511 ../../mod/filestorage.php:137
+#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:442
+#: ../../mod/admin.php:751 ../../mod/admin.php:886 ../../mod/admin.php:1019
+#: ../../mod/admin.php:1218 ../../mod/admin.php:1305 ../../mod/thing.php:286
+#: ../../mod/thing.php:329 ../../mod/import.php:393 ../../mod/invite.php:156
+#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/appman.php:99
+#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256
#: ../../view/theme/blogga/php/config.php:67
+#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../view/theme/redbasic/php/config.php:99
msgid "Submit"
msgstr "Envoyer"
-#: ../../include/ItemObject.php:549
+#: ../../include/ItemObject.php:584
msgid "Bold"
msgstr "Gras"
-#: ../../include/ItemObject.php:550
+#: ../../include/ItemObject.php:585
msgid "Italic"
msgstr "Italique"
-#: ../../include/ItemObject.php:551
+#: ../../include/ItemObject.php:586
msgid "Underline"
msgstr "Souligné"
-#: ../../include/ItemObject.php:552
+#: ../../include/ItemObject.php:587
msgid "Quote"
msgstr "Citation"
-#: ../../include/ItemObject.php:553
+#: ../../include/ItemObject.php:588
msgid "Code"
msgstr "Code"
-#: ../../include/ItemObject.php:554
+#: ../../include/ItemObject.php:589
msgid "Image"
msgstr "Image"
-#: ../../include/ItemObject.php:555
+#: ../../include/ItemObject.php:590
msgid "Link"
msgstr "Lien/URL"
-#: ../../include/ItemObject.php:556
+#: ../../include/ItemObject.php:591
msgid "Video"
msgstr "Vidéo"
-#: ../../include/api.php:974
-msgid "Public Timeline"
-msgstr "Fil public"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Supprimer cet élément?"
-#: ../../include/network.php:640
-msgid "view full size"
-msgstr "pleine taille"
+#: ../../include/js_strings.php:8
+msgid "[-] show less"
+msgstr "[-] montrer moins"
-#: ../../include/notify.php:23
-msgid "created a new post"
-msgstr "a publié"
+#: ../../include/js_strings.php:9
+msgid "[+] expand"
+msgstr "[+] déplier"
-#: ../../include/notify.php:24
+#: ../../include/js_strings.php:10
+msgid "[-] collapse"
+msgstr "[-] replier"
+
+#: ../../include/js_strings.php:11
+msgid "Password too short"
+msgstr "Mot de passe trop court"
+
+#: ../../include/js_strings.php:12
+msgid "Passwords do not match"
+msgstr "Les mots de passe ne correspondent pas"
+
+#: ../../include/js_strings.php:13 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "tout le monde"
+
+#: ../../include/js_strings.php:14
+msgid "Secret Passphrase"
+msgstr "Phrase de passe secrète"
+
+#: ../../include/js_strings.php:15
+msgid "Passphrase hint"
+msgstr "Indice pour la phrase de passe"
+
+#: ../../include/js_strings.php:16
+msgid "Notice: Permissions have changed but have not yet been submitted."
+msgstr "Note&nbsp;: Les permissions ont changées, mais n'ont pas encore été sauvées."
+
+#: ../../include/js_strings.php:17
+msgid "close all"
+msgstr "fermer tout"
+
+#: ../../include/js_strings.php:19
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
+
+#: ../../include/js_strings.php:20
+msgid "timeago.prefixFromNow"
+msgstr "timeago.prefixFromNow"
+
+#: ../../include/js_strings.php:21
+msgid "ago"
+msgstr "auparavant"
+
+#: ../../include/js_strings.php:22
+msgid "from now"
+msgstr "de maintenant"
+
+#: ../../include/js_strings.php:23
+msgid "less than a minute"
+msgstr "moins d'une minute"
+
+#: ../../include/js_strings.php:24
+msgid "about a minute"
+msgstr "environ une minute"
+
+#: ../../include/js_strings.php:25
#, php-format
-msgid "commented on %s's post"
-msgstr "a commenté la publication de %s"
+msgid "%d minutes"
+msgstr "%d minutes"
+
+#: ../../include/js_strings.php:26
+msgid "about an hour"
+msgstr "environ une heure"
+
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "about %d hours"
+msgstr "environ %d heures"
+
+#: ../../include/js_strings.php:28
+msgid "a day"
+msgstr "un jour"
+
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d days"
+msgstr "%d jours"
+
+#: ../../include/js_strings.php:30
+msgid "about a month"
+msgstr "environ un mois"
+
+#: ../../include/js_strings.php:31
+#, php-format
+msgid "%d months"
+msgstr "%d mois"
+
+#: ../../include/js_strings.php:32
+msgid "about a year"
+msgstr "environ un an"
+
+#: ../../include/js_strings.php:33
+#, php-format
+msgid "%d years"
+msgstr "%d années"
+
+#: ../../include/js_strings.php:34
+msgid " "
+msgstr " "
+
+#: ../../include/js_strings.php:35
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
+
+#: ../../include/Contact.php:123
+msgid "New window"
+msgstr "Nouvelle fenêtre"
+
+#: ../../include/Contact.php:124
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent"
#: ../../include/profile_selectors.php:6
msgid "Male"
@@ -2464,7 +3219,7 @@ msgstr "Célibataire"
#: ../../include/profile_selectors.php:42
msgid "Lonely"
-msgstr "Esseulé"
+msgstr "Solitaire"
#: ../../include/profile_selectors.php:42
msgid "Available"
@@ -2578,480 +3333,56 @@ msgstr "S'en fiche"
msgid "Ask me"
msgstr "Me demander"
-#: ../../include/chat.php:10
-msgid "Missing room name"
-msgstr "Il manque le nom du salon"
-
-#: ../../include/chat.php:19
-msgid "Duplicate room name"
-msgstr "Un salon de ce nom existe déjà"
-
-#: ../../include/chat.php:68 ../../include/chat.php:76
-msgid "Invalid room specifier."
-msgstr "Identifiant de salon invalide."
-
-#: ../../include/chat.php:102
-msgid "Room not found."
-msgstr "Salon introuvable."
-
-#: ../../include/chat.php:123
-msgid "Room is full"
-msgstr "Le salon est plein"
-
-#: ../../include/taxonomy.php:210
-msgid "Tags"
-msgstr "Étiquettes"
-
-#: ../../include/taxonomy.php:227
-msgid "Keywords"
-msgstr "Mots-clefs"
-
-#: ../../include/taxonomy.php:252
-msgid "have"
-msgstr "ont"
-
-#: ../../include/taxonomy.php:252
-msgid "has"
-msgstr "a"
-
-#: ../../include/taxonomy.php:253
-msgid "want"
-msgstr "veulent"
-
-#: ../../include/taxonomy.php:253
-msgid "wants"
-msgstr "veut"
-
-#: ../../include/taxonomy.php:254
-msgid "likes"
-msgstr "aime"
-
-#: ../../include/taxonomy.php:255
-msgid "dislikes"
-msgstr "déteste"
-
-#: ../../include/auth.php:76
+#: ../../include/auth.php:90
msgid "Logged out."
msgstr "Deconnecté."
-#: ../../include/auth.php:188
+#: ../../include/auth.php:209
msgid "Failed authentication"
msgstr "Échec de l'authentification"
-#: ../../include/auth.php:203
+#: ../../include/auth.php:224 ../../mod/openid.php:188
msgid "Login failed."
msgstr "Échec de la connexion."
-#: ../../include/account.php:23
-msgid "Not a valid email address"
-msgstr "Ce n'est pas une adresse de courriel valide"
-
-#: ../../include/account.php:25
-msgid "Your email domain is not among those allowed on this site"
-msgstr "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site"
-
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
-msgstr "Votre adresse de courriel est déjà inscrite sur ce site."
-
-#: ../../include/account.php:64
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
-
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
-msgstr "Votre invitation n'a pas pu être vérifiée."
-
-#: ../../include/account.php:119
-msgid "Please enter the required information."
-msgstr "Merci d'entrer les informations requises."
-
-#: ../../include/account.php:187
-msgid "Failed to store account information."
-msgstr "Impossible de stocker les informations liées au compte."
-
-#: ../../include/account.php:273
-#, php-format
-msgid "Registration request at %s"
-msgstr "Demande d'inscription sur %s"
-
-#: ../../include/account.php:275 ../../include/account.php:302
-#: ../../include/account.php:359
-msgid "Administrator"
-msgstr "Administrateur"
-
-#: ../../include/account.php:297
-msgid "your registration password"
-msgstr "votre mot de passe d'inscription"
-
-#: ../../include/account.php:300 ../../include/account.php:357
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails de l'inscription à %s"
-
-#: ../../include/account.php:366
-msgid "Account approved."
-msgstr "Compte approuvé."
-
-#: ../../include/account.php:400
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
-
-#: ../../include/dir_fns.php:15
-msgid "Sort Options"
-msgstr "Options de tri"
-
-#: ../../include/dir_fns.php:16
-msgid "Alphabetic"
-msgstr "Alphabétique"
-
-#: ../../include/dir_fns.php:17
-msgid "Reverse Alphabetic"
-msgstr "Alphabétique inversé"
-
-#: ../../include/dir_fns.php:18
-msgid "Newest to Oldest"
-msgstr "Anté-chronologique"
-
-#: ../../include/dir_fns.php:30
-msgid "Enable Safe Search"
-msgstr "Activer la recherche sûre"
-
-#: ../../include/dir_fns.php:32
-msgid "Disable Safe Search"
-msgstr "Désactiver la recherche sûre"
-
-#: ../../include/dir_fns.php:34
-msgid "Safe Mode"
-msgstr "Mode sûr"
-
-#: ../../include/enotify.php:40
-msgid "Red Matrix Notification"
-msgstr "Notification Red Matrix"
-
-#: ../../include/enotify.php:41
-msgid "redmatrix"
-msgstr "redmatrix"
-
-#: ../../include/enotify.php:43
-msgid "Thank You,"
-msgstr "Merci,"
-
-#: ../../include/enotify.php:45
-#, php-format
-msgid "%s Administrator"
-msgstr "l'administrateur de %s"
-
-#: ../../include/enotify.php:80
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../include/enotify.php:84
-#, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red:Notification] Nouveau message reçu sur %s"
-
-#: ../../include/enotify.php:86
-#, php-format
-msgid "%1$s, %2$s sent you a new private message at %3$s."
-msgstr "%1$s, vous avez reçu un message privé sur %3$s, de la part de %2$s."
-
-#: ../../include/enotify.php:87
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
-
-#: ../../include/enotify.php:87
-msgid "a private message"
-msgstr "un message privé"
-
-#: ../../include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés."
-
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
-msgstr "%1$s, %2$s a commenté [zrl=%3$s]%4$s[/zrl]"
-
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
-msgstr "%1$s, %2$s a commenté [zrl=%3$s]%5$s de %4$s[/zrl]"
-
-#: ../../include/enotify.php:159
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
-msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]"
-
-#: ../../include/enotify.php:170
-#, php-format
-msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Red:Notification] Commentaire de %2$s sur conversation #%1$d"
-
-#: ../../include/enotify.php:171
-#, php-format
-msgid "%1$s, %2$s commented on an item/conversation you have been following."
-msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez."
-
-#: ../../include/enotify.php:174 ../../include/enotify.php:189
-#: ../../include/enotify.php:215 ../../include/enotify.php:234
-#: ../../include/enotify.php:248
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation."
-
-#: ../../include/enotify.php:180
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
-msgstr "[Red:Notification] %s a publié sur votre profil"
-
-#: ../../include/enotify.php:182
-#, php-format
-msgid "%1$s, %2$s posted to your profile wall at %3$s"
-msgstr "%1$s, %2$s a posté sur votre profil à %3$s"
-
-#: ../../include/enotify.php:184
-#, php-format
-msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
-msgstr "%1$s, %2$s a posté sur [zrl=%3$s]votre profil[/zrl]"
-
-#: ../../include/enotify.php:208
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red:Notification] %s vous a marqué"
-
-#: ../../include/enotify.php:209
-#, php-format
-msgid "%1$s, %2$s tagged you at %3$s"
-msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s"
-
-#: ../../include/enotify.php:210
-#, php-format
-msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
-msgstr "%1$s, %2$s [zrl=%3$s]vous a tagué[/zrl]."
-
-#: ../../include/enotify.php:223
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red:Notification] %1$s vous a tapoté"
-
-#: ../../include/enotify.php:224
-#, php-format
-msgid "%1$s, %2$s poked you at %3$s"
-msgstr "%1$s, vous avez été tapoté/pointé/sollicité par %2$s sur %3$s"
-
-#: ../../include/enotify.php:225
-#, php-format
-msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
-msgstr "%1$s, %2$s [zrl=%2$s]vous a tapoté[/zrl]."
-
-#: ../../include/enotify.php:241
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Notification] %s a marqué votre publication"
-
-#: ../../include/enotify.php:242
-#, php-format
-msgid "%1$s, %2$s tagged your post at %3$s"
-msgstr "%1$s, %2$s a tagué votre publication sur %3$s"
-
-#: ../../include/enotify.php:243
-#, php-format
-msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
-msgstr "%1$s, %2$s a tagué [zrl=%3$s]votre publication[/zrl]"
-
-#: ../../include/enotify.php:255
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Notification] Nouvelle introduction"
-
-#: ../../include/enotify.php:256
-#, php-format
-msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
-msgstr "%1$s, vous avez reçu une introduction de '%2$s' sur %3$s"
-
-#: ../../include/enotify.php:257
-#, php-format
-msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
-msgstr "%1$s, vous avez reçu [zrl=%2$s]une introduction[/zrl] de %3$s."
-
-#: ../../include/enotify.php:261 ../../include/enotify.php:280
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Vous pouvez visiter leur profil sur %s"
-
-#: ../../include/enotify.php:263
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Merci de visiter %s avant d'approuver (ou non) son introduction."
-
-#: ../../include/enotify.php:270
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Notification] Nouvelle suggestion d'amitié"
-
-#: ../../include/enotify.php:271
-#, php-format
-msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
-msgstr "%1$s, vous avez reçu une suggestion de relation de '%2$s' à %3$s"
-
-#: ../../include/enotify.php:272
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
-"%4$s."
-msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion de relation[/zrl] de %4$s."
-
-#: ../../include/enotify.php:278
-msgid "Name:"
-msgstr "Nom&nbsp;:"
-
-#: ../../include/enotify.php:279
-msgid "Photo:"
-msgstr "Photo&nbsp;:"
-
-#: ../../include/enotify.php:282
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion."
-
-#: ../../include/photos.php:89
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "L'image dépasse la taille limite de %lu octets"
-
-#: ../../include/photos.php:96
-msgid "Image file is empty."
-msgstr "L'image est vide."
+#: ../../include/items.php:288 ../../mod/profperm.php:23
+#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242
+#: ../../index.php:360
+msgid "Permission denied"
+msgstr "Accès refusé"
-#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: ../../include/items.php:812
+msgid "(Unknown)"
+msgstr "(Inconnu)"
-#: ../../include/photos.php:185
-msgid "Photo storage failed."
-msgstr "Le stockage de l'image a échoué."
+#: ../../include/items.php:3600 ../../mod/home.php:67 ../../mod/display.php:32
+#: ../../mod/filestorage.php:18 ../../mod/admin.php:159
+#: ../../mod/admin.php:923 ../../mod/admin.php:1126 ../../mod/thing.php:78
+#: ../../mod/viewsrc.php:18
+msgid "Item not found."
+msgstr "Élément introuvable."
-#: ../../include/photos.php:306 ../../mod/photos.php:694
-#: ../../mod/photos.php:1191
-msgid "Upload New Photos"
-msgstr "Ajouter des photos"
+#: ../../include/items.php:4033 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Collection introuvable."
-#: ../../include/reddav.php:1061
-msgid "Edit File properties"
-msgstr "Éditer les propriétés du fichier"
+#: ../../include/items.php:4048
+msgid "Collection is empty."
+msgstr "Collection vide."
-#: ../../include/contact_widgets.php:14
+#: ../../include/items.php:4055
#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation disponible"
-msgstr[1] "%d invitations disponibles"
-
-#: ../../include/contact_widgets.php:20
-msgid "Find Channels"
-msgstr "Trouver des canaux"
-
-#: ../../include/contact_widgets.php:21
-msgid "Enter name or interest"
-msgstr "Saisir nom ou centre d'intérêt"
-
-#: ../../include/contact_widgets.php:22
-msgid "Connect/Follow"
-msgstr "Relier/Suivre"
-
-#: ../../include/contact_widgets.php:23
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Course à pieds"
-
-#: ../../include/contact_widgets.php:24 ../../mod/directory.php:207
-#: ../../mod/directory.php:212 ../../mod/connections.php:357
-msgid "Find"
-msgstr "Trouver"
-
-#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
-msgid "Channel Suggestions"
-msgstr "Canaux suggérés"
-
-#: ../../include/contact_widgets.php:27
-msgid "Random Profile"
-msgstr "Un profil au hasard"
-
-#: ../../include/contact_widgets.php:28
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+msgid "Collection: %s"
+msgstr "Collection&nbsp;: %s"
-#: ../../include/contact_widgets.php:120
+#: ../../include/items.php:4066
#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] "%d relation en commun"
-msgstr[1] "%d relations en commun"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Nouvelle page"
-
-#: ../../include/plugin.php:475 ../../include/plugin.php:477
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
-
-#: ../../include/plugin.php:483
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Cette action outrepasserait les limites prévues par votre forfait."
-
-#: ../../include/plugin.php:488
-msgid "This action is not available under your subscription plan."
-msgstr "Cette action n'est pas possible avec la formule choisie."
-
-#: ../../include/follow.php:21
-msgid "Channel is blocked on this site."
-msgstr "Ce canal est bloqué sur ce site."
-
-#: ../../include/follow.php:26
-msgid "Channel location missing."
-msgstr "Localisation du canal manquante."
-
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Découverte du canal impossible. Le site est peut-être en dérangement ou mal configuré."
-
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "La réponse du canal distant n'a pas été comprise."
-
-#: ../../include/follow.php:58
-msgid "Response from remote channel was incomplete."
-msgstr "La réponse du canal distant était incomplète."
-
-#: ../../include/follow.php:129
-msgid "local account not found."
-msgstr "compte local introuvable."
-
-#: ../../include/follow.php:138
-msgid "Cannot connect to yourself."
-msgstr "Ne peut pas se connecter à vous."
-
-#: ../../include/security.php:280
-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 formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures)."
-
-#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:64
-#: ../../view/theme/apw/php/config.php:176
-msgid "Default"
-msgstr "Défaut"
-
-#: ../../include/oembed.php:157
-msgid "Embedded content"
-msgstr "Contenu imbriqué"
+msgid "Connection: %s"
+msgstr "Relation&nbsp;: %s"
-#: ../../include/oembed.php:166
-msgid "Embedding disabled"
-msgstr "Imbrication désactivée"
+#: ../../include/items.php:4069
+msgid "Connection not found."
+msgstr "Relation introuvable."
#: ../../include/permissions.php:13
msgid "Can view my \"public\" stream and posts"
@@ -3086,8 +3417,8 @@ msgid "Can post on my channel page (\"wall\")"
msgstr "Peut poster sur la page de mon canal (\"mur\")"
#: ../../include/permissions.php:23
-msgid "Can comment on my posts"
-msgstr "Peut commenter mes publications"
+msgid "Can comment on or like my posts"
+msgstr "Peuvent commenter et/ou aimer mes publications"
#: ../../include/permissions.php:24
msgid "Can send me private mail messages"
@@ -3098,1697 +3429,1715 @@ msgid "Can post photos to my photo albums"
msgstr "Peut ajouter des photos à mes albums"
#: ../../include/permissions.php:26
+msgid "Can like/dislike stuff"
+msgstr "Peuvent aimer/détester"
+
+#: ../../include/permissions.php:28
msgid "Can forward to all my channel contacts via post @mentions"
msgstr "Peut faire suivre à tous les contacts du mon canal via @truc"
-#: ../../include/permissions.php:26
+#: ../../include/permissions.php:28
msgid "Advanced - useful for creating group forum channels"
msgstr "Avancé - utile seulement pour les canaux de type \"forum/groupe\""
-#: ../../include/permissions.php:27
+#: ../../include/permissions.php:29
msgid "Can chat with me (when available)"
msgstr "Peut discuter avec moi (sous réserve de disponibilité)"
-#: ../../include/permissions.php:28
+#: ../../include/permissions.php:30
msgid "Can write to my \"public\" file storage"
msgstr "Peut écrire dans mon stockage \"public\" de fichiers"
-#: ../../include/permissions.php:29
+#: ../../include/permissions.php:31
msgid "Can edit my \"public\" pages"
msgstr "Peut éditer mes pages \"publiques\""
-#: ../../include/permissions.php:31
+#: ../../include/permissions.php:33
msgid "Can source my \"public\" posts in derived channels"
msgstr "Peut utiliser mes contributions \"publiques\" comme source de canaux dérivés"
-#: ../../include/permissions.php:31
+#: ../../include/permissions.php:33
msgid "Somewhat advanced - very useful in open communities"
msgstr "Plutôt avancé - très utile dans les communautés ouvertes"
-#: ../../include/permissions.php:32
-msgid "Can send me bookmarks"
-msgstr "Peut m'envoyer des marque-pages"
-
-#: ../../include/permissions.php:33
+#: ../../include/permissions.php:35
msgid "Can administer my channel resources"
msgstr "Peut administrer les ressources de mon canal"
-#: ../../include/permissions.php:33
+#: ../../include/permissions.php:35
msgid ""
"Extremely advanced. Leave this alone unless you know what you are doing"
msgstr "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites"
-#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
-#: ../../mod/group.php:68 ../../index.php:350
-msgid "Permission denied"
-msgstr "Accès refusé"
+#: ../../mod/mood.php:132
+msgid "Set your current mood and tell your friends"
+msgstr "Indiquez votre humeur du moment à vos amis"
-#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
-#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
-msgid "Item not found."
-msgstr "Élément introuvable."
+#: ../../mod/mitem.php:14 ../../mod/menu.php:92
+msgid "Menu not found."
+msgstr "Menu introuvable."
-#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr "Collection introuvable."
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "Entrée de menu mis-à-jour."
-#: ../../include/items.php:3824
-msgid "Collection is empty."
-msgstr "Collection vide."
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Impossible de mettre l'entrée de menu à jour."
-#: ../../include/items.php:3831
-#, php-format
-msgid "Collection: %s"
-msgstr "Collection&nbsp;: %s"
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "Entrée de menu ajouté."
-#: ../../include/items.php:3842
-#, php-format
-msgid "Connection: %s"
-msgstr "Relation&nbsp;: %s"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Impossible d'ajouter l'entrée de menu."
-#: ../../include/items.php:3845
-msgid "Connection not found."
-msgstr "Relation introuvable."
+#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120
+#: ../../mod/xchan.php:27
+msgid "Not found."
+msgstr "Introuvable."
-#: ../../include/zot.php:548
-msgid "Invalid data packet"
-msgstr "Paquet de données invalide"
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Gérer les entrées de menu"
-#: ../../include/zot.php:558
-msgid "Unable to verify channel signature"
-msgstr "Impossible de vérifier la signature du canal"
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Éditer le menu"
-#: ../../include/zot.php:735
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Impossible de vérifier la signature de site pour %s"
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Éditer l'entrée"
-#: ../../mod/common.php:10
-msgid "No channel."
-msgstr "Pas de canal."
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Supprimer l'entrée"
-#: ../../mod/common.php:39
-msgid "Common connections"
-msgstr "Relations communes"
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Nouvelle entrée"
-#: ../../mod/common.php:44
-msgid "No connections in common."
-msgstr "Pas de relations en commun."
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Éditer ce bloc de menu"
-#: ../../mod/events.php:72
-msgid "Event title and start time are required."
-msgstr "Un titre et une date de début sont requises pour l'événement."
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Ajouter une entrée au menu"
-#: ../../mod/events.php:287
-msgid "l, F j"
-msgstr "l j F"
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Supprimer cet entrée du menu"
-#: ../../mod/events.php:309
-msgid "Edit event"
-msgstr "Éditer événement"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Éditer cette entrée du menu"
-#: ../../mod/events.php:355
-msgid "Create New Event"
-msgstr "Créer événement"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Nouvelle entrée de menu"
-#: ../../mod/events.php:356
-msgid "Previous"
-msgstr "Précédent"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Permissions de l'entrée de menu"
-#: ../../mod/events.php:357 ../../mod/setup.php:258
-msgid "Next"
-msgstr "Suivant"
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:960
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
-#: ../../mod/events.php:428
-msgid "hour:minute"
-msgstr "heure:minute"
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Texte du lien"
-#: ../../mod/events.php:447
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL du lien"
-#: ../../mod/events.php:448
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Le format est %s %s. Date de début et titre obligatoires."
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Utiliser l'authentification magique, lorsque disponible"
-#: ../../mod/events.php:450
-msgid "Event Starts:"
-msgstr "L'événement débute&nbsp;:"
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Ouvrir le lien dans une nouvelle fenêtre"
-#: ../../mod/events.php:450 ../../mod/events.php:464
-msgid "Required"
-msgstr "Requis"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Ordre dans la liste"
-#: ../../mod/events.php:453
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Les nombres les plus élevés seront descendus au bas de la liste"
-#: ../../mod/events.php:455
-msgid "Event Finishes:"
-msgstr "L'événement termine&nbsp;:"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "Entrée de menu introuvable."
-#: ../../mod/events.php:458
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster au fuseau horaire du visiteur"
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "Entrée de menu supprimée."
-#: ../../mod/events.php:460
-msgid "Description:"
-msgstr "Description:"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Impossible de supprimer l'entrée de menu."
-#: ../../mod/events.php:464
-msgid "Title:"
-msgstr "Titre:"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Éditer l'entrée de menu"
-#: ../../mod/events.php:466
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../mod/mitem.php:186 ../../mod/menu.php:114
+msgid "Modify"
+msgstr "Modifier"
-#: ../../mod/thing.php:98
-msgid "Thing updated"
-msgstr "Chose mise-à-jour"
+#: ../../mod/ping.php:237
+msgid "sent you a private message"
+msgstr "vous a envoyé un message privé"
-#: ../../mod/thing.php:158
-msgid "Object store: failed"
-msgstr "Stockage de l'objet&nbsp;: échec"
+#: ../../mod/ping.php:288
+msgid "added your channel"
+msgstr "a ajouté votre canal"
-#: ../../mod/thing.php:162
-msgid "Thing added"
-msgstr "Chose ajoutée"
+#: ../../mod/ping.php:329
+msgid "posted an event"
+msgstr "a publié un événement"
-#: ../../mod/thing.php:182
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../mod/acl.php:239
+msgid "network"
+msgstr "réseau"
-#: ../../mod/thing.php:234
-msgid "Show Thing"
-msgstr "Montrer chose"
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Le nom est requis"
-#: ../../mod/thing.php:241
-msgid "item not found."
-msgstr "élément introuvable."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Clef et secret sont requis"
-#: ../../mod/thing.php:269
-msgid "Edit Thing"
-msgstr "Éditer chose"
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
-#: ../../mod/thing.php:271 ../../mod/thing.php:318
-msgid "Select a profile"
-msgstr "Choisissez un profil"
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
-#: ../../mod/thing.php:273 ../../mod/thing.php:320
-msgid "Select a category of stuff. e.g. I ______ something"
-msgstr "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose"
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "Le mot de passe a été changé."
-#: ../../mod/thing.php:275 ../../mod/thing.php:321
-msgid "Post an activity"
-msgstr "Publier une activité"
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
-#: ../../mod/thing.php:275 ../../mod/thing.php:321
-msgid "Only sends to viewers of the applicable profile"
-msgstr ""
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Adresse de courriel non-valide."
-#: ../../mod/thing.php:277 ../../mod/thing.php:323
-msgid "Name of thing e.g. something"
-msgstr "Nom de la chose, p.ex. quelque-chose"
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
-#: ../../mod/thing.php:279 ../../mod/thing.php:324
-msgid "URL of thing (optional)"
-msgstr "URL de la chose (optionnel)"
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
-#: ../../mod/thing.php:281 ../../mod/thing.php:325
-msgid "URL for photo of thing (optional)"
-msgstr "URL de l'image de la chose (optionnel)"
+#: ../../mod/settings.php:443
+msgid "Settings updated."
+msgstr "Réglages sauvegardés."
-#: ../../mod/thing.php:316
-msgid "Add Thing to your Profile"
-msgstr "Ajouter la chose à votre profil"
+#: ../../mod/settings.php:514 ../../mod/settings.php:540
+#: ../../mod/settings.php:576
+msgid "Add application"
+msgstr "Ajouter une application"
-#: ../../mod/invite.php:25
-msgid "Total invitation limit exceeded."
-msgstr "Limite du nombre total d'invitation dépassée."
+#: ../../mod/settings.php:517
+msgid "Name of application"
+msgstr "Nom de l'application"
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s&nbsp: adresse courriel invalide."
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Consumer Key"
+msgstr "Clef de consommateur"
-#: ../../mod/invite.php:76
-msgid "Please join us on Red"
-msgstr "Rejoignez-nous sur Red"
+#: ../../mod/settings.php:518 ../../mod/settings.php:519
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
-#: ../../mod/invite.php:87
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Secret"
+msgstr "Secret de consommateur"
-#: ../../mod/invite.php:92
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s&nbsp;: Échec dans la livraison du message."
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Redirect"
+msgstr "Redirection"
-#: ../../mod/invite.php:96
-#, 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:520
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
-#: ../../mod/invite.php:115
-msgid "You have no more invitations available"
-msgstr "Vous ne disposez plus d'aucune invitation"
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Icon url"
+msgstr "URL de l'icône"
-#: ../../mod/invite.php:141
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../mod/settings.php:521
+msgid "Optional"
+msgstr "Facultatif"
-#: ../../mod/invite.php:142
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses de courriel, une par ligne&nbsp;:"
+#: ../../mod/settings.php:532
+msgid "You can't edit this application."
+msgstr "Vous ne pouvez pas éditer cette application."
-#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328
-msgid "Your message:"
-msgstr "Votre message&nbsp;:"
+#: ../../mod/settings.php:575
+msgid "Connected Apps"
+msgstr "Applications connectées"
-#: ../../mod/invite.php:144
-msgid ""
-"You are cordially invited to join me and some other close friends on the Red"
-" Matrix - a revolutionary new decentralised communication and information "
-"tool."
-msgstr "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Red - un nouvel outil de communication acentré/décentralisé et révolutionnaire."
+#: ../../mod/settings.php:579
+msgid "Client key starts with"
+msgstr "La clef partagée commence par"
-#: ../../mod/invite.php:146
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Vous devrez fournir ce code d'invitation&nbsp;: $invite_code"
+#: ../../mod/settings.php:580
+msgid "No name"
+msgstr "Sans nom"
-#: ../../mod/invite.php:147
-msgid "Please visit my channel at"
-msgstr "Merci de me rendre visite sur"
+#: ../../mod/settings.php:581
+msgid "Remove authorization"
+msgstr "Révoquer l'autorisation"
-#: ../../mod/invite.php:151
-msgid ""
-"Once you have registered (on ANY Red Matrix site - they are all inter-"
-"connected), please connect with my Red Matrix channel address:"
-msgstr "Une fois inscrit (sur N'IMPORTE QUEL site Red Matrix - ils sont tous inter-connectés), merci de vous relier à l'adresse de mon canal&nbsp;:"
+#: ../../mod/settings.php:592
+msgid "No feature settings configured"
+msgstr "Pas de fonctionnalité à configurer"
-#: ../../mod/invite.php:153
-msgid "Click the [Register] link on the following page to join."
-msgstr "Cliquez le lien [Inscription] sur la page suivante pour nous rejoindre."
+#: ../../mod/settings.php:600
+msgid "Feature Settings"
+msgstr "Extensions"
-#: ../../mod/invite.php:155
-msgid ""
-"For more information about the Red Matrix Project and why it has the "
-"potential to change the internet as we know it, please visit "
-"http://getzot.com"
-msgstr "Pour plus d'information sur le projet Red Matrix, et sa capacité à remodeler Internet, merci de visiter http://getzot.com"
+#: ../../mod/settings.php:623
+msgid "Account Settings"
+msgstr "Compte"
-#: ../../mod/item.php:145
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication initiale."
+#: ../../mod/settings.php:624
+msgid "Password Settings"
+msgstr "Mot de passe"
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "Publication vide défaussée."
+#: ../../mod/settings.php:625
+msgid "New Password:"
+msgstr "Nouveau mot de passe&nbsp;:"
-#: ../../mod/item.php:388
-msgid "Executable content type not permitted to this channel."
-msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."
+#: ../../mod/settings.php:626
+msgid "Confirm:"
+msgstr "Confirmation&nbsp;:"
-#: ../../mod/item.php:835
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvegardée."
+#: ../../mod/settings.php:626
+msgid "Leave password fields blank unless changing"
+msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
-#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../mod/settings.php:628 ../../mod/settings.php:936
+msgid "Email Address:"
+msgstr "Adresse de courriel&nbsp;:"
-#: ../../mod/item.php:1182
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racine\"."
+#: ../../mod/settings.php:629
+msgid "Remove Account"
+msgstr "Supprimer le compte"
+
+#: ../../mod/settings.php:630 ../../mod/settings.php:999
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Attention&nbsp;: cette action est permanente et irréversible."
+
+#: ../../mod/settings.php:646
+msgid "Off"
+msgstr "Inactif"
+
+#: ../../mod/settings.php:646
+msgid "On"
+msgstr "Actif"
+
+#: ../../mod/settings.php:653
+msgid "Additional Features"
+msgstr "Fonctionnalités additionnelles"
+
+#: ../../mod/settings.php:678
+msgid "Connector Settings"
+msgstr "Connecteurs"
+
+#: ../../mod/settings.php:708 ../../mod/admin.php:390
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème spécifique aux périphériques mobiles"
-#: ../../mod/item.php:1188
+#: ../../mod/settings.php:717
#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Vous avez atteint votre limite de %1$.0f pages web."
+msgid "%s - (Experimental)"
+msgstr "%s - (Expérimental)"
-#: ../../mod/menu.php:21
-msgid "Menu updated."
-msgstr "Menu mis à jour."
+#: ../../mod/settings.php:747
+msgid "Display Settings"
+msgstr "Affichage"
-#: ../../mod/menu.php:25
-msgid "Unable to update menu."
-msgstr "Impossible de mettre le menu à jour."
+#: ../../mod/settings.php:753
+msgid "Display Theme:"
+msgstr "Thème&nbsp;:"
-#: ../../mod/menu.php:30
-msgid "Menu created."
-msgstr "Menu créé."
+#: ../../mod/settings.php:754
+msgid "Mobile Theme:"
+msgstr "Thème mobile&nbsp;:"
-#: ../../mod/menu.php:34
-msgid "Unable to create menu."
-msgstr "Impossible de créer le menu."
+#: ../../mod/settings.php:755
+msgid "Update browser every xx seconds"
+msgstr "Rafraîchir le navigateur toutes les xx secondes"
-#: ../../mod/menu.php:57
-msgid "Manage Menus"
-msgstr "Gérer les menus"
+#: ../../mod/settings.php:755
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 secondes, pas de maximum"
-#: ../../mod/menu.php:60
-msgid "Drop"
-msgstr "Supprimer"
+#: ../../mod/settings.php:756
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
-#: ../../mod/menu.php:62
-msgid "Create a new menu"
-msgstr "Créer un nouveau menu"
+#: ../../mod/settings.php:756
+msgid "Maximum of 100 items"
+msgstr "100 éléments au maximum"
-#: ../../mod/menu.php:63
-msgid "Delete this menu"
-msgstr "Supprimer ce menu"
+#: ../../mod/settings.php:757
+msgid "Don't show emoticons"
+msgstr "Ne pas montrer les frimousses/émoticones"
-#: ../../mod/menu.php:64 ../../mod/menu.php:109
-msgid "Edit menu contents"
-msgstr "Éditer le contenu du menu"
+#: ../../mod/settings.php:758
+msgid "System Page Layout Editor - (advanced)"
+msgstr "Agencements des pages système - (avancé)"
-#: ../../mod/menu.php:65
-msgid "Edit this menu"
-msgstr "Éditer le menu"
+#: ../../mod/settings.php:793
+msgid "Nobody except yourself"
+msgstr "Personne sauf vous"
-#: ../../mod/menu.php:80
-msgid "New Menu"
-msgstr "Nouveau menu"
+#: ../../mod/settings.php:794
+msgid "Only those you specifically allow"
+msgstr "Seulement ceux que vous autorisez spécifiquement"
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Menu name"
-msgstr "Nom du menu"
+#: ../../mod/settings.php:795
+msgid "Approved connections"
+msgstr "Contacts Approuvés"
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Must be unique, only seen by you"
-msgstr "Doit être unique, ne sera vu que par vous"
+#: ../../mod/settings.php:796
+msgid "Any connections"
+msgstr "Tous les contacts"
-#: ../../mod/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title"
-msgstr "Titre du menu"
+#: ../../mod/settings.php:797
+msgid "Anybody on this website"
+msgstr "Tous les utilisateurs du hub"
-#: ../../mod/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title as seen by others"
-msgstr "Titre du menu tel que vu par les visiteurs"
+#: ../../mod/settings.php:798
+msgid "Anybody in this network"
+msgstr "Tous les utilisateurs sur ce réseau"
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Allow bookmarks"
-msgstr "Autoriser les marque-pages"
+#: ../../mod/settings.php:799
+msgid "Anybody authenticated"
+msgstr "Tous les utilisateurs authentifiés"
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Menu may be used to store saved bookmarks"
-msgstr "Le menu pourra être utilisé pour stocker des marque-pages"
+#: ../../mod/settings.php:800
+msgid "Anybody on the internet"
+msgstr "Tous les utilisateurs d'Internet"
-#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Créer"
+#: ../../mod/settings.php:877
+msgid "Publish your default profile in the network directory"
+msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
-#: ../../mod/menu.php:92 ../../mod/mitem.php:14
-msgid "Menu not found."
-msgstr "Menu introuvable."
+#: ../../mod/settings.php:877 ../../mod/settings.php:882
+#: ../../mod/settings.php:953 ../../mod/api.php:106 ../../mod/profiles.php:493
+#: ../../mod/admin.php:420
+msgid "No"
+msgstr "Non"
-#: ../../mod/menu.php:98
-msgid "Menu deleted."
-msgstr "Menu supprimé."
+#: ../../mod/settings.php:877 ../../mod/settings.php:882
+#: ../../mod/settings.php:953 ../../mod/api.php:105 ../../mod/profiles.php:492
+#: ../../mod/admin.php:422
+msgid "Yes"
+msgstr "Oui"
-#: ../../mod/menu.php:100
-msgid "Menu could not be deleted."
-msgstr "Impossible de supprimer le menu."
+#: ../../mod/settings.php:882
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux membres?"
-#: ../../mod/menu.php:106
-msgid "Edit Menu"
-msgstr "Éditer le menu"
+#: ../../mod/settings.php:886 ../../mod/profile_photo.php:365
+msgid "or"
+msgstr "ou"
-#: ../../mod/menu.php:108
-msgid "Add or remove entries to this menu"
-msgstr "Ajouter/supprimer des entrées à ce menu"
+#: ../../mod/settings.php:891
+msgid "Your channel address is"
+msgstr "Voici l'adresse de votre canal"
-#: ../../mod/menu.php:114 ../../mod/mitem.php:186
-msgid "Modify"
-msgstr "Modifier"
+#: ../../mod/settings.php:925
+msgid "Channel Settings"
+msgstr "Canal"
-#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
-#: ../../mod/dirprofile.php:181
-msgid "Not found."
-msgstr "Introuvable."
+#: ../../mod/settings.php:934
+msgid "Basic Settings"
+msgstr "Basique"
-#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
-#: ../../mod/blocks.php:96
-msgid "View"
-msgstr "Vue"
+#: ../../mod/settings.php:937
+msgid "Your Timezone:"
+msgstr "Fureau Horaire&nbsp;:"
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../mod/settings.php:938
+msgid "Default Post Location:"
+msgstr "Emplacement géographique par défaut&nbsp;:"
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:"
+#: ../../mod/settings.php:938
+msgid "Geographical location to display on your posts"
+msgstr "Emplacement géographique à afficher sur vos publications"
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../mod/settings.php:939
+msgid "Use Browser Location:"
+msgstr "Utiliser la géolocalisation fournie par le navigateur&nbsp;:"
-#: ../../mod/api.php:104
+#: ../../mod/settings.php:941
+msgid "Adult Content"
+msgstr "Contenu \"adulte\""
+
+#: ../../mod/settings.php:941
msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec l'étiquette <em>#NSFW</em> - Not Safe For Work)"
-#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "Yes"
-msgstr "Oui"
+#: ../../mod/settings.php:943
+msgid "Security and Privacy Settings"
+msgstr "Réglages de Sécurité et vie privée"
-#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "No"
-msgstr "Non"
+#: ../../mod/settings.php:945
+msgid "Hide my online presence"
+msgstr "Cacher ma présence en ligne"
-#: ../../mod/apps.php:8
-msgid "No installed applications."
-msgstr "Aucune application installée."
+#: ../../mod/settings.php:945
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
-#: ../../mod/apps.php:13
-msgid "Applications"
-msgstr "Applications"
+#: ../../mod/settings.php:947
+msgid "Simple Privacy Settings:"
+msgstr "Réglages simples&nbsp;:"
-#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr "Éditer la contribution"
+#: ../../mod/settings.php:948
+msgid ""
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
+msgstr "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>"
-#: ../../mod/cloud.php:112
-msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
-msgstr "Red Matrix - Pour les invités: Username={votre courriel}, MDP=+++"
+#: ../../mod/settings.php:949
+msgid ""
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
+msgstr "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>"
-#: ../../mod/bookmarks.php:38
-msgid "Bookmark added"
-msgstr "Marque-page ajouté"
+#: ../../mod/settings.php:950
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
-#: ../../mod/bookmarks.php:53
-msgid "My Bookmarks"
-msgstr "Mes marque-pages"
+#: ../../mod/settings.php:951
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
-#: ../../mod/bookmarks.php:64
-msgid "My Connections Bookmarks"
-msgstr "Marque-pages de mes relations"
+#: ../../mod/settings.php:953
+msgid "Allow others to tag your posts"
+msgstr "Autoriser les autres à \"étiqueté\" vos publications"
-#: ../../mod/subthread.php:105
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit %3$s de %2$s"
+#: ../../mod/settings.php:953
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr "Souvent utilisé par la communauté pour distinguer le contenu innaproprié"
-#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
-#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
-#: ../../mod/update_community.php:18
-msgid "[Embedded content - reload page to view]"
-msgstr "[Contenu embarqué - rechargez la page pour le voir]"
+#: ../../mod/settings.php:955
+msgid "Advanced Privacy Settings"
+msgstr "Réglages avancés"
-#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
-msgid "Channel not found."
-msgstr "Canal introuvable."
+#: ../../mod/settings.php:957
+msgid "Expire other channel content after this many days"
+msgstr "Faire expirer le contenu des autres canaux après n jours"
-#: ../../mod/chanview.php:93
-msgid "toggle full screen mode"
-msgstr "(dés)activer le mode plein-écran"
+#: ../../mod/settings.php:957
+msgid "0 or blank prevents expiration"
+msgstr "0, ou vide, pour ne pas faire expirer"
-#: ../../mod/tagger.php:98
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s"
+#: ../../mod/settings.php:958
+msgid "Maximum Friend Requests/Day:"
+msgstr "Nombre maximum de mises en relation par jour&nbsp;:"
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
-msgid "You must be logged in to see this page."
-msgstr "Vous devez vous connecter pour voir cette page."
+#: ../../mod/settings.php:958
+msgid "May reduce spam activity"
+msgstr "Contribue à réduire l'impact des indésirables"
-#: ../../mod/chat.php:163
-msgid "Leave Room"
-msgstr "Quitter le salon"
+#: ../../mod/settings.php:959
+msgid "Default Post Permissions"
+msgstr "Permissions par défaut des publications"
-#: ../../mod/chat.php:164
-msgid "I am away right now"
-msgstr "Je suis momentanément absent"
+#: ../../mod/settings.php:971
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
-#: ../../mod/chat.php:165
-msgid "I am online"
-msgstr "Je suis en ligne"
+#: ../../mod/settings.php:971
+msgid "Useful to reduce spamming"
+msgstr "Utile pour réduire les indésirables"
-#: ../../mod/chat.php:189 ../../mod/chat.php:209
-msgid "New Chatroom"
-msgstr "Nouveau salon"
+#: ../../mod/settings.php:974
+msgid "Notification Settings"
+msgstr "Notifications"
-#: ../../mod/chat.php:190
-msgid "Chatroom Name"
-msgstr "Nom du salon"
+#: ../../mod/settings.php:975
+msgid "By default post a status message when:"
+msgstr "Par défaut, publier un statut quand:"
-#: ../../mod/chat.php:205
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "Salons de %1$s"
+#: ../../mod/settings.php:976
+msgid "accepting a friend request"
+msgstr "vous acceptez une mise en relation"
-#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
-#: ../../mod/directory.php:15 ../../mod/display.php:9
-#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
-#: ../../mod/photos.php:443
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../mod/settings.php:977
+msgid "joining a forum/community"
+msgstr "vous joignez un forum ou à une communauté"
-#: ../../mod/viewconnections.php:43
-msgid "No connections."
-msgstr "Pas de relations."
+#: ../../mod/settings.php:978
+msgid "making an <em>interesting</em> profile change"
+msgstr "vous faites une modification <em>intéressante</em> de votre profil"
-#: ../../mod/viewconnections.php:55
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../mod/settings.php:979
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand&nbsp;:"
-#: ../../mod/viewconnections.php:70
-msgid "View Connnections"
-msgstr "Voir les relations"
+#: ../../mod/settings.php:980
+msgid "You receive a connection request"
+msgstr "Vous recevez une demande de mise en relation"
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette retirée"
+#: ../../mod/settings.php:981
+msgid "Your connections are confirmed"
+msgstr "Vous relations sont confirmées"
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Retirer une étiquette à l'élément"
+#: ../../mod/settings.php:982
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un a écrit sur votre mur"
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Étiquette à retirer&nbsp;:"
+#: ../../mod/settings.php:983
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un a commenté sur vos publications"
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
-msgid "Remove"
-msgstr "Retirer"
+#: ../../mod/settings.php:984
+msgid "You receive a private message"
+msgstr "Vous recevez un message privé"
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
-msgid "Continue"
-msgstr "Continuer"
+#: ../../mod/settings.php:985
+msgid "You receive a friend suggestion"
+msgstr "Vous recevez une suggestion d'amitié/relation"
-#: ../../mod/connect.php:84
-msgid "Premium Channel Setup"
-msgstr "Configuration du canal Premium"
+#: ../../mod/settings.php:986
+msgid "You are tagged in a post"
+msgstr "Vous êtes étiqueté dans une publication"
-#: ../../mod/connect.php:86
-msgid "Enable premium channel connection restrictions"
-msgstr "Activer les restrictions liées au canal premium"
+#: ../../mod/settings.php:987
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous êtes cogné/pointé/etc. dans une publication"
-#: ../../mod/connect.php:87
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
-msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
+#: ../../mod/settings.php:990
+msgid "Advanced Account/Page Type Settings"
+msgstr "Type de page/Compte (avancé)"
-#: ../../mod/connect.php:89 ../../mod/connect.php:109
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
-msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
+#: ../../mod/settings.php:991
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
-#: ../../mod/connect.php:90
+#: ../../mod/settings.php:994
msgid ""
-"Potential connections will then see the following text before proceeding:"
-msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:"
+"Please enable expert mode (in <a href=\"settings/features\">Settings > "
+"Additional features</a>) to adjust!"
+msgstr "Mode expert requis (<a href=\"settings/features\">Réglages > Fonctions supplémentaires</a>) svp ajuster!"
-#: ../../mod/connect.php:91 ../../mod/connect.php:112
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided"
-" on this page."
-msgstr "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées sur cette page."
+#: ../../mod/settings.php:995
+msgid "Miscellaneous Settings"
+msgstr "Divers"
-#: ../../mod/connect.php:100
-msgid "(No specific instructions have been provided by the channel owner.)"
-msgstr "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)"
+#: ../../mod/settings.php:997
+msgid "Personal menu to display in your channel pages"
+msgstr "Menu personnel tel qu'il apparaîtra sur les pages de votre canal"
-#: ../../mod/connect.php:108
-msgid "Restricted or Premium Channel"
-msgstr "Canal Premium ou restreint"
+#: ../../mod/settings.php:998
+msgid "Remove this channel"
+msgstr "Supprimer ce canal"
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Aucun délégué potentiel n'a été trouvé pour cette page."
+#: ../../mod/poke.php:159
+msgid "Poke/Prod"
+msgstr "Cogner/Solliciter"
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Gestion des délégués de la page"
+#: ../../mod/poke.php:160
+msgid "poke, prod or do other things to somebody"
+msgstr "Cogner, pointer, et autres choses à faire à quelqu'un"
-#: ../../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égués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle."
+#: ../../mod/poke.php:161
+msgid "Recipient"
+msgstr "Destinataire"
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Actuels gestionnaires de pages"
+#: ../../mod/poke.php:162
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisir quoi lui faire"
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Actuels délégués"
+#: ../../mod/poke.php:165
+msgid "Make this post private"
+msgstr "Rendre cette contribution privée"
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Délégués potentiels"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Ajouter"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:"
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Aucune entrée."
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
-#: ../../mod/chatsvc.php:102
-msgid "Away"
-msgstr "Absent"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
-#: ../../mod/chatsvc.php:106
-msgid "Online"
-msgstr "En ligne"
+#: ../../mod/post.php:229
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Authentification magique bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et réessayer."
+
+#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:178
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Bienvenue %s. L'authentification magique a fonctionné."
#: ../../mod/attach.php:9
msgid "Item not available."
msgstr "Élément indisponible."
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "Entrée de menu mis-à-jour."
-
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Impossible de mettre l'entrée de menu à jour."
+#: ../../mod/probe.php:23 ../../mod/probe.php:29
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "Récupération d'URL échouée&nbsp;: %1$s"
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "Entrée de menu ajouté."
+#: ../../mod/block.php:27 ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Élément invalide."
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Impossible d'ajouter l'entrée de menu."
+#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47
+#: ../../mod/home.php:54 ../../mod/wall_upload.php:28
+msgid "Channel not found."
+msgstr "Canal introuvable."
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Gérer les entrées de menu"
+#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../mod/help.php:72 ../../index.php:236
+msgid "Page not found."
+msgstr "Page introuvable."
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Éditer le menu"
+#: ../../mod/profile_photo.php:108
+msgid "Image uploaded but image cropping failed."
+msgstr "L'image a été téléversée, mais le recadrage a échoué."
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Éditer l'entrée"
+#: ../../mod/profile_photo.php:161
+msgid "Image resize failed."
+msgstr "Le redimensionnement de l'image a échoué."
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Supprimer l'entrée"
+#: ../../mod/profile_photo.php:205
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Nouvelle entrée"
+#: ../../mod/profile_photo.php:232
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "L'image dépasse la taille limite de %d"
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Éditer ce bloc de menu"
+#: ../../mod/profile_photo.php:241
+msgid "Unable to process image."
+msgstr "Impossible de traîter l'image."
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Ajouter une entrée au menu"
+#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339
+msgid "Photo not available."
+msgstr "Photo inaccessible."
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Supprimer cet entrée du menu"
+#: ../../mod/profile_photo.php:358
+msgid "Upload File:"
+msgstr "Fichier&nbsp;:"
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Éditer cette entrée du menu"
+#: ../../mod/profile_photo.php:359
+msgid "Select a profile:"
+msgstr "Choisir un profil&nbsp;:"
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Nouvelle entrée de menu"
+#: ../../mod/profile_photo.php:360
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Permissions de l'entrée de menu"
+#: ../../mod/profile_photo.php:365
+msgid "skip this step"
+msgstr "passer cette étape"
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
+#: ../../mod/profile_photo.php:365
+msgid "select a photo from your photo albums"
+msgstr "choisir une photo dans vos albums"
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Texte du lien"
+#: ../../mod/profile_photo.php:379
+msgid "Crop Image"
+msgstr "Recadrer l'image"
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL du lien"
+#: ../../mod/profile_photo.php:380
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Merci d'ajuster le cadre pour une visualisation optimale."
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Utiliser l'authentification automagique de Red, si possible"
+#: ../../mod/profile_photo.php:382
+msgid "Done Editing"
+msgstr "J'ai terminé"
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Ouvrir le lien dans une nouvelle fenêtre"
+#: ../../mod/profile_photo.php:425
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Ordre dans la liste"
+#: ../../mod/profile_photo.php:427
+msgid "Image upload failed."
+msgstr "Le téléversement a échoué."
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Higher numbers will sink to bottom of listing"
-msgstr "Les nombres les plus élevés seront descendus au bas de la liste"
+#: ../../mod/profile_photo.php:436
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "La réduction de taille [%s] a échoué."
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "Entrée de menu introuvable."
+#: ../../mod/blocks.php:66
+msgid "Block Name"
+msgstr "Nom du Bloc"
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "Entrée de menu supprimée."
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:472
+msgid "Profile not found."
+msgstr "Profil introuvable."
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Impossible de supprimer l'entrée de menu."
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil supprimé."
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Éditer l'entrée de menu"
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Profil-"
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "Nouveau profil créé."
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Éditeur de visibilité de profil"
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "Profil impossible à cloner."
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Statut marital"
-#: ../../mod/profperm.php:134 ../../mod/connections.php:250
-msgid "All Connections"
-msgstr "Toutes les relations"
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Partenaire"
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr "Collection créée."
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Aime"
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Impossible de créer la collection."
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Déteste"
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Collection mise-à-jour."
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Créez une collection de canaux."
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religion/Croyance"
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Nom de la collection&nbsp;:"
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Opinions politiques"
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
-msgstr "Les membres sont visibles par les autres canaux"
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Sexe/Genre"
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Collection supprimée."
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Impossible de supprimer la collection."
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Site Internet"
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Éditeur de collection"
+#: ../../mod/profiles.php:333
+msgid "Interests"
+msgstr "Centres d'intérêt"
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/profiles.php:337 ../../mod/admin.php:893
+msgid "Address"
+msgstr "Adresse"
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Tous canaux connectés"
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25
+msgid "Location"
+msgstr "Emplacement"
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
-msgstr "Cliquer sur un canal pour ajouter ou supprimer"
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "Profil mis à jour."
-#: ../../mod/admin.php:48
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvegardés."
+#: ../../mod/profiles.php:491
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?"
-#: ../../mod/admin.php:88 ../../mod/admin.php:430
-msgid "Site"
-msgstr "Site"
+#: ../../mod/profiles.php:514
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
-msgid "Users"
-msgstr "Utilisateurs"
+#: ../../mod/profiles.php:516
+msgid "View this profile"
+msgstr "Voir le profil"
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
-msgid "Plugins"
-msgstr "Extensions"
+#: ../../mod/profiles.php:517
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../mod/profiles.php:518
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil avec ces réglages"
-#: ../../mod/admin.php:92 ../../mod/admin.php:529
-msgid "Server"
-msgstr "Serveur"
+#: ../../mod/profiles.php:519
+msgid "Clone this profile"
+msgstr "Cloner le profil"
-#: ../../mod/admin.php:93
-msgid "DB updates"
-msgstr "MàJ BD"
+#: ../../mod/profiles.php:520
+msgid "Delete this profile"
+msgstr "Supprimer le profil"
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
-msgid "Logs"
-msgstr "Journaux"
+#: ../../mod/profiles.php:521
+msgid "Profile Name:"
+msgstr "Nom du profil&nbsp;:"
-#: ../../mod/admin.php:113
-msgid "Plugin Features"
-msgstr "Fonctionnalités liées aux extensions"
+#: ../../mod/profiles.php:522
+msgid "Your Full Name:"
+msgstr "Votre nom complet&nbsp;:"
-#: ../../mod/admin.php:115
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente"
+#: ../../mod/profiles.php:523
+msgid "Title/Description:"
+msgstr "Titre/description&nbsp;:"
-#: ../../mod/admin.php:189
-msgid "Message queues"
-msgstr "File des messages"
+#: ../../mod/profiles.php:524
+msgid "Your Gender:"
+msgstr "Sexe/Genre&nbsp;:"
-#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/profiles.php:525
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Date de naissance (%s)&nbsp;:"
-#: ../../mod/admin.php:195
-msgid "Summary"
-msgstr "Résumé"
+#: ../../mod/profiles.php:526
+msgid "Street Address:"
+msgstr "Adresse postale&nbsp;:"
-#: ../../mod/admin.php:197
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: ../../mod/profiles.php:527
+msgid "Locality/City:"
+msgstr "Ville/Localité&nbsp;:"
-#: ../../mod/admin.php:199 ../../mod/admin.php:532
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
+#: ../../mod/profiles.php:528
+msgid "Postal/Zip Code:"
+msgstr "Code postal&nbsp;:"
-#: ../../mod/admin.php:200
-msgid "Version"
-msgstr "Version"
+#: ../../mod/profiles.php:529
+msgid "Country:"
+msgstr "Pays&nbsp;:"
-#: ../../mod/admin.php:202 ../../mod/admin.php:533
-msgid "Active plugins"
-msgstr "Extensions actives"
+#: ../../mod/profiles.php:530
+msgid "Region/State:"
+msgstr "Région/Province/État&nbsp;:"
-#: ../../mod/admin.php:350
-msgid "Site settings updated."
-msgstr "Réglages du site sauvegardés."
+#: ../../mod/profiles.php:531
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
-#: ../../mod/admin.php:379 ../../mod/settings.php:709
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème spécifique aux périphériques mobiles"
+#: ../../mod/profiles.php:532
+msgid "Who: (if applicable)"
+msgstr "Avec&nbsp;: (si pertinent)"
-#: ../../mod/admin.php:381
-msgid "No special theme for accessibility"
-msgstr "Pas de thème spécifique pour l'accessibilité"
+#: ../../mod/profiles.php:533
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com"
-#: ../../mod/admin.php:409
-msgid "Closed"
-msgstr "Fermé"
+#: ../../mod/profiles.php:534
+msgid "Since [date]:"
+msgstr "Depuis [date]&nbsp;:"
-#: ../../mod/admin.php:410
-msgid "Requires approval"
-msgstr "Après approbation"
+#: ../../mod/profiles.php:536
+msgid "Homepage URL:"
+msgstr "URL de mon site Internet&nbsp;:"
-#: ../../mod/admin.php:411
-msgid "Open"
-msgstr "Ouvert"
+#: ../../mod/profiles.php:539
+msgid "Religious Views:"
+msgstr "Opinions religieuses&nbsp;:"
-#: ../../mod/admin.php:416
-msgid "Private"
-msgstr "Privé"
+#: ../../mod/profiles.php:540
+msgid "Keywords:"
+msgstr "Mots-clefs&nbsp;:"
-#: ../../mod/admin.php:417
-msgid "Paid Access"
-msgstr "Accès payant"
+#: ../../mod/profiles.php:543
+msgid "Example: fishing photography software"
+msgstr "Exemple&nbsp;: escrime photographie modélisme"
-#: ../../mod/admin.php:418
-msgid "Free Access"
-msgstr "Accès gratuit"
+#: ../../mod/profiles.php:544
+msgid "Used in directory listings"
+msgstr "Utilisé pour le référencement dans l'annuaire"
-#: ../../mod/admin.php:419
-msgid "Tiered Access"
-msgstr "Accès par paliers"
+#: ../../mod/profiles.php:545
+msgid "Tell us about yourself..."
+msgstr "Parlez nous de vous..."
-#: ../../mod/admin.php:432 ../../mod/register.php:189
-msgid "Registration"
-msgstr "Inscription"
+#: ../../mod/profiles.php:546
+msgid "Hobbies/Interests"
+msgstr "Loisirs/Centres d'intêret"
-#: ../../mod/admin.php:433
-msgid "File upload"
-msgstr "Envoi de fichier"
+#: ../../mod/profiles.php:547
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées et réseaux sociaux"
-#: ../../mod/admin.php:434
-msgid "Policies"
-msgstr "Stratégies"
+#: ../../mod/profiles.php:548
+msgid "My other channels"
+msgstr "Mes autres canaux"
-#: ../../mod/admin.php:435
-msgid "Advanced"
-msgstr "Avancé"
+#: ../../mod/profiles.php:549
+msgid "Musical interests"
+msgstr "Goûts musicaux"
-#: ../../mod/admin.php:439
-msgid "Site name"
-msgstr "Nom du site"
+#: ../../mod/profiles.php:550
+msgid "Books, literature"
+msgstr "Littérature"
-#: ../../mod/admin.php:440
-msgid "Banner/Logo"
-msgstr "Bannière/logo"
+#: ../../mod/profiles.php:551
+msgid "Television"
+msgstr "Télévision"
-#: ../../mod/admin.php:441
-msgid "Administrator Information"
-msgstr "Information sur l'administration"
+#: ../../mod/profiles.php:552
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
-#: ../../mod/admin.php:441
-msgid ""
-"Contact information for site administrators. Displayed on siteinfo page. "
-"BBCode can be used here"
-msgstr "Coordonnées de l'administration du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"
+#: ../../mod/profiles.php:553
+msgid "Love/romance"
+msgstr "Amour/Romance"
-#: ../../mod/admin.php:442
-msgid "System language"
-msgstr "Langue du système"
+#: ../../mod/profiles.php:554
+msgid "Work/employment"
+msgstr "Travail/Occupation"
-#: ../../mod/admin.php:443
-msgid "System theme"
-msgstr "Thème du système"
+#: ../../mod/profiles.php:555
+msgid "School/education"
+msgstr "Études"
-#: ../../mod/admin.php:443
+#: ../../mod/profiles.php:560
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 - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>"
+"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>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet."
-#: ../../mod/admin.php:444
-msgid "Mobile system theme"
-msgstr "Thème système pour mobile"
+#: ../../mod/profiles.php:570 ../../mod/directory.php:143
+#: ../../mod/dirprofile.php:92
+msgid "Age: "
+msgstr "Age&nbsp;:"
-#: ../../mod/admin.php:444
-msgid "Theme for mobile devices"
-msgstr "Thème dédié aux périphériques mobiles"
+#: ../../mod/profiles.php:609
+msgid "Edit/Manage Profiles"
+msgstr "Éditer/gérer les profils"
-#: ../../mod/admin.php:445
-msgid "Accessibility system theme"
-msgstr "Thème système pour l'accessibilité"
+#: ../../mod/profiles.php:610
+msgid "Add profile things"
+msgstr "Ajouter des choses de profil"
-#: ../../mod/admin.php:445
-msgid "Accessibility theme"
-msgstr "Thème pour l'accessibilité"
+#: ../../mod/profiles.php:611
+msgid "Include desirable objects in your profile"
+msgstr "Incluez des objets souhaitables dans votre profil"
-#: ../../mod/admin.php:446
-msgid "Channel to use for this website's static pages"
-msgstr "Canal à utiliser pour les pages statiques de ce site"
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr "Favoris ajouté"
-#: ../../mod/admin.php:446
-msgid "Site Channel"
-msgstr "Canal du site"
+#: ../../mod/bookmarks.php:58
+msgid "My Bookmarks"
+msgstr "Mes Favoris"
-#: ../../mod/admin.php:448
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: ../../mod/bookmarks.php:69
+msgid "My Connections Bookmarks"
+msgstr "Favoris de mes relations"
-#: ../../mod/admin.php:448
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
-#: ../../mod/admin.php:449
-msgid "Register policy"
-msgstr "Politique d'inscription"
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
+msgstr "Éditeur de visibilité de profil"
-#: ../../mod/admin.php:450
-msgid "Access policy"
-msgstr "Politique d'accès"
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
-#: ../../mod/admin.php:451
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: ../../mod/profperm.php:123
+msgid "Visible To"
+msgstr "Visible par"
-#: ../../mod/admin.php:451
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription."
+#: ../../mod/profperm.php:139 ../../mod/connections.php:279
+msgid "All Connections"
+msgstr "Toutes les relations"
-#: ../../mod/admin.php:452
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: ../../mod/pubsites.php:16
+msgid "Public Sites"
+msgstr "Sites publics"
-#: ../../mod/admin.php:452
+#: ../../mod/pubsites.php:19
msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps."
+"The listed sites allow public registration into the Red Matrix. All sites in"
+" the matrix are interlinked so membership on any of them conveys membership "
+"in the matrix as a whole. Some sites may require subscription or provide "
+"tiered service plans. The provider links <strong>may</strong> provide "
+"additional details."
+msgstr "Les sites listés autorisent l'inscription pour tous. Tous sont liés entre eux, de manière à ce qu'un compte sur un seul d'entre eux soit valable sur l'ensemble de la matrice. Certains sites peuvent demander des frais de souscriptions, ou fournir des forfaits ajustés. Le lien \"fournisseur\" <strong>peut</strong> vous donner des détails supplémentaires."
-#: ../../mod/admin.php:453
-msgid "Allowed friend domains"
-msgstr "Domaines amicaux"
+#: ../../mod/pubsites.php:25
+msgid "Site URL"
+msgstr "URL du site"
-#: ../../mod/admin.php:453
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
+#: ../../mod/pubsites.php:25
+msgid "Access Type"
+msgstr "Type d'accès"
-#: ../../mod/admin.php:454
-msgid "Allowed email domains"
-msgstr "Domaines de courriels amicaux"
+#: ../../mod/pubsites.php:25
+msgid "Registration Policy"
+msgstr "Politique d'inscription"
-#: ../../mod/admin.php:454
-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 noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
+#: ../../mod/channel.php:25 ../../mod/chat.php:19
+msgid "You must be logged in to see this page."
+msgstr "Vous devez vous connecter pour voir cette page."
-#: ../../mod/admin.php:455
-msgid "Block public"
-msgstr "Bloquer public"
+#: ../../mod/channel.php:86
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Permissions insuffisantes. Demande redirigée à la page du profil."
-#: ../../mod/admin.php:455
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes."
+#: ../../mod/rbmark.php:88
+msgid "Select a bookmark folder"
+msgstr "Choisir un dossier de favoris"
-#: ../../mod/admin.php:456
-msgid "Force publish"
-msgstr "Forcer publication"
+#: ../../mod/rbmark.php:93
+msgid "Save Bookmark"
+msgstr "Sauver le favoris"
-#: ../../mod/admin.php:456
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."
+#: ../../mod/rbmark.php:94
+msgid "URL of bookmark"
+msgstr "URL du favoris"
-#: ../../mod/admin.php:457
-msgid "No login on Homepage"
-msgstr "Pas de connexion depuis la page d'accueil"
+#: ../../mod/rbmark.php:95 ../../mod/appman.php:93
+msgid "Description"
+msgstr "Description"
-#: ../../mod/admin.php:457
-msgid ""
-"Check to hide the login form from your sites homepage when visitors arrive "
-"who are not logged in (e.g. when you put the content of the homepage in via "
-"the site channel)."
-msgstr "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site)."
+#: ../../mod/rbmark.php:99
+msgid "Or enter new bookmark folder name"
+msgstr "Ou entrez le nom d'un nouveau dossier"
-#: ../../mod/admin.php:459
-msgid "Proxy user"
-msgstr "Utilisateurs du proxy"
+#: ../../mod/chat.php:167
+msgid "Room not found"
+msgstr "Salon introuvable"
-#: ../../mod/admin.php:460
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: ../../mod/chat.php:178
+msgid "Leave Room"
+msgstr "Quitter le salon"
-#: ../../mod/admin.php:461
-msgid "Network timeout"
-msgstr "Délai maximal du réseau"
+#: ../../mod/chat.php:179
+msgid "Delete This Room"
+msgstr "Supprimer le salon"
-#: ../../mod/admin.php:461
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)."
+#: ../../mod/chat.php:180
+msgid "I am away right now"
+msgstr "Je suis momentanément absent"
-#: ../../mod/admin.php:462
-msgid "Delivery interval"
-msgstr "Intervalle de distribution"
+#: ../../mod/chat.php:181
+msgid "I am online"
+msgstr "Je suis en ligne"
-#: ../../mod/admin.php:462
-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 "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."
+#: ../../mod/chat.php:183
+msgid "Bookmark this room"
+msgstr "Marquer ce salon"
-#: ../../mod/admin.php:463
-msgid "Poll interval"
-msgstr "Intervalle de scrutation"
+#: ../../mod/chat.php:207 ../../mod/chat.php:229
+msgid "New Chatroom"
+msgstr "Nouveau salon"
-#: ../../mod/admin.php:463
+#: ../../mod/chat.php:208
+msgid "Chatroom Name"
+msgstr "Nom du salon"
+
+#: ../../mod/chat.php:225
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Salons de %1$s"
+
+#: ../../mod/register.php:43
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain."
+
+#: ../../mod/register.php:49
msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."
+"Please indicate acceptance of the Terms of Service. Registration failed."
+msgstr "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué."
-#: ../../mod/admin.php:464
-msgid "Maximum Load Average"
-msgstr "Charge moyenne maximale"
+#: ../../mod/register.php:83
+msgid "Passwords do not match."
+msgstr "Les mots de passe ne concordent pas."
-#: ../../mod/admin.php:464
+#: ../../mod/register.php:116
msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50."
+"Registration successful. Please check your email for validation "
+"instructions."
+msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."
-#: ../../mod/admin.php:520
-msgid "No server found"
-msgstr "Serveur introuvable"
+#: ../../mod/register.php:122
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription est en attente de l'approbation d'un administrateur."
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
-msgid "ID"
-msgstr "ID"
+#: ../../mod/register.php:125
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traîtée."
-#: ../../mod/admin.php:527
-msgid "for channel"
-msgstr "pour le canal"
+#: ../../mod/register.php:162
+msgid "Registration on this site/hub is by approval only."
+msgstr "L'inscription sur cette instance/ce site est soumis à une modération."
-#: ../../mod/admin.php:527
-msgid "on server"
-msgstr "sur le serveur"
+#: ../../mod/register.php:163
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+msgstr "<a href=\"pubsites\">S'inscrire sur un site/hub affilié</a>"
-#: ../../mod/admin.php:527
-msgid "Status"
-msgstr "État"
+#: ../../mod/register.php:171
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain."
-#: ../../mod/admin.php:548
-msgid "Update has been marked successful"
-msgstr "La mise à jour a été marquée comme réussie"
+#: ../../mod/register.php:182
+msgid "Terms of Service"
+msgstr "Règles du Service"
-#: ../../mod/admin.php:558
+#: ../../mod/register.php:188
#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."
+msgid "I accept the %s for this website"
+msgstr "J'accepte %s de ce site"
-#: ../../mod/admin.php:561
+#: ../../mod/register.php:190
#, php-format
-msgid "Update %s was successfully applied."
-msgstr "La mise à jour %s a été appliquée avec succès."
+msgid "I am over 13 years of age and accept the %s for this website"
+msgstr "J'ai plus de 13 ans et j'accepte les %s de ce site"
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."
+#: ../../mod/register.php:204 ../../mod/admin.php:443
+msgid "Registration"
+msgstr "Inscription"
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "La fonction de mise à jour %s est introuvable."
+#: ../../mod/register.php:209
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
-#: ../../mod/admin.php:583
-msgid "No failed updates."
-msgstr "Aucune mise à jour défaillante."
+#: ../../mod/register.php:210
+msgid "Please enter your invitation code"
+msgstr "Merci de saisir votre code d'invitation"
-#: ../../mod/admin.php:587
-msgid "Failed Updates"
-msgstr "Mises à jour défaillantes"
+#: ../../mod/register.php:213
+msgid "Your email address"
+msgstr "Votre adresse de courriel"
-#: ../../mod/admin.php:589
-msgid "Mark success (if update was manually applied)"
-msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"
+#: ../../mod/register.php:214
+msgid "Choose a password"
+msgstr "Choisissez un mot de passe"
-#: ../../mod/admin.php:590
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter de réaliser cette étape de mise à jour automatiquement"
+#: ../../mod/register.php:215
+msgid "Please re-enter your password"
+msgstr "Confirmez-le"
-#: ../../mod/admin.php:616
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utilisateur bloqué/débloqué"
-msgstr[1] "%s utilisateurs bloqués/débloqués"
+#: ../../mod/chatsvc.php:111
+msgid "Away"
+msgstr "Absent"
-#: ../../mod/admin.php:623
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
+#: ../../mod/chatsvc.php:115
+msgid "Online"
+msgstr "En ligne"
-#: ../../mod/admin.php:654
-msgid "Account not found"
-msgstr "Compte introuvable"
+#: ../../mod/regmod.php:12
+msgid "Please login."
+msgstr "Merci de vous connecter."
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+#: ../../mod/cloud.php:115
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Matrice Rouge - Pour les invités: Usager = {votre courriel}, Mot de passe = +++"
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
+msgstr "Supprimer ce Canal"
-#: ../../mod/admin.php:674
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
+#: ../../mod/removeme.php:50
+msgid ""
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
+msgstr "Ceci effacera complètement le canal du réseau. Une fois effacé, un canal ne PEUT PAS être récupéré."
-#: ../../mod/admin.php:739
-msgid "select all"
-msgstr "tout sélectionner"
+#: ../../mod/removeme.php:51
+msgid "Please enter your password for verification:"
+msgstr "Merci de re-saisir votre mot de passe pour vérification&nbsp;:"
-#: ../../mod/admin.php:740
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions en attente d'approbation"
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
+msgstr "Supprimer ce canal ainsi que tous ses clones sur la matrice"
-#: ../../mod/admin.php:741
-msgid "Request date"
-msgstr "Date de la demande"
+#: ../../mod/removeme.php:52
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau"
-#: ../../mod/admin.php:742
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
+#: ../../mod/removeme.php:53
+msgid "Remove Channel"
+msgstr "Enlever le canal"
-#: ../../mod/admin.php:743
-msgid "Approve"
-msgstr "Approuver"
+#: ../../mod/common.php:10
+msgid "No channel."
+msgstr "Pas de canal."
-#: ../../mod/admin.php:744
-msgid "Deny"
-msgstr "Refuser"
+#: ../../mod/common.php:39
+msgid "Common connections"
+msgstr "Relations communes"
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Block"
-msgstr "Bloquer"
+#: ../../mod/common.php:44
+msgid "No connections in common."
+msgstr "Pas de relations en commun."
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
-#: ../../mod/connedit.php:475
-msgid "Unblock"
-msgstr "Débloquer"
+#: ../../mod/rmagic.php:38
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est bien saisi."
-#: ../../mod/admin.php:750
-msgid "Register date"
-msgstr "Date d'inscription"
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
+msgstr "Le message d'erreur était&nbsp;:"
-#: ../../mod/admin.php:750
-msgid "Last login"
-msgstr "Dernière connexion"
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
+msgstr "Échec de l'authentification."
-#: ../../mod/admin.php:750
-msgid "Expires"
-msgstr "Expire"
+#: ../../mod/rmagic.php:82
+msgid "Remote Authentication"
+msgstr "Authentification distante"
-#: ../../mod/admin.php:750
-msgid "Service Class"
-msgstr "Classe de service"
+#: ../../mod/rmagic.php:83
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)"
-#: ../../mod/admin.php:752
-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 seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
+#: ../../mod/rmagic.php:84
+msgid "Authenticate"
+msgstr "Authentifier"
-#: ../../mod/admin.php:753
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Continuer"
+
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Configuration du canal VIP"
+
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Activer les restrictions liées au canal VIP"
+
+#: ../../mod/connect.php:87
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} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ..."
-#: ../../mod/admin.php:794
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+#: ../../mod/connect.php:89 ../../mod/connect.php:109
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:"
-#: ../../mod/admin.php:798
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:"
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
-msgid "Disable"
-msgstr "Désactiver"
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées"
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
-msgid "Enable"
-msgstr "Activer"
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)"
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
-msgid "Toggle"
-msgstr "(Dés)activer"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Canal VIP ou restreint"
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
-msgid "Author: "
-msgstr "Auteur&nbsp;:"
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Groupe introuvable"
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
-msgid "Maintainer: "
-msgstr "Maintenu par&nbsp;:"
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Résultats de recherche pour&nbsp;:"
-#: ../../mod/admin.php:974
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "Collection vide"
-#: ../../mod/admin.php:1033
-msgid "Screenshot"
-msgstr "Aperçu"
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Collection&nbsp;:"
-#: ../../mod/admin.php:1081
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Relation&nbsp;:"
-#: ../../mod/admin.php:1082
-msgid "[Unsupported]"
-msgstr "[Non-supporté]"
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Relation invalide."
-#: ../../mod/admin.php:1109
-msgid "Log settings updated."
-msgstr "Réglages du journal sauvegardés."
+#: ../../mod/connections.php:37 ../../mod/connedit.php:64
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder aux détails du contact."
-#: ../../mod/admin.php:1165
-msgid "Clear"
-msgstr "Vider"
+#: ../../mod/connections.php:51 ../../mod/connedit.php:78
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil sélectionné."
-#: ../../mod/admin.php:1171
-msgid "Debugging"
-msgstr "Débogage"
+#: ../../mod/connections.php:94 ../../mod/connedit.php:131
+msgid "Connection updated."
+msgstr "Connexion mise à jour."
-#: ../../mod/admin.php:1172
-msgid "Log file"
-msgstr "Fichier du journal"
+#: ../../mod/connections.php:96 ../../mod/connedit.php:133
+msgid "Failed to update connection record."
+msgstr "Impossible de mettre à jour les détails de la relation."
-#: ../../mod/admin.php:1172
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de Red."
+#: ../../mod/connections.php:191 ../../mod/connections.php:292
+msgid "Blocked"
+msgstr "Bloqué"
-#: ../../mod/admin.php:1173
-msgid "Log level"
-msgstr "Niveau de journalisation"
+#: ../../mod/connections.php:196 ../../mod/connections.php:299
+msgid "Ignored"
+msgstr "Ignoré"
-#: ../../mod/filer.php:35
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../mod/connections.php:201 ../../mod/connections.php:313
+msgid "Hidden"
+msgstr "Caché"
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../mod/connections.php:206 ../../mod/connections.php:306
+msgid "Archived"
+msgstr "Archivé"
-#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
-#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../mod/connections.php:230 ../../mod/connections.php:245
+msgid "All"
+msgstr "Tout"
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Élément non-éditable"
+#: ../../mod/connections.php:270
+msgid "Suggest new connections"
+msgstr "Suggérer de nouvelles relations"
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Supprimer l'élément?"
+#: ../../mod/connections.php:273
+msgid "New Connections"
+msgstr "Nouvelles relations"
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
-msgid "Insert YouTube video"
-msgstr "Insérer une vidéo YouTube"
+#: ../../mod/connections.php:276
+msgid "Show pending (new) connections"
+msgstr "Voir les (nouvelles) relations en attente"
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
-#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Insérer une vidéo Vorbis [.ogg]"
+#: ../../mod/connections.php:282
+msgid "Show all connections"
+msgstr "Voir toutes les relations"
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
-#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Insérer un son Vorbis [.ogg]"
+#: ../../mod/connections.php:285
+msgid "Unblocked"
+msgstr "Non bloquées"
-#: ../../mod/directory.php:144 ../../mod/profiles.php:561
-#: ../../mod/dirprofile.php:98
-msgid "Age: "
-msgstr "Age&nbsp;:"
+#: ../../mod/connections.php:288
+msgid "Only show unblocked connections"
+msgstr "Ne montrer que les relations non-bloquées"
-#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
-msgid "Gender: "
-msgstr "Sexe/genre&nbsp;:"
+#: ../../mod/connections.php:295
+msgid "Only show blocked connections"
+msgstr "Ne montrer que les relations bloquées"
-#: ../../mod/directory.php:208
-msgid "Finding:"
-msgstr "Recherche&nbsp;:"
+#: ../../mod/connections.php:302
+msgid "Only show ignored connections"
+msgstr "Ne montrer que les relations ignorées"
-#: ../../mod/directory.php:216
-msgid "next page"
-msgstr "page suiv."
+#: ../../mod/connections.php:309
+msgid "Only show archived connections"
+msgstr "Ne montrer que les relations archivées"
-#: ../../mod/directory.php:216
-msgid "previous page"
-msgstr "page préc."
+#: ../../mod/connections.php:316
+msgid "Only show hidden connections"
+msgstr "Ne montrer que les relations cachées"
-#: ../../mod/directory.php:223
-msgid "No entries (some entries may be hidden)."
-msgstr "Pas d'entrées (certaines peuvent être cachées)."
+#: ../../mod/connections.php:368
+#, php-format
+msgid "%1$s [%2$s]"
+msgstr "%1$s [%2$s]"
-#: ../../mod/connedit.php:49 ../../mod/connections.php:37
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder aux détails du contact."
+#: ../../mod/connections.php:369
+msgid "Edit contact"
+msgstr "Éditer contact"
-#: ../../mod/connedit.php:63 ../../mod/connections.php:51
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil sélectionné."
+#: ../../mod/connections.php:390
+msgid "Search your connections"
+msgstr "Chercher parmi vos relations"
-#: ../../mod/connedit.php:107 ../../mod/connections.php:94
-msgid "Connection updated."
-msgstr "Connexion mise à jour."
+#: ../../mod/connections.php:391
+msgid "Finding: "
+msgstr "Recherche&nbsp;:"
-#: ../../mod/connedit.php:109 ../../mod/connections.php:96
-msgid "Failed to update connection record."
-msgstr "Impossible de mettre à jour les détails de la relation."
+#: ../../mod/rpost.php:97 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Éditer la contribution"
-#: ../../mod/connedit.php:204
+#: ../../mod/connedit.php:243
msgid "Could not access address book record."
msgstr "Impossible d'accéder aux détails du carnet d'adresses."
-#: ../../mod/connedit.php:218
+#: ../../mod/connedit.php:257
msgid "Refresh failed - channel is currently unavailable."
msgstr "Actualisation impossible - le canal est momentanément indisponible."
-#: ../../mod/connedit.php:225
+#: ../../mod/connedit.php:264
msgid "Channel has been unblocked"
msgstr "Le canal n'est plus bloqué"
-#: ../../mod/connedit.php:226
+#: ../../mod/connedit.php:265
msgid "Channel has been blocked"
msgstr "Le canal est bloqué"
-#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
-#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
-#: ../../mod/connedit.php:281
+#: ../../mod/connedit.php:269 ../../mod/connedit.php:281
+#: ../../mod/connedit.php:293 ../../mod/connedit.php:305
+#: ../../mod/connedit.php:320
msgid "Unable to set address book parameters."
msgstr "Impossible de régler les paramètres du carnet d'adresses."
-#: ../../mod/connedit.php:237
+#: ../../mod/connedit.php:276
msgid "Channel has been unignored"
msgstr "Le canal n'est plus ignoré"
-#: ../../mod/connedit.php:238
+#: ../../mod/connedit.php:277
msgid "Channel has been ignored"
msgstr "Le canal est ignoré"
-#: ../../mod/connedit.php:249
+#: ../../mod/connedit.php:288
msgid "Channel has been unarchived"
msgstr "Le canal n'est plus archivé"
-#: ../../mod/connedit.php:250
+#: ../../mod/connedit.php:289
msgid "Channel has been archived"
msgstr "Le canal est archivé"
-#: ../../mod/connedit.php:261
+#: ../../mod/connedit.php:300
msgid "Channel has been unhidden"
msgstr "Le canal n'est plus caché"
-#: ../../mod/connedit.php:262
+#: ../../mod/connedit.php:301
msgid "Channel has been hidden"
msgstr "Le canal est caché"
-#: ../../mod/connedit.php:276
+#: ../../mod/connedit.php:315
msgid "Channel has been approved"
msgstr "Le canal est approuvé"
-#: ../../mod/connedit.php:277
+#: ../../mod/connedit.php:316
msgid "Channel has been unapproved"
msgstr "Le canal n'est plus approuvé"
-#: ../../mod/connedit.php:295
-msgid "Contact has been removed."
-msgstr "Le canal a été supprimé"
+#: ../../mod/connedit.php:334
+msgid "Connection has been removed."
+msgstr "La relation a été supprimée"
-#: ../../mod/connedit.php:315
+#: ../../mod/connedit.php:354
#, php-format
msgid "View %s's profile"
msgstr "Voir le profil de %s"
-#: ../../mod/connedit.php:319
+#: ../../mod/connedit.php:358
msgid "Refresh Permissions"
msgstr "Actualiser les permissions"
-#: ../../mod/connedit.php:322
+#: ../../mod/connedit.php:361
msgid "Fetch updated permissions"
msgstr "Récupérer les permissions les plus récentes"
-#: ../../mod/connedit.php:326
+#: ../../mod/connedit.php:365
msgid "Recent Activity"
msgstr "Activité récente"
-#: ../../mod/connedit.php:329
+#: ../../mod/connedit.php:368
msgid "View recent posts and comments"
msgstr "Voir les contributions et commentaires récentes"
-#: ../../mod/connedit.php:336
+#: ../../mod/connedit.php:372 ../../mod/connedit.php:515
+#: ../../mod/admin.php:760
+msgid "Unblock"
+msgstr "Débloquer"
+
+#: ../../mod/connedit.php:372 ../../mod/connedit.php:515
+#: ../../mod/admin.php:759
+msgid "Block"
+msgstr "Bloquer"
+
+#: ../../mod/connedit.php:375
msgid "Block or Unblock this connection"
msgstr "Bloquer ou Débloquer cette relation"
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/connedit.php:379 ../../mod/connedit.php:516
msgid "Unignore"
msgstr "Ne plus ignorer"
-#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/connedit.php:379 ../../mod/connedit.php:516
#: ../../mod/notifications.php:51
msgid "Ignore"
msgstr "Ignorer"
-#: ../../mod/connedit.php:343
+#: ../../mod/connedit.php:382
msgid "Ignore or Unignore this connection"
msgstr "Ignorer ou ne plus ignorer cette relation"
-#: ../../mod/connedit.php:346
+#: ../../mod/connedit.php:385
msgid "Unarchive"
msgstr "Ne plus archiver"
-#: ../../mod/connedit.php:346
+#: ../../mod/connedit.php:385
msgid "Archive"
msgstr "Archiver"
-#: ../../mod/connedit.php:349
+#: ../../mod/connedit.php:388
msgid "Archive or Unarchive this connection"
msgstr "Archiver ou ne plus archiver cette relation"
-#: ../../mod/connedit.php:352
+#: ../../mod/connedit.php:391
msgid "Unhide"
msgstr "Ne plus cacher"
-#: ../../mod/connedit.php:352
+#: ../../mod/connedit.php:391
msgid "Hide"
msgstr "Cacher"
-#: ../../mod/connedit.php:355
+#: ../../mod/connedit.php:394
msgid "Hide or Unhide this connection"
msgstr "Cacher ou ne plus cacher cette relation"
-#: ../../mod/connedit.php:362
+#: ../../mod/connedit.php:401
msgid "Delete this connection"
msgstr "Supprimer cette relation"
-#: ../../mod/connedit.php:395
-msgid "Unknown"
-msgstr "Inconnu"
-
-#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+#: ../../mod/connedit.php:444 ../../mod/connedit.php:473
msgid "Approve this connection"
msgstr "Approuver cette relation"
-#: ../../mod/connedit.php:405
+#: ../../mod/connedit.php:444
msgid "Accept connection to allow communication"
msgstr "Accepter la relation pour permettre la communication"
-#: ../../mod/connedit.php:421
+#: ../../mod/connedit.php:460
msgid "Automatic Permissions Settings"
msgstr "Permissions automatiques"
-#: ../../mod/connedit.php:421
+#: ../../mod/connedit.php:460
#, php-format
msgid "Connections: settings for %s"
msgstr "Relations&nbsp;: réglages pour %s"
-#: ../../mod/connedit.php:425
+#: ../../mod/connedit.php:464
msgid ""
"When receiving a channel introduction, any permissions provided here will be"
" applied to the new connection automatically and the introduction approved. "
"Leave this page if you do not wish to use this feature."
msgstr "Pour chaque introduction reçue, toutes les permissions définies ici seront appliquées aux nouvelles relations automatiquement, et l'introduction sera approuvée. Laissez cette page telle quelle si vous ne souhaitez pas utiliser ce mécanisme."
-#: ../../mod/connedit.php:427
+#: ../../mod/connedit.php:466
msgid "Slide to adjust your degree of friendship"
msgstr "Faites glisser pour ajuster le niveau de la relation"
-#: ../../mod/connedit.php:433
+#: ../../mod/connedit.php:472
msgid "inherited"
-msgstr "par héritage"
+msgstr "héritée"
-#: ../../mod/connedit.php:435
+#: ../../mod/connedit.php:474
msgid "Connection has no individual permissions!"
msgstr "Cette relation n'a aucune permission spécifique!"
-#: ../../mod/connedit.php:436
+#: ../../mod/connedit.php:475
msgid ""
"This may be appropriate based on your <a href=\"settings\">privacy "
"settings</a>, though you may wish to review the \"Advanced Permissions\"."
msgstr "Ceci devrait correspondre à vos <a href=\"settings\">réglages de vie privée</a>, mais vous pouvez toujours contrôler les \"Permissions avancées\"."
-#: ../../mod/connedit.php:438
+#: ../../mod/connedit.php:477
msgid "Profile Visibility"
msgstr "Visibilité du profil"
-#: ../../mod/connedit.php:439
+#: ../../mod/connedit.php:478
#, 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 quand %s visite votre profil de manière authentifiée."
-#: ../../mod/connedit.php:440
+#: ../../mod/connedit.php:479
msgid "Contact Information / Notes"
msgstr "Notes / Information de contact"
-#: ../../mod/connedit.php:441
+#: ../../mod/connedit.php:480
msgid "Edit contact notes"
msgstr "Éditer les notes du contact"
-#: ../../mod/connedit.php:443
+#: ../../mod/connedit.php:482
msgid "Their Settings"
msgstr "Ses réglages"
-#: ../../mod/connedit.php:444
+#: ../../mod/connedit.php:483
msgid "My Settings"
msgstr "Mes réglages"
-#: ../../mod/connedit.php:446
+#: ../../mod/connedit.php:485
+msgid "Clear/Disable Automatic Permissions"
+msgstr "Effacer/Désactiver les Permissions Automatiques"
+
+#: ../../mod/connedit.php:486
msgid "Forum Members"
-msgstr "Membres de forum"
+msgstr "Membres du forum"
-#: ../../mod/connedit.php:447
+#: ../../mod/connedit.php:487
msgid "Soapbox"
-msgstr "Boîte à savon"
+msgstr "Blogue"
-#: ../../mod/connedit.php:448
+#: ../../mod/connedit.php:488
msgid "Full Sharing (typical social network permissions)"
-msgstr "Partage complet (fonctionnement habituel des réseaux sociaux)"
+msgstr "Partage Complet (fonctionnement habituel des réseaux sociaux)"
-#: ../../mod/connedit.php:449
+#: ../../mod/connedit.php:489
msgid "Cautious Sharing "
msgstr "Partage modéré"
-#: ../../mod/connedit.php:450
+#: ../../mod/connedit.php:490
msgid "Follow Only"
-msgstr "Suivi uniquement"
+msgstr "Suivre uniquement"
-#: ../../mod/connedit.php:451
+#: ../../mod/connedit.php:491
msgid "Individual Permissions"
msgstr "Permissions spécifiques"
-#: ../../mod/connedit.php:452
+#: ../../mod/connedit.php:492
msgid ""
"Some permissions may be inherited from your channel <a "
"href=\"settings\">privacy settings</a>, which have higher priority than "
@@ -4796,828 +5145,646 @@ msgid ""
"have no effect."
msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">réglages de vie privée</a>, lesquels sont prioritaires sur les réglages spécifiques. Changer ces permissions héritées sur la présente page n'aura aucun effet."
-#: ../../mod/connedit.php:453
+#: ../../mod/connedit.php:493
msgid "Advanced Permissions"
msgstr "Permissions avancées"
-#: ../../mod/connedit.php:454
+#: ../../mod/connedit.php:494
msgid "Simple Permissions (select one and submit)"
msgstr "Permissions simples (en choisir une, puis valider)"
-#: ../../mod/connedit.php:458
+#: ../../mod/connedit.php:498
#, php-format
msgid "Visit %s's profile - %s"
msgstr "Visiter le profil de %s - %s"
-#: ../../mod/connedit.php:459
+#: ../../mod/connedit.php:499
msgid "Block/Unblock contact"
msgstr "Bloquer/Débloquer le contact"
-#: ../../mod/connedit.php:460
+#: ../../mod/connedit.php:500
msgid "Ignore contact"
msgstr "Ignorer le contact"
-#: ../../mod/connedit.php:461
+#: ../../mod/connedit.php:501
msgid "Repair URL settings"
msgstr "Réparer les réglages d'URL"
-#: ../../mod/connedit.php:462
+#: ../../mod/connedit.php:502
msgid "View conversations"
msgstr "Voir les conversations"
-#: ../../mod/connedit.php:464
+#: ../../mod/connedit.php:504
msgid "Delete contact"
msgstr "Supprimer le contact"
-#: ../../mod/connedit.php:467
+#: ../../mod/connedit.php:507
msgid "Last update:"
msgstr "Dernière mise-à-jour&nbsp;:"
-#: ../../mod/connedit.php:469
+#: ../../mod/connedit.php:509
msgid "Update public posts"
msgstr "Mettre à jour les publications"
-#: ../../mod/connedit.php:471
+#: ../../mod/connedit.php:511
msgid "Update now"
msgstr "Mettre à jour maintenant"
-#: ../../mod/connedit.php:477
+#: ../../mod/connedit.php:517
msgid "Currently blocked"
msgstr "Actuellement bloqué"
-#: ../../mod/connedit.php:478
+#: ../../mod/connedit.php:518
msgid "Currently ignored"
msgstr "Actuellement ignoré"
-#: ../../mod/connedit.php:479
+#: ../../mod/connedit.php:519
msgid "Currently archived"
msgstr "Actuellement archivé"
-#: ../../mod/connedit.php:480
+#: ../../mod/connedit.php:520
msgid "Currently pending"
msgstr "Actuellement en attente"
-#: ../../mod/connedit.php:481
+#: ../../mod/connedit.php:521
msgid "Hide this contact from others"
msgstr "Dissimuler ce contact aux autres"
-#: ../../mod/connedit.php:481
+#: ../../mod/connedit.php:521
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Les réponses et autres réactions à vos contributions publiques <strong>pourraient</strong> être toujours visibles"
-#: ../../mod/layouts.php:52
-msgid "Layout Help"
-msgstr "Aide à la mise en page"
-
-#: ../../mod/layouts.php:55
-msgid "Help with this feature"
-msgstr "Aide avec cette fonctionnalité"
-
-#: ../../mod/layouts.php:74
-msgid "Layout Name"
-msgstr "Nom de la mise-en-page"
-
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
-msgstr "Aide&nbsp;:"
-
-#: ../../mod/help.php:68 ../../index.php:223
-msgid "Not Found"
-msgstr "Introuvable"
-
-#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
-#: ../../index.php:226
-msgid "Page not found."
-msgstr "Page introuvable."
-
-#: ../../mod/rmagic.php:56
-msgid "Remote Authentication"
-msgstr "Authentification distante"
-
-#: ../../mod/rmagic.php:57
-msgid "Enter your channel address (e.g. channel@example.com)"
-msgstr "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)"
-
-#: ../../mod/rmagic.php:58
-msgid "Authenticate"
-msgstr "Authentifier"
-
-#: ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Élément invalide."
-
-#: ../../mod/network.php:79
-msgid "No such group"
-msgstr "Rien de tel comme groupe"
-
-#: ../../mod/network.php:118
-msgid "Search Results For:"
-msgstr "Résultats de recherche pour&nbsp;:"
-
-#: ../../mod/network.php:172
-msgid "Collection is empty"
-msgstr "Collection vide"
-
-#: ../../mod/network.php:180
-msgid "Collection: "
-msgstr "Collection&nbsp;:"
-
-#: ../../mod/network.php:193
-msgid "Connection: "
-msgstr "Relation&nbsp;:"
-
-#: ../../mod/network.php:196
-msgid "Invalid connection."
-msgstr "Relation invalide."
-
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
-msgid "Profile not found."
-msgstr "Profil introuvable."
-
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil supprimé."
-
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
-msgstr "Profil-"
-
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
-msgstr "Nouveau profil créé."
-
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
-msgstr "Profil impossible à cloner."
-
-#: ../../mod/profiles.php:178
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
-
-#: ../../mod/profiles.php:294
-msgid "Marital Status"
-msgstr "Statut marital"
-
-#: ../../mod/profiles.php:298
-msgid "Romantic Partner"
-msgstr "Partenaire"
-
-#: ../../mod/profiles.php:302
-msgid "Likes"
-msgstr "Aime"
-
-#: ../../mod/profiles.php:306
-msgid "Dislikes"
-msgstr "Déteste"
-
-#: ../../mod/profiles.php:310
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
-
-#: ../../mod/profiles.php:313
-msgid "Religion"
-msgstr "Religion/Croyance"
-
-#: ../../mod/profiles.php:317
-msgid "Political Views"
-msgstr "Opinions politiques"
-
-#: ../../mod/profiles.php:321
-msgid "Gender"
-msgstr "Sexe/Genre"
-
-#: ../../mod/profiles.php:325
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
-
-#: ../../mod/profiles.php:329
-msgid "Homepage"
-msgstr "Site Internet"
-
-#: ../../mod/profiles.php:333
-msgid "Interests"
-msgstr "Centres d'intérêt"
-
-#: ../../mod/profiles.php:337
-msgid "Address"
-msgstr "Adresse"
-
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
-msgid "Location"
-msgstr "Localisation"
-
-#: ../../mod/profiles.php:427
-msgid "Profile updated."
-msgstr "Profil mis à jour."
-
-#: ../../mod/profiles.php:482
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?"
-
-#: ../../mod/profiles.php:505
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
-
-#: ../../mod/profiles.php:507
-msgid "View this profile"
-msgstr "Voir le profil"
-
-#: ../../mod/profiles.php:508
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Aucun délégué potentiel n'a été trouvé pour cette page."
-#: ../../mod/profiles.php:509
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil avec ces réglages"
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Gestion des délégués de la page"
-#: ../../mod/profiles.php:510
-msgid "Clone this profile"
-msgstr "Cloner le profil"
+#: ../../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égués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle."
-#: ../../mod/profiles.php:511
-msgid "Delete this profile"
-msgstr "Supprimer le profil"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Actuels gestionnaires de pages"
-#: ../../mod/profiles.php:512
-msgid "Profile Name:"
-msgstr "Nom du profil&nbsp;:"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Actuels délégués"
-#: ../../mod/profiles.php:513
-msgid "Your Full Name:"
-msgstr "Votre nom complet&nbsp;:"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Délégués potentiels"
-#: ../../mod/profiles.php:514
-msgid "Title/Description:"
-msgstr "Titre/description&nbsp;:"
+#: ../../mod/delegate.php:130 ../../mod/photos.php:906 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Retirer"
-#: ../../mod/profiles.php:515
-msgid "Your Gender:"
-msgstr "Sexe/Genre&nbsp;:"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Ajouter"
-#: ../../mod/profiles.php:516
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Date de naissance (%s)&nbsp;:"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Aucune entrée."
-#: ../../mod/profiles.php:517
-msgid "Street Address:"
-msgstr "Adresse postale&nbsp;:"
+#: ../../mod/search.php:13 ../../mod/directory.php:15
+#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 ../../mod/photos.php:443
+#: ../../mod/viewconnections.php:17
+msgid "Public access denied."
+msgstr "Accès public refusé."
-#: ../../mod/profiles.php:518
-msgid "Locality/City:"
-msgstr "Ville/Localité&nbsp;:"
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95
+msgid "Gender: "
+msgstr "Sexe/genre&nbsp;:"
-#: ../../mod/profiles.php:519
-msgid "Postal/Zip Code:"
-msgstr "Code postal&nbsp;:"
+#: ../../mod/directory.php:207
+msgid "Finding:"
+msgstr "Recherche&nbsp;:"
-#: ../../mod/profiles.php:520
-msgid "Country:"
-msgstr "Pays&nbsp;:"
+#: ../../mod/directory.php:215
+msgid "next page"
+msgstr "page suivante"
-#: ../../mod/profiles.php:521
-msgid "Region/State:"
-msgstr "Région/Province/État&nbsp;:"
+#: ../../mod/directory.php:215
+msgid "previous page"
+msgstr "page précédente"
-#: ../../mod/profiles.php:522
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
+#: ../../mod/directory.php:222
+msgid "No entries (some entries may be hidden)."
+msgstr "Pas d'entrées (certaines peuvent être cachées)."
-#: ../../mod/profiles.php:523
-msgid "Who: (if applicable)"
-msgstr "Avec&nbsp;: (si pertinent)"
+#: ../../mod/dirprofile.php:108
+msgid "Status: "
+msgstr "État&nbsp;:"
-#: ../../mod/profiles.php:524
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com"
+#: ../../mod/dirprofile.php:109
+msgid "Sexual Preference: "
+msgstr "Orientation sexuelle&nbsp;:"
-#: ../../mod/profiles.php:525
-msgid "Since [date]:"
-msgstr "Depuis [date]&nbsp;:"
+#: ../../mod/dirprofile.php:111
+msgid "Homepage: "
+msgstr "Site web&nbsp;:"
-#: ../../mod/profiles.php:527
-msgid "Homepage URL:"
-msgstr "URL de mon site Internet&nbsp;:"
+#: ../../mod/dirprofile.php:112
+msgid "Hometown: "
+msgstr "Ville natale&nbsp;:"
-#: ../../mod/profiles.php:530
-msgid "Religious Views:"
-msgstr "Opinions religieuses&nbsp;:"
+#: ../../mod/dirprofile.php:114
+msgid "About: "
+msgstr "À propos&nbsp;:"
-#: ../../mod/profiles.php:531
-msgid "Keywords:"
+#: ../../mod/dirprofile.php:162
+msgid "Keywords: "
msgstr "Mots-clefs&nbsp;:"
-#: ../../mod/profiles.php:534
-msgid "Example: fishing photography software"
-msgstr "Exemple&nbsp;: escrime photographie modélisme"
-
-#: ../../mod/profiles.php:535
-msgid "Used in directory listings"
-msgstr "Utilisé pour le référencement dans l'annuaire"
-
-#: ../../mod/profiles.php:536
-msgid "Tell us about yourself..."
-msgstr "Parlez nous de vous..."
-
-#: ../../mod/profiles.php:537
-msgid "Hobbies/Interests"
-msgstr "Loisirs/Centres d'intêret"
-
-#: ../../mod/profiles.php:538
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées et réseaux sociaux"
-
-#: ../../mod/profiles.php:539
-msgid "My other channels"
-msgstr "Mes autres canaux"
-
-#: ../../mod/profiles.php:540
-msgid "Musical interests"
-msgstr "Goûts musicaux"
-
-#: ../../mod/profiles.php:541
-msgid "Books, literature"
-msgstr "Littérature"
-
-#: ../../mod/profiles.php:542
-msgid "Television"
-msgstr "Télévision"
-
-#: ../../mod/profiles.php:543
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
-
-#: ../../mod/profiles.php:544
-msgid "Love/romance"
-msgstr "Amour/Romance"
-
-#: ../../mod/profiles.php:545
-msgid "Work/employment"
-msgstr "Travail/Occupation"
-
-#: ../../mod/profiles.php:546
-msgid "School/education"
-msgstr "Études"
-
-#: ../../mod/profiles.php:551
-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>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet."
-
-#: ../../mod/profiles.php:600
-msgid "Edit/Manage Profiles"
-msgstr "Éditer/gérer les profils"
-
-#: ../../mod/profiles.php:601
-msgid "Add profile things"
-msgstr "Ajouter des choses de profil"
-
-#: ../../mod/profiles.php:602
-msgid "Include desirable objects in your profile"
-msgstr "Incluez des objets souhaitables dans votre profil"
-
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Canal ajouté."
-
-#: ../../mod/post.php:226
-msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please"
-" logout and retry."
-msgstr "Authentification distante bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et de recommencer."
-
-#: ../../mod/post.php:256
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
-msgstr "Bienvenue %s. L'authentification distante a fonctionné."
-
#: ../../mod/dirsearch.php:21
msgid "This site is not a directory server"
msgstr "Ce site n'est pas un serveur d'annuaire"
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Impossible de créer la source. Aucun canal selectionné."
-
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Source créée."
-
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "Source mise à jour."
-
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr "*"
-
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
-msgstr "Gérer les sources distantes du contenu de votre canal."
-
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Nouvelle source"
-
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
-msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
-msgstr "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal."
-
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
-msgstr "N'importer le contenu que s'ils contient ces mots (un par ligne)"
-
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
-msgstr "Laissez en blanc pour importer tout le contenu public"
-
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Nom du canal"
-
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "Source introuvable."
-
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Éditer source"
-
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Supprimer source"
-
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "Source supprimée"
-
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Impossible de supprimer la source."
+#: ../../mod/home.php:81
+msgid "Red Matrix - &quot;The Network&quot;"
+msgstr "La Matrice Rouge - &quot;LE Réseau&quot;"
-#: ../../mod/lockview.php:34
-msgid "Remote privacy information not available."
-msgstr "Les informations de vie privée à distance ne sont pas disponibles."
-
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Visible par&nbsp;:"
-
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "Instance introuvable."
+#: ../../mod/home.php:94
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
-#: ../../mod/setup.php:161
+#: ../../mod/setup.php:162
msgid "Red Matrix Server - Setup"
-msgstr "Serveur Red Matrix - Configuration"
+msgstr "Serveur de la Matrice Rouge - Configuration"
-#: ../../mod/setup.php:167
+#: ../../mod/setup.php:168
msgid "Could not connect to database."
msgstr "Impossible de se connecter à la base de données."
-#: ../../mod/setup.php:171
+#: ../../mod/setup.php:172
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."
-#: ../../mod/setup.php:176
+#: ../../mod/setup.php:179
msgid "Could not create table."
msgstr "Impossible de créer la table."
-#: ../../mod/setup.php:182
+#: ../../mod/setup.php:185
msgid "Your site database has been installed."
msgstr "La base de données de votre site a été installée."
-#: ../../mod/setup.php:187
+#: ../../mod/setup.php:190
msgid ""
"You may need to import the file \"install/database.sql\" manually using "
"phpmyadmin or mysql."
msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/database.sql\" manuellement via phpmyadmin ou mysql."
-#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:254
+#: ../../mod/setup.php:257
msgid "System check"
msgstr "Vérification du système"
-#: ../../mod/setup.php:259
+#: ../../mod/setup.php:261 ../../mod/events.php:399
+msgid "Next"
+msgstr "Suivant"
+
+#: ../../mod/setup.php:262
msgid "Check again"
msgstr "Re-vérifier"
-#: ../../mod/setup.php:281
+#: ../../mod/setup.php:284
msgid "Database connection"
msgstr "Connexion à la base de données"
-#: ../../mod/setup.php:282
+#: ../../mod/setup.php:285
msgid ""
"In order to install Red Matrix we need to know how to connect to your "
"database."
-msgstr "Pour installer Red Matrix, nous avons besoin de savoir comment contacter votre base de données."
+msgstr "Pour installer la Matrice Rouge, nous avons besoin de savoir comment contacter votre base de données."
-#: ../../mod/setup.php:283
+#: ../../mod/setup.php:286
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
-msgstr "Merci de contacter votre prestataire d'hébergement ou votre administration système si vous avez des doutes à propos de ces paramètres."
+msgstr "Merci de contacter votre prestataire d'hébergement ou votre administrateur système si vous avez des doutes à propos de ces paramètres."
-#: ../../mod/setup.php:284
+#: ../../mod/setup.php:287
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 allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."
-#: ../../mod/setup.php:288
+#: ../../mod/setup.php:291
msgid "Database Server Name"
-msgstr "Nom du serveur de BD"
+msgstr "Nom du serveur de la base de données"
-#: ../../mod/setup.php:288
+#: ../../mod/setup.php:291
msgid "Default is localhost"
msgstr "Par défaut, localhost"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:292
msgid "Database Port"
msgstr "Port du serveur"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:292
msgid "Communication port number - use 0 for default"
msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut"
-#: ../../mod/setup.php:290
+#: ../../mod/setup.php:293
msgid "Database Login Name"
-msgstr "Identifiant de connexion à la BD"
+msgstr "Identifiant de connexion à la Base de Données"
-#: ../../mod/setup.php:291
+#: ../../mod/setup.php:294
msgid "Database Login Password"
-msgstr "Mot de passe de connexion à la BD"
+msgstr "Mot de passe de connexion à la Base de Données"
-#: ../../mod/setup.php:292
+#: ../../mod/setup.php:295
msgid "Database Name"
-msgstr "Nom de la base de données"
+msgstr "Nom de la Base de Données"
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
+#: ../../mod/setup.php:297 ../../mod/setup.php:339
msgid "Site administrator email address"
msgstr "Adresse de courriel de l'administrateur du site"
-#: ../../mod/setup.php:294 ../../mod/setup.php:336
+#: ../../mod/setup.php:297 ../../mod/setup.php:339
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
msgid "Website URL"
msgstr "URL du site"
-#: ../../mod/setup.php:295 ../../mod/setup.php:338
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
msgid "Please use SSL (https) URL if available."
msgstr "Merci d'utiliser SSL/TLS (https) autant que possible."
-#: ../../mod/setup.php:298 ../../mod/setup.php:341
+#: ../../mod/setup.php:301 ../../mod/setup.php:344
msgid "Please select a default timezone for your website"
msgstr "Merci de choisir une zone de temps (fuseau horaire) pour votre site"
-#: ../../mod/setup.php:325
+#: ../../mod/setup.php:328
msgid "Site settings"
msgstr "Réglages du site"
-#: ../../mod/setup.php:384
+#: ../../mod/setup.php:387
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web."
-#: ../../mod/setup.php:385
+#: ../../mod/setup.php:388
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."
msgstr "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron."
-#: ../../mod/setup.php:389
+#: ../../mod/setup.php:392
msgid "PHP executable path"
msgstr "Chemin vers l'éxecutable PHP"
-#: ../../mod/setup.php:389
+#: ../../mod/setup.php:392
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."
-#: ../../mod/setup.php:394
+#: ../../mod/setup.php:397
msgid "Command line PHP"
msgstr "PHP en ligne de commande (CLI)"
-#: ../../mod/setup.php:403
+#: ../../mod/setup.php:406
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."
-#: ../../mod/setup.php:404
+#: ../../mod/setup.php:407
msgid "This is required for message delivery to work."
msgstr "Elle est nécessaire pour la livraison de messages."
-#: ../../mod/setup.php:406
+#: ../../mod/setup.php:409
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:427
+#: ../../mod/setup.php:430
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"
-#: ../../mod/setup.php:428
+#: ../../mod/setup.php:431
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."
-#: ../../mod/setup.php:430
+#: ../../mod/setup.php:433
msgid "Generate encryption keys"
msgstr "Générer les clefs de chiffrement"
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:440
msgid "libCurl PHP module"
msgstr "module PHP libCurl"
-#: ../../mod/setup.php:438
+#: ../../mod/setup.php:441
msgid "GD graphics PHP module"
msgstr "module PHP GD graphics"
-#: ../../mod/setup.php:439
+#: ../../mod/setup.php:442
msgid "OpenSSL PHP module"
msgstr "module PHP OpenSSL"
-#: ../../mod/setup.php:440
+#: ../../mod/setup.php:443
msgid "mysqli PHP module"
msgstr "module PHP mysqli"
-#: ../../mod/setup.php:441
+#: ../../mod/setup.php:444
msgid "mb_string PHP module"
msgstr "module PHP mb_string"
-#: ../../mod/setup.php:442
+#: ../../mod/setup.php:445
msgid "mcrypt PHP module"
msgstr "module PHP mcrypt"
-#: ../../mod/setup.php:447 ../../mod/setup.php:449
+#: ../../mod/setup.php:450 ../../mod/setup.php:452
msgid "Apache mod_rewrite module"
msgstr "module Apache mod_rewrite"
-#: ../../mod/setup.php:447
+#: ../../mod/setup.php:450
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé."
-#: ../../mod/setup.php:453 ../../mod/setup.php:456
+#: ../../mod/setup.php:456 ../../mod/setup.php:459
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:453
+#: ../../mod/setup.php:456
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini"
-#: ../../mod/setup.php:461
+#: ../../mod/setup.php:464
msgid "Error: libCURL PHP module required but not installed."
msgstr "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé."
-#: ../../mod/setup.php:465
+#: ../../mod/setup.php:468
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Erreur&nbsp;: le module GD de PHP (avec support JPEG) est requis, mais pas installé."
-#: ../../mod/setup.php:469
+#: ../../mod/setup.php:472
msgid "Error: openssl PHP module required but not installed."
msgstr "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé."
-#: ../../mod/setup.php:473
+#: ../../mod/setup.php:476
msgid "Error: mysqli PHP module required but not installed."
msgstr "Erreur&nbsp;: le module mysqli de PHP est requis, mais pas installé."
-#: ../../mod/setup.php:477
+#: ../../mod/setup.php:480
msgid "Error: mb_string PHP module required but not installed."
msgstr "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé."
-#: ../../mod/setup.php:481
+#: ../../mod/setup.php:484
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé."
-#: ../../mod/setup.php:497
+#: ../../mod/setup.php:500
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 a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable."
-#: ../../mod/setup.php:498
+#: ../../mod/setup.php:501
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 "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."
-#: ../../mod/setup.php:499
+#: ../../mod/setup.php:502
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Red top folder."
-msgstr "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de Red."
+msgstr "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de La Matrice Rouge."
-#: ../../mod/setup.php:500
+#: ../../mod/setup.php:503
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées."
-#: ../../mod/setup.php:503
+#: ../../mod/setup.php:506
msgid ".htconfig.php is writable"
msgstr "Le fichier .htconfig.php est accessible en écriture"
-#: ../../mod/setup.php:513
+#: ../../mod/setup.php:516
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
-msgstr "Red utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses templates vers du PHP natif pour accélérer le rendu."
+msgstr "La Matrice Rouge utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu."
-#: ../../mod/setup.php:514
+#: ../../mod/setup.php:517
+#, php-format
msgid ""
"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/tpl/smarty3/ under the Red top level "
-"folder."
-msgstr "Pour stocker ces templates compilées, le serveur web nécessite de pouvoir écrire dans le répertoire <racine de red>view/tpl/smarty3/."
+"write access to the directory %s under the Red top level folder."
+msgstr "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s."
-#: ../../mod/setup.php:515 ../../mod/setup.php:533
+#: ../../mod/setup.php:518 ../../mod/setup.php:536
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire."
-#: ../../mod/setup.php:516
+#: ../../mod/setup.php:519
+#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
-"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note&nbsp;: pour renforcer la sécurité, vous pouvez décider de ne donner l'accès en écrire qu'au répertoire view/tpl/smarty3 - et pas aux fichiers de templates (.tpl) qu'il contient."
+"%s only--not the template files (.tpl) that it contains."
+msgstr "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture sur %s au serveur web uniquement. Éviter de définir les permissions sur les fichiers individuels (.tpl)."
-#: ../../mod/setup.php:519
-msgid "view/tpl/smarty3 is writable"
-msgstr "view/tpl/smarty3 est accessible en écriture"
+#: ../../mod/setup.php:522
+#, php-format
+msgid "%s is writable"
+msgstr "Permission d'écriture sur %s activée"
-#: ../../mod/setup.php:532
+#: ../../mod/setup.php:535
msgid ""
"Red uses the store directory to save uploaded files. The web server needs to"
" have write access to the store directory under the Red top level folder"
-msgstr "Red utilise le répertoire 'store' - situé à la racine de Red - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
+msgstr "Red utilise le répertoire 'store' - situé à la racine de votre installation de la Matrice Rouge - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
-#: ../../mod/setup.php:536
+#: ../../mod/setup.php:539
msgid "store is writable"
msgstr "'store' est accessible en écriture"
-#: ../../mod/setup.php:551
-msgid "SSL certificate validation"
-msgstr "Validation du certificat SSL/TLS"
-
-#: ../../mod/setup.php:551
+#: ../../mod/setup.php:569
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site."
-#: ../../mod/setup.php:558
+#: ../../mod/setup.php:570
+msgid ""
+"If you have https access to your website or allow connections to TCP port "
+"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
+"NOT use self-signed certificates!"
+msgstr "Si votre serveur supporte les connections encryptées SSL ou s'il permet les connections sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé!"
+
+#: ../../mod/setup.php:571
+msgid ""
+"This restriction is incorporated because public posts from you may for "
+"example contain references to images on your own hub."
+msgstr "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence à des images sur votre propre hub."
+
+#: ../../mod/setup.php:572
+msgid ""
+"If your certificate is not recognised, members of other sites (who may "
+"themselves have valid certificates) will get a warning message on their own "
+"site complaining about security issues."
+msgstr "Si vos certificats sont invalides, les autres administrateurs de hubs recevront constamment des messages d'avertissements de sécurité sur leur propre hub."
+
+#: ../../mod/setup.php:573
+msgid ""
+"This can cause usability issues elsewhere (not just on your own site) so we "
+"must insist on this requirement."
+msgstr "Pour des raisons de compatibilité (sur l'ensemble de la matrice) nous nous devons d'insister sur ce prérequis."
+
+#: ../../mod/setup.php:574
+msgid ""
+"Providers are available that issue free certificates which are browser-"
+"valid."
+msgstr "Il existe une plusieurs autorités de certification qui vous fourniront gratuitement un certificat valide."
+
+#: ../../mod/setup.php:576
+msgid "SSL certificate validation"
+msgstr "Validation du certificat SSL/TLS"
+
+#: ../../mod/setup.php:582
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Merci de vérifier la configuration de votre serveur web."
-#: ../../mod/setup.php:560
+#: ../../mod/setup.php:584
msgid "Url rewrite is working"
msgstr "La réécriture d'URL fonctionne"
-#: ../../mod/setup.php:570
+#: ../../mod/setup.php:594
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 de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web."
-#: ../../mod/setup.php:594
+#: ../../mod/setup.php:618
msgid "Errors encountered creating database tables."
msgstr "Erreurs rencontrées pendant la création de tables de BD."
-#: ../../mod/setup.php:607
+#: ../../mod/setup.php:653
msgid "<h1>What next</h1>"
msgstr "<h1>Et maintenant</h1>"
-#: ../../mod/setup.php:608
+#: ../../mod/setup.php:654
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour."
+#: ../../mod/editblock.php:8 ../../mod/editblock.php:27
+#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36
+#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32
+msgid "Item not found"
+msgstr "Élément introuvable"
+
+#: ../../mod/editblock.php:77
+msgid "Edit Block"
+msgstr "Éditer bloc"
+
+#: ../../mod/editblock.php:87
+msgid "Delete block?"
+msgstr "Supprimer le bloc?"
+
+#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147
+msgid "Insert YouTube video"
+msgstr "Insérer une vidéo YouTube"
+
+#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Insérer une vidéo Vorbis [.ogg]"
+
+#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112
+#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Insérer un son Vorbis [.ogg]"
+
+#: ../../mod/editblock.php:153
+msgid "Delete Block"
+msgstr "Supprimer le bloc"
+
+#: ../../mod/pdledit.php:13
+msgid "Layout updated."
+msgstr "Agencement pris-en-compte."
+
+#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
+msgid "Edit System Page Description"
+msgstr "Éditer la description"
+
+#: ../../mod/pdledit.php:48
+msgid "Layout not found."
+msgstr "Agencement introuvable."
+
+#: ../../mod/pdledit.php:54
+msgid "Module Name:"
+msgstr "Nom du module&nbsp;:"
+
+#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59
+msgid "Layout Help"
+msgstr "Aide à la mise en page"
+
+#: ../../mod/editlayout.php:72
+msgid "Edit Layout"
+msgstr "Éditer mise-en-page"
+
+#: ../../mod/editlayout.php:82
+msgid "Delete layout?"
+msgstr "Supprimer la mise-en-page?"
+
+#: ../../mod/editlayout.php:146
+msgid "Delete Layout"
+msgstr "Supprimer mise-en-page"
+
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Élément non-éditable"
+
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Supprimer l'élément?"
+
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
+msgstr "Éditer page web"
+
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
+msgstr "Supprimer la page web?"
+
+#: ../../mod/editwebpage.php:186
+msgid "Delete Webpage"
+msgstr "Supprimer page web"
+
#: ../../mod/siteinfo.php:57
#, php-format
msgid "Version %s"
@@ -5631,562 +5798,1086 @@ msgstr "Extensions/applications installées&nbsp;:"
msgid "No installed plugins/addons/apps"
msgstr "Aucune extension/application installée"
-#: ../../mod/siteinfo.php:93
-msgid "Project Donations"
-msgstr "Donations au projet"
-
-#: ../../mod/siteinfo.php:94
-msgid ""
-"<p>The Red Matrix is provided for you by volunteers working in their spare "
-"time. Your support will help us to build a better web. Select the following "
-"option for a one-time donation of your choosing</p>"
-msgstr "<p>The Red Matrix vous est mis à disposition par des volontaires, qui travaillent dessus sur leur temps libre. Votre soutien nous aidera à construire un meilleur web. Merci de choisir l'option suivante pour une donation ponctuelle de votre choix.</p>"
-
-#: ../../mod/siteinfo.php:95
-msgid "<p>or</p>"
-msgstr "<p>ou bien</p>"
-
-#: ../../mod/siteinfo.php:96
-msgid "Recurring Donation Options"
-msgstr "Options de donation récurente"
-
-#: ../../mod/siteinfo.php:115
+#: ../../mod/siteinfo.php:97
msgid "Red"
-msgstr "Red"
+msgstr "Rouge"
-#: ../../mod/siteinfo.php:116
+#: ../../mod/siteinfo.php:98
msgid ""
"This is a hub of the Red Matrix - a global cooperative network of "
"decentralised privacy enhanced websites."
-msgstr "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée."
+msgstr "Ceci est une instance - un hub - de la Matrice Rouge - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée"
-#: ../../mod/siteinfo.php:119
+#: ../../mod/siteinfo.php:101
msgid "Running at web location"
-msgstr "En train de tourner chez"
+msgstr "Installée sur"
-#: ../../mod/siteinfo.php:120
+#: ../../mod/siteinfo.php:102
msgid ""
"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
"about the Red Matrix."
-msgstr "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Red."
+msgstr "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Rouge."
-#: ../../mod/siteinfo.php:121
+#: ../../mod/siteinfo.php:103
msgid "Bug reports and issues: please visit"
msgstr "Pour remonter bogues et problèmes, merci de visiter"
-#: ../../mod/siteinfo.php:124
+#: ../../mod/siteinfo.php:106
msgid ""
"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
"com"
msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
-#: ../../mod/siteinfo.php:126
+#: ../../mod/siteinfo.php:108
msgid "Site Administrators"
msgstr "Administrateurs du site"
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
-msgstr "Ajouter un canal"
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
+msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
-#: ../../mod/new_channel.php:108
+#: ../../mod/photos.php:97
+msgid "Album not found."
+msgstr "Album introuvable."
+
+#: ../../mod/photos.php:119 ../../mod/photos.php:669
+msgid "Delete Album"
+msgstr "Supprimer album"
+
+#: ../../mod/photos.php:159 ../../mod/photos.php:957
+msgid "Delete Photo"
+msgstr "Supprimer photo"
+
+#: ../../mod/photos.php:453
+msgid "No photos selected"
+msgstr "Aucune photo selectionnée"
+
+#: ../../mod/photos.php:500
+msgid "Access to this item is restricted."
+msgstr "L'accès à l'élément est restreint."
+
+#: ../../mod/photos.php:574
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
+
+#: ../../mod/photos.php:577
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos."
+
+#: ../../mod/photos.php:596
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
+
+#: ../../mod/photos.php:600 ../../mod/photos.php:664
+msgid "New album name: "
+msgstr "Créer un album&nbsp;:"
+
+#: ../../mod/photos.php:601
+msgid "or existing album name: "
+msgstr "ou choisir un album existant&nbsp;:"
+
+#: ../../mod/photos.php:602
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de statut pour cet envoi"
+
+#: ../../mod/photos.php:653 ../../mod/photos.php:675 ../../mod/photos.php:1129
+#: ../../mod/photos.php:1144
+msgid "Contact Photos"
+msgstr "Photos de contact"
+
+#: ../../mod/photos.php:679
+msgid "Edit Album"
+msgstr "Éditer l'album"
+
+#: ../../mod/photos.php:685
+msgid "Show Newest First"
+msgstr "Ordre anté-chronologique"
+
+#: ../../mod/photos.php:687
+msgid "Show Oldest First"
+msgstr "Ordre chronologique"
+
+#: ../../mod/photos.php:730 ../../mod/photos.php:1176
+msgid "View Photo"
+msgstr "Voir la photo"
+
+#: ../../mod/photos.php:776
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
+
+#: ../../mod/photos.php:778
+msgid "Photo not available"
+msgstr "Photo indisponible"
+
+#: ../../mod/photos.php:838
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo du profil"
+
+#: ../../mod/photos.php:862
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
+
+#: ../../mod/photos.php:940
+msgid "Edit photo"
+msgstr "Éditer la photo"
+
+#: ../../mod/photos.php:942
+msgid "Rotate CW (right)"
+msgstr "Rotation horaire (droite)"
+
+#: ../../mod/photos.php:943
+msgid "Rotate CCW (left)"
+msgstr "Rotation anti-horaire (gauche)"
+
+#: ../../mod/photos.php:946
+msgid "New album name"
+msgstr "Nouveau nom d'album&nbsp;:"
+
+#: ../../mod/photos.php:949
+msgid "Caption"
+msgstr "Titre/légende"
+
+#: ../../mod/photos.php:951
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
+
+#: ../../mod/photos.php:954
msgid ""
-"A channel is your own collection of related web pages. A channel can be used"
-" to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
-msgstr "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre fournisseur vous y autorise."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon"
-#: ../../mod/new_channel.php:111
-msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
-msgstr "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\""
+#: ../../mod/photos.php:1107
+msgid "In This Photo:"
+msgstr "Dans cette photo&nbsp;:"
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Choisissez un nom court"
+#: ../../mod/photos.php:1182
+msgid "View Album"
+msgstr "Voir l'album"
-#: ../../mod/new_channel.php:113
+#: ../../mod/photos.php:1191
+msgid "Recent Photos"
+msgstr "Photos récentes"
+
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Impossible de créer la source. Aucun canal selectionné."
+
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Source créée."
+
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "Source mise à jour."
+
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
+
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Gérer les sources distantes du contenu de votre canal."
+
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Nouvelle Source"
+
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
-msgstr "Ce nom court sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres."
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal."
-#: ../../mod/new_channel.php:114
-msgid "Or <a href=\"import\">import an existing channel</a> from another location"
-msgstr "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "N'importer le contenu que s'ils contient ces mots (un par ligne)"
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Aucun compte valide trouvé."
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Laissez en blanc pour importer tout le contenu public"
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe demandée. Vérifiez vos courriels."
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Nom du Canal"
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Source introuvable."
+
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Éditer la source"
+
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Supprimer la source"
+
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "Source supprimée"
+
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Impossible de supprimer la source."
+
+#: ../../mod/filer.php:49
+msgid "- select -"
+msgstr "- choisir -"
+
+#: ../../mod/events.php:72
+msgid "Event title and start time are required."
+msgstr "Un titre et une date de début sont requises pour l'événement."
+
+#: ../../mod/events.php:86
+msgid "Event not found."
+msgstr "Événement introuvable."
+
+#: ../../mod/events.php:329
+msgid "l, F j"
+msgstr "l j F"
+
+#: ../../mod/events.php:351
+msgid "Edit event"
+msgstr "Éditer l'événement"
+
+#: ../../mod/events.php:397
+msgid "Create New Event"
+msgstr "Créer événement"
+
+#: ../../mod/events.php:398
+msgid "Previous"
+msgstr "Précédent"
+
+#: ../../mod/events.php:469
+msgid "hour:minute"
+msgstr "heure:minute"
+
+#: ../../mod/events.php:489
+msgid "Event details"
+msgstr "Détails de l'événement"
+
+#: ../../mod/events.php:490
#, php-format
-msgid "Site Member (%s)"
-msgstr "Membre du site (%s)"
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Le format est %s %s. Date de début et titre obligatoires."
-#: ../../mod/lostpass.php:40
+#: ../../mod/events.php:492
+msgid "Event Starts:"
+msgstr "L'événement débute&nbsp;:"
+
+#: ../../mod/events.php:492 ../../mod/events.php:506 ../../mod/appman.php:91
+#: ../../mod/appman.php:92
+msgid "Required"
+msgstr "Requis"
+
+#: ../../mod/events.php:495
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date/heure de fin inconnue ou sans objet"
+
+#: ../../mod/events.php:497
+msgid "Event Finishes:"
+msgstr "L'événement termine&nbsp;:"
+
+#: ../../mod/events.php:500
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster au fuseau horaire du visiteur"
+
+#: ../../mod/events.php:502
+msgid "Description:"
+msgstr "Description:"
+
+#: ../../mod/events.php:506
+msgid "Title:"
+msgstr "Titre:"
+
+#: ../../mod/events.php:508
+msgid "Share this event"
+msgstr "Partager cet événement"
+
+#: ../../mod/filestorage.php:68
+msgid "Permission Denied."
+msgstr "Permission refusée."
+
+#: ../../mod/filestorage.php:85
+msgid "File not found."
+msgstr "Fichier introuvable."
+
+#: ../../mod/filestorage.php:122
+msgid "Edit file permissions"
+msgstr "Éditer les permissions du fichier"
+
+#: ../../mod/filestorage.php:131
+msgid "Set/edit permissions"
+msgstr "Définir/Édition des authorisations"
+
+#: ../../mod/filestorage.php:132
+msgid "Include all files and sub folders"
+msgstr "Inclure tous fichiers et sous-répertoires"
+
+#: ../../mod/filestorage.php:133
+msgid "Return to file list"
+msgstr "Retourner à la liste des fichiers"
+
+#: ../../mod/filestorage.php:135
+msgid "Copy/paste this code to attach file to a post"
+msgstr "Copiez/collez ce code pour joindre le fichier à une publication"
+
+#: ../../mod/filestorage.php:136
+msgid "Copy/paste this URL to link file from a web page"
+msgstr "Copiez/collez cette URL pour lier le fichier depuis une page web"
+
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Canal ajouté."
+
+#: ../../mod/subthread.php:103
#, php-format
-msgid "Password reset requested at %s"
-msgstr "Demande de réinitialisation de mot de passe sur %s"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit %3$s de %2$s"
-#: ../../mod/lostpass.php:63
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Contact introuvable."
+
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/relation envoyée."
+
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer une relation"
+
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer une relation à %s"
+
+#: ../../mod/suggest.php:35
msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures."
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Collection créée."
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Impossible de créer la collection."
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est"
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Collection mise-à-jour."
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez-le ou copiez-le, puis"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Créez une collection de canaux."
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Nom de la collection&nbsp;:"
-#: ../../mod/lostpass.php:90
-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 des <em>Réglages</em> une fois connecté."
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Les membres sont visibles par les autres canaux"
-#: ../../mod/lostpass.php:107
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Collection supprimée."
+
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Impossible de supprimer la collection."
+
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Éditeur de collection"
+
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Membres"
+
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Tous canaux connectés"
+
+#: ../../mod/group.php:233
+msgid "Click on a channel to add or remove."
+msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer"
+
+#: ../../mod/tagger.php:98
#, php-format
-msgid "Your password has changed at %s"
-msgstr "Votre mot de passe de %s a été changé"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s"
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Aide&nbsp;:"
-#: ../../mod/lostpass.php:123
+#: ../../mod/help.php:69 ../../index.php:233
+msgid "Not Found"
+msgstr "Introuvable"
+
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette retirée"
+
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Retirer une étiquette à l'élément"
+
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Étiquette à retirer&nbsp;:"
+
+#: ../../mod/admin.php:52
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvegardés."
+
+#: ../../mod/admin.php:92 ../../mod/admin.php:441
+msgid "Site"
+msgstr "Site"
+
+#: ../../mod/admin.php:93
+msgid "Accounts"
+msgstr "Comptes"
+
+#: ../../mod/admin.php:94 ../../mod/admin.php:885
+msgid "Channels"
+msgstr "Canaux"
+
+#: ../../mod/admin.php:95 ../../mod/admin.php:976 ../../mod/admin.php:1018
+msgid "Plugins"
+msgstr "Extensions"
+
+#: ../../mod/admin.php:96 ../../mod/admin.php:1181 ../../mod/admin.php:1217
+msgid "Themes"
+msgstr "Thèmes"
+
+#: ../../mod/admin.php:97 ../../mod/admin.php:541
+msgid "Server"
+msgstr "Serveur"
+
+#: ../../mod/admin.php:98
+msgid "DB updates"
+msgstr "MàJ BD"
+
+#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1304
+msgid "Logs"
+msgstr "Journaux"
+
+#: ../../mod/admin.php:118
+msgid "Plugin Features"
+msgstr "Fonctionnalités liées aux extensions"
+
+#: ../../mod/admin.php:120
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente"
+
+#: ../../mod/admin.php:197
+msgid "Message queues"
+msgstr "File des messages"
+
+#: ../../mod/admin.php:202 ../../mod/admin.php:440 ../../mod/admin.php:540
+#: ../../mod/admin.php:749 ../../mod/admin.php:884 ../../mod/admin.php:975
+#: ../../mod/admin.php:1017 ../../mod/admin.php:1180 ../../mod/admin.php:1216
+#: ../../mod/admin.php:1303
+msgid "Administration"
+msgstr "Administration"
+
+#: ../../mod/admin.php:203
+msgid "Summary"
+msgstr "Résumé"
+
+#: ../../mod/admin.php:205
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
+
+#: ../../mod/admin.php:207 ../../mod/admin.php:544
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
+
+#: ../../mod/admin.php:208
+msgid "Version"
+msgstr "Version"
+
+#: ../../mod/admin.php:210 ../../mod/admin.php:545
+msgid "Active plugins"
+msgstr "Extensions actives"
+
+#: ../../mod/admin.php:361
+msgid "Site settings updated."
+msgstr "Réglages du site sauvegardés."
+
+#: ../../mod/admin.php:392
+msgid "No special theme for accessibility"
+msgstr "Pas de thème spécifique pour l'accessibilité"
+
+#: ../../mod/admin.php:421
+msgid "Yes - with approval"
+msgstr "Oui - avec approbation"
+
+#: ../../mod/admin.php:427
+msgid "My site is not a public server"
+msgstr "Mon site n'est pas un serveur publique"
+
+#: ../../mod/admin.php:428
+msgid "My site has paid access only"
+msgstr "Mon site est payant"
+
+#: ../../mod/admin.php:429
+msgid "My site has free access only"
+msgstr "Mon site est gratuit"
+
+#: ../../mod/admin.php:430
+msgid "My site offers free accounts with optional paid upgrades"
+msgstr "Mon site offre des comptes gratuits avec des ajouts payants"
+
+#: ../../mod/admin.php:444
+msgid "File upload"
+msgstr "Envoi de fichier"
+
+#: ../../mod/admin.php:445
+msgid "Policies"
+msgstr "Stratégies"
+
+#: ../../mod/admin.php:450
+msgid "Site name"
+msgstr "Nom du site"
+
+#: ../../mod/admin.php:451
+msgid "Banner/Logo"
+msgstr "Bannière/logo"
+
+#: ../../mod/admin.php:452
+msgid "Administrator Information"
+msgstr "Informations sur l'administrateur"
+
+#: ../../mod/admin.php:452
msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions."
+"Contact information for site administrators. Displayed on siteinfo page. "
+"BBCode can be used here"
+msgstr "Coordonnées de l'administrateur du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "Adresse de courriel"
+#: ../../mod/admin.php:453
+msgid "System language"
+msgstr "Langue du système"
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../mod/admin.php:454
+msgid "System theme"
+msgstr "Thème du système"
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Le nom est requis"
+#: ../../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 - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>"
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Clef et secret sont requis"
+#: ../../mod/admin.php:455
+msgid "Mobile system theme"
+msgstr "Thème système pour mobile"
-#: ../../mod/settings.php:79 ../../mod/settings.php:542
-msgid "Update"
-msgstr "Mise-à-jour"
+#: ../../mod/admin.php:455
+msgid "Theme for mobile devices"
+msgstr "Thème dédié aux périphériques mobiles"
-#: ../../mod/settings.php:195
-msgid "Passwords do not match. Password unchanged."
-msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
+#: ../../mod/admin.php:456
+msgid "Accessibility system theme"
+msgstr "Thème système pour l'accessibilité"
-#: ../../mod/settings.php:199
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
+#: ../../mod/admin.php:456
+msgid "Accessibility theme"
+msgstr "Thème pour l'accessibilité"
-#: ../../mod/settings.php:212
-msgid "Password changed."
-msgstr "Le mot de passe a été changé."
+#: ../../mod/admin.php:457
+msgid "Channel to use for this website's static pages"
+msgstr "Canal à utiliser pour les pages statiques de ce site"
-#: ../../mod/settings.php:214
-msgid "Password update failed. Please try again."
-msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
+#: ../../mod/admin.php:457
+msgid "Site Channel"
+msgstr "Canal de ce HUB"
-#: ../../mod/settings.php:228
-msgid "Not valid email."
-msgstr "Adresse de courriel non-valide."
+#: ../../mod/admin.php:459
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
-#: ../../mod/settings.php:231
-msgid "Protected email address. Cannot change to that email."
-msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
+#: ../../mod/admin.php:459
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."
-#: ../../mod/settings.php:240
-msgid "System failure storing new email. Please try again."
-msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
+#: ../../mod/admin.php:460
+msgid "Does this site allow new member registration?"
+msgstr "Est-ce que l'enregistrement de nouveau membres sur ce site est autorisé?"
-#: ../../mod/settings.php:444
-msgid "Settings updated."
-msgstr "Réglages sauvegardés."
+#: ../../mod/admin.php:461
+msgid "Which best describes the types of account offered by this hub?"
+msgstr "Choisissez le type de comptes offert sur ce hub?"
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-#: ../../mod/settings.php:577
-msgid "Add application"
-msgstr "Ajouter une application"
+#: ../../mod/admin.php:462
+msgid "Register text"
+msgstr "Texte d'inscription"
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Name"
-msgstr "Nom"
+#: ../../mod/admin.php:462
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription."
-#: ../../mod/settings.php:518
-msgid "Name of application"
-msgstr "Nom de l'application"
+#: ../../mod/admin.php:463
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Consumer Key"
-msgstr "Clef de consommateur"
+#: ../../mod/admin.php:463
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps."
-#: ../../mod/settings.php:519 ../../mod/settings.php:520
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
+#: ../../mod/admin.php:464
+msgid "Allowed friend domains"
+msgstr "Domaines amicaux"
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Secret"
-msgstr "Secret de consommateur"
+#: ../../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 "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Redirect"
-msgstr "Redirection"
+#: ../../mod/admin.php:465
+msgid "Allowed email domains"
+msgstr "Domaines de courriels amicaux"
-#: ../../mod/settings.php:521
+#: ../../mod/admin.php:465
msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
+"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 noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Icon url"
-msgstr "URL de l'icône"
+#: ../../mod/admin.php:466
+msgid "Block public"
+msgstr "Bloquer public"
-#: ../../mod/settings.php:522
-msgid "Optional"
-msgstr "Facultatif"
+#: ../../mod/admin.php:466
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes."
-#: ../../mod/settings.php:533
-msgid "You can't edit this application."
-msgstr "Vous ne pouvez pas éditer cette application."
+#: ../../mod/admin.php:467
+msgid "Force publish"
+msgstr "Forcer publication"
-#: ../../mod/settings.php:576
-msgid "Connected Apps"
-msgstr "Applications connectées"
+#: ../../mod/admin.php:467
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."
-#: ../../mod/settings.php:580
-msgid "Client key starts with"
-msgstr "La clef cliente commence par"
+#: ../../mod/admin.php:468
+msgid "Disable discovery tab"
+msgstr "Désactiver l'onglet \"À découvrir\""
-#: ../../mod/settings.php:581
-msgid "No name"
-msgstr "Sans nom"
+#: ../../mod/admin.php:468
+msgid ""
+"Remove the tab in the network view with public content pulled from sources "
+"chosen for this site."
+msgstr "Ne pas afficher d'onglet avec des contenus publics automatiquement rassemblées depuis des sources choisies pour ce site."
-#: ../../mod/settings.php:582
-msgid "Remove authorization"
-msgstr "Révoquer l'autorisation"
+#: ../../mod/admin.php:469
+msgid "No login on Homepage"
+msgstr "Pas de connexion depuis la page d'accueil"
-#: ../../mod/settings.php:593
-msgid "No feature settings configured"
-msgstr "Pas de fonctionnalité à configurer"
+#: ../../mod/admin.php:469
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site)."
-#: ../../mod/settings.php:601
-msgid "Feature Settings"
-msgstr "Fonctionnalités"
+#: ../../mod/admin.php:471
+msgid "Proxy user"
+msgstr "Utilisateurs du proxy"
-#: ../../mod/settings.php:624
-msgid "Account Settings"
-msgstr "Compte"
+#: ../../mod/admin.php:472
+msgid "Proxy URL"
+msgstr "URL du proxy (visiter @proxy-list)"
-#: ../../mod/settings.php:625
-msgid "Password Settings"
-msgstr "Mot de passe"
+#: ../../mod/admin.php:473
+msgid "Network timeout"
+msgstr "Délai maximal du réseau"
-#: ../../mod/settings.php:626
-msgid "New Password:"
-msgstr "Nouveau mot de passe&nbsp;:"
+#: ../../mod/admin.php:473
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)."
-#: ../../mod/settings.php:627
-msgid "Confirm:"
-msgstr "Confirmation&nbsp;:"
+#: ../../mod/admin.php:474
+msgid "Delivery interval"
+msgstr "Intervalle de distribution"
-#: ../../mod/settings.php:627
-msgid "Leave password fields blank unless changing"
-msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
+#: ../../mod/admin.php:474
+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 "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."
-#: ../../mod/settings.php:629 ../../mod/settings.php:925
-msgid "Email Address:"
-msgstr "Adresse de courriel&nbsp;:"
+#: ../../mod/admin.php:475
+msgid "Poll interval"
+msgstr "Intervalle de scrutation"
-#: ../../mod/settings.php:630
-msgid "Remove Account"
-msgstr "Supprimer le compte"
+#: ../../mod/admin.php:475
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."
-#: ../../mod/settings.php:631
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Attention&nbsp;: cette action est permanente et irréversible."
+#: ../../mod/admin.php:476
+msgid "Maximum Load Average"
+msgstr "Charge moyenne maximale"
-#: ../../mod/settings.php:647
-msgid "Off"
-msgstr "Inactif"
+#: ../../mod/admin.php:476
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50."
-#: ../../mod/settings.php:647
-msgid "On"
-msgstr "Actif"
+#: ../../mod/admin.php:532
+msgid "No server found"
+msgstr "Serveur introuvable"
-#: ../../mod/settings.php:654
-msgid "Additional Features"
-msgstr "Fonctionnalités additionnelles"
+#: ../../mod/admin.php:539 ../../mod/admin.php:763
+msgid "ID"
+msgstr "ID"
-#: ../../mod/settings.php:679
-msgid "Connector Settings"
-msgstr "Connecteurs"
+#: ../../mod/admin.php:539
+msgid "for channel"
+msgstr "pour le canal"
-#: ../../mod/settings.php:750
-msgid "Display Settings"
-msgstr "Affichage"
+#: ../../mod/admin.php:539
+msgid "on server"
+msgstr "sur le serveur"
-#: ../../mod/settings.php:756
-msgid "Display Theme:"
-msgstr "Thème&nbsp;:"
+#: ../../mod/admin.php:539
+msgid "Status"
+msgstr "État"
-#: ../../mod/settings.php:757
-msgid "Mobile Theme:"
-msgstr "Thème mobile&nbsp;:"
+#: ../../mod/admin.php:560
+msgid "Update has been marked successful"
+msgstr "La mise à jour a été marquée comme réussie"
-#: ../../mod/settings.php:758
-msgid "Update browser every xx seconds"
-msgstr "Rafraîchir le navigateur toutes les xx secondes"
+#: ../../mod/admin.php:570
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."
-#: ../../mod/settings.php:758
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 secondes, pas de maximum"
+#: ../../mod/admin.php:573
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "La mise à jour %s a été appliquée avec succès."
-#: ../../mod/settings.php:759
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
+#: ../../mod/admin.php:577
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."
-#: ../../mod/settings.php:759
-msgid "Maximum of 100 items"
-msgstr "100 éléments au maximum"
+#: ../../mod/admin.php:580
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "La fonction de mise à jour %s est introuvable."
-#: ../../mod/settings.php:760
-msgid "Don't show emoticons"
-msgstr "Ne pas montrer les frimousses/émoticones"
+#: ../../mod/admin.php:595
+msgid "No failed updates."
+msgstr "Aucune mise à jour défaillante."
-#: ../../mod/settings.php:761
-msgid "Do not view remote profiles in frames"
-msgstr ""
+#: ../../mod/admin.php:599
+msgid "Failed Updates"
+msgstr "Mises à jour défaillantes"
-#: ../../mod/settings.php:761
-msgid "By default open in a sub-window of your own site"
-msgstr "Par défaut, ouvrir dans une sous-fenêtre de votre propre site"
+#: ../../mod/admin.php:601
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"
-#: ../../mod/settings.php:796
-msgid "Nobody except yourself"
-msgstr "Personne sauf vous"
+#: ../../mod/admin.php:602
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter de réaliser cette étape de mise à jour automatiquement"
-#: ../../mod/settings.php:797
-msgid "Only those you specifically allow"
-msgstr "Seulement ceux que vous autorisez spécifiquement"
+#: ../../mod/admin.php:628
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilisateur bloqué/débloqué"
+msgstr[1] "%s utilisateurs bloqués/débloqués"
-#: ../../mod/settings.php:798
-msgid "Anybody in your address book"
-msgstr "Tous vos contacts"
+#: ../../mod/admin.php:635
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
-#: ../../mod/settings.php:799
-msgid "Anybody on this website"
-msgstr "Tous les utilisateurs du site"
+#: ../../mod/admin.php:666
+msgid "Account not found"
+msgstr "Compte introuvable"
-#: ../../mod/settings.php:800
-msgid "Anybody in this network"
-msgstr "Tous les utilisateurs du réseau"
+#: ../../mod/admin.php:677
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
-#: ../../mod/settings.php:801
-msgid "Anybody on the internet"
-msgstr "Tout les utilisateurs d'Internet"
+#: ../../mod/admin.php:686
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
-#: ../../mod/settings.php:878
-msgid "Publish your default profile in the network directory"
-msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
+#: ../../mod/admin.php:686
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
-#: ../../mod/settings.php:883
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?"
+#: ../../mod/admin.php:750 ../../mod/admin.php:762
+msgid "Users"
+msgstr "Utilisateurs"
-#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "ou"
+#: ../../mod/admin.php:752 ../../mod/admin.php:887
+msgid "select all"
+msgstr "tout sélectionner"
-#: ../../mod/settings.php:892
-msgid "Your channel address is"
-msgstr "Votre canal a pour adresse"
+#: ../../mod/admin.php:753
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions en attente d'approbation"
-#: ../../mod/settings.php:914
-msgid "Channel Settings"
-msgstr "Canal"
+#: ../../mod/admin.php:754
+msgid "Request date"
+msgstr "Date de la demande"
-#: ../../mod/settings.php:923
-msgid "Basic Settings"
-msgstr "Basique"
+#: ../../mod/admin.php:755
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
-#: ../../mod/settings.php:926
-msgid "Your Timezone:"
-msgstr "Zone de temps&nbsp;:"
+#: ../../mod/admin.php:756
+msgid "Approve"
+msgstr "Approuver"
-#: ../../mod/settings.php:927
-msgid "Default Post Location:"
-msgstr "Localisation par défaut&nbsp;:"
+#: ../../mod/admin.php:757
+msgid "Deny"
+msgstr "Refuser"
-#: ../../mod/settings.php:928
-msgid "Use Browser Location:"
-msgstr "Utiliser la localisation fournie par le navigateur&nbsp;:"
+#: ../../mod/admin.php:763
+msgid "Register date"
+msgstr "Date d'inscription"
-#: ../../mod/settings.php:930
-msgid "Adult Content"
-msgstr "Contenu \"adulte\""
+#: ../../mod/admin.php:763
+msgid "Last login"
+msgstr "Dernière connexion"
+
+#: ../../mod/admin.php:763
+msgid "Expires"
+msgstr "Expire"
+
+#: ../../mod/admin.php:763
+msgid "Service Class"
+msgstr "Classe de service"
-#: ../../mod/settings.php:930
+#: ../../mod/admin.php:765
msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)"
+"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 seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
-#: ../../mod/settings.php:932
-msgid "Security and Privacy Settings"
-msgstr "Sécurité et vie privée"
+#: ../../mod/admin.php:766
+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} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?"
-#: ../../mod/settings.php:934
-msgid "Hide my online presence"
-msgstr "Cacher ma présence en ligne"
+#: ../../mod/admin.php:799
+#, php-format
+msgid "%s channel censored/uncensored"
+msgid_plural "%s channelss censored/uncensored"
+msgstr[0] "%s canal censuré/non-censuré"
+msgstr[1] "%s canaux censurés/non-censurés"
-#: ../../mod/settings.php:934
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
+#: ../../mod/admin.php:806
+#, php-format
+msgid "%s channel deleted"
+msgid_plural "%s channels deleted"
+msgstr[0] "%s canal supprimé"
+msgstr[1] "%s canaux supprimés"
-#: ../../mod/settings.php:936
-msgid "Simple Privacy Settings:"
-msgstr "Réglages simples&nbsp;:"
+#: ../../mod/admin.php:825
+msgid "Channel not found"
+msgstr "Canal introuvable"
-#: ../../mod/settings.php:937
+#: ../../mod/admin.php:836
+#, php-format
+msgid "Channel '%s' deleted"
+msgstr "Canal '%s' supprimé"
+
+#: ../../mod/admin.php:846
+#, php-format
+msgid "Channel '%s' uncensored"
+msgstr "Canal '%s' non-censuré"
+
+#: ../../mod/admin.php:846
+#, php-format
+msgid "Channel '%s' censored"
+msgstr "Canal '%s' censuré"
+
+#: ../../mod/admin.php:889
+msgid "Censor"
+msgstr "Censurer"
+
+#: ../../mod/admin.php:890
+msgid "Uncensor"
+msgstr "Ne plus censurer"
+
+#: ../../mod/admin.php:893
+msgid "UID"
+msgstr "UID"
+
+#: ../../mod/admin.php:895
msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
-msgstr "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>"
+"Selected channels will be deleted!\\n\\nEverything that was posted in these "
+"channels on this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Les canaux sélectionnés seront supprimés!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé!\\n\\nÊtes-vous certain?"
-#: ../../mod/settings.php:938
+#: ../../mod/admin.php:896
msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
-msgstr "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>"
+"The channel {0} will be deleted!\\n\\nEverything that was posted in this "
+"channel on this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Le canal {0} sera supprimé!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé!\\n\\nÊtes-vous certain?"
-#: ../../mod/settings.php:939
-msgid "Private - <em>default private, never open or public</em>"
-msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
+#: ../../mod/admin.php:935
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extension %s désactivée."
-#: ../../mod/settings.php:940
-msgid "Blocked - <em>default blocked to/from everybody</em>"
-msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
+#: ../../mod/admin.php:939
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extension %s activée."
-#: ../../mod/settings.php:943
-msgid "Advanced Privacy Settings"
-msgstr "Réglages avancés"
+#: ../../mod/admin.php:949 ../../mod/admin.php:1151
+msgid "Disable"
+msgstr "Désactiver"
-#: ../../mod/settings.php:945
-msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximum de mises en relation par jour&nbsp;:"
+#: ../../mod/admin.php:951 ../../mod/admin.php:1153
+msgid "Enable"
+msgstr "Activer"
-#: ../../mod/settings.php:945
-msgid "May reduce spam activity"
-msgstr "Contribue à réduire l'impact du spam"
+#: ../../mod/admin.php:977 ../../mod/admin.php:1182
+msgid "Toggle"
+msgstr "(Dés)activer"
-#: ../../mod/settings.php:946
-msgid "Default Post Permissions"
-msgstr "Permissions par défaut des publications"
+#: ../../mod/admin.php:985 ../../mod/admin.php:1192
+msgid "Author: "
+msgstr "Auteur&nbsp;:"
-#: ../../mod/settings.php:958
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
+#: ../../mod/admin.php:986 ../../mod/admin.php:1193
+msgid "Maintainer: "
+msgstr "Maintenu par&nbsp;:"
-#: ../../mod/settings.php:958
-msgid "Useful to reduce spamming"
-msgstr "Utile pour réduire le spam"
+#: ../../mod/admin.php:1115
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
-#: ../../mod/settings.php:961
-msgid "Notification Settings"
-msgstr "Notifications"
+#: ../../mod/admin.php:1174
+msgid "Screenshot"
+msgstr "Aperçu"
-#: ../../mod/settings.php:962
-msgid "By default post a status message when:"
-msgstr "Par défaut, publier un statut quand:"
+#: ../../mod/admin.php:1222
+msgid "[Experimental]"
+msgstr "[Expérimental]"
-#: ../../mod/settings.php:963
-msgid "accepting a friend request"
-msgstr "acceptez une mise en relation"
+#: ../../mod/admin.php:1223
+msgid "[Unsupported]"
+msgstr "[Non-supporté]"
-#: ../../mod/settings.php:964
-msgid "joining a forum/community"
-msgstr "joignez un forum ou à une communauté"
+#: ../../mod/admin.php:1250
+msgid "Log settings updated."
+msgstr "Réglages du journal sauvegardés."
-#: ../../mod/settings.php:965
-msgid "making an <em>interesting</em> profile change"
-msgstr "faites une modification <em>intéressante</em> de votre profil"
+#: ../../mod/admin.php:1306
+msgid "Clear"
+msgstr "Vider"
-#: ../../mod/settings.php:966
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand&nbsp;:"
+#: ../../mod/admin.php:1312
+msgid "Debugging"
+msgstr "Débogage"
-#: ../../mod/settings.php:967
-msgid "You receive an introduction"
-msgstr "Vous recevez une introduction"
+#: ../../mod/admin.php:1313
+msgid "Log file"
+msgstr "Fichier du journal"
-#: ../../mod/settings.php:968
-msgid "Your introductions are confirmed"
-msgstr "Vos introductions sont acceptées/confirmées"
+#: ../../mod/admin.php:1313
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de votre installation de la Matrice Rouge."
-#: ../../mod/settings.php:969
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un écrit sur votre mur"
+#: ../../mod/admin.php:1314
+msgid "Log level"
+msgstr "Niveau de journalisation"
-#: ../../mod/settings.php:970
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un commente sur vos publications"
+#: ../../mod/thing.php:98
+msgid "Thing updated"
+msgstr "Chose mise-à-jour"
-#: ../../mod/settings.php:971
-msgid "You receive a private message"
-msgstr "Vous recevez un Message Privé"
+#: ../../mod/thing.php:158
+msgid "Object store: failed"
+msgstr "Stockage de l'objet&nbsp;: échec"
-#: ../../mod/settings.php:972
-msgid "You receive a friend suggestion"
-msgstr "Vous recevez une suggestion d'amitié/relation"
+#: ../../mod/thing.php:162
+msgid "Thing added"
+msgstr "Chose ajoutée"
-#: ../../mod/settings.php:973
-msgid "You are tagged in a post"
-msgstr "Vous êtes étiqueté dans une publication"
+#: ../../mod/thing.php:182
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../mod/settings.php:974
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Vous êtes tapoté/pointé/etc. dans une publication"
+#: ../../mod/thing.php:234
+msgid "Show Thing"
+msgstr "Montrer chose"
-#: ../../mod/settings.php:977
-msgid "Advanced Account/Page Type Settings"
-msgstr "Type de page/Compte (avancé)"
+#: ../../mod/thing.php:241
+msgid "item not found."
+msgstr "élément introuvable."
-#: ../../mod/settings.php:978
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
+#: ../../mod/thing.php:272
+msgid "Edit Thing"
+msgstr "Éditer chose"
-#: ../../mod/settings.php:981
-msgid ""
-"Please enable expert mode (in Settings > Additional features) to adjust!"
-msgstr "Merci d'activer le mode expert (dans Réglages > Fonctionnalités additionelles) pour affiner!"
+#: ../../mod/thing.php:274 ../../mod/thing.php:321
+msgid "Select a profile"
+msgstr "Choisissez un profil"
+
+#: ../../mod/thing.php:278 ../../mod/thing.php:324
+msgid "Post an activity"
+msgstr "Publier une activité"
+
+#: ../../mod/thing.php:278 ../../mod/thing.php:324
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Envoi exclusivement au membres autorisé de ce profil"
+
+#: ../../mod/thing.php:280 ../../mod/thing.php:326
+msgid "Name of thing e.g. something"
+msgstr "Nom de la chose, p.ex. quelque-chose"
+
+#: ../../mod/thing.php:282 ../../mod/thing.php:327
+msgid "URL of thing (optional)"
+msgstr "URL de la chose (optionnel)"
+
+#: ../../mod/thing.php:284 ../../mod/thing.php:328
+msgid "URL for photo of thing (optional)"
+msgstr "URL de l'image de la chose (optionnel)"
+
+#: ../../mod/thing.php:319
+msgid "Add Thing to your Profile"
+msgstr "Ajouter la chose à votre profil"
#: ../../mod/import.php:36
msgid "Nothing to import."
@@ -6213,47 +6904,47 @@ msgstr "Le clonage du canal a échoué. L'import a échoué."
msgid "Cloned channel not found. Import failed."
msgstr "Le canal cloné n'a pas été trouvé. L'import a échoué."
-#: ../../mod/import.php:358
+#: ../../mod/import.php:364
msgid "Import completed."
msgstr "L'import est terminé."
-#: ../../mod/import.php:371
+#: ../../mod/import.php:377
msgid "You must be logged in to use this feature."
msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité."
-#: ../../mod/import.php:376
+#: ../../mod/import.php:382
msgid "Import Channel"
msgstr "Importation de canal"
-#: ../../mod/import.php:377
+#: ../../mod/import.php:383
msgid ""
"Use this form to import an existing channel from a different server/hub. You"
" may retrieve the channel identity from the old server/hub via the network "
"or provide an export file. Only identity and connections/relationships will "
"be imported. Importation of content is not yet available."
-msgstr "Utilisez ce formulaire pour importer un canal existant sur un serveur différent. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export. Seules les données d'identité et de relations seront importées. L'importation des contenus n'est pas encore disponible."
+msgstr "Utilisez ce formulaire pour importer un canal existant sur un serveur différent. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export. Seules les données d'identité et de relations seront importées. L'importation du contenu est toujours en développement."
-#: ../../mod/import.php:378
+#: ../../mod/import.php:384
msgid "File to Upload"
msgstr "Fichier à envoyer"
-#: ../../mod/import.php:379
+#: ../../mod/import.php:385
msgid "Or provide the old server/hub details"
msgstr "Ou fournissez les détails de l'ancien serveur"
-#: ../../mod/import.php:380
+#: ../../mod/import.php:386
msgid "Your old identity address (xyz@example.com)"
msgstr "Votre ancienne identité (zyx@exemple.com)"
-#: ../../mod/import.php:381
+#: ../../mod/import.php:387
msgid "Your old login email address"
msgstr "Votre ancienne adresse de courriel"
-#: ../../mod/import.php:382
+#: ../../mod/import.php:388
msgid "Your old login password"
msgstr "Votre ancien mot de passe"
-#: ../../mod/import.php:383
+#: ../../mod/import.php:389
msgid ""
"For either option, please choose whether to make this hub your new primary "
"address, or whether your old location should continue this role. You will be"
@@ -6261,66 +6952,269 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Quelle que soit l'option choisie, merci de décider si cette nouvelle adresse sera la primaire, ou si votre ancienne adresse continuera à jouer ce rôle. Vous pourrez publier depuis l'adresse de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."
-#: ../../mod/import.php:384
+#: ../../mod/import.php:390
msgid "Make this hub my primary location"
-msgstr "Faire de cette adresse ma principale"
+msgstr "Faire de ce hub l'adresse principale de ce canal"
+
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
+msgstr "Limite du nombre total d'invitation dépassée."
-#: ../../mod/manage.php:63
+#: ../../mod/invite.php:49
#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
-msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés."
+msgid "%s : Not a valid email address."
+msgstr "%s&nbsp: adresse courriel invalide."
-#: ../../mod/manage.php:71
-msgid "Create a new channel"
-msgstr "Créer un nouveau canal"
+#: ../../mod/invite.php:76
+msgid "Please join us on Red"
+msgstr "Rejoignez-nous sur la Matrice Rouge"
-#: ../../mod/manage.php:76
-msgid "Channel Manager"
-msgstr "Gestionnaire du canal"
+#: ../../mod/invite.php:87
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site."
-#: ../../mod/manage.php:77
-msgid "Current Channel"
-msgstr "Canal actif"
+#: ../../mod/invite.php:92
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s&nbsp;: Échec dans la livraison du message."
-#: ../../mod/manage.php:79
-msgid "Attach to one of your channels by selecting it."
-msgstr "Branchez-vous à l'un de vos canaux en le selectionnant."
+#: ../../mod/invite.php:96
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
-#: ../../mod/manage.php:80
-msgid "Default Channel"
-msgstr "Canal par défaut"
+#: ../../mod/invite.php:115
+msgid "You have no more invitations available"
+msgstr "Vous ne disposez plus d'aucune invitation"
-#: ../../mod/manage.php:81
-msgid "Make Default"
-msgstr "Définir comme défaut"
+#: ../../mod/invite.php:141
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
-#: ../../mod/vote.php:97
-msgid "Total votes"
-msgstr "Suffrages exprimés"
+#: ../../mod/invite.php:142
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses de courriel, une par ligne&nbsp;:"
-#: ../../mod/vote.php:98
-msgid "Average Rating"
-msgstr "Note moyenne"
+#: ../../mod/invite.php:143 ../../mod/mail.php:225 ../../mod/mail.php:338
+msgid "Your message:"
+msgstr "Votre message&nbsp;:"
-#: ../../mod/match.php:16
-msgid "Profile Match"
-msgstr "Profils similaires"
+#: ../../mod/invite.php:144
+msgid ""
+"You are cordially invited to join me and some other close friends on the Red"
+" Matrix - a revolutionary new decentralised communication and information "
+"tool."
+msgstr "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Rouge - un nouvel outil de communication décentralisé et révolutionnaire."
-#: ../../mod/match.php:24
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."
+#: ../../mod/invite.php:146
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Vous devrez fournir ce code d'invitation&nbsp;: $invite_code"
-#: ../../mod/match.php:61
-msgid "is interested in:"
-msgstr "s'intéresse à&nbsp;:"
+#: ../../mod/invite.php:147
+msgid "Please visit my channel at"
+msgstr "Merci de me rendre visite sur"
-#: ../../mod/match.php:69
-msgid "No matches"
-msgstr "Pas de correspondance"
+#: ../../mod/invite.php:151
+msgid ""
+"Once you have registered (on ANY Red Matrix site - they are all inter-"
+"connected), please connect with my Red Matrix channel address:"
+msgstr "Une fois inscrit (sur N'IMPORTE QUEL HUB publique - ils sont tous inter-connectés), merci d'ajouter mon Canal&nbsp;:"
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
-msgstr "signature de la cible invalide"
+#: ../../mod/invite.php:153
+msgid "Click the [Register] link on the following page to join."
+msgstr "Cliquez le lien [S'inscrire] sur la page suivante pour nous rejoindre."
+
+#: ../../mod/invite.php:155
+msgid ""
+"For more information about the Red Matrix Project and why it has the "
+"potential to change the internet as we know it, please visit "
+"http://getzot.com"
+msgstr "Pour plus d'information sur le projet Red Matrix(Matrice Rouge), et sa capacité à remodeler Internet, merci de visiter http://getzot.com"
+
+#: ../../mod/item.php:147
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication initiale."
+
+#: ../../mod/item.php:372
+msgid "Empty post discarded."
+msgstr "Publication vide annulée."
+
+#: ../../mod/item.php:414
+msgid "Executable content type not permitted to this channel."
+msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."
+
+#: ../../mod/item.php:842
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvegardée."
+
+#: ../../mod/item.php:1285
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racine\"."
+
+#: ../../mod/item.php:1291
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Vous avez atteint votre limite de %1$.0f pages web."
+
+#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25
+#: ../../mod/update_network.php:23 ../../mod/update_search.php:46
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenu embarqué - rechargez la page pour le voir]"
+
+#: ../../mod/layouts.php:62
+msgid "Help with this feature"
+msgstr "Aide avec cette fonctionnalité"
+
+#: ../../mod/layouts.php:84
+msgid "Layout Name"
+msgstr "Nom de la mise-en-page"
+
+#: ../../mod/like.php:15
+msgid "Like/Dislike"
+msgstr "J'aime/Je Déteste"
+
+#: ../../mod/like.php:20
+msgid "This action is restricted to members."
+msgstr "Cette action est réservée aux membres."
+
+#: ../../mod/like.php:21
+msgid ""
+"Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a "
+"href=\"register\">register as a new RedMatrix member</a> to continue."
+msgstr "SVP <a href=\"rmagic\">connectez-vous</a> ou <a href=\"register\">enregistrez-vous</a> pour continuer."
+
+#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142
+msgid "Invalid request."
+msgstr "Requête invalide."
+
+#: ../../mod/like.php:119
+msgid "thing"
+msgstr "chose"
+
+#: ../../mod/like.php:165
+msgid "Channel unavailable."
+msgstr "Canal indisponible."
+
+#: ../../mod/like.php:204
+msgid "Previous action reversed."
+msgstr "Action précédente annulée."
+
+#: ../../mod/like.php:417
+msgid "Action completed."
+msgstr "Action complétée."
+
+#: ../../mod/like.php:418
+msgid "Thank you."
+msgstr "Merci."
+
+#: ../../mod/lockview.php:30 ../../mod/lockview.php:36
+msgid "Remote privacy information not available."
+msgstr "Les informations de vie privée à distance ne sont pas disponibles."
+
+#: ../../mod/lockview.php:45
+msgid "Visible to:"
+msgstr "Visible par&nbsp;:"
+
+#: ../../mod/viewconnections.php:58
+msgid "No connections."
+msgstr "Pas de relations."
+
+#: ../../mod/viewconnections.php:71
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
+
+#: ../../mod/viewconnections.php:86
+msgid "View Connnections"
+msgstr "Voir les relations"
+
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Aucun compte valide trouvé."
+
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe demandée. Vérifiez vos courriels."
+
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membre du site (%s)"
+
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Demande de réinitialisation du mot de passe sur %s"
+
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué."
+
+#: ../../mod/lostpass.php:85 ../../boot.php:1498
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
+
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
+
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est"
+
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez-le ou copiez-le, puis"
+
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
+
+#: ../../mod/lostpass.php:90
+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 des <em>Réglages</em> une fois connecté."
+
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Votre mot de passe de %s a été changé"
+
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié?"
+
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions."
+
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "Adresse de courriel"
+
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Réinitialiser"
+
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "Hub introuvable."
+
+#: ../../mod/vote.php:97
+msgid "Total votes"
+msgstr "Total des votes"
+
+#: ../../mod/vote.php:98
+msgid "Average Rating"
+msgstr "Évaluation"
#: ../../mod/mail.php:33
msgid "Unable to lookup recipient."
@@ -6350,212 +7244,226 @@ msgstr "Message supprimé."
msgid "Message recalled."
msgstr "Message annulé/rappelé."
-#: ../../mod/mail.php:206
+#: ../../mod/mail.php:215
msgid "Send Private Message"
msgstr "Envoyer un Message Privé"
-#: ../../mod/mail.php:207 ../../mod/mail.php:323
+#: ../../mod/mail.php:216 ../../mod/mail.php:333
msgid "To:"
msgstr "À&nbsp;:"
-#: ../../mod/mail.php:212 ../../mod/mail.php:325
+#: ../../mod/mail.php:221 ../../mod/mail.php:335
msgid "Subject:"
msgstr "Sujet&nbsp;:"
-#: ../../mod/mail.php:249
+#: ../../mod/mail.php:259
msgid "Message not found."
msgstr "Message introuvable."
-#: ../../mod/mail.php:292 ../../mod/message.php:72
+#: ../../mod/mail.php:302 ../../mod/message.php:72
msgid "Delete message"
msgstr "Supprimer message"
-#: ../../mod/mail.php:293
+#: ../../mod/mail.php:303
msgid "Recall message"
msgstr "Rappeler/annuler le message"
-#: ../../mod/mail.php:295
+#: ../../mod/mail.php:305
msgid "Message has been recalled."
msgstr "Le message a été rappelé."
-#: ../../mod/mail.php:312
+#: ../../mod/mail.php:322
msgid "Private Conversation"
msgstr "Conversation privée"
-#: ../../mod/mail.php:316
+#: ../../mod/mail.php:326
msgid "Delete conversation"
msgstr "Supprimer conversation"
-#: ../../mod/mail.php:318
+#: ../../mod/mail.php:328
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
-msgstr "Aucune communication sécurisée n'est possible en l'état. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur."
+msgstr "Aucune communication sécurisée n'est possible. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur."
-#: ../../mod/mail.php:322
+#: ../../mod/mail.php:332
msgid "Send Reply"
msgstr "Envoyer une réponse"
-#: ../../mod/editlayout.php:72
-msgid "Edit Layout"
-msgstr "Éditer mise-en-page"
+#: ../../mod/manage.php:64
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés."
-#: ../../mod/editlayout.php:82
-msgid "Delete layout?"
-msgstr "Supprimer la mise-en-page?"
+#: ../../mod/manage.php:72
+msgid "Create a new channel"
+msgstr "Créer un nouveau canal"
-#: ../../mod/editlayout.php:147
-msgid "Delete Layout"
-msgstr "Supprimer mise-en-page"
+#: ../../mod/manage.php:77
+msgid "Channel Manager"
+msgstr "Gestionnaire du canal"
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "L'image a été téléversée, mais le recadrage a échoué."
+#: ../../mod/manage.php:78
+msgid "Current Channel"
+msgstr "Canal actif"
-#: ../../mod/profile_photo.php:97
-msgid "Image resize failed."
-msgstr "Le retaillage de l'image a échoué."
+#: ../../mod/manage.php:80
+msgid "Attach to one of your channels by selecting it."
+msgstr "Branchez-vous à l'un de vos canaux en le selectionnant."
-#: ../../mod/profile_photo.php:141
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."
+#: ../../mod/manage.php:81
+msgid "Default Channel"
+msgstr "Canal par défaut"
-#: ../../mod/profile_photo.php:163
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "L'image dépasse la taille limite de %d"
+#: ../../mod/manage.php:82
+msgid "Make Default"
+msgstr "Définir comme défaut"
-#: ../../mod/profile_photo.php:172
-msgid "Unable to process image."
-msgstr "Impossible de traîter l'image."
+#: ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr "Photos du mur"
-#: ../../mod/profile_photo.php:214 ../../mod/profile_photo.php:262
-msgid "Photo not available."
-msgstr "Photo inaccessible."
+#: ../../mod/match.php:16
+msgid "Profile Match"
+msgstr "Profils similaires"
-#: ../../mod/profile_photo.php:281
-msgid "Upload File:"
-msgstr "Fichier&nbsp;:"
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut."
-#: ../../mod/profile_photo.php:282
-msgid "Select a profile:"
-msgstr "Choisir un profil&nbsp;:"
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr "s'intéresse à&nbsp;:"
-#: ../../mod/profile_photo.php:283
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr "Pas de correspondance"
-#: ../../mod/profile_photo.php:284
-msgid "Upload"
-msgstr "Envoyer"
+#: ../../mod/menu.php:21
+msgid "Menu updated."
+msgstr "Menu mis à jour."
-#: ../../mod/profile_photo.php:288
-msgid "skip this step"
-msgstr "passer cette étape"
+#: ../../mod/menu.php:25
+msgid "Unable to update menu."
+msgstr "Impossible de mettre le menu à jour."
-#: ../../mod/profile_photo.php:288
-msgid "select a photo from your photo albums"
-msgstr "choisir une photo dans vos albums"
+#: ../../mod/menu.php:30
+msgid "Menu created."
+msgstr "Menu créé."
-#: ../../mod/profile_photo.php:302
-msgid "Crop Image"
-msgstr "Recadrer l'image"
+#: ../../mod/menu.php:34
+msgid "Unable to create menu."
+msgstr "Impossible de créer le menu."
-#: ../../mod/profile_photo.php:303
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Merci d'ajuter le cadre pour une visualisation optimale."
+#: ../../mod/menu.php:57
+msgid "Manage Menus"
+msgstr "Gérer les menus"
-#: ../../mod/profile_photo.php:305
-msgid "Done Editing"
-msgstr "J'ai terminé"
+#: ../../mod/menu.php:60
+msgid "Drop"
+msgstr "Supprimer"
-#: ../../mod/profile_photo.php:340
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../mod/menu.php:62
+msgid "Create a new menu"
+msgstr "Créer un nouveau menu"
-#: ../../mod/profile_photo.php:342
-msgid "Image upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../mod/menu.php:63
+msgid "Delete this menu"
+msgstr "Supprimer ce menu"
-#: ../../mod/profile_photo.php:351
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "La réduction de taille [%s] a échoué."
+#: ../../mod/menu.php:64 ../../mod/menu.php:109
+msgid "Edit menu contents"
+msgstr "Éditer le contenu du menu"
-#: ../../mod/connections.php:191 ../../mod/connections.php:263
-msgid "Blocked"
-msgstr "Bloqué"
+#: ../../mod/menu.php:65
+msgid "Edit this menu"
+msgstr "Éditer le menu"
-#: ../../mod/connections.php:196 ../../mod/connections.php:270
-msgid "Ignored"
-msgstr "Ignoré"
+#: ../../mod/menu.php:80
+msgid "New Menu"
+msgstr "Nouveau menu"
-#: ../../mod/connections.php:201 ../../mod/connections.php:284
-msgid "Hidden"
-msgstr "Caché"
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Menu name"
+msgstr "Nom du menu"
-#: ../../mod/connections.php:206 ../../mod/connections.php:277
-msgid "Archived"
-msgstr "Archivé"
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Must be unique, only seen by you"
+msgstr "Doit être unique, ne sera vu que par vous"
-#: ../../mod/connections.php:217
-msgid "All"
-msgstr "Tout"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title"
+msgstr "Titre du menu"
-#: ../../mod/connections.php:241
-msgid "Suggest new connections"
-msgstr "Suggérer de nouvelles relations"
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title as seen by others"
+msgstr "Titre du menu tel que vu par les visiteurs"
-#: ../../mod/connections.php:247
-msgid "Show pending (new) connections"
-msgstr "Voir les (nouvelles) relations en attente"
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Allow bookmarks"
+msgstr "Autoriser l'usage de favoris"
-#: ../../mod/connections.php:253
-msgid "Show all connections"
-msgstr "Voir toutes les relations"
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Menu may be used to store saved bookmarks"
+msgstr "Le menu pourra être utilisé pour stocker des favoris"
-#: ../../mod/connections.php:256
-msgid "Unblocked"
-msgstr "Non bloquées"
+#: ../../mod/menu.php:98
+msgid "Menu deleted."
+msgstr "Menu supprimé."
-#: ../../mod/connections.php:259
-msgid "Only show unblocked connections"
-msgstr "Ne montrer que les relations non-bloquées"
+#: ../../mod/menu.php:100
+msgid "Menu could not be deleted."
+msgstr "Impossible de supprimer le menu."
-#: ../../mod/connections.php:266
-msgid "Only show blocked connections"
-msgstr "Ne montrer que les relations bloquées"
+#: ../../mod/menu.php:106
+msgid "Edit Menu"
+msgstr "Éditer le menu"
-#: ../../mod/connections.php:273
-msgid "Only show ignored connections"
-msgstr "Ne montrer que les relations ignorées"
+#: ../../mod/menu.php:108
+msgid "Add or remove entries to this menu"
+msgstr "Ajouter/supprimer des entrées à ce menu"
-#: ../../mod/connections.php:280
-msgid "Only show archived connections"
-msgstr "Ne montrer que les relations archivées"
+#: ../../mod/message.php:41
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
-#: ../../mod/connections.php:287
-msgid "Only show hidden connections"
-msgstr "Ne montrer que les relations cachées"
+#: ../../mod/message.php:56
+msgid "No messages."
+msgstr "Pas de message."
-#: ../../mod/connections.php:331
-#, php-format
-msgid "%1$s [%2$s]"
-msgstr "%1$s [%2$s]"
+#: ../../mod/message.php:74
+msgid "D, d M Y - g:i A"
+msgstr "D d Y - H:i"
-#: ../../mod/connections.php:332
-msgid "Edit contact"
-msgstr "Éditer contact"
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Ajouter un canal"
-#: ../../mod/connections.php:355
-msgid "Search your connections"
-msgstr "Chercher parmi vos relations"
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre administrateur de hub vous y autorise."
-#: ../../mod/connections.php:356
-msgid "Finding: "
-msgstr "Recherche&nbsp;:"
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\""
+
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Choisissez un alias"
+
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Cet alias sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres."
+
+#: ../../mod/new_channel.php:114
+msgid "Or <a href=\"import\">import an existing channel</a> from another location"
+msgstr "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
@@ -6563,756 +7471,408 @@ msgstr "Identifiant de requête invalide."
#: ../../mod/notifications.php:35
msgid "Discard"
-msgstr "Défausser"
+msgstr "Annuler"
-#: ../../mod/notifications.php:93 ../../mod/notify.php:54
+#: ../../mod/notifications.php:94 ../../mod/notify.php:53
msgid "No more system notifications."
msgstr "Pas d'autre notification du système."
-#: ../../mod/notifications.php:97 ../../mod/notify.php:58
+#: ../../mod/notifications.php:98 ../../mod/notify.php:57
msgid "System Notifications"
msgstr "Notifications du système"
-#: ../../mod/blocks.php:65
-msgid "Block Name"
-msgstr "Nom du bloc"
-
#: ../../mod/oexchange.php:23
msgid "Unable to find your hub."
-msgstr "Impossible de trouver votre instance."
+msgstr "Impossible de trouver votre hub."
#: ../../mod/oexchange.php:37
msgid "Post successful."
msgstr "Contribution effectuée."
-#: ../../mod/editwebpage.php:106
-msgid "Edit Webpage"
-msgstr "Éditer page web"
-
-#: ../../mod/editwebpage.php:116
-msgid "Delete webpage?"
-msgstr "Supprimer la page web?"
-
-#: ../../mod/editwebpage.php:189
-msgid "Delete Webpage"
-msgstr "Supprimer page web"
-
-#: ../../mod/profile.php:64 ../../mod/profile.php:72
-msgid "Access to this profile has been restricted."
-msgstr "L'accès à ce profil a été restreint."
-
-#: ../../mod/poke.php:159
-msgid "Poke/Prod"
-msgstr "Tapoter/Solliciter"
-
-#: ../../mod/poke.php:160
-msgid "poke, prod or do other things to somebody"
-msgstr "Tapoter, pointer, et autres choses à faire à quelqu'un"
-
-#: ../../mod/poke.php:161
-msgid "Recipient"
-msgstr "Destinataire"
-
-#: ../../mod/poke.php:162
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisir quoi lui faire"
-
-#: ../../mod/poke.php:165
-msgid "Make this post private"
-msgstr "Rendre cette contribution privée"
-
-#: ../../mod/channel.php:85
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Permissions insuffisantes. Demande redirigée à la page du profil."
-
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Indisponible."
-
-#: ../../mod/community.php:32
-msgid "Community"
-msgstr "Communauté"
-
-#: ../../mod/community.php:63 ../../mod/community.php:88
-msgid "No results."
-msgstr "Aucun résultat."
-
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Contact introuvable."
-
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/relation envoyée."
-
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer une relation"
-
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer une relation à %s"
-
-#: ../../mod/editblock.php:86
-msgid "Edit Block"
-msgstr "Éditer bloc"
-
-#: ../../mod/editblock.php:96
-msgid "Delete block?"
-msgstr "Supprimer le bloc?"
-
-#: ../../mod/editblock.php:163
-msgid "Delete Block"
-msgstr "Supprimer bloc"
-
-#: ../../mod/dirprofile.php:114
-msgid "Status: "
-msgstr "État&nbsp;:"
-
-#: ../../mod/dirprofile.php:115
-msgid "Sexual Preference: "
-msgstr "Orientation sexuelle&nbsp;:"
-
-#: ../../mod/dirprofile.php:117
-msgid "Homepage: "
-msgstr "Site web&nbsp;:"
-
-#: ../../mod/dirprofile.php:118
-msgid "Hometown: "
-msgstr "Ville natale&nbsp;:"
-
-#: ../../mod/dirprofile.php:120
-msgid "About: "
-msgstr "À propos&nbsp;:"
-
-#: ../../mod/dirprofile.php:168
-msgid "Keywords: "
-msgstr "Mots-clefs&nbsp;:"
-
-#: ../../mod/filestorage.php:68
-msgid "Permission Denied."
-msgstr "Permission refusée."
-
-#: ../../mod/filestorage.php:85
-msgid "File not found."
-msgstr "Fichier introuvable."
-
-#: ../../mod/filestorage.php:119
-msgid "Edit file permissions"
-msgstr "Éditer les permissions du fichier"
-
-#: ../../mod/filestorage.php:124 ../../mod/photos.php:607
-#: ../../mod/photos.php:950
-msgid "Permissions"
-msgstr "Permissions"
-
-#: ../../mod/filestorage.php:126
-msgid "Include all files and sub folders"
-msgstr "Inclure tous fichiers et sous-répertoires"
-
-#: ../../mod/filestorage.php:127
-msgid "Return to file list"
-msgstr "Retourner à la liste des fichiers"
-
-#: ../../mod/filestorage.php:129
-msgid "Copy/paste this code to attach file to a post"
-msgstr "Copiez/collez ce code pour joindre le fichier à une publication"
-
-#: ../../mod/filestorage.php:130
-msgid "Copy/paste this URL to link file from a web page"
-msgstr "Copiez/collez cette URL pour lier le fichier depuis une page web"
-
-#: ../../mod/filestorage.php:167
-msgid "Download"
-msgstr "Télécharger"
-
-#: ../../mod/filestorage.php:173
-msgid "Used: "
-msgstr "Utilisé&nbsp;:"
-
-#: ../../mod/filestorage.php:174
-msgid "[directory]"
-msgstr "[répertoire]"
-
-#: ../../mod/filestorage.php:176
-msgid "Limit: "
-msgstr "Limite&nbsp;:"
-
-#: ../../mod/suggest.php:35
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures."
-
-#: ../../mod/message.php:41
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
-
-#: ../../mod/message.php:56
-msgid "No messages."
-msgstr "Pas de message."
-
-#: ../../mod/message.php:74
-msgid "D, d M Y - g:i A"
-msgstr "D d Y - H:i"
-
-#: ../../mod/pubsites.php:22
-msgid "Public Sites"
-msgstr "Sites publics"
-
-#: ../../mod/pubsites.php:25
-msgid ""
-"The listed sites allow public registration into the Red Matrix. All sites in"
-" the matrix are interlinked so membership on any of them conveys membership "
-"in the matrix as a whole. Some sites may require subscription or provide "
-"tiered service plans. The provider links <strong>may</strong> provide "
-"additional details."
-msgstr "Les sites listés autorisent l'inscription pour tous. Tous sont liés entre eux, de manière à ce qu'un compte sur un seul d'entre eux soit valable sur l'ensemble de la matrice. Certains sites peuvent demander des frais de souscriptions, ou fournir des forfaits ajustés. Le lien \"fournisseur\" <strong>peut</strong> vous donner des détails supplémentaires."
-
-#: ../../mod/pubsites.php:31
-msgid "Site URL"
-msgstr "URL du site"
-
-#: ../../mod/pubsites.php:31
-msgid "Access Type"
-msgstr "Type d'accès"
-
-#: ../../mod/pubsites.php:31
-msgid "Registration Policy"
-msgstr "Politique d'inscription"
-
-#: ../../mod/register.php:43
-msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
-msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain."
-
-#: ../../mod/register.php:49
-msgid ""
-"Please indicate acceptance of the Terms of Service. Registration failed."
-msgstr "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué."
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
+msgstr "signature de la cible invalide"
-#: ../../mod/register.php:77
-msgid "Passwords do not match."
-msgstr "Les mots de passe ne concordent pas."
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur du protocole OpenID. Pas d'ID retourné."
-#: ../../mod/register.php:105
-msgid ""
-"Registration successful. Please check your email for validation "
-"instructions."
-msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."
+#: ../../mod/appman.php:28 ../../mod/appman.php:44
+msgid "App installed."
+msgstr "Application installée."
-#: ../../mod/register.php:111
-msgid "Your registration is pending approval by the site owner."
-msgstr "Votre inscription est en attente de l'approbation d'un administrateur."
+#: ../../mod/appman.php:37
+msgid "Malformed app."
+msgstr "Erreur de l'application - Malformée."
-#: ../../mod/register.php:114
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traîtée."
+#: ../../mod/appman.php:80
+msgid "Embed code"
+msgstr "Code intégré"
-#: ../../mod/register.php:147
-msgid "Registration on this site/hub is by approval only."
-msgstr "L'inscription sur cette instance/ce site est soumis à une modération."
+#: ../../mod/appman.php:86
+msgid "Edit App"
+msgstr "Edition de l'Application"
-#: ../../mod/register.php:148
-msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
-msgstr "<a href=\"pubsites\">S'inscrire sur un site/hub affilié</a>"
+#: ../../mod/appman.php:86
+msgid "Create App"
+msgstr "Création d'une Application"
-#: ../../mod/register.php:156
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain."
+#: ../../mod/appman.php:91
+msgid "Name of app"
+msgstr "Nom de l'application"
-#: ../../mod/register.php:167
-msgid "Terms of Service"
-msgstr "les Règles du Service"
+#: ../../mod/appman.php:92
+msgid "Location (URL) of app"
+msgstr "Emplacement (Lien) vers l'application"
-#: ../../mod/register.php:173
-#, php-format
-msgid "I accept the %s for this website"
-msgstr "J'accepte %s de ce site"
+#: ../../mod/appman.php:94
+msgid "Photo icon URL"
+msgstr "Lien (URL) de l'icône à utiliser pour cette photo"
-#: ../../mod/register.php:175
-#, php-format
-msgid "I am over 13 years of age and accept the %s for this website"
-msgstr "J'ai treize (13) ans révolus, et j'accepte %s de ce site"
+#: ../../mod/appman.php:94
+msgid "80 x 80 pixels - optional"
+msgstr "80 x 80 pixels - optionel"
-#: ../../mod/register.php:194
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../mod/appman.php:95
+msgid "Version ID"
+msgstr "Version"
-#: ../../mod/register.php:195
-msgid "Please enter your invitation code"
-msgstr "Merci de saisir votre code d'invitation"
+#: ../../mod/appman.php:96
+msgid "Price of app"
+msgstr "Prix de l'application"
-#: ../../mod/register.php:198
-msgid "Your email address"
-msgstr "Votre adresse de courriel"
+#: ../../mod/appman.php:97
+msgid "Location (URL) to purchase app"
+msgstr "Emplacement (LIEN) pour l'achat de l'application"
-#: ../../mod/register.php:199
-msgid "Choose a password"
-msgstr "Choisissez un mot de passe"
+#: ../../mod/poll.php:64
+msgid "Poll"
+msgstr "Sondage"
-#: ../../mod/register.php:200
-msgid "Please re-enter your password"
-msgstr "Confirmez-le"
+#: ../../mod/poll.php:69
+msgid "View Results"
+msgstr "Résultats"
-#: ../../mod/regmod.php:12
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../view/theme/apw/php/config.php:202
+#: ../../view/theme/apw/php/config.php:236
+msgid "Schema Default"
+msgstr "Par défault"
-#: ../../mod/removeme.php:49
-msgid "Remove This Channel"
-msgstr "Supprimer ce canal"
+#: ../../view/theme/apw/php/config.php:203
+msgid "Sans-Serif"
+msgstr "Sans-Serif"
-#: ../../mod/removeme.php:50
-msgid ""
-"This will completely remove this channel from the network. Once this has "
-"been done it is not recoverable."
-msgstr "Ceci effacera complètement le canal du réseau. Une fois effacé, un canal ne PEUT PAS être récupéré."
+#: ../../view/theme/apw/php/config.php:204
+msgid "Monospace"
+msgstr "Monospace"
-#: ../../mod/removeme.php:51
-msgid "Please enter your password for verification:"
-msgstr "Merci de re-saisir votre mot de passe pour vérification&nbsp;:"
+#: ../../view/theme/apw/php/config.php:259
+#: ../../view/theme/blogga/php/config.php:69
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Theme settings"
+msgstr "Réglages du thème"
-#: ../../mod/removeme.php:52
-msgid "Remove this channel and all its clones from the network"
-msgstr "Supprimer ce canal ainsi que tous ses clones de par le réseau"
+#: ../../view/theme/apw/php/config.php:260
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Set scheme"
+msgstr "Définir la palette de couleurs"
-#: ../../mod/removeme.php:52
-msgid ""
-"By default only the instance of the channel located on this hub will be "
-"removed from the network"
-msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau"
+#: ../../view/theme/apw/php/config.php:261
+#: ../../view/theme/redbasic/php/config.php:124
+msgid "Set font-size for posts and comments"
+msgstr "Définir font-size pour contribution et commentaires"
-#: ../../mod/removeme.php:53
-msgid "Remove Channel"
-msgstr "Enlever le canal"
+#: ../../view/theme/apw/php/config.php:262
+msgid "Set font face"
+msgstr "Définir la police de caractères"
-#: ../../mod/photos.php:77
-msgid "Page owner information could not be retrieved."
-msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
+#: ../../view/theme/apw/php/config.php:263
+msgid "Set iconset"
+msgstr "Définir les icônes"
-#: ../../mod/photos.php:97
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../view/theme/apw/php/config.php:264
+msgid "Set big shadow size, default 15px 15px 15px"
+msgstr "Taille de l'ombre max, par défaut 15px 15px 15px"
-#: ../../mod/photos.php:119 ../../mod/photos.php:672
-msgid "Delete Album"
-msgstr "Supprimer album"
+#: ../../view/theme/apw/php/config.php:265
+msgid "Set small shadow size, default 5px 5px 5px"
+msgstr "Taille de l'ombre min, par défaut 5px 5px 5px"
-#: ../../mod/photos.php:159 ../../mod/photos.php:955
-msgid "Delete Photo"
-msgstr "Supprimer photo"
+#: ../../view/theme/apw/php/config.php:266
+msgid "Set shadow colour, default #000"
+msgstr "Couleur de l'ombre, défaut #000"
-#: ../../mod/photos.php:453
-msgid "No photos selected"
-msgstr "Aucune photo selectionnée"
+#: ../../view/theme/apw/php/config.php:267
+msgid "Set radius size, default 5px"
+msgstr "Rayon, défaut 5px"
-#: ../../mod/photos.php:500
-msgid "Access to this item is restricted."
-msgstr "L'accès à l'élément est restreint."
+#: ../../view/theme/apw/php/config.php:268
+msgid "Set line-height for posts and comments"
+msgstr "Hauteur de la ligne utilisé par les publications et les commentaires"
-#: ../../mod/photos.php:577
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
+#: ../../view/theme/apw/php/config.php:269
+msgid "Set background image"
+msgstr "Image de fond"
-#: ../../mod/photos.php:580
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos."
+#: ../../view/theme/apw/php/config.php:270
+msgid "Set background attachment"
+msgstr "Image de fond - fichier"
-#: ../../mod/photos.php:599
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../view/theme/apw/php/config.php:271
+msgid "Set background colour"
+msgstr "Couleur de fond"
-#: ../../mod/photos.php:603 ../../mod/photos.php:667
-msgid "New album name: "
-msgstr "Créer un album&nbsp;:"
+#: ../../view/theme/apw/php/config.php:272
+msgid "Set section background image"
+msgstr "Image de fond - Section"
-#: ../../mod/photos.php:604
-msgid "or existing album name: "
-msgstr "ou choisir un album existant&nbsp;:"
+#: ../../view/theme/apw/php/config.php:273
+msgid "Set section background colour"
+msgstr "Image de fond - Couleur"
-#: ../../mod/photos.php:605
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de statut pour cet envoi"
+#: ../../view/theme/apw/php/config.php:274
+msgid "Set colour of items - use hex"
+msgstr "Couleur des items - hexadécimal"
-#: ../../mod/photos.php:656 ../../mod/photos.php:678 ../../mod/photos.php:1127
-#: ../../mod/photos.php:1142
-msgid "Contact Photos"
-msgstr "Photos de contact"
+#: ../../view/theme/apw/php/config.php:275
+msgid "Set colour of links - use hex"
+msgstr "Couleur des liens - hexadécimal"
-#: ../../mod/photos.php:682
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../view/theme/apw/php/config.php:276
+msgid "Set max-width for items. Default 400px"
+msgstr "Largeur maximale des items, Défaut 400px"
-#: ../../mod/photos.php:688
-msgid "Show Newest First"
-msgstr "Ordre anté-chronologique"
+#: ../../view/theme/apw/php/config.php:277
+msgid "Set min-width for items. Default 240px"
+msgstr "Largeur minimale des items, Défaut 240px"
-#: ../../mod/photos.php:690
-msgid "Show Oldest First"
-msgstr "Ordre chronologique"
+#: ../../view/theme/apw/php/config.php:278
+msgid "Set the generic content wrapper width. Default 48%"
+msgstr "Largeur du \"wrapper\" de contenu. Défaut 48%"
-#: ../../mod/photos.php:733 ../../mod/photos.php:1174
-msgid "View Photo"
-msgstr "Voir photo"
+#: ../../view/theme/apw/php/config.php:279
+msgid "Set colour of fonts - use hex"
+msgstr "Couleur des polices - Hexadécimal"
-#: ../../mod/photos.php:779
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
+#: ../../view/theme/apw/php/config.php:280
+msgid "Set background-size element"
+msgstr "Taille du fond"
-#: ../../mod/photos.php:781
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../view/theme/apw/php/config.php:281
+msgid "Item opacity"
+msgstr "Transparence"
-#: ../../mod/photos.php:841
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo du profil"
+#: ../../view/theme/apw/php/config.php:282
+msgid "Display post previews only"
+msgstr "Prévisualiser seulement"
-#: ../../mod/photos.php:865
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../view/theme/apw/php/config.php:283
+msgid "Display side bar on channel page"
+msgstr "Afficher le panneau latéral sur la page du canal"
-#: ../../mod/photos.php:939
-msgid "Edit photo"
-msgstr "Éditer photo"
+#: ../../view/theme/apw/php/config.php:284
+msgid "Colour of the navigation bar"
+msgstr "Couleur de la barre de navigation"
-#: ../../mod/photos.php:941
-msgid "Rotate CW (right)"
-msgstr "Rotation horaire (droite)"
+#: ../../view/theme/apw/php/config.php:285
+msgid "Item float"
+msgstr "Alignement de l'élément"
-#: ../../mod/photos.php:942
-msgid "Rotate CCW (left)"
-msgstr "Rotation anti-horaire (gauche)"
+#: ../../view/theme/apw/php/config.php:286
+msgid "Left offset of the section element"
+msgstr "Décalage à gauche de la section"
-#: ../../mod/photos.php:944
-msgid "New album name"
-msgstr "Nouveau nom d'album&nbsp;:"
+#: ../../view/theme/apw/php/config.php:287
+msgid "Right offset of the section element"
+msgstr "Décalage à droite de la section"
-#: ../../mod/photos.php:947
-msgid "Caption"
-msgstr "Titre/légende"
+#: ../../view/theme/apw/php/config.php:288
+msgid "Section width"
+msgstr "Largeur de la section"
-#: ../../mod/photos.php:949
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../view/theme/apw/php/config.php:289
+msgid "Left offset of the aside"
+msgstr "Décalage à gauche du panneau latéral"
-#: ../../mod/photos.php:952
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon"
+#: ../../view/theme/apw/php/config.php:290
+msgid "Right offset of the aside element"
+msgstr "Décalage à droite du panneau latéral"
-#: ../../mod/photos.php:1105
-msgid "In This Photo:"
-msgstr "Dans cette photo&nbsp;:"
+#: ../../view/theme/blogga/php/config.php:47
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+msgid "None"
+msgstr "Aucun"
-#: ../../mod/photos.php:1180
-msgid "View Album"
-msgstr "Voir album"
+#: ../../view/theme/blogga/php/config.php:70
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+msgid "Header image"
+msgstr "Image de l'entête"
-#: ../../mod/photos.php:1189
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../view/theme/blogga/php/config.php:71
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+msgid "Header image only on profile pages"
+msgstr "Image de l'entête sur les pages du profil uniquement"
-#: ../../mod/mood.php:138
-msgid "Mood"
-msgstr "Humeur"
+#: ../../view/theme/redbasic/php/config.php:84
+msgid "Light (Red Matrix default)"
+msgstr "Blanc (valeur par défaut)"
-#: ../../mod/mood.php:139
-msgid "Set your current mood and tell your friends"
-msgstr "Indiquez votre humeur du moment à vos amis"
+#: ../../view/theme/redbasic/php/config.php:104
+msgid "Narrow navbar"
+msgstr "Barre de navigation fine"
-#: ../../mod/ping.php:192
-msgid "sent you a private message"
-msgstr "vous a envoyé un message privé"
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Navigation bar background colour"
+msgstr "Couleur de fond de la barre de navigation"
-#: ../../mod/ping.php:250
-msgid "added your channel"
-msgstr "a ajouté votre canal"
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Navigation bar gradient top colour"
+msgstr "Gradient de la barre de navigation (couleur 1)"
-#: ../../mod/ping.php:294
-msgid "posted an event"
-msgstr "a publié un événement"
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Navigation bar gradient bottom colour"
+msgstr "Gradient de la barre de navigation (couleur 2)"
-#: ../../view/theme/redbasic/php/config.php:76
-msgid "Scheme Default"
-msgstr "Schéma de couleur par défaut"
+#: ../../view/theme/redbasic/php/config.php:108
+msgid "Navigation active button gradient top colour"
+msgstr "Gradient du bouton de navigation (couleur 1)"
-#: ../../view/theme/redbasic/php/config.php:87
-msgid "silver"
-msgstr "argent"
+#: ../../view/theme/redbasic/php/config.php:109
+msgid "Navigation active button gradient bottom colour"
+msgstr "Gradient du bouton de navigation (couleur 2)"
-#: ../../view/theme/redbasic/php/config.php:98
-#: ../../view/theme/apw/php/config.php:234
-#: ../../view/theme/blogga/view/theme/blog/config.php:69
-#: ../../view/theme/blogga/php/config.php:69
-msgid "Theme settings"
-msgstr "Réglages du thème"
+#: ../../view/theme/redbasic/php/config.php:110
+msgid "Navigation bar border colour "
+msgstr "Couleur de la bordure de la barre de navigation"
-#: ../../view/theme/redbasic/php/config.php:99
-#: ../../view/theme/apw/php/config.php:235
-msgid "Set scheme"
-msgstr "Définir la palette de couleurs"
+#: ../../view/theme/redbasic/php/config.php:111
+msgid "Navigation bar icon colour "
+msgstr "Couleur de l'icône de la barre de navigation"
-#: ../../view/theme/redbasic/php/config.php:100
-msgid "Navigation bar colour"
-msgstr "Couleur de la barre de navigation"
+#: ../../view/theme/redbasic/php/config.php:112
+msgid "Navigation bar active icon colour "
+msgstr "Couleur de l'icône active de la barre de navigation"
-#: ../../view/theme/redbasic/php/config.php:101
+#: ../../view/theme/redbasic/php/config.php:113
msgid "link colour"
msgstr "couleur des liens"
-#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:114
msgid "Set font-colour for banner"
msgstr "Définir la couleur du texte de la bannière"
-#: ../../view/theme/redbasic/php/config.php:103
+#: ../../view/theme/redbasic/php/config.php:115
msgid "Set the background colour"
msgstr "Définir la couleur d'arrière-plan"
-#: ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:116
msgid "Set the background image"
msgstr "Définir l'image d'arrière-plan"
-#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:117
msgid "Set the background colour of items"
msgstr "Définir la couleur de fond des contributions"
-#: ../../view/theme/redbasic/php/config.php:106
-msgid "Set the opacity of items"
-msgstr "Définir l'opacité des contributions"
+#: ../../view/theme/redbasic/php/config.php:118
+msgid "Set the background colour of comments"
+msgstr "Couleur de fond des commentaires"
-#: ../../view/theme/redbasic/php/config.php:107
+#: ../../view/theme/redbasic/php/config.php:119
+msgid "Set the border colour of comments"
+msgstr "Couleur de la bordure des commentaires"
+
+#: ../../view/theme/redbasic/php/config.php:120
+msgid "Set the indent for comments"
+msgstr "Indentation des commentaires"
+
+#: ../../view/theme/redbasic/php/config.php:121
msgid "Set the basic colour for item icons"
msgstr "Définir la couleur de base pour les icônes des éléments"
-#: ../../view/theme/redbasic/php/config.php:108
+#: ../../view/theme/redbasic/php/config.php:122
msgid "Set the hover colour for item icons"
msgstr "Définir la couleur de survol des icônes des éléments"
-#: ../../view/theme/redbasic/php/config.php:109
+#: ../../view/theme/redbasic/php/config.php:123
msgid "Set font-size for the entire application"
msgstr "Définir la taille de police pour l'application entière"
-#: ../../view/theme/redbasic/php/config.php:110
-#: ../../view/theme/apw/php/config.php:236
-msgid "Set font-size for posts and comments"
-msgstr "Définir font-size pour contribution et commentaires"
-
-#: ../../view/theme/redbasic/php/config.php:111
+#: ../../view/theme/redbasic/php/config.php:125
msgid "Set font-colour for posts and comments"
msgstr "Définir font-colour pour les contributions et commentaires"
-#: ../../view/theme/redbasic/php/config.php:112
+#: ../../view/theme/redbasic/php/config.php:126
msgid "Set radius of corners"
msgstr "Définir le rayon des arrondis"
-#: ../../view/theme/redbasic/php/config.php:113
+#: ../../view/theme/redbasic/php/config.php:127
msgid "Set shadow depth of photos"
msgstr "Définir la profondeur de l'ombre des photos"
-#: ../../view/theme/redbasic/php/config.php:114
+#: ../../view/theme/redbasic/php/config.php:128
msgid "Set maximum width of conversation regions"
msgstr "Définir la largeur maximale des conversations"
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:129
+msgid "Center conversation regions"
+msgstr "Emplacement de la conversation - Centrer"
+
+#: ../../view/theme/redbasic/php/config.php:130
msgid "Set minimum opacity of nav bar - to hide it"
msgstr "Définir l'opacité minimum du bandeau de navigation - pour le cacher"
-#: ../../view/theme/redbasic/php/config.php:116
+#: ../../view/theme/redbasic/php/config.php:131
msgid "Set size of conversation author photo"
msgstr "Définir la taille de la photo de l'auteur d'une conversation"
-#: ../../view/theme/redbasic/php/config.php:117
+#: ../../view/theme/redbasic/php/config.php:132
msgid "Set size of followup author photos"
msgstr "Définir la taille de la photo de l'auteur d'une réponse"
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:133
msgid "Sloppy photo albums"
msgstr "Albums photo \"en biais\""
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:133
msgid "Are you a clean desk or a messy desk person?"
msgstr "Vous êtes plutôt \"bureau bien rangé\" ou \"gros foutoir\"?"
-#: ../../view/theme/apw/php/config.php:193
-#: ../../view/theme/apw/php/config.php:211
-msgid "Schema Default"
-msgstr "Palette par défaut"
-
-#: ../../view/theme/apw/php/config.php:194
-msgid "Sans-Serif"
-msgstr "Sans empâtements"
-
-#: ../../view/theme/apw/php/config.php:195
-msgid "Monospace"
-msgstr "Châsse fixe"
-
-#: ../../view/theme/apw/php/config.php:237
-msgid "Set font face"
-msgstr "Définir la fonte"
-
-#: ../../view/theme/apw/php/config.php:238
-msgid "Set iconset"
-msgstr "Définir le jeu d'icônes"
-
-#: ../../view/theme/apw/php/config.php:239
-msgid "Set big shadow size, default 15px 15px 15px"
-msgstr "Définir la taille des grandes ombres, par défaut 15px 15px 15px"
-
-#: ../../view/theme/apw/php/config.php:240
-msgid "Set small shadow size, default 5px 5px 5px"
-msgstr "Définir la taille des petites ombres, par défaut 5px 5px 5px"
-
-#: ../../view/theme/apw/php/config.php:241
-msgid "Set shadow colour, default #000"
-msgstr "Définir la couleur des ombres, par défaut #000"
-
-#: ../../view/theme/apw/php/config.php:242
-msgid "Set radius size, default 5px"
-msgstr "Définir le rayon des arrondis, par défaut 5px"
-
-#: ../../view/theme/apw/php/config.php:243
-msgid "Set line-height for posts and comments"
-msgstr "Définir line-height pour contributions et commentaires"
-
-#: ../../view/theme/apw/php/config.php:244
-msgid "Set background image"
-msgstr "Définir l'image d'arrière-plan"
-
-#: ../../view/theme/apw/php/config.php:245
-msgid "Set background colour"
-msgstr "Définir la couleur d'arrière-plan"
-
-#: ../../view/theme/apw/php/config.php:246
-msgid "Set section background image"
-msgstr "Définir l'image d'arrière-plan des sections"
-
-#: ../../view/theme/apw/php/config.php:247
-msgid "Set section background colour"
-msgstr "Définir la couleur d'arrière-plan des sections"
-
-#: ../../view/theme/apw/php/config.php:248
-msgid "Set colour of items - use hex"
-msgstr "Définir la couleur des éléments - en héxadécimal"
-
-#: ../../view/theme/apw/php/config.php:249
-msgid "Set colour of links - use hex"
-msgstr "Définir la couleur des liens - en héxadécimal"
-
-#: ../../view/theme/apw/php/config.php:250
-msgid "Set max-width for items. Default 400px"
-msgstr "Définir la largeur maximal des éléments. Par défaut, 400px"
-
-#: ../../view/theme/apw/php/config.php:251
-msgid "Set min-width for items. Default 240px"
-msgstr "Définir la largeur minimale des éléments. Par défaut, 240px"
-
-#: ../../view/theme/apw/php/config.php:252
-msgid "Set the generic content wrapper width. Default 48%"
-msgstr "Définir la largeur du contenu. Par défaut, 48%"
-
-#: ../../view/theme/apw/php/config.php:253
-msgid "Set colour of fonts - use hex"
-msgstr "Définir la couleur des fontes - en héxadécimal"
-
-#: ../../view/theme/apw/php/config.php:254
-msgid "Set background-size element"
-msgstr "Définir background-size pour les éléments"
-
-#: ../../view/theme/apw/php/config.php:255
-msgid "Item opacity"
-msgstr "Opacité des éléments"
-
-#: ../../view/theme/apw/php/config.php:256
-msgid "Display post previews only"
-msgstr "Afficher seulement l'aperçu des contributions"
-
-#: ../../view/theme/apw/php/config.php:257
-msgid "Display side bar on channel page"
-msgstr "Afficher le panneau latéral sur la page du canal"
-
-#: ../../view/theme/apw/php/config.php:258
-msgid "Colour of the navigation bar"
-msgstr "Couleur de la barre de navigation"
-
-#: ../../view/theme/apw/php/config.php:259
-msgid "Item float"
-msgstr "Alignement de l'élément"
-
-#: ../../view/theme/apw/php/config.php:260
-msgid "Left offset of the section element"
-msgstr "Décalage gauche de l'élément section"
-
-#: ../../view/theme/apw/php/config.php:261
-msgid "Right offset of the section element"
-msgstr "Décalage droit de l'élément section"
-
-#: ../../view/theme/apw/php/config.php:262
-msgid "Section width"
-msgstr "Largeur de la section"
-
-#: ../../view/theme/apw/php/config.php:263
-msgid "Left offset of the aside"
-msgstr "Décalage gauche du panneau latéral"
-
-#: ../../view/theme/apw/php/config.php:264
-msgid "Right offset of the aside element"
-msgstr "Décalage droit du panneau latéral"
-
-#: ../../view/theme/blogga/view/theme/blog/config.php:47
-#: ../../view/theme/blogga/php/config.php:47
-msgid "None"
-msgstr "Aucun(e)"
-
-#: ../../view/theme/blogga/view/theme/blog/config.php:70
-#: ../../view/theme/blogga/php/config.php:70
-msgid "Header image"
-msgstr "Têtière"
-
-#: ../../view/theme/blogga/view/theme/blog/config.php:71
-#: ../../view/theme/blogga/php/config.php:71
-msgid "Header image only on profile pages"
-msgstr "Têtière seulement sur les profils"
-
-#: ../../boot.php:1232
+#: ../../boot.php:1286
#, php-format
msgid "Update %s failed. See error logs."
msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."
-#: ../../boot.php:1235
+#: ../../boot.php:1289
#, php-format
msgid "Update Error at %s"
msgstr "Erreur de mise-à-jour sur %s"
-#: ../../boot.php:1399
+#: ../../boot.php:1463
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red"
-#: ../../boot.php:1427
+#: ../../boot.php:1491
msgid "Password"
msgstr "Mot de passe"
-#: ../../boot.php:1428
+#: ../../boot.php:1492
msgid "Remember me"
msgstr "Se souvenir de moi"
-#: ../../boot.php:1433
+#: ../../boot.php:1497
msgid "Forgot your password?"
msgstr "Mot de passe oublié?"
-#: ../../boot.php:1498
+#: ../../boot.php:1562
msgid "permission denied"
msgstr "permission refusée"
-#: ../../boot.php:1499
+#: ../../boot.php:1563
msgid "Got Zot?"
-msgstr "T'as Zot?"
+msgstr "Authentification magique a échouée. Êtes-vous toujours connecté à votre HUB?"
-#: ../../boot.php:1899
+#: ../../boot.php:1993
msgid "toggle mobile"
msgstr "(dés)activer mobile"
diff --git a/view/fr/passchanged_eml.tpl b/view/fr/passchanged_eml.tpl
index 0d94be3c2..bfbd7c5ef 100644
--- a/view/fr/passchanged_eml.tpl
+++ b/view/fr/passchanged_eml.tpl
@@ -1,20 +1,19 @@
-Dear {{$username}},
- Your password has been changed as requested. Please retain this
-information for your records (or change your password immediately to
-something that you will remember).
+Cher {{$username}},
+ Votre mot de passe a bien été réinitialisé.
+Veuillez conserver cette information (ou changer immédiatement ce mot de passe temporaire).
-Your login details are as follows:
+Voici les détails de connections:
-Site Location: {{$siteurl}}
-Login Name: {{$email}}
-Password: {{$new_password}}
+Emplacement du site:⇥{{$siteurl}}
+Usager:⇥{{$email}}
+Mot de passe:⇥{{$new_password}}
-You may change that password from your account settings page after logging in.
+Vous pouvez changez ce mot de passe à partir des réglages du profil après vous être connecté.
-Sincerely,
- {{$sitename}} Administrator
+Sincèrement,
+ Administrateur {{$sitename}}
-
+ \ No newline at end of file
diff --git a/view/fr/register_open_eml.tpl b/view/fr/register_open_eml.tpl
index 4b397201c..7bf52a261 100644
--- a/view/fr/register_open_eml.tpl
+++ b/view/fr/register_open_eml.tpl
@@ -1,19 +1,19 @@
-An account has been created at {{$sitename}} for this email address.
-The login details are as follows:
+Un compte a été créé sur {{$sitename}} avec cette adresse de courriel.
+Voici les détails de connections:
-Site Location: {{$siteurl}}
-Login: {{$email}}
-Password: (the password which was provided during registration)
+Emplacement du site:⇥{{$siteurl}}
+Usager:⇥{{$email}}
+Mot de passe: (le mot de passe tel qu'il a été spécifier lors de l'enregistrement)
-If this account was created without your knowledge and is not desired, you may
-visit this site and reset the password. This will allow you to remove the
-account from the links on the Settings page, and we
-apologise for any inconvenience.
+Si ce compte a été créé sans votre accord, vous pouvez
+visiter ce site et réinitialiser le mot de passe.
+Ceci vous permettra de supprimer le compte à partir de la page des réglages du profil.
+Veuillez accepter nos excuses pour tous les inconvénients que cela a pu engendrer.
-Thank you and welcome to {{$sitename}}.
+Merci et Bienvenu sur {{$sitename}}.
-Sincerely,
- {{$sitename}} Administrator
+Sincèrement,
+ Administrateur {{$sitename}}
-
+ \ No newline at end of file
diff --git a/view/fr/register_verify_eml.tpl b/view/fr/register_verify_eml.tpl
index 85d9a12d3..09170079c 100644
--- a/view/fr/register_verify_eml.tpl
+++ b/view/fr/register_verify_eml.tpl
@@ -1,25 +1,24 @@
-A new user registration request was received at {{$sitename}} which requires
-your approval.
+Une demande d'enregistrement pour un nouvel usager a été reçue de {{$sitename}} laquelle requiert
+votre accord.
-The login details are as follows:
+Voici les détails de connections:
-Site Location: {{$siteurl}}
-Login Name: {{$email}}
-IP Address: {{$details}}
+Emplacement du site:⇥{{$siteurl}}
+Usager:⇥{{$email}}
+Adresse IP: {{$details}}
-To approve this request please visit the following link:
+Pour confirmer votre accord, veuillez visiter le lien suivant:
{{$siteurl}}/regmod/allow/{{$hash}}
-To deny the request and remove the account, please visit:
+Pour supprimer ce compte, veuillez visiter:
{{$siteurl}}/regmod/deny/{{$hash}}
-Thank you.
-
+Merci.
diff --git a/view/fr/register_verify_member.tpl b/view/fr/register_verify_member.tpl
new file mode 100644
index 000000000..c7641d4f7
--- /dev/null
+++ b/view/fr/register_verify_member.tpl
@@ -0,0 +1,24 @@
+
+Merci de vous être enregistré sur {{$sitename}}.
+
+Voici les détails de connections:
+
+Emplacement du site:⇥{{$siteurl}}
+Usager:⇥{{$email}}
+
+Connectez-vous avec le mot de passe que vous avez choisi au moment de l'enregistrement.
+
+Nous avons besoin de vérifier votre adresse de courriel avant d’autoriser votre accès sur le réseau.
+
+Si vous avez enregistré ce compte, veuillez visiter ce lien:
+
+{{$siteurl}}/regver/allow/{{$hash}}
+
+
+Pour supprimer ce compte, veuillez visiter:
+
+
+{{$siteurl}}/regver/deny/{{$hash}}
+
+
+Merci.
diff --git a/view/fr/request_notify_eml.tpl b/view/fr/request_notify_eml.tpl
index d01b8ff27..3e6feb93c 100644
--- a/view/fr/request_notify_eml.tpl
+++ b/view/fr/request_notify_eml.tpl
@@ -1,17 +1,17 @@
-Dear {{$myname}},
+Cher {{$myname}},
-You have just received a connection request at {{$sitename}}
+Vous venez de recevoir une demande de relation sur {{$sitename}}
-from '{{$requestor}}'.
+de '{{$requestor}}'.
-You may visit their profile at {{$url}}.
+Vous pouvez visiter son profil ici {{$url}}.
-Please login to your site to view the complete introduction
-and approve or ignore/cancel the request.
+Veuillez vos connecter pour voir son profil
+et approuver ou ignorer/supprimer cette requête.
{{$siteurl}}
-Regards,
+Bien à vous,
- {{$sitename}} administrator
+ Administrateur {{$sitename}} \ No newline at end of file
diff --git a/view/fr/strings.php b/view/fr/strings.php
index 2de927cf7..620137700 100644
--- a/view/fr/strings.php
+++ b/view/fr/strings.php
@@ -5,118 +5,12 @@ function string_plural_select_fr($n){
return ($n > 1);;
}}
;
-$a->strings["Categories"] = "Catégories";
-$a->strings["Connect"] = "Relier";
-$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
-$a->strings["Suggestions"] = "Suggestion";
-$a->strings["See more..."] = "Voir plus...";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
-$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
-$a->strings["Enter the channel address"] = "Adresse du canal";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara";
-$a->strings["Notes"] = "Notes";
-$a->strings["Save"] = "Sauver";
-$a->strings["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches sauvées";
-$a->strings["add"] = "ajouter";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Archives"] = "Archives";
-$a->strings["Refresh"] = "Actualiser";
-$a->strings["Me"] = "Moi";
-$a->strings["Best Friends"] = "Mes meilleurs amis";
-$a->strings["Friends"] = "Amis";
-$a->strings["Co-workers"] = "Mes collègues";
-$a->strings["Former Friends"] = "Mes anciens amis";
-$a->strings["Acquaintances"] = "Mes accointances";
-$a->strings["Everybody"] = "Tout le monde";
-$a->strings["Account settings"] = "Compte";
-$a->strings["Channel settings"] = "Canal";
-$a->strings["Additional features"] = "Fonc. supplémentaires";
-$a->strings["Feature settings"] = "Fonctionnalités";
-$a->strings["Display settings"] = "Affichage";
-$a->strings["Connected apps"] = "Applications";
-$a->strings["Export channel"] = "Exporter canal";
-$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
-$a->strings["Premium Channel Settings"] = "Canal Premium";
-$a->strings["Channel Sources"] = "Canaux sources";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Check Mail"] = "Vérifier courriel";
-$a->strings["New Message"] = "Nouveau message";
-$a->strings["Chat Rooms"] = "Salons";
-$a->strings["Visible to everybody"] = "Visible par tous";
-$a->strings["show"] = "montrer";
-$a->strings["don't show"] = "cacher";
-$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 %1\$s de %2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis-à-jour %2\$s, modifiant %3\$s.";
-$a->strings["Logout"] = "Déconnexion";
-$a->strings["End this session"] = "Mettre fin à la session";
-$a->strings["Home"] = "Canal";
-$a->strings["Your posts and conversations"] = "Vos publications et conversations";
-$a->strings["View Profile"] = "Voir profil";
-$a->strings["Your profile page"] = "Votre profil";
-$a->strings["Edit Profiles"] = "Éditer profils";
-$a->strings["Manage/Edit profiles"] = "Gérer/éditer profils";
-$a->strings["Photos"] = "Photos";
-$a->strings["Your photos"] = "Vos photos";
-$a->strings["Files"] = "Fichiers";
-$a->strings["Your files"] = "Vos fichiers";
-$a->strings["Chat"] = "Discussion";
-$a->strings["Your chatrooms"] = "Vos salons";
-$a->strings["Events"] = "Événements";
-$a->strings["Your events"] = "Vos événements";
-$a->strings["Bookmarks"] = "Marque-pages";
-$a->strings["Your bookmarks"] = "Vos marque-pages";
-$a->strings["Webpages"] = "Pages web";
-$a->strings["Your webpages"] = "Vos pages web";
-$a->strings["Login"] = "Connexion";
-$a->strings["Sign in"] = "Connexion";
-$a->strings["%s - click to logout"] = "%s - cliquer pour déconnecter";
-$a->strings["Click to authenticate to your home hub"] = "S'authentifier auprès de son hébergement";
-$a->strings["Home Page"] = "Page d'accueil";
-$a->strings["Register"] = "Inscription";
-$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, jeux, utilitaires";
-$a->strings["Search"] = "Recherche";
-$a->strings["Search site content"] = "Recherche parmi le contenu du site";
-$a->strings["Directory"] = "Annuaire";
-$a->strings["Channel Locator"] = "Localisation de canaux";
-$a->strings["Matrix"] = "Matrice";
-$a->strings["Your matrix"] = "Votre matrice";
-$a->strings["Mark all matrix notifications seen"] = "Marquer toutes les notifications de la matrice comme vues";
-$a->strings["Channel Home"] = "Mon canal";
-$a->strings["Channel home"] = "Mon canal";
-$a->strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues";
-$a->strings["Intros"] = "Introductions";
-$a->strings["New Connections"] = "Nouvelles relations";
-$a->strings["Notices"] = "Notifications";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["See all notifications"] = "Voir toutes les notifications";
-$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
-$a->strings["Mail"] = "Messages";
-$a->strings["Private mail"] = "Messages privés";
-$a->strings["See all private messages"] = "Voir tous les messages privés";
-$a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
-$a->strings["Inbox"] = "Boîte de réception";
-$a->strings["Outbox"] = "Boîte d'envoi";
-$a->strings["Event Calendar"] = "Calendrier des événements";
-$a->strings["See all events"] = "Voir tous les événements";
-$a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
-$a->strings["Channel Select"] = "Changer de canal";
-$a->strings["Manage Your Channels"] = "Gérer vos canaux";
-$a->strings["Account/Channel Settings"] = "Compte/Canal";
-$a->strings["Connections"] = "Relations";
-$a->strings["Manage/Edit Friends and Connections"] = "Gérer les amis et relations";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site Setup and Configuration"] = "Configuration du site";
-$a->strings["Nothing new here"] = "Rien de neuf ici";
-$a->strings["Please wait..."] = "Merci de patienter...";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BD '%s'";
+$a->strings["Profile Photos"] = "Photos du profil";
+$a->strings["Embedded content"] = "Contenu imbriqué";
+$a->strings["Embedding disabled"] = "Imbrication désactivée";
+$a->strings["created a new post"] = "a publié";
+$a->strings["commented on %s's post"] = "a commenté la publication de %s";
$a->strings["prev"] = "préc.";
$a->strings["first"] = "premier";
$a->strings["last"] = "dernier";
@@ -129,38 +23,41 @@ $a->strings["%d Connection"] = array(
1 => "%d relations",
);
$a->strings["View Connections"] = "Voir les relations";
-$a->strings["poke"] = "tapoter";
-$a->strings["poked"] = "tapoté";
+$a->strings["Search"] = "Recherche";
+$a->strings["Save"] = "Sauver";
+$a->strings["poke"] = "cogne";
+$a->strings["poked"] = "C'est fait cogner";
$a->strings["ping"] = "solliciter";
$a->strings["pinged"] = "sollicité";
$a->strings["prod"] = "aiguillonner";
$a->strings["prodded"] = "aiguillonné";
-$a->strings["slap"] = "baffer";
-$a->strings["slapped"] = "baffé";
+$a->strings["slap"] = "giffle";
+$a->strings["slapped"] = "gifflé";
$a->strings["finger"] = "pointer";
$a->strings["fingered"] = "pointé";
$a->strings["rebuff"] = "rejetter";
$a->strings["rebuffed"] = "rejetté";
-$a->strings["happy"] = "bonheur";
+$a->strings["happy"] = "heureux";
$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "mélancolie";
-$a->strings["tired"] = "fatigue";
-$a->strings["perky"] = "impertinence";
-$a->strings["angry"] = "colère";
-$a->strings["stupified"] = "stupeur";
-$a->strings["puzzled"] = "perplexité";
-$a->strings["interested"] = "intérêt";
-$a->strings["bitter"] = "amertune";
+$a->strings["mellow"] = "mélancolique";
+$a->strings["tired"] = "fatigué";
+$a->strings["perky"] = "impertinent";
+$a->strings["angry"] = "colèrique";
+$a->strings["stupified"] = "stupéfié";
+$a->strings["puzzled"] = "perplexe";
+$a->strings["interested"] = "intéressé";
+$a->strings["bitter"] = "amer";
$a->strings["cheerful"] = "entrain";
-$a->strings["alive"] = "vivacité";
-$a->strings["annoyed"] = "agaçement";
-$a->strings["anxious"] = "anxiété";
-$a->strings["cranky"] = "mauvais poil";
-$a->strings["disturbed"] = "perturbation";
-$a->strings["frustrated"] = "frustration";
-$a->strings["motivated"] = "motivation";
-$a->strings["relaxed"] = "détente";
-$a->strings["surprised"] = "surprise";
+$a->strings["alive"] = "énergique";
+$a->strings["annoyed"] = "agaçé";
+$a->strings["anxious"] = "anxieux";
+$a->strings["cranky"] = "énervé";
+$a->strings["disturbed"] = "perturbé";
+$a->strings["frustrated"] = "frustré";
+$a->strings["depressed"] = "déprimé";
+$a->strings["motivated"] = "motivé";
+$a->strings["relaxed"] = "détendu";
+$a->strings["surprised"] = "surpris";
$a->strings["Monday"] = "Lundi";
$a->strings["Tuesday"] = "Mardi";
$a->strings["Wednesday"] = "Mercredi";
@@ -182,10 +79,10 @@ $a->strings["November"] = "Novembre";
$a->strings["December"] = "Décembre";
$a->strings["unknown.???"] = "inconnu.???";
$a->strings["bytes"] = "octets";
-$a->strings["remove category"] = "suppr. catégorie";
-$a->strings["remove from file"] = "supprimer du fichier";
+$a->strings["remove category"] = "supprimer la catégorie";
+$a->strings["remove from file"] = "retirer du fichier";
$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
-$a->strings["link to source"] = "lien vers source";
+$a->strings["Link to Source"] = "Lien vers la Source";
$a->strings["Select a page layout: "] = "Choisir une mise en page&nbsp;:";
$a->strings["default"] = "défaut";
$a->strings["Page content type: "] = "Type de contenu&nbsp;:";
@@ -200,67 +97,155 @@ $a->strings["Blocks"] = "Blocs";
$a->strings["Menus"] = "Menus";
$a->strings["Layouts"] = "Mises-en-page";
$a->strings["Pages"] = "Pages";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["Encrypted content"] = "Contenu chiffré";
-$a->strings["QR code"] = "QR code";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
-$a->strings["post"] = "l'article";
-$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
-$a->strings["New window"] = "Nouvelle fenêtre";
-$a->strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent";
-$a->strings["General Features"] = "Fonctionnalités générales";
-$a->strings["Content Expiration"] = "Expiration de contenu";
-$a->strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés à un moment futur";
-$a->strings["Multiple Profiles"] = "Profils multiples";
-$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
-$a->strings["Web Pages"] = "Pages web";
-$a->strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
-$a->strings["Private Notes"] = "Notes privées";
-$a->strings["Enables a tool to store notes and reminders"] = "Active un outil pour stocker notes et mémos";
-$a->strings["Extended Identity Sharing"] = "Partage d'identité étendue";
-$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Partage votre identité avec tous les sites web du Monde. Si décoché, l'identité sera seulement partagée avec les sites de la matrice.";
-$a->strings["Expert Mode"] = "Mode expert";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Activer le mode expert pour accéder aux options avancées";
-$a->strings["Premium Channel"] = "Canal Premium";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux relations de votre canal";
-$a->strings["Post Composition Features"] = "Fonctionnalités de composition";
-$a->strings["Richtext Editor"] = "Éditeur enrichi";
-$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
-$a->strings["Post Preview"] = "Aperçu avant publication";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permettre de voir les publications/commentaires avant de les valider";
-$a->strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours";
-$a->strings["Even More Encryption"] = "Encore plus de chiffrement";
-$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé";
-$a->strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux";
-$a->strings["Search by Date"] = "Chercher par date";
-$a->strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date";
-$a->strings["Collections Filter"] = "Filtre des collections";
-$a->strings["Enable widget to display Network posts only from selected collections"] = "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées";
-$a->strings["Save search terms for re-use"] = "Sauver des termes de recherche pour utilisation ultérieure";
-$a->strings["Network Personal Tab"] = "Onglet \"réseau personnel\"";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu";
-$a->strings["Network New Tab"] = "Onglet \"nouveautés réseau\"";
-$a->strings["Enable tab to display all new Network activity"] = "Activer un onglet avec toute activité récente sur le réseau";
-$a->strings["Affinity Tool"] = "Gérer l'affinité";
-$a->strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations";
-$a->strings["Suggest Channels"] = "Suggérer des canaux";
-$a->strings["Show channel suggestions"] = "Montrer les suggestions de canaux";
-$a->strings["Post/Comment Tools"] = "Gérer les publications/commentaires";
-$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
-$a->strings["Edit and correct posts and comments after sending"] = "Permettre d'éditer/corriger les publications/commentaires après envoi";
-$a->strings["Tagging"] = "Marquage";
-$a->strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes";
-$a->strings["Post Categories"] = "Catégoriser les publications";
-$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
-$a->strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers";
-$a->strings["Dislike Posts"] = "Détester une publication";
-$a->strings["Ability to dislike posts/comments"] = "Pouvoir détester les publications/commentaires";
-$a->strings["Star Posts"] = "Mettre en avant les publications";
-$a->strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile";
-$a->strings["Tag Cloud"] = "Nuage de tags";
-$a->strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal";
+$a->strings["New Page"] = "Nouvelle page";
+$a->strings["Edit"] = "Éditer";
+$a->strings["View"] = "Voir";
+$a->strings["Preview"] = "Aperçu";
+$a->strings["Actions"] = "Actions";
+$a->strings["Page Link"] = "Lien vers la page";
+$a->strings["Title"] = "Titre";
+$a->strings["Created"] = "Créé";
+$a->strings["Edited"] = "Édité";
+$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 formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures).";
+$a->strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide";
+$a->strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site";
+$a->strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site.";
+$a->strings["An invitation is required."] = "Une invitation est requise.";
+$a->strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée.";
+$a->strings["Please enter the required information."] = "Merci d'entrer les informations requises.";
+$a->strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte.";
+$a->strings["Registration confirmation for %s"] = "Confirmation de l'enregistrement pour %s";
+$a->strings["Registration request at %s"] = "Demande d'inscription sur %s";
+$a->strings["Administrator"] = "Administrateur";
+$a->strings["your registration password"] = "votre mot de passe d'inscription";
+$a->strings["Registration details for %s"] = "Détails de l'inscription à %s";
+$a->strings["Account approved."] = "Compte approuvé.";
+$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
+$a->strings["Account verified. Please login."] = "Compte vérifié. Veuillez vous connecter.";
+$a->strings["Permission denied."] = "Permission refusée.";
+$a->strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets";
+$a->strings["Image file is empty."] = "L'image est vide.";
+$a->strings["Unable to process image"] = "Impossible de traiter l'image";
+$a->strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Upload New Photos"] = "Ajouter des photos";
+$a->strings["Visible to everybody"] = "Visible pour tous";
+$a->strings["Show"] = "Voir plus";
+$a->strings["Don't show"] = "Cacher";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Close"] = "Fermer";
+$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 %1\$s de %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis-à-jour %2\$s, modifiant %3\$s.";
+$a->strings["Public Timeline"] = "Fil public";
+$a->strings["Item was not found."] = "Élément introuvable.";
+$a->strings["No source file."] = "Pas de fichier source.";
+$a->strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer.";
+$a->strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre-à-jour";
+$a->strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Envoi impossible.";
+$a->strings["Path not available."] = "Chemin non disponible.";
+$a->strings["Empty pathname"] = "Chemin vide";
+$a->strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
+$a->strings["Path not found."] = "Chemin introuvable.";
+$a->strings["mkdir failed."] = "mkdir a échoué.";
+$a->strings["database storage failed."] = "l'écriture dans la BD a échoué";
+$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 outrepasserait les limites prévues par votre forfait.";
+$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas possible avec la formule choisie.";
+$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
+$a->strings["Starts:"] = "Début&nbsp;:";
+$a->strings["Finishes:"] = "Fin&nbsp;:";
+$a->strings["Location:"] = "Emplacement&nbsp;:";
+$a->strings["Logout"] = "Déconnexion";
+$a->strings["End this session"] = "Mettre fin à la session";
+$a->strings["Home"] = "Canal";
+$a->strings["Your posts and conversations"] = "Vos publications et conversations";
+$a->strings["View Profile"] = "Voir profil";
+$a->strings["Your profile page"] = "Votre profil";
+$a->strings["Edit Profiles"] = "Éditer les profils";
+$a->strings["Manage/Edit profiles"] = "Gérer/éditer les profils";
+$a->strings["Photos"] = "Photos";
+$a->strings["Your photos"] = "Vos photos";
+$a->strings["Files"] = "Fichiers";
+$a->strings["Your files"] = "Vos fichiers";
+$a->strings["Chat"] = "Clavardage";
+$a->strings["Your chatrooms"] = "Vos salons";
+$a->strings["Bookmarks"] = "Favoris";
+$a->strings["Your bookmarks"] = "Vos favoris";
+$a->strings["Webpages"] = "Pages web";
+$a->strings["Your webpages"] = "Vos pages web";
+$a->strings["Login"] = "Connexion";
+$a->strings["Sign in"] = "Connexion";
+$a->strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter";
+$a->strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub";
+$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["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux";
+$a->strings["Search site content"] = "Rechercher parmi le contenu du site";
+$a->strings["Directory"] = "Annuaire";
+$a->strings["Channel Locator"] = "Localisation de canaux";
+$a->strings["Matrix"] = "Matrice";
+$a->strings["Your matrix"] = "Votre matrice";
+$a->strings["Mark all matrix notifications seen"] = "Marquer toutes les notifications de la matrice comme vues";
+$a->strings["Channel Home"] = "Mon canal";
+$a->strings["Channel home"] = "Mon canal";
+$a->strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues";
+$a->strings["Connections"] = "Relations";
+$a->strings["Notices"] = "Notifications";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["See all notifications"] = "Voir toutes les notifications";
+$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
+$a->strings["Mail"] = "Messages";
+$a->strings["Private mail"] = "Messages privés";
+$a->strings["See all private messages"] = "Voir tous les messages privés";
+$a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
+$a->strings["Inbox"] = "Boîte de réception";
+$a->strings["Outbox"] = "Boîte d'envoi";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["Events"] = "Événements";
+$a->strings["Event Calendar"] = "Calendrier des événements";
+$a->strings["See all events"] = "Voir tous les événements";
+$a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
+$a->strings["Channel Select"] = "Changer de canal";
+$a->strings["Manage Your Channels"] = "Gérer vos canaux";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Account/Channel Settings"] = "Réglages du Compte/Canal";
+$a->strings["Admin"] = "Administrateur";
+$a->strings["Site Setup and Configuration"] = "Configuration du site";
+$a->strings["Nothing new here"] = "Aucun nouveau contenu trouvé";
+$a->strings["Please wait..."] = "Merci de patienter...";
+$a->strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
+$a->strings["Missing room name"] = "Il manque le nom du salon";
+$a->strings["Duplicate room name"] = "Un salon de ce nom existe déjà";
+$a->strings["Invalid room specifier."] = "Identifiant de salon invalide.";
+$a->strings["Room not found."] = "Salon introuvable.";
+$a->strings["Room is full"] = "Le salon est plein";
+$a->strings["Tags"] = "Étiquettes";
+$a->strings["Keywords"] = "Mots-clefs";
+$a->strings["have"] = "ont";
+$a->strings["has"] = "a";
+$a->strings["want"] = "veulent";
+$a->strings["wants"] = "veut";
+$a->strings["like"] = "aime";
+$a->strings["likes"] = "aiment";
+$a->strings["dislike"] = "déteste";
+$a->strings["dislikes"] = "détestent";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "J'aime",
+ 1 => "J'aime",
+);
+$a->strings["Default"] = "Défaut";
$a->strings["Unknown | Not categorised"] = "Inconnu / Non-classé";
-$a->strings["Block immediately"] = "Bloquer directement";
+$a->strings["Block immediately"] = "Bloquer";
$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, donne dans l'auto-promotion";
$a->strings["Known to me, but no opinion"] = "M'est connu, n'ai pas d'opinion à son sujet";
$a->strings["OK, probably harmless"] = "OK, probablement anodin";
@@ -281,6 +266,33 @@ $a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "Linkedin";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
+$a->strings["%d invitation available"] = array(
+ 0 => "%d invitation disponible",
+ 1 => "%d invitations disponibles",
+);
+$a->strings["Advanced"] = "Avancé";
+$a->strings["Find Channels"] = "Trouver des canaux";
+$a->strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt";
+$a->strings["Connect/Follow"] = "Ajouter/Suivre";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Course à pieds";
+$a->strings["Find"] = "Trouver";
+$a->strings["Channel Suggestions"] = "Canaux suggérés";
+$a->strings["Random Profile"] = "Un profil au hasard";
+$a->strings["Invite Friends"] = "Inviter des amis";
+$a->strings["Exammple: name=fred and country=iceland"] = "Exemple: name=fred and country=iceland";
+$a->strings["Advanced Find"] = "Recherche avancée";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Everything"] = "Tout";
+$a->strings["Categories"] = "Catégories";
+$a->strings["%d connection in common"] = array(
+ 0 => "%d relation en commun",
+ 1 => "%d relations en commun",
+);
+$a->strings["show more"] = "montrer plus";
+$a->strings["This event has been added to your calendar."] = "Cet événement a été ajouté à votre calendrier.";
+$a->strings["Invalid data packet"] = "Paquet de données invalide";
+$a->strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal";
+$a->strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s";
$a->strings["Miscellaneous"] = "Divers";
$a->strings["year"] = "année";
$a->strings["month"] = "mois";
@@ -299,74 +311,82 @@ $a->strings["minutes"] = "minutes";
$a->strings["second"] = "seconde";
$a->strings["seconds"] = "secondes";
$a->strings["%1\$d %2\$s ago"] = "il y a %1\$d %2\$s";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de DB '%s'";
-$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
-$a->strings["Starts:"] = "Début&nbsp;:";
-$a->strings["Finishes:"] = "Fin&nbsp;:";
-$a->strings["Location:"] = "Localisation&nbsp;:";
-$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é portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent.";
-$a->strings["Default privacy group for new contacts"] = "Groupe de confidentialité par défaut pour les nouveaux contacts";
-$a->strings["All Channels"] = "Tous canaux";
-$a->strings["edit"] = "éditer";
-$a->strings["Collections"] = "Collections";
-$a->strings["Edit collection"] = "Éditer collection";
-$a->strings["Create a new collection"] = "Créer collection";
-$a->strings["Channels not in any collection"] = "Canaux dans aucune collection";
-$a->strings["Delete this item?"] = "Supprimer cet élément?";
-$a->strings["Comment"] = "Commenter";
-$a->strings["show more"] = "montrer plus";
-$a->strings["show fewer"] = "montrer moins";
-$a->strings["Password too short"] = "Mot de passe trop court";
-$a->strings["Passwords do not match"] = "Les mots de passe ne correspondent pas";
-$a->strings["everybody"] = "tout le monde";
-$a->strings["Secret Passphrase"] = "Phrase de passe secrète";
-$a->strings["Passphrase hint"] = "Indice pour la phrase de passe";
-$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
-$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
-$a->strings["ago"] = "auparavant";
-$a->strings["from now"] = "de maintenant";
-$a->strings["less than a minute"] = "moins d'une minute";
-$a->strings["about a minute"] = "environ une minute";
-$a->strings["%d minutes"] = "%d minutes";
-$a->strings["about an hour"] = "environ une heure";
-$a->strings["about %d hours"] = "environ %d heures";
-$a->strings["a day"] = "un jour";
-$a->strings["%d days"] = "%d jours";
-$a->strings["about a month"] = "environ un mois";
-$a->strings["%d months"] = "%d mois";
-$a->strings["about a year"] = "environ un an";
-$a->strings["%d years"] = "%d années";
-$a->strings[" "] = " ";
-$a->strings["timeago.numbers"] = "timeago.numbers";
-$a->strings["No recipient provided."] = "Pas de destinataire.";
-$a->strings["[no subject]"] = "[sans objet]";
-$a->strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur.";
-$a->strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié.";
-$a->strings["Profile Photos"] = "Photos du profil";
-$a->strings["Permission denied."] = "Permission refusée.";
-$a->strings["Item was not found."] = "Élément introuvable.";
-$a->strings["No source file."] = "Pas de fichier source.";
-$a->strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer.";
-$a->strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre-à-jour";
-$a->strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée.";
-$a->strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Envoi impossible.";
-$a->strings["Path not available."] = "Chemin non disponible.";
-$a->strings["Empty pathname"] = "Chemin vide";
-$a->strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
-$a->strings["Path not found."] = "Chemin introuvable.";
-$a->strings["mkdir failed."] = "mkdir a échoué.";
-$a->strings["database storage failed."] = "le stockage en BD a échoué";
-$a->strings["%1\$s's bookmarks"] = "Marque-pages de %1\$s";
+$a->strings["%1\$s's birthday"] = "Anniversaire de %1\$s";
+$a->strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s";
+$a->strings["Sort Options"] = "Options de tri";
+$a->strings["Alphabetic"] = "Alphabétique";
+$a->strings["Reverse Alphabetic"] = "Alphabétique inversé";
+$a->strings["Newest to Oldest"] = "Anté-chronologique";
+$a->strings["Enable Safe Search"] = "Activer la recherche sûre";
+$a->strings["Disable Safe Search"] = "Désactiver la recherche sûre";
+$a->strings["Safe Mode"] = "Mode sûr";
+$a->strings["Red Matrix Notification"] = "Notification Matrice Rouge";
+$a->strings["redmatrix"] = "Matrice Rouge";
+$a->strings["Thank You,"] = "Merci,";
+$a->strings["%s Administrator"] = "l'administrateur de %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notification] Nouveau message reçu sur %s";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, vous avez reçu un message privé sur %3\$s, de la part de %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 et/ou répondre à vos messages privés.";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté sur [zrl=%3\$s]%4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s a commenté sur [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]votre %4\$s[/zrl]";
+$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notification] Commentaire de %2\$s sur conversation #%1\$d";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
+$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Matrice Rouge:Notification] %s a publié sur votre profil";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a publié sur votre profil à %3\$s";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a publié sur [zrl=%3\$s]votre profil[/zrl]";
+$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notification] %s vous a étiqueté";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a étiqueté[/zrl].";
+$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notification] %1\$s vous a cogné";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, vous avez été cogné/pointé/sollicité par %2\$s sur %3\$s";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a cogné[/zrl].";
+$a->strings["[Red:Notify] %s tagged your post"] = "[Matrice Rouge:Notification] %s a étiqueté votre publication";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a étiqueté votre publication sur %3\$s";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a étiqueté [zrl=%3\$s]votre publication[/zrl]";
+$a->strings["[Red:Notify] Introduction received"] = "[Red:Notification] Nouvelle introduction";
+$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une demande de mise en relation de '%2\$s' sur %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une demande de mise en relation[/zrl] de %3\$s.";
+$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
+$a->strings["Please visit %s to approve or reject the connection request."] = "Merci de visiter %s avant d'approuver (ou non) cette demande de relation.";
+$a->strings["[Red:Notify] Friend suggestion received"] = "[Matrice Rouge:Notification] Nouvelle suggestion d'amitié";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion de relation de '%2\$s' à %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion de relation[/zrl] de %4\$s.";
+$a->strings["Name:"] = "Nom&nbsp;:";
+$a->strings["Photo:"] = "Photo&nbsp;:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion.";
+$a->strings["parent"] = "retour";
+$a->strings["Collection"] = "Collection";
+$a->strings["Principal"] = "Principal";
+$a->strings["Addressbook"] = "Carnet d'adresse";
+$a->strings["Calendar"] = "Calendrier";
+$a->strings["Schedule Inbox"] = "Calendrier - Message entrants";
+$a->strings["Schedule Outbox"] = "Calendrier - Message sortants";
+$a->strings["Unknown"] = "Inconnu";
+$a->strings["%1\$s used"] = "%1\$s utilisé";
+$a->strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "%1\$s utilisé de %2\$s (%3\$s&#37;)";
+$a->strings["Name"] = "Nom";
+$a->strings["Type"] = "Type";
+$a->strings["Size"] = "Taille";
+$a->strings["Last Modified"] = "Modifié le";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["Total"] = "Total";
+$a->strings["Create new folder"] = "Nouveau dossier";
+$a->strings["Create"] = "Créer";
+$a->strings["Upload file"] = "Téléverser un fichier";
+$a->strings["Upload"] = "Envoyer";
$a->strings["channel"] = "canal";
$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 déteste %3\$s de %2\$s";
-$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s est désormais relié à %2\$s";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s est actuellement %2\$s";
+$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses relations";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a cogné %2\$s";
+$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s";
$a->strings["Select"] = "Sélectionner";
-$a->strings["Delete"] = "Supprimer";
+$a->strings["Private Message"] = "Message Privé";
$a->strings["Message is verified"] = "Message vérifié";
$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
$a->strings["Categories:"] = "Catégories&nbsp;:";
@@ -383,10 +403,10 @@ $a->strings["View Source"] = "Voir source";
$a->strings["Follow Thread"] = "Suivre discussion";
$a->strings["View Status"] = "Voir état";
$a->strings["View Photos"] = "Voir photos";
-$a->strings["Matrix Activity"] = "Activité de la matrice";
+$a->strings["Matrix Activity"] = "Activité sur la matrice";
$a->strings["Edit Contact"] = "Éditer contact";
-$a->strings["Send PM"] = "Message privé";
-$a->strings["Poke"] = "Tapoter";
+$a->strings["Send PM"] = "Envoyer un Message Privé";
+$a->strings["Poke"] = "Cogner";
$a->strings["%s likes this."] = "%s aime ça.";
$a->strings["%s doesn't like this."] = "%s déteste ça.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
@@ -409,26 +429,26 @@ $a->strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien&nbsp;:
$a->strings["Please enter a video link/URL:"] = "Merci d'entrer l'URL d'une video&nbsp;:";
$a->strings["Please enter an audio link/URL:"] = "Merci d'entrer l'URL d'un contenu audio&nsbp;:";
$a->strings["Tag term:"] = "Étiquette&nbsp;:";
-$a->strings["Save to Folder:"] = "Classer dans Dossier&nbsp;:";
+$a->strings["Save to Folder:"] = "Classer dans le dossier&nbsp;:";
$a->strings["Where are you right now?"] = "Où êtes-vous présentement?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expire YYYY-MM-DD HH:MM";
-$a->strings["Preview"] = "Aperçu";
$a->strings["Share"] = "Partager";
-$a->strings["Page link title"] = "Titre de la page liée";
-$a->strings["Upload photo"] = "Téléverser photo";
-$a->strings["upload photo"] = "téléverser photo";
-$a->strings["Attach file"] = "Attacher fichier";
-$a->strings["attach file"] = "attacher fichier";
+$a->strings["Page link title"] = "Titre du lien vers la page";
+$a->strings["Post as"] = "Publier en tant que";
+$a->strings["Upload photo"] = "Téléverser une photo";
+$a->strings["upload photo"] = "téléverser une photo";
+$a->strings["Attach file"] = "Attacher un fichier";
+$a->strings["attach file"] = "attacher un fichier";
$a->strings["Insert web link"] = "Insérer lien web";
$a->strings["web link"] = "lien web";
$a->strings["Insert video link"] = "Insérer lien vidéo";
$a->strings["video link"] = "lien vidéo";
-$a->strings["Insert audio link"] = "Insérer lien audio";
+$a->strings["Insert audio link"] = "Insérer un lien audio";
$a->strings["audio link"] = "lien audio";
-$a->strings["Set your location"] = "Spécifier votre localisation";
-$a->strings["set location"] = "spécifier localisation";
-$a->strings["Clear browser location"] = "Nettoyer la localisation du navigateur";
-$a->strings["clear location"] = "nettoyer localisation";
+$a->strings["Set your location"] = "Spécifier votre emplacement géographique";
+$a->strings["set location"] = "spécifier l'emplacement géographique";
+$a->strings["Clear browser location"] = "Nettoyer l'emplacement géographique du navigateur";
+$a->strings["clear location"] = "nettoyer l'emplacement géographique";
$a->strings["Set title"] = "Spécifier le titre";
$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
$a->strings["Permission settings"] = "Permissions";
@@ -439,9 +459,11 @@ $a->strings["Set expiration date"] = "Définir la date d'expiration";
$a->strings["Encrypt text"] = "Chiffrer le texte";
$a->strings["OK"] = "Ok";
$a->strings["Cancel"] = "Annuler";
-$a->strings["Commented Order"] = "Dans l'ordre des commentaires";
+$a->strings["Discover"] = "À découvrir";
+$a->strings["Imported public streams"] = "Flux publics importés";
+$a->strings["Commented Order"] = "Commentaires Récents";
$a->strings["Sort by Comment Date"] = "Trier par date de dernier commentaire";
-$a->strings["Posted Order"] = "Dans l'ordre des publications";
+$a->strings["Posted Order"] = "Publications Récentes";
$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 mentionnent ou vous concernent d'une manière ou d'une autre";
@@ -449,36 +471,105 @@ $a->strings["New"] = "Nouveautés";
$a->strings["Activity Stream - by date"] = "Flux d'activité - par date";
$a->strings["Starred"] = "Mis en avant";
$a->strings["Favourite Posts"] = "Publications préférées";
-$a->strings["Spam"] = "Spam";
+$a->strings["Spam"] = "Indésirable";
$a->strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables";
$a->strings["Channel"] = "Canal";
$a->strings["Status Messages and Posts"] = "Messages d'état et contributions";
$a->strings["About"] = "À propos";
$a->strings["Profile Details"] = "Détails du profil";
-$a->strings["Photo Albums"] = "Albums photo";
$a->strings["Files and Storage"] = "Fichiers et Stockage";
-$a->strings["Chatrooms"] = "Salons";
-$a->strings["Events and Calendar"] = "Événements et agenda";
-$a->strings["Saved Bookmarks"] = "Marque-pages sauvegardés";
+$a->strings["Chatrooms"] = "Salons de clavardage";
+$a->strings["Saved Bookmarks"] = "Favoris sauvegardés";
$a->strings["Manage Webpages"] = "Gérer les pages web";
+$a->strings["General Features"] = "Fonctionnalités générales";
+$a->strings["Content Expiration"] = "Expiration de contenu";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard";
+$a->strings["Multiple Profiles"] = "Profils multiples";
+$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
+$a->strings["Web Pages"] = "Pages web";
+$a->strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
+$a->strings["Private Notes"] = "Notes privées";
+$a->strings["Enables a tool to store notes and reminders"] = "Active un outil pour stocker notes et mémos";
+$a->strings["Extended Identity Sharing"] = "Partage d'identité étendue";
+$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Partage votre identité avec tous les sites web du Monde. Si décoché, l'identité sera seulement partagée avec les sites de la matrice.";
+$a->strings["Expert Mode"] = "Mode expert";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Activer le mode expert pour accéder aux options avancées";
+$a->strings["Premium Channel"] = "Canal VIP";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux relations de votre canal";
+$a->strings["Post Composition Features"] = "Fonctionnalités de composition";
+$a->strings["Use Markdown"] = "Utiliser Markdown";
+$a->strings["Allow use of \"Markdown\" to format posts"] = "Authoriser l'usage de \"Markdown\" pour le format des partages";
+$a->strings["Post Preview"] = "Aperçu avant publication";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permettre de prévisualiser les publications/commentaires";
+$a->strings["Channel Sources"] = "Canaux sources";
+$a->strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours";
+$a->strings["Even More Encryption"] = "Encore plus de chiffrement";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé";
+$a->strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux";
+$a->strings["Search by Date"] = "Chercher par date";
+$a->strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date";
+$a->strings["Collections Filter"] = "Filtre des collections";
+$a->strings["Enable widget to display Network posts only from selected collections"] = "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées";
+$a->strings["Saved Searches"] = "Recherches sauvées";
+$a->strings["Save search terms for re-use"] = "Sauver des termes de recherche pour utilisation ultérieure";
+$a->strings["Network Personal Tab"] = "Onglet \"réseau personnel\"";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu";
+$a->strings["Network New Tab"] = "Onglet \"nouveautés réseau\"";
+$a->strings["Enable tab to display all new Network activity"] = "Activer un onglet avec toute activité récente sur le réseau";
+$a->strings["Affinity Tool"] = "Gérer l'affinité";
+$a->strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations";
+$a->strings["Suggest Channels"] = "Suggérer des canaux";
+$a->strings["Show channel suggestions"] = "Montrer les suggestions de canaux";
+$a->strings["Post/Comment Tools"] = "Gérer les publications/commentaires";
+$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
+$a->strings["Edit and correct posts and comments after sending"] = "Permettre d'éditer/corriger les publications/commentaires après envoi";
+$a->strings["Tagging"] = "Étiquettes";
+$a->strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes";
+$a->strings["Post Categories"] = "Catégoriser les publications";
+$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
+$a->strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers";
+$a->strings["Dislike Posts"] = "Détester les publications";
+$a->strings["Ability to dislike posts/comments"] = "Pouvoir détester les publications/commentaires";
+$a->strings["Star Posts"] = "Mettre en avant les publications";
+$a->strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile";
+$a->strings["Tag Cloud"] = "Nuage de tags";
+$a->strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal";
+$a->strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
+$a->strings["Channel location missing."] = "Emplacement du canal introuvable.";
+$a->strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
+$a->strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus.";
+$a->strings["Channel discovery failed."] = "La tentative d'accéder au canal a échouée.";
+$a->strings["local account not found."] = "compte local introuvable.";
+$a->strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous.";
+$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é portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent.";
+$a->strings["Default privacy group for new contacts"] = "Groupe de confidentialité par défaut pour les nouveaux contacts";
+$a->strings["All Channels"] = "Tous canaux";
+$a->strings["edit"] = "éditer";
+$a->strings["Collections"] = "Collections";
+$a->strings["Edit collection"] = "Éditer collection";
+$a->strings["Create a new collection"] = "Créer une nouvelle collection";
+$a->strings["Channels not in any collection"] = "Ces canaux ne sont dans aucune collection";
+$a->strings["add"] = "ajouter";
$a->strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données";
$a->strings["Empty name"] = "Nom vide";
$a->strings["Name too long"] = "Nom trop long";
$a->strings["No account identifier"] = "Pas d'identifiant de compte";
$a->strings["Nickname is required."] = "Un surnom est requis.";
+$a->strings["Reserved nickname. Please choose another."] = "Pseudonyme réservé. Merci d'en choisir un autre.";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits, ou est déjà pris sur ce site.";
$a->strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée";
$a->strings["Default Profile"] = "Profil par défaut";
+$a->strings["Friends"] = "Amis";
$a->strings["Requested channel is not available."] = "Canal demandé non-disponible.";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Désolé, mais vous n'avez pas l'autorisation de voir ce profil.";
$a->strings["Requested profile is not available."] = "Profil demandé inaccessible.";
+$a->strings["Connect"] = "Ajouter";
$a->strings["Change profile photo"] = "Changer la photo du profil";
$a->strings["Profiles"] = "Profils";
-$a->strings["Manage/edit profiles"] = "Gérer/éditer profils";
+$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
$a->strings["Create New Profile"] = "Créer un nouveau profil";
-$a->strings["Edit Profile"] = "Éditer profil";
+$a->strings["Edit Profile"] = "Éditer le profil";
$a->strings["Profile Image"] = "Image du profil";
-$a->strings["visible to everybody"] = "visible par tous";
+$a->strings["visible to everybody"] = "visible pour tous";
$a->strings["Edit visibility"] = "Éditer la visibilité";
$a->strings["Gender:"] = "Sexe&nbsp;:";
$a->strings["Status:"] = "État&nbsp;:";
@@ -494,6 +585,7 @@ $a->strings["Event Reminders"] = "Rappels d'événements";
$a->strings["Events this week:"] = "Événements cette semaine&nbsp;:";
$a->strings["Profile"] = "Profil";
$a->strings["Full Name:"] = "Nom complet&nbsp;:";
+$a->strings["Like this channel"] = "J'aime ce canal";
$a->strings["j F, Y"] = "j F Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Date de naissance&nbsp;:";
@@ -501,7 +593,7 @@ $a->strings["Age:"] = "Age&nbsp;:";
$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Orientation sexuelle&nbsp;:";
$a->strings["Hometown:"] = "Ville natale&nbsp;:";
-$a->strings["Tags:"] = "Tags:";
+$a->strings["Tags:"] = "Étiquettes:";
$a->strings["Political Views:"] = "Opinions politiques&nbsp;:";
$a->strings["Religion:"] = "Religion&nbsp;:";
$a->strings["About:"] = "À propos&nbsp;:";
@@ -517,31 +609,90 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divert
$a->strings["Love/Romance:"] = "Vie sentimentale/amoureuse&nbsp;:";
$a->strings["Work/employment:"] = "Travail&nbsp;:";
$a->strings["School/education:"] = "Cursus&nbsp;:";
-$a->strings["Private Message"] = "Message Privé";
-$a->strings["Edit"] = "Éditer";
-$a->strings["save to folder"] = "classer dans un dossier";
-$a->strings["add star"] = "mettre en avant";
-$a->strings["remove star"] = "ne plus mettre en avant";
-$a->strings["toggle star status"] = "(dé)marquer";
+$a->strings["Like this thing"] = "J'aime ceci";
+$a->strings["view full size"] = "pleine taille";
+$a->strings["Site Admin"] = "Administrateur";
+$a->strings["Address Book"] = "Carnet d'adresse";
+$a->strings["Mood"] = "Humeur";
+$a->strings["Probe"] = "Sonder";
+$a->strings["Suggest"] = "Suggérer";
+$a->strings["Update"] = "Mise-à-jour";
+$a->strings["Install"] = "Installer";
+$a->strings["Purchase"] = "Acheter";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["QR code"] = "code QR";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
+$a->strings["post"] = "l'article";
+$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
+$a->strings["No recipient provided."] = "Pas de destinataire.";
+$a->strings["[no subject]"] = "[sans objet]";
+$a->strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur.";
+$a->strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié.";
+$a->strings["System"] = "Système";
+$a->strings["Create Personal App"] = "Créer Votre Application";
+$a->strings["Edit Personal App"] = "Éditer Votre Application";
+$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
+$a->strings["Suggestions"] = "Suggestion";
+$a->strings["See more..."] = "Voir plus...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
+$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
+$a->strings["Enter the channel address"] = "Adresse du canal";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara";
+$a->strings["Notes"] = "Notes";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Archives"] = "Archives";
+$a->strings["Refresh"] = "Actualiser";
+$a->strings["Me"] = "Moi";
+$a->strings["Best Friends"] = "Mes meilleurs amis";
+$a->strings["Co-workers"] = "Mes collègues";
+$a->strings["Former Friends"] = "Mes anciens amis";
+$a->strings["Acquaintances"] = "Mes connaissances";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["Account settings"] = "Réglages du Compte";
+$a->strings["Channel settings"] = "Réglages du Canal";
+$a->strings["Additional features"] = "Fonctions supplémentaires";
+$a->strings["Feature settings"] = "Extensions";
+$a->strings["Display settings"] = "Réglages d'affichage";
+$a->strings["Connected apps"] = "Applications connectées";
+$a->strings["Export channel"] = "Exporter le canal";
+$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
+$a->strings["Premium Channel Settings"] = "Canal VIP";
+$a->strings["Check Mail"] = "Vérifier le courrier";
+$a->strings["Chat Rooms"] = "Salons de clavardage";
+$a->strings["Bookmarked Chatrooms"] = "Salons favoris";
+$a->strings["Suggested Chatrooms"] = "Salons suggérés";
+$a->strings["Save to Folder"] = "Sauvegarder dans le dossier";
+$a->strings["View all"] = "Voir tout";
+$a->strings["__ctx:noun__ Dislike"] = array(
+ 0 => "Je déteste",
+ 1 => "Je déteste",
+);
+$a->strings["Add Star"] = "Ajouter Étoile";
+$a->strings["Remove Star"] = "Supprimer Étoile";
+$a->strings["Toggle Star Status"] = "Changer le Statut des Étoiles";
$a->strings["starred"] = "mis en avant";
-$a->strings["add tag"] = "étiquetter";
+$a->strings["Add Tag"] = "Ajouter une balise";
$a->strings["I like this (toggle)"] = "J'aime (oui/non)";
-$a->strings["like"] = "aime";
$a->strings["I don't like this (toggle)"] = "Je déteste (oui/non)";
-$a->strings["dislike"] = "déteste";
-$a->strings["Share this"] = "Partager ça";
-$a->strings["share"] = "partage";
+$a->strings["Share This"] = "Partager";
+$a->strings["share"] = "partager";
$a->strings["View %s's profile - %s"] = "Voir le profil de %s - %s";
$a->strings["to"] = "à";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Mur-mur";
$a->strings["via Wall-To-Wall:"] = "par Mur-mur&nbsp;:";
-$a->strings["Bookmark Links"] = "Transformer les liens en marque-pages";
+$a->strings["Save Bookmarks"] = "Enregistrer les favoris";
+$a->strings["Add to Calendar"] = "Ajouter au Calendrier";
+$a->strings["__ctx:noun__ Likes"] = "Aimes";
+$a->strings["__ctx:noun__ Dislikes"] = "Détestes";
$a->strings["%d comment"] = array(
0 => "%d commentaire",
1 => "%d commentaires",
);
+$a->strings["[+] show all"] = "[+] voir plus";
$a->strings["This is you"] = "C'est vous";
+$a->strings["Comment"] = "Commenter";
$a->strings["Submit"] = "Envoyer";
$a->strings["Bold"] = "Gras";
$a->strings["Italic"] = "Italique";
@@ -551,10 +702,36 @@ $a->strings["Code"] = "Code";
$a->strings["Image"] = "Image";
$a->strings["Link"] = "Lien/URL";
$a->strings["Video"] = "Vidéo";
-$a->strings["Public Timeline"] = "Fil public";
-$a->strings["view full size"] = "pleine taille";
-$a->strings["created a new post"] = "a publié";
-$a->strings["commented on %s's post"] = "a commenté la publication de %s";
+$a->strings["Delete this item?"] = "Supprimer cet élément?";
+$a->strings["[-] show less"] = "[-] montrer moins";
+$a->strings["[+] expand"] = "[+] déplier";
+$a->strings["[-] collapse"] = "[-] replier";
+$a->strings["Password too short"] = "Mot de passe trop court";
+$a->strings["Passwords do not match"] = "Les mots de passe ne correspondent pas";
+$a->strings["everybody"] = "tout le monde";
+$a->strings["Secret Passphrase"] = "Phrase de passe secrète";
+$a->strings["Passphrase hint"] = "Indice pour la phrase de passe";
+$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Note&nbsp;: Les permissions ont changées, mais n'ont pas encore été sauvées.";
+$a->strings["close all"] = "fermer tout";
+$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
+$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
+$a->strings["ago"] = "auparavant";
+$a->strings["from now"] = "de maintenant";
+$a->strings["less than a minute"] = "moins d'une minute";
+$a->strings["about a minute"] = "environ une minute";
+$a->strings["%d minutes"] = "%d minutes";
+$a->strings["about an hour"] = "environ une heure";
+$a->strings["about %d hours"] = "environ %d heures";
+$a->strings["a day"] = "un jour";
+$a->strings["%d days"] = "%d jours";
+$a->strings["about a month"] = "environ un mois";
+$a->strings["%d months"] = "%d mois";
+$a->strings["about a year"] = "environ un an";
+$a->strings["%d years"] = "%d années";
+$a->strings[" "] = " ";
+$a->strings["timeago.numbers"] = "timeago.numbers";
+$a->strings["New window"] = "Nouvelle fenêtre";
+$a->strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent";
$a->strings["Male"] = "Masculin";
$a->strings["Female"] = "Féminin";
$a->strings["Currently Male"] = "Actuellement masculin";
@@ -583,7 +760,7 @@ $a->strings["Fetish"] = "Fétichiste";
$a->strings["Oodles"] = "Une floppée";
$a->strings["Nonsexual"] = "Nonsexuel";
$a->strings["Single"] = "Célibataire";
-$a->strings["Lonely"] = "Esseulé";
+$a->strings["Lonely"] = "Solitaire";
$a->strings["Available"] = "Disponible";
$a->strings["Unavailable"] = "Indisponible";
$a->strings["Has crush"] = "A un béguin";
@@ -612,118 +789,17 @@ $a->strings["Uncertain"] = "Incertain";
$a->strings["It's complicated"] = "C'est compliqué";
$a->strings["Don't care"] = "S'en fiche";
$a->strings["Ask me"] = "Me demander";
-$a->strings["Missing room name"] = "Il manque le nom du salon";
-$a->strings["Duplicate room name"] = "Un salon de ce nom existe déjà";
-$a->strings["Invalid room specifier."] = "Identifiant de salon invalide.";
-$a->strings["Room not found."] = "Salon introuvable.";
-$a->strings["Room is full"] = "Le salon est plein";
-$a->strings["Tags"] = "Étiquettes";
-$a->strings["Keywords"] = "Mots-clefs";
-$a->strings["have"] = "ont";
-$a->strings["has"] = "a";
-$a->strings["want"] = "veulent";
-$a->strings["wants"] = "veut";
-$a->strings["likes"] = "aime";
-$a->strings["dislikes"] = "déteste";
$a->strings["Logged out."] = "Deconnecté.";
$a->strings["Failed authentication"] = "Échec de l'authentification";
$a->strings["Login failed."] = "Échec de la connexion.";
-$a->strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide";
-$a->strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site";
-$a->strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site.";
-$a->strings["An invitation is required."] = "Une invitation est requise.";
-$a->strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée.";
-$a->strings["Please enter the required information."] = "Merci d'entrer les informations requises.";
-$a->strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte.";
-$a->strings["Registration request at %s"] = "Demande d'inscription sur %s";
-$a->strings["Administrator"] = "Administrateur";
-$a->strings["your registration password"] = "votre mot de passe d'inscription";
-$a->strings["Registration details for %s"] = "Détails de l'inscription à %s";
-$a->strings["Account approved."] = "Compte approuvé.";
-$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
-$a->strings["Sort Options"] = "Options de tri";
-$a->strings["Alphabetic"] = "Alphabétique";
-$a->strings["Reverse Alphabetic"] = "Alphabétique inversé";
-$a->strings["Newest to Oldest"] = "Anté-chronologique";
-$a->strings["Enable Safe Search"] = "Activer la recherche sûre";
-$a->strings["Disable Safe Search"] = "Désactiver la recherche sûre";
-$a->strings["Safe Mode"] = "Mode sûr";
-$a->strings["Red Matrix Notification"] = "Notification Red Matrix";
-$a->strings["redmatrix"] = "redmatrix";
-$a->strings["Thank You,"] = "Merci,";
-$a->strings["%s Administrator"] = "l'administrateur de %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notification] Nouveau message reçu sur %s";
-$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, vous avez reçu un message privé sur %3\$s, de la part de %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 et/ou répondre à vos messages privés.";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]%4\$s[/zrl]";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]votre %4\$s[/zrl]";
-$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notification] Commentaire de %2\$s sur conversation #%1\$d";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
-$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notification] %s a publié sur votre profil";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a posté sur votre profil à %3\$s";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a posté sur [zrl=%3\$s]votre profil[/zrl]";
-$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notification] %s vous a marqué";
-$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a tagué[/zrl].";
-$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notification] %1\$s vous a tapoté";
-$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, vous avez été tapoté/pointé/sollicité par %2\$s sur %3\$s";
-$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a tapoté[/zrl].";
-$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notification] %s a marqué votre publication";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a tagué votre publication sur %3\$s";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a tagué [zrl=%3\$s]votre publication[/zrl]";
-$a->strings["[Red:Notify] Introduction received"] = "[Red:Notification] Nouvelle introduction";
-$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une introduction de '%2\$s' sur %3\$s";
-$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une introduction[/zrl] de %3\$s.";
-$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s avant d'approuver (ou non) son introduction.";
-$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notification] Nouvelle suggestion d'amitié";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion de relation de '%2\$s' à %3\$s";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion de relation[/zrl] de %4\$s.";
-$a->strings["Name:"] = "Nom&nbsp;:";
-$a->strings["Photo:"] = "Photo&nbsp;:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion.";
-$a->strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets";
-$a->strings["Image file is empty."] = "L'image est vide.";
-$a->strings["Unable to process image"] = "Impossible de traiter l'image";
-$a->strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
-$a->strings["Upload New Photos"] = "Ajouter des photos";
-$a->strings["Edit File properties"] = "Éditer les propriétés du fichier";
-$a->strings["%d invitation available"] = array(
- 0 => "%d invitation disponible",
- 1 => "%d invitations disponibles",
-);
-$a->strings["Find Channels"] = "Trouver des canaux";
-$a->strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt";
-$a->strings["Connect/Follow"] = "Relier/Suivre";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Course à pieds";
-$a->strings["Find"] = "Trouver";
-$a->strings["Channel Suggestions"] = "Canaux suggérés";
-$a->strings["Random Profile"] = "Un profil au hasard";
-$a->strings["Invite Friends"] = "Inviter des amis";
-$a->strings["%d connection in common"] = array(
- 0 => "%d relation en commun",
- 1 => "%d relations en commun",
-);
-$a->strings["New Page"] = "Nouvelle page";
-$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 outrepasserait les limites prévues par votre forfait.";
-$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas possible avec la formule choisie.";
-$a->strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
-$a->strings["Channel location missing."] = "Localisation du canal manquante.";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Découverte du canal impossible. Le site est peut-être en dérangement ou mal configuré.";
-$a->strings["Response from remote channel was not understood."] = "La réponse du canal distant n'a pas été comprise.";
-$a->strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
-$a->strings["local account not found."] = "compte local introuvable.";
-$a->strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous.";
-$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 formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures).";
-$a->strings["Default"] = "Défaut";
-$a->strings["Embedded content"] = "Contenu imbriqué";
-$a->strings["Embedding disabled"] = "Imbrication désactivée";
+$a->strings["Permission denied"] = "Accès refusé";
+$a->strings["(Unknown)"] = "(Inconnu)";
+$a->strings["Item not found."] = "Élément introuvable.";
+$a->strings["Collection not found."] = "Collection introuvable.";
+$a->strings["Collection is empty."] = "Collection vide.";
+$a->strings["Collection: %s"] = "Collection&nbsp;: %s";
+$a->strings["Connection: %s"] = "Relation&nbsp;: %s";
+$a->strings["Connection not found."] = "Relation introuvable.";
$a->strings["Can view my \"public\" stream and posts"] = "Peut voir mon flux et mes publications \"publiques\"";
$a->strings["Can view my \"public\" channel profile"] = "Peut voir mon le canal \"public\" de mon profil";
$a->strings["Can view my \"public\" photo albums"] = "Peut voir mes albums photos \"publics\"";
@@ -732,9 +808,10 @@ $a->strings["Can view my \"public\" file storage"] = "Peut voir mes fichiers \"p
$a->strings["Can view my \"public\" pages"] = "Peut voir mes pages \"publiques\"";
$a->strings["Can send me their channel stream and posts"] = "Peut m'envoyer le flux et les publications de leur canal";
$a->strings["Can post on my channel page (\"wall\")"] = "Peut poster sur la page de mon canal (\"mur\")";
-$a->strings["Can comment on my posts"] = "Peut commenter mes publications";
+$a->strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications";
$a->strings["Can send me private mail messages"] = "Peut m'envoyer des messages privés";
$a->strings["Can post photos to my photo albums"] = "Peut ajouter des photos à mes albums";
+$a->strings["Can like/dislike stuff"] = "Peuvent aimer/détester";
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts du mon canal via @truc";
$a->strings["Advanced - useful for creating group forum channels"] = "Avancé - utile seulement pour les canaux de type \"forum/groupe\"";
$a->strings["Can chat with me (when available)"] = "Peut discuter avec moi (sous réserve de disponibilité)";
@@ -742,163 +819,15 @@ $a->strings["Can write to my \"public\" file storage"] = "Peut écrire dans mon
$a->strings["Can edit my \"public\" pages"] = "Peut éditer mes pages \"publiques\"";
$a->strings["Can source my \"public\" posts in derived channels"] = "Peut utiliser mes contributions \"publiques\" comme source de canaux dérivés";
$a->strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes";
-$a->strings["Can send me bookmarks"] = "Peut m'envoyer des marque-pages";
$a->strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites";
-$a->strings["Permission denied"] = "Accès refusé";
-$a->strings["Item not found."] = "Élément introuvable.";
-$a->strings["Collection not found."] = "Collection introuvable.";
-$a->strings["Collection is empty."] = "Collection vide.";
-$a->strings["Collection: %s"] = "Collection&nbsp;: %s";
-$a->strings["Connection: %s"] = "Relation&nbsp;: %s";
-$a->strings["Connection not found."] = "Relation introuvable.";
-$a->strings["Invalid data packet"] = "Paquet de données invalide";
-$a->strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal";
-$a->strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s";
-$a->strings["No channel."] = "Pas de canal.";
-$a->strings["Common connections"] = "Relations communes";
-$a->strings["No connections in common."] = "Pas de relations en commun.";
-$a->strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement.";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Éditer événement";
-$a->strings["Create New Event"] = "Créer événement";
-$a->strings["Previous"] = "Précédent";
-$a->strings["Next"] = "Suivant";
-$a->strings["hour:minute"] = "heure:minute";
-$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. Date de début et titre obligatoires.";
-$a->strings["Event Starts:"] = "L'événement débute&nbsp;:";
-$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:"] = "L'événement termine&nbsp;:";
-$a->strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
-$a->strings["Description:"] = "Description:";
-$a->strings["Title:"] = "Titre:";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Thing updated"] = "Chose mise-à-jour";
-$a->strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
-$a->strings["Thing added"] = "Chose ajoutée";
-$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-$a->strings["Show Thing"] = "Montrer chose";
-$a->strings["item not found."] = "élément introuvable.";
-$a->strings["Edit Thing"] = "Éditer chose";
-$a->strings["Select a profile"] = "Choisissez un profil";
-$a->strings["Select a category of stuff. e.g. I ______ something"] = "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose";
-$a->strings["Post an activity"] = "Publier une activité";
-$a->strings["Only sends to viewers of the applicable profile"] = "";
-$a->strings["Name of thing e.g. something"] = "Nom de la chose, p.ex. quelque-chose";
-$a->strings["URL of thing (optional)"] = "URL de la chose (optionnel)";
-$a->strings["URL for photo of thing (optional)"] = "URL de l'image de la chose (optionnel)";
-$a->strings["Add Thing to your Profile"] = "Ajouter la chose à votre profil";
-$a->strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée.";
-$a->strings["%s : Not a valid email address."] = "%s&nbsp: adresse courriel invalide.";
-$a->strings["Please join us on Red"] = "Rejoignez-nous sur Red";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site.";
-$a->strings["%s : Message delivery failed."] = "%s&nbsp;: Échec dans la livraison du message.";
-$a->strings["%d message sent."] = array(
- 0 => "%d message envoyé.",
- 1 => "%d messages envoyés.",
-);
-$a->strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation";
-$a->strings["Send invitations"] = "Envoyer des invitations";
-$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne&nbsp;:";
-$a->strings["Your message:"] = "Votre message&nbsp;:";
-$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Red - un nouvel outil de communication acentré/décentralisé et révolutionnaire.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation&nbsp;: \$invite_code";
-$a->strings["Please visit my channel at"] = "Merci de me rendre visite sur";
-$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Une fois inscrit (sur N'IMPORTE QUEL site Red Matrix - ils sont tous inter-connectés), merci de vous relier à l'adresse de mon canal&nbsp;:";
-$a->strings["Click the [Register] link on the following page to join."] = "Cliquez le lien [Inscription] sur la page suivante pour nous rejoindre.";
-$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Pour plus d'information sur le projet Red Matrix, et sa capacité à remodeler Internet, merci de visiter http://getzot.com";
-$a->strings["Unable to locate original post."] = "Impossible de localiser la publication initiale.";
-$a->strings["Empty post discarded."] = "Publication vide défaussée.";
-$a->strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal.";
-$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée.";
-$a->strings["Wall Photos"] = "Photos du mur";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racine\".";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web.";
-$a->strings["Menu updated."] = "Menu mis à jour.";
-$a->strings["Unable to update menu."] = "Impossible de mettre le menu à jour.";
-$a->strings["Menu created."] = "Menu créé.";
-$a->strings["Unable to create menu."] = "Impossible de créer le menu.";
-$a->strings["Manage Menus"] = "Gérer les menus";
-$a->strings["Drop"] = "Supprimer";
-$a->strings["Create a new menu"] = "Créer un nouveau menu";
-$a->strings["Delete this menu"] = "Supprimer ce menu";
-$a->strings["Edit menu contents"] = "Éditer le contenu du menu";
-$a->strings["Edit this menu"] = "Éditer le menu";
-$a->strings["New Menu"] = "Nouveau menu";
-$a->strings["Menu name"] = "Nom du menu";
-$a->strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous";
-$a->strings["Menu title"] = "Titre du menu";
-$a->strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs";
-$a->strings["Allow bookmarks"] = "Autoriser les marque-pages";
-$a->strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des marque-pages";
-$a->strings["Create"] = "Créer";
+$a->strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
$a->strings["Menu not found."] = "Menu introuvable.";
-$a->strings["Menu deleted."] = "Menu supprimé.";
-$a->strings["Menu could not be deleted."] = "Impossible de supprimer le menu.";
-$a->strings["Edit Menu"] = "Éditer le menu";
-$a->strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu";
-$a->strings["Modify"] = "Modifier";
-$a->strings["Not found."] = "Introuvable.";
-$a->strings["View"] = "Vue";
-$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-$a->strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:";
-$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?";
-$a->strings["Yes"] = "Oui";
-$a->strings["No"] = "Non";
-$a->strings["No installed applications."] = "Aucune application installée.";
-$a->strings["Applications"] = "Applications";
-$a->strings["Edit post"] = "Éditer la contribution";
-$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Pour les invités: Username={votre courriel}, MDP=+++";
-$a->strings["Bookmark added"] = "Marque-page ajouté";
-$a->strings["My Bookmarks"] = "Mes marque-pages";
-$a->strings["My Connections Bookmarks"] = "Marque-pages de mes relations";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s";
-$a->strings["[Embedded content - reload page to view]"] = "[Contenu embarqué - rechargez la page pour le voir]";
-$a->strings["Channel not found."] = "Canal introuvable.";
-$a->strings["toggle full screen mode"] = "(dés)activer le mode plein-écran";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s par %4\$s";
-$a->strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page.";
-$a->strings["Leave Room"] = "Quitter le salon";
-$a->strings["I am away right now"] = "Je suis momentanément absent";
-$a->strings["I am online"] = "Je suis en ligne";
-$a->strings["New Chatroom"] = "Nouveau salon";
-$a->strings["Chatroom Name"] = "Nom du salon";
-$a->strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
-$a->strings["Public access denied."] = "Accès public refusé.";
-$a->strings["No connections."] = "Pas de relations.";
-$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-$a->strings["View Connnections"] = "Voir les relations";
-$a->strings["Tag removed"] = "Étiquette retirée";
-$a->strings["Remove Item Tag"] = "Retirer une étiquette à l'élément";
-$a->strings["Select a tag to remove: "] = "Étiquette à retirer&nbsp;:";
-$a->strings["Remove"] = "Retirer";
-$a->strings["Continue"] = "Continuer";
-$a->strings["Premium Channel Setup"] = "Configuration du canal Premium";
-$a->strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal premium";
-$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ...";
-$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:";
-$a->strings["Potential connections will then see the following text before proceeding:"] = "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:";
-$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées sur cette page.";
-$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)";
-$a->strings["Restricted or Premium Channel"] = "Canal Premium ou restreint";
-$a->strings["No potential page delegates located."] = "Aucun délégué potentiel n'a été trouvé pour cette page.";
-$a->strings["Delegate Page Management"] = "Gestion des délégués 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égués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle.";
-$a->strings["Existing Page Managers"] = "Actuels gestionnaires de pages";
-$a->strings["Existing Page Delegates"] = "Actuels délégués";
-$a->strings["Potential Delegates"] = "Délégués potentiels";
-$a->strings["Add"] = "Ajouter";
-$a->strings["No entries."] = "Aucune entrée.";
-$a->strings["Away"] = "Absent";
-$a->strings["Online"] = "En ligne";
-$a->strings["Item not available."] = "Élément indisponible.";
$a->strings["Menu element updated."] = "Entrée de menu mis-à-jour.";
$a->strings["Unable to update menu element."] = "Impossible de mettre l'entrée de menu à jour.";
$a->strings["Menu element added."] = "Entrée de menu ajouté.";
$a->strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu.";
+$a->strings["Not found."] = "Introuvable.";
$a->strings["Manage Menu Elements"] = "Gérer les entrées de menu";
$a->strings["Edit menu"] = "Éditer le menu";
$a->strings["Edit element"] = "Éditer l'entrée";
@@ -913,7 +842,7 @@ $a->strings["Menu Item Permissions"] = "Permissions de l'entrée de menu";
$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
$a->strings["Link text"] = "Texte du lien";
$a->strings["URL of link"] = "URL du lien";
-$a->strings["Use Red magic-auth if available"] = "Utiliser l'authentification automagique de Red, si possible";
+$a->strings["Use Red magic-auth if available"] = "Utiliser l'authentification magique, lorsque disponible";
$a->strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre";
$a->strings["Order in list"] = "Ordre dans la liste";
$a->strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront descendus au bas de la liste";
@@ -921,170 +850,321 @@ $a->strings["Menu item not found."] = "Entrée de menu introuvable.";
$a->strings["Menu item deleted."] = "Entrée de menu supprimée.";
$a->strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu.";
$a->strings["Edit Menu Element"] = "Éditer l'entrée de menu";
+$a->strings["Modify"] = "Modifier";
+$a->strings["sent you a private message"] = "vous a envoyé un message privé";
+$a->strings["added your channel"] = "a ajouté votre canal";
+$a->strings["posted an event"] = "a publié un événement";
+$a->strings["network"] = "réseau";
+$a->strings["Name is required"] = "Le nom est requis";
+$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
+$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
+$a->strings["Password changed."] = "Le mot de passe a été changé.";
+$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
+$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
+$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
+$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
+$a->strings["Settings updated."] = "Réglages sauvegardés.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Name of application"] = "Nom de l'application";
+$a->strings["Consumer Key"] = "Clef de consommateur";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
+$a->strings["Consumer Secret"] = "Secret de consommateur";
+$a->strings["Redirect"] = "Redirection";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["Optional"] = "Facultatif";
+$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 clef partagée commence par";
+$a->strings["No name"] = "Sans nom";
+$a->strings["Remove authorization"] = "Révoquer l'autorisation";
+$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
+$a->strings["Feature Settings"] = "Extensions";
+$a->strings["Account Settings"] = "Compte";
+$a->strings["Password Settings"] = "Mot de passe";
+$a->strings["New Password:"] = "Nouveau mot de passe&nbsp;:";
+$a->strings["Confirm:"] = "Confirmation&nbsp;:";
+$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
+$a->strings["Email Address:"] = "Adresse de courriel&nbsp;:";
+$a->strings["Remove Account"] = "Supprimer le compte";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention&nbsp;: cette action est permanente et irréversible.";
+$a->strings["Off"] = "Inactif";
+$a->strings["On"] = "Actif";
+$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
+$a->strings["Connector Settings"] = "Connecteurs";
+$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
+$a->strings["%s - (Experimental)"] = "%s - (Expérimental)";
+$a->strings["Display Settings"] = "Affichage";
+$a->strings["Display Theme:"] = "Thème&nbsp;:";
+$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
+$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:";
+$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
+$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
+$a->strings["System Page Layout Editor - (advanced)"] = "Agencements des pages système - (avancé)";
+$a->strings["Nobody except yourself"] = "Personne sauf vous";
+$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
+$a->strings["Approved connections"] = "Contacts Approuvés";
+$a->strings["Any connections"] = "Tous les contacts";
+$a->strings["Anybody on this website"] = "Tous les utilisateurs du hub";
+$a->strings["Anybody in this network"] = "Tous les utilisateurs sur ce réseau";
+$a->strings["Anybody authenticated"] = "Tous les utilisateurs authentifiés";
+$a->strings["Anybody on the internet"] = "Tous les utilisateurs d'Internet";
+$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
+$a->strings["No"] = "Non";
+$a->strings["Yes"] = "Oui";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux membres?";
+$a->strings["or"] = "ou";
+$a->strings["Your channel address is"] = "Voici l'adresse de votre canal";
+$a->strings["Channel Settings"] = "Canal";
+$a->strings["Basic Settings"] = "Basique";
+$a->strings["Your Timezone:"] = "Fureau Horaire&nbsp;:";
+$a->strings["Default Post Location:"] = "Emplacement géographique par défaut&nbsp;:";
+$a->strings["Geographical location to display on your posts"] = "Emplacement géographique à afficher sur vos publications";
+$a->strings["Use Browser Location:"] = "Utiliser la géolocalisation fournie par le navigateur&nbsp;:";
+$a->strings["Adult Content"] = "Contenu \"adulte\"";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec l'étiquette <em>#NSFW</em> - Not Safe For Work)";
+$a->strings["Security and Privacy Settings"] = "Réglages de Sécurité et vie privée";
+$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
+$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
+$a->strings["Simple Privacy Settings:"] = "Réglages simples&nbsp;:";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>";
+$a->strings["Private - <em>default private, never open or public</em>"] = "Privé - <em>privé par défaut, jamais ouvert ni public</em>";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>";
+$a->strings["Allow others to tag your posts"] = "Autoriser les autres à \"étiqueté\" vos publications";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Souvent utilisé par la communauté pour distinguer le contenu innaproprié";
+$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
+$a->strings["Expire other channel content after this many days"] = "Faire expirer le contenu des autres canaux après n jours";
+$a->strings["0 or blank prevents expiration"] = "0, ou vide, pour ne pas faire expirer";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour&nbsp;:";
+$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact des indésirables";
+$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
+$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:";
+$a->strings["Useful to reduce spamming"] = "Utile pour réduire les indésirables";
+$a->strings["Notification Settings"] = "Notifications";
+$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
+$a->strings["accepting a friend request"] = "vous acceptez une mise en relation";
+$a->strings["joining a forum/community"] = "vous joignez un forum ou à une communauté";
+$a->strings["making an <em>interesting</em> profile change"] = "vous faites une modification <em>intéressante</em> de votre profil";
+$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand&nbsp;:";
+$a->strings["You receive a connection request"] = "Vous recevez une demande de mise en relation";
+$a->strings["Your connections are confirmed"] = "Vous relations sont confirmées";
+$a->strings["Someone writes on your profile wall"] = "Quelqu'un a écrit sur votre mur";
+$a->strings["Someone writes a followup comment"] = "Quelqu'un a commenté sur vos publications";
+$a->strings["You receive a private message"] = "Vous recevez un message privé";
+$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
+$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
+$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes cogné/pointé/etc. dans une publication";
+$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
+$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Mode expert requis (<a href=\"settings/features\">Réglages > Fonctions supplémentaires</a>) svp ajuster!";
+$a->strings["Miscellaneous Settings"] = "Divers";
+$a->strings["Personal menu to display in your channel pages"] = "Menu personnel tel qu'il apparaîtra sur les pages de votre canal";
+$a->strings["Remove this channel"] = "Supprimer ce canal";
+$a->strings["Poke/Prod"] = "Cogner/Solliciter";
+$a->strings["poke, prod or do other things to somebody"] = "Cogner, pointer, et autres choses à faire à quelqu'un";
+$a->strings["Recipient"] = "Destinataire";
+$a->strings["Choose what you wish to do to recipient"] = "Choisir quoi lui faire";
+$a->strings["Make this post private"] = "Rendre cette contribution privée";
+$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+$a->strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:";
+$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification magique bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et réessayer.";
+$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification magique a fonctionné.";
+$a->strings["Item not available."] = "Élément indisponible.";
+$a->strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée&nbsp;: %1\$s";
+$a->strings["Invalid item."] = "Élément invalide.";
+$a->strings["Channel not found."] = "Canal introuvable.";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué.";
+$a->strings["Image resize failed."] = "Le redimensionnement de l'image a échoué.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
+$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 traîter l'image.";
+$a->strings["Photo not available."] = "Photo inaccessible.";
+$a->strings["Upload File:"] = "Fichier&nbsp;:";
+$a->strings["Select a profile:"] = "Choisir un profil&nbsp;:";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["skip this step"] = "passer cette étape";
+$a->strings["select a photo from your photo albums"] = "choisir une photo dans vos albums";
+$a->strings["Crop Image"] = "Recadrer l'image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuster le cadre pour une visualisation optimale.";
+$a->strings["Done Editing"] = "J'ai terminé";
+$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
+$a->strings["Image upload failed."] = "Le téléversement a échoué.";
+$a->strings["Image size reduction [%s] failed."] = "La réduction de taille [%s] a échoué.";
+$a->strings["Block Name"] = "Nom du Bloc";
+$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."] = "Profil impossible à cloner.";
+$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
+$a->strings["Marital Status"] = "Statut marital";
+$a->strings["Romantic Partner"] = "Partenaire";
+$a->strings["Likes"] = "Aime";
+$a->strings["Dislikes"] = "Déteste";
+$a->strings["Work/Employment"] = "Travail/Occupation";
+$a->strings["Religion"] = "Religion/Croyance";
+$a->strings["Political Views"] = "Opinions politiques";
+$a->strings["Gender"] = "Sexe/Genre";
+$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"] = "Emplacement";
+$a->strings["Profile updated."] = "Profil mis à jour.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher vos contacts/relations aux visiteurs de ce profil?";
+$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
+$a->strings["View this profile"] = "Voir le profil";
+$a->strings["Change Profile Photo"] = "Changer la photo du profil";
+$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces réglages";
+$a->strings["Clone this profile"] = "Cloner le profil";
+$a->strings["Delete this profile"] = "Supprimer le profil";
+$a->strings["Profile Name:"] = "Nom du profil&nbsp;:";
+$a->strings["Your Full Name:"] = "Votre nom complet&nbsp;:";
+$a->strings["Title/Description:"] = "Titre/description&nbsp;:";
+$a->strings["Your Gender:"] = "Sexe/Genre&nbsp;:";
+$a->strings["Birthday (%s):"] = "Date de naissance (%s)&nbsp;:";
+$a->strings["Street Address:"] = "Adresse postale&nbsp;:";
+$a->strings["Locality/City:"] = "Ville/Localité&nbsp;:";
+$a->strings["Postal/Zip Code:"] = "Code postal&nbsp;:";
+$a->strings["Country:"] = "Pays&nbsp;:";
+$a->strings["Region/State:"] = "Région/Province/État&nbsp;:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:";
+$a->strings["Who: (if applicable)"] = "Avec&nbsp;: (si pertinent)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com";
+$a->strings["Since [date]:"] = "Depuis [date]&nbsp;:";
+$a->strings["Homepage URL:"] = "URL de mon site Internet&nbsp;:";
+$a->strings["Religious Views:"] = "Opinions religieuses&nbsp;:";
+$a->strings["Keywords:"] = "Mots-clefs&nbsp;:";
+$a->strings["Example: fishing photography software"] = "Exemple&nbsp;: escrime photographie modélisme";
+$a->strings["Used in directory listings"] = "Utilisé pour le référencement dans l'annuaire";
+$a->strings["Tell us about yourself..."] = "Parlez nous de vous...";
+$a->strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret";
+$a->strings["Contact information and Social Networks"] = "Coordonnées et réseaux sociaux";
+$a->strings["My other channels"] = "Mes autres canaux";
+$a->strings["Musical interests"] = "Goûts musicaux";
+$a->strings["Books, literature"] = "Littérature";
+$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"] = "Travail/Occupation";
+$a->strings["School/education"] = "Études";
+$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>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet.";
+$a->strings["Age: "] = "Age&nbsp;:";
+$a->strings["Edit/Manage Profiles"] = "Éditer/gérer les profils";
+$a->strings["Add profile things"] = "Ajouter des choses de profil";
+$a->strings["Include desirable objects in your profile"] = "Incluez des objets souhaitables dans votre profil";
+$a->strings["Bookmark added"] = "Favoris ajouté";
+$a->strings["My Bookmarks"] = "Mes Favoris";
+$a->strings["My Connections Bookmarks"] = "Favoris de mes relations";
$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer.";
$a->strings["Visible To"] = "Visible par";
$a->strings["All Connections"] = "Toutes les relations";
-$a->strings["Collection created."] = "Collection créée.";
-$a->strings["Could not create collection."] = "Impossible de créer la collection.";
-$a->strings["Collection updated."] = "Collection mise-à-jour.";
-$a->strings["Create a collection of channels."] = "Créez une collection de canaux.";
-$a->strings["Collection Name: "] = "Nom de la collection&nbsp;:";
-$a->strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux";
-$a->strings["Collection removed."] = "Collection supprimée.";
-$a->strings["Unable to remove collection."] = "Impossible de supprimer la collection.";
-$a->strings["Collection Editor"] = "Éditeur de collection";
-$a->strings["Members"] = "Membres";
-$a->strings["All Connected Channels"] = "Tous canaux connectés";
-$a->strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour ajouter ou supprimer";
-$a->strings["Theme settings updated."] = "Réglages du thème sauvegardés.";
-$a->strings["Site"] = "Site";
-$a->strings["Users"] = "Utilisateurs";
-$a->strings["Plugins"] = "Extensions";
-$a->strings["Themes"] = "Thèmes";
-$a->strings["Server"] = "Serveur";
-$a->strings["DB updates"] = "MàJ BD";
-$a->strings["Logs"] = "Journaux";
-$a->strings["Plugin Features"] = "Fonctionnalités liées aux extensions";
-$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente";
-$a->strings["Message queues"] = "File 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"] = "Version";
-$a->strings["Active plugins"] = "Extensions actives";
-$a->strings["Site settings updated."] = "Réglages du site sauvegardés.";
-$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
-$a->strings["No special theme for accessibility"] = "Pas de thème spécifique pour l'accessibilité";
-$a->strings["Closed"] = "Fermé";
-$a->strings["Requires approval"] = "Après approbation";
-$a->strings["Open"] = "Ouvert";
-$a->strings["Private"] = "Privé";
-$a->strings["Paid Access"] = "Accès payant";
-$a->strings["Free Access"] = "Accès gratuit";
-$a->strings["Tiered Access"] = "Accès par paliers";
+$a->strings["Public Sites"] = "Sites publics";
+$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Les sites listés autorisent l'inscription pour tous. Tous sont liés entre eux, de manière à ce qu'un compte sur un seul d'entre eux soit valable sur l'ensemble de la matrice. Certains sites peuvent demander des frais de souscriptions, ou fournir des forfaits ajustés. Le lien \"fournisseur\" <strong>peut</strong> vous donner des détails supplémentaires.";
+$a->strings["Site URL"] = "URL du site";
+$a->strings["Access Type"] = "Type d'accès";
+$a->strings["Registration Policy"] = "Politique d'inscription";
+$a->strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page.";
+$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée à la page du profil.";
+$a->strings["Select a bookmark folder"] = "Choisir un dossier de favoris";
+$a->strings["Save Bookmark"] = "Sauver le favoris";
+$a->strings["URL of bookmark"] = "URL du favoris";
+$a->strings["Description"] = "Description";
+$a->strings["Or enter new bookmark folder name"] = "Ou entrez le nom d'un nouveau dossier";
+$a->strings["Room not found"] = "Salon introuvable";
+$a->strings["Leave Room"] = "Quitter le salon";
+$a->strings["Delete This Room"] = "Supprimer le salon";
+$a->strings["I am away right now"] = "Je suis momentanément absent";
+$a->strings["I am online"] = "Je suis en ligne";
+$a->strings["Bookmark this room"] = "Marquer ce salon";
+$a->strings["New Chatroom"] = "Nouveau salon";
+$a->strings["Chatroom Name"] = "Nom du salon";
+$a->strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain.";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué.";
+$a->strings["Passwords do not match."] = "Les mots de passe ne concordent pas.";
+$a->strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte.";
+$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente de l'approbation d'un administrateur.";
+$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée.";
+$a->strings["Registration on this site/hub is by approval only."] = "L'inscription sur cette instance/ce site est soumis à une modération.";
+$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">S'inscrire sur un site/hub affilié</a>";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain.";
+$a->strings["Terms of Service"] = "Règles du Service";
+$a->strings["I accept the %s for this website"] = "J'accepte %s de ce site";
+$a->strings["I am over 13 years of age and accept the %s for this website"] = "J'ai plus de 13 ans et j'accepte les %s de ce site";
$a->strings["Registration"] = "Inscription";
-$a->strings["File upload"] = "Envoi de fichier";
-$a->strings["Policies"] = "Stratégies";
-$a->strings["Advanced"] = "Avancé";
-$a->strings["Site name"] = "Nom du site";
-$a->strings["Banner/Logo"] = "Bannière/logo";
-$a->strings["Administrator Information"] = "Information sur l'administration";
-$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Coordonnées de l'administration du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici";
-$a->strings["System language"] = "Langue du système";
-$a->strings["System theme"] = "Thème du système";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>";
-$a->strings["Mobile system theme"] = "Thème système pour mobile";
-$a->strings["Theme for mobile devices"] = "Thème dédié aux périphériques mobiles";
-$a->strings["Accessibility system theme"] = "Thème système pour l'accessibilité";
-$a->strings["Accessibility theme"] = "Thème pour l'accessibilité";
-$a->strings["Channel to use for this website's static pages"] = "Canal à utiliser pour les pages statiques de ce site";
-$a->strings["Site Channel"] = "Canal du site";
-$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 maximum, en octets, des images envoyées. Par défaut 0, soit sans limite.";
-$a->strings["Register policy"] = "Politique d'inscription";
-$a->strings["Access policy"] = "Politique d'accès";
-$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 le formulaire d'inscription.";
-$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps.";
-$a->strings["Allowed friend domains"] = "Domaines amicaux";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
-$a->strings["Allowed email domains"] = "Domaines de courriels amicaux";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
-$a->strings["Block public"] = "Bloquer public";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes.";
-$a->strings["Force publish"] = "Forcer publication";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire.";
-$a->strings["No login on Homepage"] = "Pas de connexion depuis la page d'accueil";
-$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site).";
-$a->strings["Proxy user"] = "Utilisateurs du proxy";
-$a->strings["Proxy URL"] = "URL du proxy";
-$a->strings["Network timeout"] = "Délai maximal du réseau";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé).";
-$a->strings["Delivery interval"] = "Intervalle de distribution";
-$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."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés.";
-$a->strings["Poll interval"] = "Intervalle de scrutation";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution.";
-$a->strings["Maximum Load Average"] = "Charge moyenne maximale";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50.";
-$a->strings["No server found"] = "Serveur introuvable";
-$a->strings["ID"] = "ID";
-$a->strings["for channel"] = "pour le canal";
-$a->strings["on server"] = "sur le serveur";
-$a->strings["Status"] = "État";
-$a->strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie";
-$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système.";
-$a->strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non.";
-$a->strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable.";
-$a->strings["No failed updates."] = "Aucune mise à jour défaillante.";
-$a->strings["Failed Updates"] = "Mises à jour défaillantes";
-$a->strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)";
-$a->strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement";
-$a->strings["%s user blocked/unblocked"] = array(
- 0 => "%s utilisateur bloqué/débloqué",
- 1 => "%s utilisateurs bloqués/débloqués",
-);
-$a->strings["%s user deleted"] = array(
- 0 => "%s utilisateur supprimé",
- 1 => "%s utilisateurs supprimés",
-);
-$a->strings["Account not found"] = "Compte introuvable";
-$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
-$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
-$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
-$a->strings["select all"] = "tout sélectionner";
-$a->strings["User registrations waiting for confirm"] = "Inscriptions en attente d'approbation";
-$a->strings["Request date"] = "Date de la demande";
-$a->strings["No registrations."] = "Pas d'inscriptions.";
-$a->strings["Approve"] = "Approuver";
-$a->strings["Deny"] = "Refuser";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Register date"] = "Date d'inscription";
-$a->strings["Last login"] = "Dernière connexion";
-$a->strings["Expires"] = "Expire";
-$a->strings["Service Class"] = "Classe de service";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?";
-$a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
-$a->strings["Plugin %s enabled."] = "Extension %s activée.";
-$a->strings["Disable"] = "Désactiver";
-$a->strings["Enable"] = "Activer";
-$a->strings["Toggle"] = "(Dés)activer";
-$a->strings["Author: "] = "Auteur&nbsp;:";
-$a->strings["Maintainer: "] = "Maintenu par&nbsp;:";
-$a->strings["No themes found."] = "Aucun thème trouvé.";
-$a->strings["Screenshot"] = "Aperçu";
-$a->strings["[Experimental]"] = "[Expérimental]";
-$a->strings["[Unsupported]"] = "[Non-supporté]";
-$a->strings["Log settings updated."] = "Réglages du journal sauvegardés.";
-$a->strings["Clear"] = "Vider";
-$a->strings["Debugging"] = "Débogage";
-$a->strings["Log file"] = "Fichier du journal";
-$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de Red.";
-$a->strings["Log level"] = "Niveau de journalisation";
-$a->strings["- select -"] = "- choisir -";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Item is not editable"] = "Élément non-éditable";
-$a->strings["Delete item?"] = "Supprimer l'élément?";
-$a->strings["Insert YouTube video"] = "Insérer une vidéo YouTube";
-$a->strings["Insert Vorbis [.ogg] video"] = "Insérer une vidéo Vorbis [.ogg]";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un son Vorbis [.ogg]";
-$a->strings["Age: "] = "Age&nbsp;:";
-$a->strings["Gender: "] = "Sexe/genre&nbsp;:";
-$a->strings["Finding:"] = "Recherche&nbsp;:";
-$a->strings["next page"] = "page suiv.";
-$a->strings["previous page"] = "page préc.";
-$a->strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
+$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
+$a->strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation";
+$a->strings["Your email address"] = "Votre adresse de courriel";
+$a->strings["Choose a password"] = "Choisissez un mot de passe";
+$a->strings["Please re-enter your password"] = "Confirmez-le";
+$a->strings["Away"] = "Absent";
+$a->strings["Online"] = "En ligne";
+$a->strings["Please login."] = "Merci de vous connecter.";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Matrice Rouge - Pour les invités: Usager = {votre courriel}, Mot de passe = +++";
+$a->strings["Remove This Channel"] = "Supprimer ce Canal";
+$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Ceci effacera complètement le canal du réseau. Une fois effacé, un canal ne PEUT PAS être récupéré.";
+$a->strings["Please enter your password for verification:"] = "Merci de re-saisir votre mot de passe pour vérification&nbsp;:";
+$a->strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur la matrice";
+$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau";
+$a->strings["Remove Channel"] = "Enlever le canal";
+$a->strings["No channel."] = "Pas de canal.";
+$a->strings["Common connections"] = "Relations communes";
+$a->strings["No connections in common."] = "Pas de relations en commun.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est bien saisi.";
+$a->strings["The error message was:"] = "Le message d'erreur était&nbsp;:";
+$a->strings["Authentication failed."] = "Échec de l'authentification.";
+$a->strings["Remote Authentication"] = "Authentification distante";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)";
+$a->strings["Authenticate"] = "Authentifier";
+$a->strings["Continue"] = "Continuer";
+$a->strings["Premium Channel Setup"] = "Configuration du canal VIP";
+$a->strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP";
+$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ...";
+$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:";
+$a->strings["Potential connections will then see the following text before proceeding:"] = "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:";
+$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis acquitté de toutes les instructions indiquées";
+$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)";
+$a->strings["Restricted or Premium Channel"] = "Canal VIP ou restreint";
+$a->strings["No such group"] = "Groupe introuvable";
+$a->strings["Search Results For:"] = "Résultats de recherche pour&nbsp;:";
+$a->strings["Collection is empty"] = "Collection vide";
+$a->strings["Collection: "] = "Collection&nbsp;:";
+$a->strings["Connection: "] = "Relation&nbsp;:";
+$a->strings["Invalid connection."] = "Relation invalide.";
$a->strings["Could not access contact record."] = "Impossible d'accéder aux détails du contact.";
$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil sélectionné.";
$a->strings["Connection updated."] = "Connexion mise à jour.";
$a->strings["Failed to update connection record."] = "Impossible de mettre à jour les détails de la relation.";
+$a->strings["Blocked"] = "Bloqué";
+$a->strings["Ignored"] = "Ignoré";
+$a->strings["Hidden"] = "Caché";
+$a->strings["Archived"] = "Archivé";
+$a->strings["All"] = "Tout";
+$a->strings["Suggest new connections"] = "Suggérer de nouvelles relations";
+$a->strings["New Connections"] = "Nouvelles relations";
+$a->strings["Show pending (new) connections"] = "Voir les (nouvelles) relations en attente";
+$a->strings["Show all connections"] = "Voir toutes les relations";
+$a->strings["Unblocked"] = "Non bloquées";
+$a->strings["Only show unblocked connections"] = "Ne montrer que les relations non-bloquées";
+$a->strings["Only show blocked connections"] = "Ne montrer que les relations bloquées";
+$a->strings["Only show ignored connections"] = "Ne montrer que les relations ignorées";
+$a->strings["Only show archived connections"] = "Ne montrer que les relations archivées";
+$a->strings["Only show hidden connections"] = "Ne montrer que les relations cachées";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
+$a->strings["Edit contact"] = "Éditer contact";
+$a->strings["Search your connections"] = "Chercher parmi vos relations";
+$a->strings["Finding: "] = "Recherche&nbsp;:";
+$a->strings["Edit post"] = "Éditer la contribution";
$a->strings["Could not access address book record."] = "Impossible d'accéder aux détails du carnet d'adresses.";
$a->strings["Refresh failed - channel is currently unavailable."] = "Actualisation impossible - le canal est momentanément indisponible.";
$a->strings["Channel has been unblocked"] = "Le canal n'est plus bloqué";
@@ -1098,12 +1178,14 @@ $a->strings["Channel has been unhidden"] = "Le canal n'est plus caché";
$a->strings["Channel has been hidden"] = "Le canal est caché";
$a->strings["Channel has been approved"] = "Le canal est approuvé";
$a->strings["Channel has been unapproved"] = "Le canal n'est plus approuvé";
-$a->strings["Contact has been removed."] = "Le canal a été supprimé";
+$a->strings["Connection has been removed."] = "La relation a été supprimée";
$a->strings["View %s's profile"] = "Voir le profil de %s";
$a->strings["Refresh Permissions"] = "Actualiser les permissions";
$a->strings["Fetch updated permissions"] = "Récupérer les permissions les plus récentes";
$a->strings["Recent Activity"] = "Activité récente";
$a->strings["View recent posts and comments"] = "Voir les contributions et commentaires récentes";
+$a->strings["Unblock"] = "Débloquer";
+$a->strings["Block"] = "Bloquer";
$a->strings["Block or Unblock this connection"] = "Bloquer ou Débloquer cette relation";
$a->strings["Unignore"] = "Ne plus ignorer";
$a->strings["Ignore"] = "Ignorer";
@@ -1115,14 +1197,13 @@ $a->strings["Unhide"] = "Ne plus cacher";
$a->strings["Hide"] = "Cacher";
$a->strings["Hide or Unhide this connection"] = "Cacher ou ne plus cacher cette relation";
$a->strings["Delete this connection"] = "Supprimer cette relation";
-$a->strings["Unknown"] = "Inconnu";
$a->strings["Approve this connection"] = "Approuver cette relation";
$a->strings["Accept connection to allow communication"] = "Accepter la relation pour permettre la communication";
$a->strings["Automatic Permissions Settings"] = "Permissions automatiques";
$a->strings["Connections: settings for %s"] = "Relations&nbsp;: réglages pour %s";
$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Pour chaque introduction reçue, toutes les permissions définies ici seront appliquées aux nouvelles relations automatiquement, et l'introduction sera approuvée. Laissez cette page telle quelle si vous ne souhaitez pas utiliser ce mécanisme.";
$a->strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster le niveau de la relation";
-$a->strings["inherited"] = "par héritage";
+$a->strings["inherited"] = "héritée";
$a->strings["Connection has no individual permissions!"] = "Cette relation n'a aucune permission spécifique!";
$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "Ceci devrait correspondre à vos <a href=\"settings\">réglages de vie privée</a>, mais vous pouvez toujours contrôler les \"Permissions avancées\".";
$a->strings["Profile Visibility"] = "Visibilité du profil";
@@ -1131,11 +1212,12 @@ $a->strings["Contact Information / Notes"] = "Notes / Information de contact";
$a->strings["Edit contact notes"] = "Éditer les notes du contact";
$a->strings["Their Settings"] = "Ses réglages";
$a->strings["My Settings"] = "Mes réglages";
-$a->strings["Forum Members"] = "Membres de forum";
-$a->strings["Soapbox"] = "Boîte à savon";
-$a->strings["Full Sharing (typical social network permissions)"] = "Partage complet (fonctionnement habituel des réseaux sociaux)";
+$a->strings["Clear/Disable Automatic Permissions"] = "Effacer/Désactiver les Permissions Automatiques";
+$a->strings["Forum Members"] = "Membres du forum";
+$a->strings["Soapbox"] = "Blogue";
+$a->strings["Full Sharing (typical social network permissions)"] = "Partage Complet (fonctionnement habituel des réseaux sociaux)";
$a->strings["Cautious Sharing "] = "Partage modéré";
-$a->strings["Follow Only"] = "Suivi uniquement";
+$a->strings["Follow Only"] = "Suivre uniquement";
$a->strings["Individual Permissions"] = "Permissions spécifiques";
$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">réglages de vie privée</a>, lesquels sont prioritaires sur les réglages spécifiques. Changer ces permissions héritées sur la présente page n'aura aucun effet.";
$a->strings["Advanced Permissions"] = "Permissions avancées";
@@ -1155,106 +1237,31 @@ $a->strings["Currently archived"] = "Actuellement archivé";
$a->strings["Currently pending"] = "Actuellement en attente";
$a->strings["Hide this contact from others"] = "Dissimuler ce contact aux autres";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et autres réactions à vos contributions publiques <strong>pourraient</strong> être toujours visibles";
-$a->strings["Layout Help"] = "Aide à la mise en page";
-$a->strings["Help with this feature"] = "Aide avec cette fonctionnalité";
-$a->strings["Layout Name"] = "Nom de la mise-en-page";
-$a->strings["Help:"] = "Aide&nbsp;:";
-$a->strings["Not Found"] = "Introuvable";
-$a->strings["Page not found."] = "Page introuvable.";
-$a->strings["Remote Authentication"] = "Authentification distante";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)";
-$a->strings["Authenticate"] = "Authentifier";
-$a->strings["Invalid item."] = "Élément invalide.";
-$a->strings["No such group"] = "Rien de tel comme groupe";
-$a->strings["Search Results For:"] = "Résultats de recherche pour&nbsp;:";
-$a->strings["Collection is empty"] = "Collection vide";
-$a->strings["Collection: "] = "Collection&nbsp;:";
-$a->strings["Connection: "] = "Relation&nbsp;:";
-$a->strings["Invalid connection."] = "Relation invalide.";
-$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."] = "Profil impossible à cloner.";
-$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
-$a->strings["Marital Status"] = "Statut marital";
-$a->strings["Romantic Partner"] = "Partenaire";
-$a->strings["Likes"] = "Aime";
-$a->strings["Dislikes"] = "Déteste";
-$a->strings["Work/Employment"] = "Travail/Occupation";
-$a->strings["Religion"] = "Religion/Croyance";
-$a->strings["Political Views"] = "Opinions politiques";
-$a->strings["Gender"] = "Sexe/Genre";
-$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["Hide your contact/friend list from viewers of this profile?"] = "Cacher vos contacts/relations aux visiteurs de ce profil?";
-$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
-$a->strings["View this profile"] = "Voir le profil";
-$a->strings["Change Profile Photo"] = "Changer la photo du profil";
-$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces réglages";
-$a->strings["Clone this profile"] = "Cloner le profil";
-$a->strings["Delete this profile"] = "Supprimer le profil";
-$a->strings["Profile Name:"] = "Nom du profil&nbsp;:";
-$a->strings["Your Full Name:"] = "Votre nom complet&nbsp;:";
-$a->strings["Title/Description:"] = "Titre/description&nbsp;:";
-$a->strings["Your Gender:"] = "Sexe/Genre&nbsp;:";
-$a->strings["Birthday (%s):"] = "Date de naissance (%s)&nbsp;:";
-$a->strings["Street Address:"] = "Adresse postale&nbsp;:";
-$a->strings["Locality/City:"] = "Ville/Localité&nbsp;:";
-$a->strings["Postal/Zip Code:"] = "Code postal&nbsp;:";
-$a->strings["Country:"] = "Pays&nbsp;:";
-$a->strings["Region/State:"] = "Région/Province/État&nbsp;:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:";
-$a->strings["Who: (if applicable)"] = "Avec&nbsp;: (si pertinent)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com";
-$a->strings["Since [date]:"] = "Depuis [date]&nbsp;:";
-$a->strings["Homepage URL:"] = "URL de mon site Internet&nbsp;:";
-$a->strings["Religious Views:"] = "Opinions religieuses&nbsp;:";
-$a->strings["Keywords:"] = "Mots-clefs&nbsp;:";
-$a->strings["Example: fishing photography software"] = "Exemple&nbsp;: escrime photographie modélisme";
-$a->strings["Used in directory listings"] = "Utilisé pour le référencement dans l'annuaire";
-$a->strings["Tell us about yourself..."] = "Parlez nous de vous...";
-$a->strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret";
-$a->strings["Contact information and Social Networks"] = "Coordonnées et réseaux sociaux";
-$a->strings["My other channels"] = "Mes autres canaux";
-$a->strings["Musical interests"] = "Goûts musicaux";
-$a->strings["Books, literature"] = "Littérature";
-$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"] = "Travail/Occupation";
-$a->strings["School/education"] = "Études";
-$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>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet.";
-$a->strings["Edit/Manage Profiles"] = "Éditer/gérer les profils";
-$a->strings["Add profile things"] = "Ajouter des choses de profil";
-$a->strings["Include desirable objects in your profile"] = "Incluez des objets souhaitables dans votre profil";
-$a->strings["Channel added."] = "Canal ajouté.";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification distante bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et de recommencer.";
-$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné.";
+$a->strings["No potential page delegates located."] = "Aucun délégué potentiel n'a été trouvé pour cette page.";
+$a->strings["Delegate Page Management"] = "Gestion des délégués 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égués sont capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages basiques du compte. Merci de ne déléguer votre compte personnel qu'à quelqu'un en qui vous avez une confiance aveugle.";
+$a->strings["Existing Page Managers"] = "Actuels gestionnaires de pages";
+$a->strings["Existing Page Delegates"] = "Actuels délégués";
+$a->strings["Potential Delegates"] = "Délégués potentiels";
+$a->strings["Remove"] = "Retirer";
+$a->strings["Add"] = "Ajouter";
+$a->strings["No entries."] = "Aucune entrée.";
+$a->strings["Public access denied."] = "Accès public refusé.";
+$a->strings["Gender: "] = "Sexe/genre&nbsp;:";
+$a->strings["Finding:"] = "Recherche&nbsp;:";
+$a->strings["next page"] = "page suivante";
+$a->strings["previous page"] = "page précédente";
+$a->strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
+$a->strings["Status: "] = "État&nbsp;:";
+$a->strings["Sexual Preference: "] = "Orientation sexuelle&nbsp;:";
+$a->strings["Homepage: "] = "Site web&nbsp;:";
+$a->strings["Hometown: "] = "Ville natale&nbsp;:";
+$a->strings["About: "] = "À propos&nbsp;:";
+$a->strings["Keywords: "] = "Mots-clefs&nbsp;:";
$a->strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire";
-$a->strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
-$a->strings["Source created."] = "Source créée.";
-$a->strings["Source updated."] = "Source mise à jour.";
-$a->strings["*"] = "*";
-$a->strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes du contenu de votre canal.";
-$a->strings["New Source"] = "Nouvelle source";
-$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal.";
-$a->strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'ils contient ces mots (un par ligne)";
-$a->strings["Leave blank to import all public content"] = "Laissez en blanc pour importer tout le contenu public";
-$a->strings["Channel Name"] = "Nom du canal";
-$a->strings["Source not found."] = "Source introuvable.";
-$a->strings["Edit Source"] = "Éditer source";
-$a->strings["Delete Source"] = "Supprimer source";
-$a->strings["Source removed"] = "Source supprimée";
-$a->strings["Unable to remove source."] = "Impossible de supprimer la source.";
-$a->strings["Remote privacy information not available."] = "Les informations de vie privée à distance ne sont pas disponibles.";
-$a->strings["Visible to:"] = "Visible par&nbsp;:";
-$a->strings["Hub not found."] = "Instance introuvable.";
-$a->strings["Red Matrix Server - Setup"] = "Serveur Red Matrix - Configuration";
+$a->strings["Red Matrix - &quot;The Network&quot;"] = "La Matrice Rouge - &quot;LE Réseau&quot;";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["Red Matrix Server - Setup"] = "Serveur de la Matrice Rouge - Configuration";
$a->strings["Could not connect to database."] = "Impossible de se connecter à la base de données.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS.";
$a->strings["Could not create table."] = "Impossible de créer la table.";
@@ -1262,18 +1269,19 @@ $a->strings["Your site database has been installed."] = "La base de données de
$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"install/database.sql\" manuellement via phpmyadmin ou mysql.";
$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Merci de consulter le fichier \"install/INSTALL.txt\".";
$a->strings["System check"] = "Vérification du système";
+$a->strings["Next"] = "Suivant";
$a->strings["Check again"] = "Re-vérifier";
$a->strings["Database connection"] = "Connexion à la base de données";
-$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Pour installer Red Matrix, 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 contacter votre prestataire d'hébergement ou votre administration système si vous avez des doutes à propos de ces paramètres.";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Pour installer la Matrice Rouge, 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 contacter votre prestataire d'hébergement ou votre administrateur système si vous avez des doutes à propos de ces paramètres.";
$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 allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer.";
-$a->strings["Database Server Name"] = "Nom du serveur de BD";
+$a->strings["Database Server Name"] = "Nom du serveur de la base de données";
$a->strings["Default is localhost"] = "Par défaut, localhost";
$a->strings["Database Port"] = "Port du serveur";
$a->strings["Communication port number - use 0 for default"] = "Numéro TCP du port - utilisez 0 pour la valeur par défaut";
-$a->strings["Database Login Name"] = "Identifiant de connexion à la BD";
-$a->strings["Database Login Password"] = "Mot de passe de connexion à la BD";
-$a->strings["Database Name"] = "Nom de la base de données";
+$a->strings["Database Login Name"] = "Identifiant de connexion à la Base de Données";
+$a->strings["Database Login Password"] = "Mot de passe de connexion à la Base de Données";
+$a->strings["Database Name"] = "Nom de la Base de Données";
$a->strings["Site administrator email address"] = "Adresse de courriel de l'administrateur du site";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web.";
$a->strings["Website URL"] = "URL du site";
@@ -1309,158 +1317,313 @@ $a->strings["Error: mb_string PHP module required but not installed."] = "Erreur
$a->strings["Error: mcrypt PHP module required but not installed."] = "Erreur&nbsp;: le module mcrypt de PHP 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 a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais 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."] = "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de Red.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de La Matrice Rouge.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées.";
$a->strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses templates vers du PHP natif pour accélérer le rendu.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Pour stocker ces templates compilées, le serveur web nécessite de pouvoir écrire dans le répertoire <racine de red>view/tpl/smarty3/.";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "La Matrice Rouge utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "Note&nbsp;: pour renforcer la sécurité, vous pouvez décider de ne donner l'accès en écrire qu'au répertoire view/tpl/smarty3 - et pas aux fichiers de templates (.tpl) qu'il contient.";
-$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 est accessible en écriture";
-$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red utilise le répertoire 'store' - situé à la racine de Red - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire.";
+$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture sur %s au serveur web uniquement. Éviter de définir les permissions sur les fichiers individuels (.tpl).";
+$a->strings["%s is writable"] = "Permission d'écriture sur %s activée";
+$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red utilise le répertoire 'store' - situé à la racine de votre installation de la Matrice Rouge - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire.";
$a->strings["store is writable"] = "'store' est accessible en écriture";
-$a->strings["SSL certificate validation"] = "Validation du certificat SSL/TLS";
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site.";
+$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si votre serveur supporte les connections encryptées SSL ou s'il permet les connections sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé!";
+$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence à des images sur votre propre hub.";
+$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si vos certificats sont invalides, les autres administrateurs de hubs recevront constamment des messages d'avertissements de sécurité sur leur propre hub.";
+$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Pour des raisons de compatibilité (sur l'ensemble de la matrice) nous nous devons d'insister sur ce prérequis.";
+$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe une plusieurs autorités de certification qui vous fourniront gratuitement un certificat valide.";
+$a->strings["SSL certificate validation"] = "Validation du certificat SSL/TLS";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Merci de vérifier la configuration de votre serveur web.";
$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 de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web.";
$a->strings["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BD.";
$a->strings["<h1>What next</h1>"] = "<h1>Et maintenant</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour.";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Edit Block"] = "Éditer bloc";
+$a->strings["Delete block?"] = "Supprimer le bloc?";
+$a->strings["Insert YouTube video"] = "Insérer une vidéo YouTube";
+$a->strings["Insert Vorbis [.ogg] video"] = "Insérer une vidéo Vorbis [.ogg]";
+$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un son Vorbis [.ogg]";
+$a->strings["Delete Block"] = "Supprimer le bloc";
+$a->strings["Layout updated."] = "Agencement pris-en-compte.";
+$a->strings["Edit System Page Description"] = "Éditer la description";
+$a->strings["Layout not found."] = "Agencement introuvable.";
+$a->strings["Module Name:"] = "Nom du module&nbsp;:";
+$a->strings["Layout Help"] = "Aide à la mise en page";
+$a->strings["Edit Layout"] = "Éditer mise-en-page";
+$a->strings["Delete layout?"] = "Supprimer la mise-en-page?";
+$a->strings["Delete Layout"] = "Supprimer mise-en-page";
+$a->strings["Item is not editable"] = "Élément non-éditable";
+$a->strings["Delete item?"] = "Supprimer l'élément?";
+$a->strings["Edit Webpage"] = "Éditer page web";
+$a->strings["Delete webpage?"] = "Supprimer la page web?";
+$a->strings["Delete Webpage"] = "Supprimer page web";
$a->strings["Version %s"] = "Version %s";
$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées&nbsp;:";
$a->strings["No installed plugins/addons/apps"] = "Aucune extension/application installée";
-$a->strings["Project Donations"] = "Donations au projet";
-$a->strings["<p>The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing</p>"] = "<p>The Red Matrix vous est mis à disposition par des volontaires, qui travaillent dessus sur leur temps libre. Votre soutien nous aidera à construire un meilleur web. Merci de choisir l'option suivante pour une donation ponctuelle de votre choix.</p>";
-$a->strings["<p>or</p>"] = "<p>ou bien</p>";
-$a->strings["Recurring Donation Options"] = "Options de donation récurente";
-$a->strings["Red"] = "Red";
-$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée.";
-$a->strings["Running at web location"] = "En train de tourner chez";
-$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Red.";
+$a->strings["Red"] = "Rouge";
+$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Ceci est une instance - un hub - de la Matrice Rouge - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée";
+$a->strings["Running at web location"] = "Installée sur";
+$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Rouge.";
$a->strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com";
$a->strings["Site Administrators"] = "Administrateurs du site";
-$a->strings["Add a Channel"] = "Ajouter un canal";
-$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre fournisseur vous y autorise.";
-$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\"";
-$a->strings["Choose a short nickname"] = "Choisissez un nom court";
-$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Ce nom court sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres.";
-$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit";
-$a->strings["No valid account found."] = "Aucun compte valide trouvé.";
-$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe demandée. Vérifiez vos courriels.";
-$a->strings["Site Member (%s)"] = "Membre du site (%s)";
-$a->strings["Password reset requested at %s"] = "Demande de réinitialisation de mot de passe sur %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) 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-le ou copiez-le, 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 des <em>Réglages</em> une fois connecté.";
-$a->strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé";
-$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."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions.";
-$a->strings["Email Address"] = "Adresse de courriel";
-$a->strings["Reset"] = "Réinitialiser";
-$a->strings["Name is required"] = "Le nom est requis";
-$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
-$a->strings["Update"] = "Mise-à-jour";
-$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
-$a->strings["Password changed."] = "Le mot de passe a été changé.";
-$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
-$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
-$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
-$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
-$a->strings["Settings updated."] = "Réglages sauvegardés.";
-$a->strings["Add application"] = "Ajouter une application";
-$a->strings["Name"] = "Nom";
-$a->strings["Name of application"] = "Nom de l'application";
-$a->strings["Consumer Key"] = "Clef de consommateur";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
-$a->strings["Consumer Secret"] = "Secret de consommateur";
-$a->strings["Redirect"] = "Redirection";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
-$a->strings["Icon url"] = "URL de l'icône";
-$a->strings["Optional"] = "Facultatif";
-$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 clef cliente commence par";
-$a->strings["No name"] = "Sans nom";
-$a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
-$a->strings["Feature Settings"] = "Fonctionnalités";
-$a->strings["Account Settings"] = "Compte";
-$a->strings["Password Settings"] = "Mot de passe";
-$a->strings["New Password:"] = "Nouveau mot de passe&nbsp;:";
-$a->strings["Confirm:"] = "Confirmation&nbsp;:";
-$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
-$a->strings["Email Address:"] = "Adresse de courriel&nbsp;:";
-$a->strings["Remove Account"] = "Supprimer le compte";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention&nbsp;: cette action est permanente et irréversible.";
-$a->strings["Off"] = "Inactif";
-$a->strings["On"] = "Actif";
-$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
-$a->strings["Connector Settings"] = "Connecteurs";
-$a->strings["Display Settings"] = "Affichage";
-$a->strings["Display Theme:"] = "Thème&nbsp;:";
-$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
-$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:";
-$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
-$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
-$a->strings["Do not view remote profiles in frames"] = "";
-$a->strings["By default open in a sub-window of your own site"] = "Par défaut, ouvrir dans une sous-fenêtre de votre propre site";
-$a->strings["Nobody except yourself"] = "Personne sauf vous";
-$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
-$a->strings["Anybody in your address book"] = "Tous vos contacts";
-$a->strings["Anybody on this website"] = "Tous les utilisateurs du site";
-$a->strings["Anybody in this network"] = "Tous les utilisateurs du réseau";
-$a->strings["Anybody on the internet"] = "Tout les utilisateurs d'Internet";
-$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?";
-$a->strings["or"] = "ou";
-$a->strings["Your channel address is"] = "Votre canal a pour adresse";
-$a->strings["Channel Settings"] = "Canal";
-$a->strings["Basic Settings"] = "Basique";
-$a->strings["Your Timezone:"] = "Zone de temps&nbsp;:";
-$a->strings["Default Post Location:"] = "Localisation par défaut&nbsp;:";
-$a->strings["Use Browser Location:"] = "Utiliser la localisation fournie par le navigateur&nbsp;:";
-$a->strings["Adult Content"] = "Contenu \"adulte\"";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag <em>#NSFW</em> - Not Safe For Work)";
-$a->strings["Security and Privacy Settings"] = "Sécurité et vie privée";
-$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
-$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
-$a->strings["Simple Privacy Settings:"] = "Réglages simples&nbsp;:";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Classique - <em>public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)</em>";
-$a->strings["Private - <em>default private, never open or public</em>"] = "Privé - <em>privé par défaut, jamais ouvert ni public</em>";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>";
-$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
-$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour&nbsp;:";
-$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact du spam";
-$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
-$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:";
-$a->strings["Useful to reduce spamming"] = "Utile pour réduire le spam";
-$a->strings["Notification Settings"] = "Notifications";
-$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
-$a->strings["accepting a friend request"] = "acceptez une mise en relation";
-$a->strings["joining a forum/community"] = "joignez un forum ou à une communauté";
-$a->strings["making an <em>interesting</em> profile change"] = "faites une modification <em>intéressante</em> de votre profil";
-$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand&nbsp;:";
-$a->strings["You receive an introduction"] = "Vous recevez une introduction";
-$a->strings["Your introductions are confirmed"] = "Vos introductions sont acceptées/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 commente sur vos publications";
-$a->strings["You receive a private message"] = "Vous recevez un Message Privé";
-$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
-$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
-$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/pointé/etc. dans une publication";
-$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
-$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
-$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Merci d'activer le mode expert (dans Réglages > Fonctionnalités additionelles) pour affiner!";
+$a->strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page.";
+$a->strings["Album not found."] = "Album introuvable.";
+$a->strings["Delete Album"] = "Supprimer album";
+$a->strings["Delete Photo"] = "Supprimer photo";
+$a->strings["No photos selected"] = "Aucune photo selectionnée";
+$a->strings["Access to this item is restricted."] = "L'accès à l'élément est restreint.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos.";
+$a->strings["Upload Photos"] = "Téléverser des photos";
+$a->strings["New album name: "] = "Créer un album&nbsp;:";
+$a->strings["or existing album name: "] = "ou choisir un album existant&nbsp;:";
+$a->strings["Do not show a status post for this upload"] = "Ne pas publier de statut pour cet envoi";
+$a->strings["Contact Photos"] = "Photos de contact";
+$a->strings["Edit Album"] = "Éditer l'album";
+$a->strings["Show Newest First"] = "Ordre anté-chronologique";
+$a->strings["Show Oldest First"] = "Ordre chronologique";
+$a->strings["View Photo"] = "Voir la photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
+$a->strings["Photo not available"] = "Photo indisponible";
+$a->strings["Use as profile photo"] = "Utiliser comme photo du profil";
+$a->strings["View Full Size"] = "Voir en taille réelle";
+$a->strings["Edit photo"] = "Éditer la photo";
+$a->strings["Rotate CW (right)"] = "Rotation horaire (droite)";
+$a->strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
+$a->strings["New album name"] = "Nouveau nom d'album&nbsp;:";
+$a->strings["Caption"] = "Titre/légende";
+$a->strings["Add a Tag"] = "Ajouter une étiquette";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon";
+$a->strings["In This Photo:"] = "Dans cette photo&nbsp;:";
+$a->strings["View Album"] = "Voir l'album";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
+$a->strings["Source created."] = "Source créée.";
+$a->strings["Source updated."] = "Source mise à jour.";
+$a->strings["*"] = "*";
+$a->strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes du contenu de votre canal.";
+$a->strings["New Source"] = "Nouvelle Source";
+$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal.";
+$a->strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'ils contient ces mots (un par ligne)";
+$a->strings["Leave blank to import all public content"] = "Laissez en blanc pour importer tout le contenu public";
+$a->strings["Channel Name"] = "Nom du Canal";
+$a->strings["Source not found."] = "Source introuvable.";
+$a->strings["Edit Source"] = "Éditer la source";
+$a->strings["Delete Source"] = "Supprimer la source";
+$a->strings["Source removed"] = "Source supprimée";
+$a->strings["Unable to remove source."] = "Impossible de supprimer la source.";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement.";
+$a->strings["Event not found."] = "Événement introuvable.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Éditer l'événement";
+$a->strings["Create New Event"] = "Créer événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["hour:minute"] = "heure:minute";
+$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. Date de début et titre obligatoires.";
+$a->strings["Event Starts:"] = "L'événement débute&nbsp;:";
+$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:"] = "L'événement termine&nbsp;:";
+$a->strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Titre:";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["Permission Denied."] = "Permission refusée.";
+$a->strings["File not found."] = "Fichier introuvable.";
+$a->strings["Edit file permissions"] = "Éditer les permissions du fichier";
+$a->strings["Set/edit permissions"] = "Définir/Édition des authorisations";
+$a->strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires";
+$a->strings["Return to file list"] = "Retourner à la liste des fichiers";
+$a->strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication";
+$a->strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour lier le fichier depuis une page web";
+$a->strings["Channel added."] = "Canal ajouté.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/relation envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer une relation";
+$a->strings["Suggest a friend for %s"] = "Suggérer une relation à %s";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures.";
+$a->strings["Collection created."] = "Collection créée.";
+$a->strings["Could not create collection."] = "Impossible de créer la collection.";
+$a->strings["Collection updated."] = "Collection mise-à-jour.";
+$a->strings["Create a collection of channels."] = "Créez une collection de canaux.";
+$a->strings["Collection Name: "] = "Nom de la collection&nbsp;:";
+$a->strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux";
+$a->strings["Collection removed."] = "Collection supprimée.";
+$a->strings["Unable to remove collection."] = "Impossible de supprimer la collection.";
+$a->strings["Collection Editor"] = "Éditeur de collection";
+$a->strings["Members"] = "Membres";
+$a->strings["All Connected Channels"] = "Tous canaux connectés";
+$a->strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour l'ajouter ou le supprimer";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s par %4\$s";
+$a->strings["Help:"] = "Aide&nbsp;:";
+$a->strings["Not Found"] = "Introuvable";
+$a->strings["Tag removed"] = "Étiquette retirée";
+$a->strings["Remove Item Tag"] = "Retirer une étiquette à l'élément";
+$a->strings["Select a tag to remove: "] = "Étiquette à retirer&nbsp;:";
+$a->strings["Theme settings updated."] = "Réglages du thème sauvegardés.";
+$a->strings["Site"] = "Site";
+$a->strings["Accounts"] = "Comptes";
+$a->strings["Channels"] = "Canaux";
+$a->strings["Plugins"] = "Extensions";
+$a->strings["Themes"] = "Thèmes";
+$a->strings["Server"] = "Serveur";
+$a->strings["DB updates"] = "MàJ BD";
+$a->strings["Logs"] = "Journaux";
+$a->strings["Plugin Features"] = "Fonctionnalités liées aux extensions";
+$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente";
+$a->strings["Message queues"] = "File 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"] = "Version";
+$a->strings["Active plugins"] = "Extensions actives";
+$a->strings["Site settings updated."] = "Réglages du site sauvegardés.";
+$a->strings["No special theme for accessibility"] = "Pas de thème spécifique pour l'accessibilité";
+$a->strings["Yes - with approval"] = "Oui - avec approbation";
+$a->strings["My site is not a public server"] = "Mon site n'est pas un serveur publique";
+$a->strings["My site has paid access only"] = "Mon site est payant";
+$a->strings["My site has free access only"] = "Mon site est gratuit";
+$a->strings["My site offers free accounts with optional paid upgrades"] = "Mon site offre des comptes gratuits avec des ajouts payants";
+$a->strings["File upload"] = "Envoi de fichier";
+$a->strings["Policies"] = "Stratégies";
+$a->strings["Site name"] = "Nom du site";
+$a->strings["Banner/Logo"] = "Bannière/logo";
+$a->strings["Administrator Information"] = "Informations sur l'administrateur";
+$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Coordonnées de l'administrateur du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici";
+$a->strings["System language"] = "Langue du système";
+$a->strings["System theme"] = "Thème du système";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>";
+$a->strings["Mobile system theme"] = "Thème système pour mobile";
+$a->strings["Theme for mobile devices"] = "Thème dédié aux périphériques mobiles";
+$a->strings["Accessibility system theme"] = "Thème système pour l'accessibilité";
+$a->strings["Accessibility theme"] = "Thème pour l'accessibilité";
+$a->strings["Channel to use for this website's static pages"] = "Canal à utiliser pour les pages statiques de ce site";
+$a->strings["Site Channel"] = "Canal de ce HUB";
+$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 maximum, en octets, des images envoyées. Par défaut 0, soit sans limite.";
+$a->strings["Does this site allow new member registration?"] = "Est-ce que l'enregistrement de nouveau membres sur ce site est autorisé?";
+$a->strings["Which best describes the types of account offered by this hub?"] = "Choisissez le type de comptes offert sur ce hub?";
+$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 le formulaire d'inscription.";
+$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps.";
+$a->strings["Allowed friend domains"] = "Domaines amicaux";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
+$a->strings["Allowed email domains"] = "Domaines de courriels amicaux";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
+$a->strings["Block public"] = "Bloquer public";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes.";
+$a->strings["Force publish"] = "Forcer publication";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire.";
+$a->strings["Disable discovery tab"] = "Désactiver l'onglet \"À découvrir\"";
+$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Ne pas afficher d'onglet avec des contenus publics automatiquement rassemblées depuis des sources choisies pour ce site.";
+$a->strings["No login on Homepage"] = "Pas de connexion depuis la page d'accueil";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site).";
+$a->strings["Proxy user"] = "Utilisateurs du proxy";
+$a->strings["Proxy URL"] = "URL du proxy (visiter @proxy-list)";
+$a->strings["Network timeout"] = "Délai maximal du réseau";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé).";
+$a->strings["Delivery interval"] = "Intervalle de distribution";
+$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."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés.";
+$a->strings["Poll interval"] = "Intervalle de scrutation";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution.";
+$a->strings["Maximum Load Average"] = "Charge moyenne maximale";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50.";
+$a->strings["No server found"] = "Serveur introuvable";
+$a->strings["ID"] = "ID";
+$a->strings["for channel"] = "pour le canal";
+$a->strings["on server"] = "sur le serveur";
+$a->strings["Status"] = "État";
+$a->strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie";
+$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système.";
+$a->strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non.";
+$a->strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable.";
+$a->strings["No failed updates."] = "Aucune mise à jour défaillante.";
+$a->strings["Failed Updates"] = "Mises à jour défaillantes";
+$a->strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)";
+$a->strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement";
+$a->strings["%s user blocked/unblocked"] = array(
+ 0 => "%s utilisateur bloqué/débloqué",
+ 1 => "%s utilisateurs bloqués/débloqués",
+);
+$a->strings["%s user deleted"] = array(
+ 0 => "%s utilisateur supprimé",
+ 1 => "%s utilisateurs supprimés",
+);
+$a->strings["Account not found"] = "Compte introuvable";
+$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
+$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
+$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
+$a->strings["Users"] = "Utilisateurs";
+$a->strings["select all"] = "tout sélectionner";
+$a->strings["User registrations waiting for confirm"] = "Inscriptions en attente d'approbation";
+$a->strings["Request date"] = "Date de la demande";
+$a->strings["No registrations."] = "Pas d'inscriptions.";
+$a->strings["Approve"] = "Approuver";
+$a->strings["Deny"] = "Refuser";
+$a->strings["Register date"] = "Date d'inscription";
+$a->strings["Last login"] = "Dernière connexion";
+$a->strings["Expires"] = "Expire";
+$a->strings["Service Class"] = "Classe de service";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés seront supprimés!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} sera supprimé!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive!\\n\\nÊtes-vous certain?";
+$a->strings["%s channel censored/uncensored"] = array(
+ 0 => "%s canal censuré/non-censuré",
+ 1 => "%s canaux censurés/non-censurés",
+);
+$a->strings["%s channel deleted"] = array(
+ 0 => "%s canal supprimé",
+ 1 => "%s canaux supprimés",
+);
+$a->strings["Channel not found"] = "Canal introuvable";
+$a->strings["Channel '%s' deleted"] = "Canal '%s' supprimé";
+$a->strings["Channel '%s' uncensored"] = "Canal '%s' non-censuré";
+$a->strings["Channel '%s' censored"] = "Canal '%s' censuré";
+$a->strings["Censor"] = "Censurer";
+$a->strings["Uncensor"] = "Ne plus censurer";
+$a->strings["UID"] = "UID";
+$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les canaux sélectionnés seront supprimés!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé!\\n\\nÊtes-vous certain?";
+$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le canal {0} sera supprimé!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé!\\n\\nÊtes-vous certain?";
+$a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
+$a->strings["Plugin %s enabled."] = "Extension %s activée.";
+$a->strings["Disable"] = "Désactiver";
+$a->strings["Enable"] = "Activer";
+$a->strings["Toggle"] = "(Dés)activer";
+$a->strings["Author: "] = "Auteur&nbsp;:";
+$a->strings["Maintainer: "] = "Maintenu par&nbsp;:";
+$a->strings["No themes found."] = "Aucun thème trouvé.";
+$a->strings["Screenshot"] = "Aperçu";
+$a->strings["[Experimental]"] = "[Expérimental]";
+$a->strings["[Unsupported]"] = "[Non-supporté]";
+$a->strings["Log settings updated."] = "Réglages du journal sauvegardés.";
+$a->strings["Clear"] = "Vider";
+$a->strings["Debugging"] = "Débogage";
+$a->strings["Log file"] = "Fichier du journal";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de votre installation de la Matrice Rouge.";
+$a->strings["Log level"] = "Niveau de journalisation";
+$a->strings["Thing updated"] = "Chose mise-à-jour";
+$a->strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
+$a->strings["Thing added"] = "Chose ajoutée";
+$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+$a->strings["Show Thing"] = "Montrer chose";
+$a->strings["item not found."] = "élément introuvable.";
+$a->strings["Edit Thing"] = "Éditer chose";
+$a->strings["Select a profile"] = "Choisissez un profil";
+$a->strings["Post an activity"] = "Publier une activité";
+$a->strings["Only sends to viewers of the applicable profile"] = "Envoi exclusivement au membres autorisé de ce profil";
+$a->strings["Name of thing e.g. something"] = "Nom de la chose, p.ex. quelque-chose";
+$a->strings["URL of thing (optional)"] = "URL de la chose (optionnel)";
+$a->strings["URL for photo of thing (optional)"] = "URL de l'image de la chose (optionnel)";
+$a->strings["Add Thing to your Profile"] = "Ajouter la chose à votre profil";
$a->strings["Nothing to import."] = "Rien à importer.";
$a->strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur";
$a->strings["Imported file is empty."] = "Le fichier importé est vide.";
@@ -1470,28 +1633,75 @@ $a->strings["Cloned channel not found. Import failed."] = "Le canal cloné n'a p
$a->strings["Import completed."] = "L'import est terminé.";
$a->strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité.";
$a->strings["Import Channel"] = "Importation de canal";
-$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Utilisez ce formulaire pour importer un canal existant sur un serveur différent. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export. Seules les données d'identité et de relations seront importées. L'importation des contenus n'est pas encore disponible.";
+$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Utilisez ce formulaire pour importer un canal existant sur un serveur différent. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export. Seules les données d'identité et de relations seront importées. L'importation du contenu est toujours en développement.";
$a->strings["File to Upload"] = "Fichier à envoyer";
$a->strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur";
$a->strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)";
$a->strings["Your old login email address"] = "Votre ancienne adresse de courriel";
$a->strings["Your old login password"] = "Votre ancien mot de passe";
$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Quelle que soit l'option choisie, merci de décider si cette nouvelle adresse sera la primaire, ou si votre ancienne adresse continuera à jouer ce rôle. Vous pourrez publier depuis l'adresse de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media.";
-$a->strings["Make this hub my primary location"] = "Faire de cette adresse ma principale";
-$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés.";
-$a->strings["Create a new channel"] = "Créer un nouveau canal";
-$a->strings["Channel Manager"] = "Gestionnaire du canal";
-$a->strings["Current Channel"] = "Canal actif";
-$a->strings["Attach to one of your channels by selecting it."] = "Branchez-vous à l'un de vos canaux en le selectionnant.";
-$a->strings["Default Channel"] = "Canal par défaut";
-$a->strings["Make Default"] = "Définir comme défaut";
-$a->strings["Total votes"] = "Suffrages exprimés";
-$a->strings["Average Rating"] = "Note moyenne";
-$a->strings["Profile Match"] = "Profils similaires";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut.";
-$a->strings["is interested in:"] = "s'intéresse à&nbsp;:";
-$a->strings["No matches"] = "Pas de correspondance";
-$a->strings["invalid target signature"] = "signature de la cible invalide";
+$a->strings["Make this hub my primary location"] = "Faire de ce hub l'adresse principale de ce canal";
+$a->strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée.";
+$a->strings["%s : Not a valid email address."] = "%s&nbsp: adresse courriel invalide.";
+$a->strings["Please join us on Red"] = "Rejoignez-nous sur la Matrice Rouge";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site.";
+$a->strings["%s : Message delivery failed."] = "%s&nbsp;: Échec dans la livraison du message.";
+$a->strings["%d message sent."] = array(
+ 0 => "%d message envoyé.",
+ 1 => "%d messages envoyés.",
+);
+$a->strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation";
+$a->strings["Send invitations"] = "Envoyer des invitations";
+$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne&nbsp;:";
+$a->strings["Your message:"] = "Votre message&nbsp;:";
+$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Rouge - un nouvel outil de communication décentralisé et révolutionnaire.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation&nbsp;: \$invite_code";
+$a->strings["Please visit my channel at"] = "Merci de me rendre visite sur";
+$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Une fois inscrit (sur N'IMPORTE QUEL HUB publique - ils sont tous inter-connectés), merci d'ajouter mon Canal&nbsp;:";
+$a->strings["Click the [Register] link on the following page to join."] = "Cliquez le lien [S'inscrire] sur la page suivante pour nous rejoindre.";
+$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Pour plus d'information sur le projet Red Matrix(Matrice Rouge), et sa capacité à remodeler Internet, merci de visiter http://getzot.com";
+$a->strings["Unable to locate original post."] = "Impossible de localiser la publication initiale.";
+$a->strings["Empty post discarded."] = "Publication vide annulée.";
+$a->strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal.";
+$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée.";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racine\".";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web.";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenu embarqué - rechargez la page pour le voir]";
+$a->strings["Help with this feature"] = "Aide avec cette fonctionnalité";
+$a->strings["Layout Name"] = "Nom de la mise-en-page";
+$a->strings["Like/Dislike"] = "J'aime/Je Déteste";
+$a->strings["This action is restricted to members."] = "Cette action est réservée aux membres.";
+$a->strings["Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href=\"register\">register as a new RedMatrix member</a> to continue."] = "SVP <a href=\"rmagic\">connectez-vous</a> ou <a href=\"register\">enregistrez-vous</a> pour continuer.";
+$a->strings["Invalid request."] = "Requête invalide.";
+$a->strings["thing"] = "chose";
+$a->strings["Channel unavailable."] = "Canal indisponible.";
+$a->strings["Previous action reversed."] = "Action précédente annulée.";
+$a->strings["Action completed."] = "Action complétée.";
+$a->strings["Thank you."] = "Merci.";
+$a->strings["Remote privacy information not available."] = "Les informations de vie privée à distance ne sont pas disponibles.";
+$a->strings["Visible to:"] = "Visible par&nbsp;:";
+$a->strings["No connections."] = "Pas de relations.";
+$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
+$a->strings["View Connnections"] = "Voir les relations";
+$a->strings["No valid account found."] = "Aucun compte valide trouvé.";
+$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe demandée. Vérifiez vos courriels.";
+$a->strings["Site Member (%s)"] = "Membre du site (%s)";
+$a->strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) 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-le ou copiez-le, 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 des <em>Réglages</em> une fois connecté.";
+$a->strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé";
+$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."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions.";
+$a->strings["Email Address"] = "Adresse de courriel";
+$a->strings["Reset"] = "Réinitialiser";
+$a->strings["Hub not found."] = "Hub introuvable.";
+$a->strings["Total votes"] = "Total des votes";
+$a->strings["Average Rating"] = "Évaluation";
$a->strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire.";
$a->strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé.";
$a->strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé.";
@@ -1508,219 +1718,141 @@ $a->strings["Recall message"] = "Rappeler/annuler le message";
$a->strings["Message has been recalled."] = "Le message a été rappelé.";
$a->strings["Private Conversation"] = "Conversation privée";
$a->strings["Delete conversation"] = "Supprimer conversation";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible en l'état. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur.";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur.";
$a->strings["Send Reply"] = "Envoyer une réponse";
-$a->strings["Edit Layout"] = "Éditer mise-en-page";
-$a->strings["Delete layout?"] = "Supprimer la mise-en-page?";
-$a->strings["Delete Layout"] = "Supprimer mise-en-page";
-$a->strings["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué.";
-$a->strings["Image resize failed."] = "Le retaillage de l'image a échoué.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
-$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 traîter l'image.";
-$a->strings["Photo not available."] = "Photo inaccessible.";
-$a->strings["Upload File:"] = "Fichier&nbsp;:";
-$a->strings["Select a profile:"] = "Choisir un profil&nbsp;:";
-$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
-$a->strings["Upload"] = "Envoyer";
-$a->strings["skip this step"] = "passer cette étape";
-$a->strings["select a photo from your photo albums"] = "choisir une photo dans vos albums";
-$a->strings["Crop Image"] = "Recadrer l'image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuter le cadre pour une visualisation optimale.";
-$a->strings["Done Editing"] = "J'ai terminé";
-$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
-$a->strings["Image upload failed."] = "Le téléversement a échoué.";
-$a->strings["Image size reduction [%s] failed."] = "La réduction de taille [%s] a échoué.";
-$a->strings["Blocked"] = "Bloqué";
-$a->strings["Ignored"] = "Ignoré";
-$a->strings["Hidden"] = "Caché";
-$a->strings["Archived"] = "Archivé";
-$a->strings["All"] = "Tout";
-$a->strings["Suggest new connections"] = "Suggérer de nouvelles relations";
-$a->strings["Show pending (new) connections"] = "Voir les (nouvelles) relations en attente";
-$a->strings["Show all connections"] = "Voir toutes les relations";
-$a->strings["Unblocked"] = "Non bloquées";
-$a->strings["Only show unblocked connections"] = "Ne montrer que les relations non-bloquées";
-$a->strings["Only show blocked connections"] = "Ne montrer que les relations bloquées";
-$a->strings["Only show ignored connections"] = "Ne montrer que les relations ignorées";
-$a->strings["Only show archived connections"] = "Ne montrer que les relations archivées";
-$a->strings["Only show hidden connections"] = "Ne montrer que les relations cachées";
-$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
-$a->strings["Edit contact"] = "Éditer contact";
-$a->strings["Search your connections"] = "Chercher parmi vos relations";
-$a->strings["Finding: "] = "Recherche&nbsp;:";
+$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés.";
+$a->strings["Create a new channel"] = "Créer un nouveau canal";
+$a->strings["Channel Manager"] = "Gestionnaire du canal";
+$a->strings["Current Channel"] = "Canal actif";
+$a->strings["Attach to one of your channels by selecting it."] = "Branchez-vous à l'un de vos canaux en le selectionnant.";
+$a->strings["Default Channel"] = "Canal par défaut";
+$a->strings["Make Default"] = "Définir comme défaut";
+$a->strings["Wall Photos"] = "Photos du mur";
+$a->strings["Profile Match"] = "Profils similaires";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut.";
+$a->strings["is interested in:"] = "s'intéresse à&nbsp;:";
+$a->strings["No matches"] = "Pas de correspondance";
+$a->strings["Menu updated."] = "Menu mis à jour.";
+$a->strings["Unable to update menu."] = "Impossible de mettre le menu à jour.";
+$a->strings["Menu created."] = "Menu créé.";
+$a->strings["Unable to create menu."] = "Impossible de créer le menu.";
+$a->strings["Manage Menus"] = "Gérer les menus";
+$a->strings["Drop"] = "Supprimer";
+$a->strings["Create a new menu"] = "Créer un nouveau menu";
+$a->strings["Delete this menu"] = "Supprimer ce menu";
+$a->strings["Edit menu contents"] = "Éditer le contenu du menu";
+$a->strings["Edit this menu"] = "Éditer le menu";
+$a->strings["New Menu"] = "Nouveau menu";
+$a->strings["Menu name"] = "Nom du menu";
+$a->strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous";
+$a->strings["Menu title"] = "Titre du menu";
+$a->strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs";
+$a->strings["Allow bookmarks"] = "Autoriser l'usage de favoris";
+$a->strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris";
+$a->strings["Menu deleted."] = "Menu supprimé.";
+$a->strings["Menu could not be deleted."] = "Impossible de supprimer le menu.";
+$a->strings["Edit Menu"] = "Éditer le menu";
+$a->strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["No messages."] = "Pas de message.";
+$a->strings["D, d M Y - g:i A"] = "D d Y - H:i";
+$a->strings["Add a Channel"] = "Ajouter un canal";
+$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre administrateur de hub vous y autorise.";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples&nbsp;: \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\"";
+$a->strings["Choose a short nickname"] = "Choisissez un alias";
+$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Cet alias sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres.";
+$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Ou <a href=\"import\">importez un canal existant</a> à un autre endroit";
$a->strings["Invalid request identifier."] = "Identifiant de requête invalide.";
-$a->strings["Discard"] = "Défausser";
+$a->strings["Discard"] = "Annuler";
$a->strings["No more system notifications."] = "Pas d'autre notification du système.";
$a->strings["System Notifications"] = "Notifications du système";
-$a->strings["Block Name"] = "Nom du bloc";
-$a->strings["Unable to find your hub."] = "Impossible de trouver votre instance.";
+$a->strings["Unable to find your hub."] = "Impossible de trouver votre hub.";
$a->strings["Post successful."] = "Contribution effectuée.";
-$a->strings["Edit Webpage"] = "Éditer page web";
-$a->strings["Delete webpage?"] = "Supprimer la page web?";
-$a->strings["Delete Webpage"] = "Supprimer page web";
-$a->strings["Access to this profile has been restricted."] = "L'accès à ce profil a été restreint.";
-$a->strings["Poke/Prod"] = "Tapoter/Solliciter";
-$a->strings["poke, prod or do other things to somebody"] = "Tapoter, pointer, et autres choses à faire à quelqu'un";
-$a->strings["Recipient"] = "Destinataire";
-$a->strings["Choose what you wish to do to recipient"] = "Choisir quoi lui faire";
-$a->strings["Make this post private"] = "Rendre cette contribution privée";
-$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée à la page du profil.";
-$a->strings["Not available."] = "Indisponible.";
-$a->strings["Community"] = "Communauté";
-$a->strings["No results."] = "Aucun résultat.";
-$a->strings["Contact not found."] = "Contact introuvable.";
-$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/relation envoyée.";
-$a->strings["Suggest Friends"] = "Suggérer une relation";
-$a->strings["Suggest a friend for %s"] = "Suggérer une relation à %s";
-$a->strings["Edit Block"] = "Éditer bloc";
-$a->strings["Delete block?"] = "Supprimer le bloc?";
-$a->strings["Delete Block"] = "Supprimer bloc";
-$a->strings["Status: "] = "État&nbsp;:";
-$a->strings["Sexual Preference: "] = "Orientation sexuelle&nbsp;:";
-$a->strings["Homepage: "] = "Site web&nbsp;:";
-$a->strings["Hometown: "] = "Ville natale&nbsp;:";
-$a->strings["About: "] = "À propos&nbsp;:";
-$a->strings["Keywords: "] = "Mots-clefs&nbsp;:";
-$a->strings["Permission Denied."] = "Permission refusée.";
-$a->strings["File not found."] = "Fichier introuvable.";
-$a->strings["Edit file permissions"] = "Éditer les permissions du fichier";
-$a->strings["Permissions"] = "Permissions";
-$a->strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires";
-$a->strings["Return to file list"] = "Retourner à la liste des fichiers";
-$a->strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication";
-$a->strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour lier le fichier depuis une page web";
-$a->strings["Download"] = "Télécharger";
-$a->strings["Used: "] = "Utilisé&nbsp;:";
-$a->strings["[directory]"] = "[répertoire]";
-$a->strings["Limit: "] = "Limite&nbsp;:";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures.";
-$a->strings["Conversation removed."] = "Conversation supprimée.";
-$a->strings["No messages."] = "Pas de message.";
-$a->strings["D, d M Y - g:i A"] = "D d Y - H:i";
-$a->strings["Public Sites"] = "Sites publics";
-$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Les sites listés autorisent l'inscription pour tous. Tous sont liés entre eux, de manière à ce qu'un compte sur un seul d'entre eux soit valable sur l'ensemble de la matrice. Certains sites peuvent demander des frais de souscriptions, ou fournir des forfaits ajustés. Le lien \"fournisseur\" <strong>peut</strong> vous donner des détails supplémentaires.";
-$a->strings["Site URL"] = "URL du site";
-$a->strings["Access Type"] = "Type d'accès";
-$a->strings["Registration Policy"] = "Politique d'inscription";
-$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain.";
-$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué.";
-$a->strings["Passwords do not match."] = "Les mots de passe ne concordent pas.";
-$a->strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte.";
-$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente de l'approbation d'un administrateur.";
-$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée.";
-$a->strings["Registration on this site/hub is by approval only."] = "L'inscription sur cette instance/ce site est soumis à une modération.";
-$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">S'inscrire sur un site/hub affilié</a>";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain.";
-$a->strings["Terms of Service"] = "les Règles du Service";
-$a->strings["I accept the %s for this website"] = "J'accepte %s de ce site";
-$a->strings["I am over 13 years of age and accept the %s for this website"] = "J'ai treize (13) ans révolus, et j'accepte %s de ce site";
-$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
-$a->strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation";
-$a->strings["Your email address"] = "Votre adresse de courriel";
-$a->strings["Choose a password"] = "Choisissez un mot de passe";
-$a->strings["Please re-enter your password"] = "Confirmez-le";
-$a->strings["Please login."] = "Merci de vous connecter.";
-$a->strings["Remove This Channel"] = "Supprimer ce canal";
-$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Ceci effacera complètement le canal du réseau. Une fois effacé, un canal ne PEUT PAS être récupéré.";
-$a->strings["Please enter your password for verification:"] = "Merci de re-saisir votre mot de passe pour vérification&nbsp;:";
-$a->strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones de par le réseau";
-$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau";
-$a->strings["Remove Channel"] = "Enlever le canal";
-$a->strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page.";
-$a->strings["Album not found."] = "Album introuvable.";
-$a->strings["Delete Album"] = "Supprimer album";
-$a->strings["Delete Photo"] = "Supprimer photo";
-$a->strings["No photos selected"] = "Aucune photo selectionnée";
-$a->strings["Access to this item is restricted."] = "L'accès à l'élément est restreint.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
-$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos.";
-$a->strings["Upload Photos"] = "Téléverser des photos";
-$a->strings["New album name: "] = "Créer un album&nbsp;:";
-$a->strings["or existing album name: "] = "ou choisir un album existant&nbsp;:";
-$a->strings["Do not show a status post for this upload"] = "Ne pas publier de statut pour cet envoi";
-$a->strings["Contact Photos"] = "Photos de contact";
-$a->strings["Edit Album"] = "Éditer l'album";
-$a->strings["Show Newest First"] = "Ordre anté-chronologique";
-$a->strings["Show Oldest First"] = "Ordre chronologique";
-$a->strings["View Photo"] = "Voir photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
-$a->strings["Photo not available"] = "Photo indisponible";
-$a->strings["Use as profile photo"] = "Utiliser comme photo du profil";
-$a->strings["View Full Size"] = "Voir en taille réelle";
-$a->strings["Edit photo"] = "Éditer photo";
-$a->strings["Rotate CW (right)"] = "Rotation horaire (droite)";
-$a->strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
-$a->strings["New album name"] = "Nouveau nom d'album&nbsp;:";
-$a->strings["Caption"] = "Titre/légende";
-$a->strings["Add a Tag"] = "Ajouter une étiquette";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon";
-$a->strings["In This Photo:"] = "Dans cette photo&nbsp;:";
-$a->strings["View Album"] = "Voir album";
-$a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["Mood"] = "Humeur";
-$a->strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
-$a->strings["sent you a private message"] = "vous a envoyé un message privé";
-$a->strings["added your channel"] = "a ajouté votre canal";
-$a->strings["posted an event"] = "a publié un événement";
-$a->strings["Scheme Default"] = "Schéma de couleur par défaut";
-$a->strings["silver"] = "argent";
+$a->strings["invalid target signature"] = "signature de la cible invalide";
+$a->strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné.";
+$a->strings["App installed."] = "Application installée.";
+$a->strings["Malformed app."] = "Erreur de l'application - Malformée.";
+$a->strings["Embed code"] = "Code intégré";
+$a->strings["Edit App"] = "Edition de l'Application";
+$a->strings["Create App"] = "Création d'une Application";
+$a->strings["Name of app"] = "Nom de l'application";
+$a->strings["Location (URL) of app"] = "Emplacement (Lien) vers l'application";
+$a->strings["Photo icon URL"] = "Lien (URL) de l'icône à utiliser pour cette photo";
+$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels - optionel";
+$a->strings["Version ID"] = "Version";
+$a->strings["Price of app"] = "Prix de l'application";
+$a->strings["Location (URL) to purchase app"] = "Emplacement (LIEN) pour l'achat de l'application";
+$a->strings["Poll"] = "Sondage";
+$a->strings["View Results"] = "Résultats";
+$a->strings["Schema Default"] = "Par défault";
+$a->strings["Sans-Serif"] = "Sans-Serif";
+$a->strings["Monospace"] = "Monospace";
$a->strings["Theme settings"] = "Réglages du thème";
$a->strings["Set scheme"] = "Définir la palette de couleurs";
-$a->strings["Navigation bar colour"] = "Couleur de la barre de navigation";
+$a->strings["Set font-size for posts and comments"] = "Définir font-size pour contribution et commentaires";
+$a->strings["Set font face"] = "Définir la police de caractères";
+$a->strings["Set iconset"] = "Définir les icônes";
+$a->strings["Set big shadow size, default 15px 15px 15px"] = "Taille de l'ombre max, par défaut 15px 15px 15px";
+$a->strings["Set small shadow size, default 5px 5px 5px"] = "Taille de l'ombre min, par défaut 5px 5px 5px";
+$a->strings["Set shadow colour, default #000"] = "Couleur de l'ombre, défaut #000";
+$a->strings["Set radius size, default 5px"] = "Rayon, défaut 5px";
+$a->strings["Set line-height for posts and comments"] = "Hauteur de la ligne utilisé par les publications et les commentaires";
+$a->strings["Set background image"] = "Image de fond";
+$a->strings["Set background attachment"] = "Image de fond - fichier";
+$a->strings["Set background colour"] = "Couleur de fond";
+$a->strings["Set section background image"] = "Image de fond - Section";
+$a->strings["Set section background colour"] = "Image de fond - Couleur";
+$a->strings["Set colour of items - use hex"] = "Couleur des items - hexadécimal";
+$a->strings["Set colour of links - use hex"] = "Couleur des liens - hexadécimal";
+$a->strings["Set max-width for items. Default 400px"] = "Largeur maximale des items, Défaut 400px";
+$a->strings["Set min-width for items. Default 240px"] = "Largeur minimale des items, Défaut 240px";
+$a->strings["Set the generic content wrapper width. Default 48%"] = "Largeur du \"wrapper\" de contenu. Défaut 48%";
+$a->strings["Set colour of fonts - use hex"] = "Couleur des polices - Hexadécimal";
+$a->strings["Set background-size element"] = "Taille du fond";
+$a->strings["Item opacity"] = "Transparence";
+$a->strings["Display post previews only"] = "Prévisualiser seulement";
+$a->strings["Display side bar on channel page"] = "Afficher le panneau latéral sur la page du canal";
+$a->strings["Colour of the navigation bar"] = "Couleur de la barre de navigation";
+$a->strings["Item float"] = "Alignement de l'élément";
+$a->strings["Left offset of the section element"] = "Décalage à gauche de la section";
+$a->strings["Right offset of the section element"] = "Décalage à droite de la section";
+$a->strings["Section width"] = "Largeur de la section";
+$a->strings["Left offset of the aside"] = "Décalage à gauche du panneau latéral";
+$a->strings["Right offset of the aside element"] = "Décalage à droite du panneau latéral";
+$a->strings["None"] = "Aucun";
+$a->strings["Header image"] = "Image de l'entête";
+$a->strings["Header image only on profile pages"] = "Image de l'entête sur les pages du profil uniquement";
+$a->strings["Light (Red Matrix default)"] = "Blanc (valeur par défaut)";
+$a->strings["Narrow navbar"] = "Barre de navigation fine";
+$a->strings["Navigation bar background colour"] = "Couleur de fond de la barre de navigation";
+$a->strings["Navigation bar gradient top colour"] = "Gradient de la barre de navigation (couleur 1)";
+$a->strings["Navigation bar gradient bottom colour"] = "Gradient de la barre de navigation (couleur 2)";
+$a->strings["Navigation active button gradient top colour"] = "Gradient du bouton de navigation (couleur 1)";
+$a->strings["Navigation active button gradient bottom colour"] = "Gradient du bouton de navigation (couleur 2)";
+$a->strings["Navigation bar border colour "] = "Couleur de la bordure de la barre de navigation";
+$a->strings["Navigation bar icon colour "] = "Couleur de l'icône de la barre de navigation";
+$a->strings["Navigation bar active icon colour "] = "Couleur de l'icône active de la barre de navigation";
$a->strings["link colour"] = "couleur des liens";
$a->strings["Set font-colour for banner"] = "Définir la couleur du texte de la bannière";
$a->strings["Set the background colour"] = "Définir la couleur d'arrière-plan";
$a->strings["Set the background image"] = "Définir l'image d'arrière-plan";
$a->strings["Set the background colour of items"] = "Définir la couleur de fond des contributions";
-$a->strings["Set the opacity of items"] = "Définir l'opacité des contributions";
+$a->strings["Set the background colour of comments"] = "Couleur de fond des commentaires";
+$a->strings["Set the border colour of comments"] = "Couleur de la bordure des commentaires";
+$a->strings["Set the indent for comments"] = "Indentation des commentaires";
$a->strings["Set the basic colour for item icons"] = "Définir la couleur de base pour les icônes des éléments";
$a->strings["Set the hover colour for item icons"] = "Définir la couleur de survol des icônes des éléments";
$a->strings["Set font-size for the entire application"] = "Définir la taille de police pour l'application entière";
-$a->strings["Set font-size for posts and comments"] = "Définir font-size pour contribution et commentaires";
$a->strings["Set font-colour for posts and comments"] = "Définir font-colour pour les contributions et commentaires";
$a->strings["Set radius of corners"] = "Définir le rayon des arrondis";
$a->strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos";
$a->strings["Set maximum width of conversation regions"] = "Définir la largeur maximale des conversations";
+$a->strings["Center conversation regions"] = "Emplacement de la conversation - Centrer";
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Définir l'opacité minimum du bandeau de navigation - pour le cacher";
$a->strings["Set size of conversation author photo"] = "Définir la taille de la photo de l'auteur d'une conversation";
$a->strings["Set size of followup author photos"] = "Définir la taille de la photo de l'auteur d'une réponse";
$a->strings["Sloppy photo albums"] = "Albums photo \"en biais\"";
$a->strings["Are you a clean desk or a messy desk person?"] = "Vous êtes plutôt \"bureau bien rangé\" ou \"gros foutoir\"?";
-$a->strings["Schema Default"] = "Palette par défaut";
-$a->strings["Sans-Serif"] = "Sans empâtements";
-$a->strings["Monospace"] = "Châsse fixe";
-$a->strings["Set font face"] = "Définir la fonte";
-$a->strings["Set iconset"] = "Définir le jeu d'icônes";
-$a->strings["Set big shadow size, default 15px 15px 15px"] = "Définir la taille des grandes ombres, par défaut 15px 15px 15px";
-$a->strings["Set small shadow size, default 5px 5px 5px"] = "Définir la taille des petites ombres, par défaut 5px 5px 5px";
-$a->strings["Set shadow colour, default #000"] = "Définir la couleur des ombres, par défaut #000";
-$a->strings["Set radius size, default 5px"] = "Définir le rayon des arrondis, par défaut 5px";
-$a->strings["Set line-height for posts and comments"] = "Définir line-height pour contributions et commentaires";
-$a->strings["Set background image"] = "Définir l'image d'arrière-plan";
-$a->strings["Set background colour"] = "Définir la couleur d'arrière-plan";
-$a->strings["Set section background image"] = "Définir l'image d'arrière-plan des sections";
-$a->strings["Set section background colour"] = "Définir la couleur d'arrière-plan des sections";
-$a->strings["Set colour of items - use hex"] = "Définir la couleur des éléments - en héxadécimal";
-$a->strings["Set colour of links - use hex"] = "Définir la couleur des liens - en héxadécimal";
-$a->strings["Set max-width for items. Default 400px"] = "Définir la largeur maximal des éléments. Par défaut, 400px";
-$a->strings["Set min-width for items. Default 240px"] = "Définir la largeur minimale des éléments. Par défaut, 240px";
-$a->strings["Set the generic content wrapper width. Default 48%"] = "Définir la largeur du contenu. Par défaut, 48%";
-$a->strings["Set colour of fonts - use hex"] = "Définir la couleur des fontes - en héxadécimal";
-$a->strings["Set background-size element"] = "Définir background-size pour les éléments";
-$a->strings["Item opacity"] = "Opacité des éléments";
-$a->strings["Display post previews only"] = "Afficher seulement l'aperçu des contributions";
-$a->strings["Display side bar on channel page"] = "Afficher le panneau latéral sur la page du canal";
-$a->strings["Colour of the navigation bar"] = "Couleur de la barre de navigation";
-$a->strings["Item float"] = "Alignement de l'élément";
-$a->strings["Left offset of the section element"] = "Décalage gauche de l'élément section";
-$a->strings["Right offset of the section element"] = "Décalage droit de l'élément section";
-$a->strings["Section width"] = "Largeur de la section";
-$a->strings["Left offset of the aside"] = "Décalage gauche du panneau latéral";
-$a->strings["Right offset of the aside element"] = "Décalage droit du panneau latéral";
-$a->strings["None"] = "Aucun(e)";
-$a->strings["Header image"] = "Têtière";
-$a->strings["Header image only on profile pages"] = "Têtière seulement sur les profils";
$a->strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur.";
$a->strings["Update Error at %s"] = "Erreur de mise-à-jour sur %s";
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red";
@@ -1728,5 +1860,5 @@ $a->strings["Password"] = "Mot de passe";
$a->strings["Remember me"] = "Se souvenir de moi";
$a->strings["Forgot your password?"] = "Mot de passe oublié?";
$a->strings["permission denied"] = "permission refusée";
-$a->strings["Got Zot?"] = "T'as Zot?";
+$a->strings["Got Zot?"] = "Authentification magique a échouée. Êtes-vous toujours connecté à votre HUB?";
$a->strings["toggle mobile"] = "(dés)activer mobile";
diff --git a/view/fr/update_fail_eml.tpl b/view/fr/update_fail_eml.tpl
index a7df8fc2f..39dc6fa03 100644
--- a/view/fr/update_fail_eml.tpl
+++ b/view/fr/update_fail_eml.tpl
@@ -1,13 +1,16 @@
-Hey,
-I'm the web server at {{$sitename}};
-
-The Red Matrix developers released update {{$update}} recently,
-but when I tried to install it, something went terribly wrong.
-This needs to be fixed soon and it requires human intervention.
-Please contact a Red developer if you can not figure out how to
-fix it on your own. My database might be invalid.
-
-The error message is '{{$error}}'.
-
-Apologies for the inconvenience,
- your web server at {{$siteurl}} \ No newline at end of file
+Bonjour,
+Je suis le serveur web de {{$sitename}};
+
+Les développeurs de la Matrice Rouge viennent de lancer une mise-à-jour {{$update}} récemment,
+toutefois, lorsque j'ai essayé de l'installer, quelques choses d'inattendu s'est produit.
+
+Nous devons corriger la situation et cela requiert votre intervention.
+
+Veuillez contacter un développeur de la Matrice Rouge si vous avez de la difficulté à déterminer
+la meilleure approche pour résoudre le problème. Ma base de donnée est peut-être corrompue.
+
+Le message d'erreur est '{{$error}}'.
+
+Veuillez accepter mes plus humbles excuses pour les inconvénients,
+
+ votre serveur web a {{$siteurl}} \ No newline at end of file
diff --git a/view/fr/wall_received_eml.tpl b/view/fr/wall_received_eml.tpl
index ad365a951..6a208fb5b 100644
--- a/view/fr/wall_received_eml.tpl
+++ b/view/fr/wall_received_eml.tpl
@@ -1,7 +1,7 @@
Cher(e) $username,
- « $from » a posté quelque chose sur le mur de votre profil.
+ « $from » a publié quelque chose sur le mur de votre profil.
-----
$body
diff --git a/view/tpl/hdr.tpl b/view/tpl/hdr.tpl
index fdcc4521c..749646ace 100644
--- a/view/tpl/hdr.tpl
+++ b/view/tpl/hdr.tpl
@@ -1,4 +1,7 @@
-<div id="banner" class="hidden-sm hidden-xs">{{$banner}}</div>
+<div id="banner" class="hidden-sm hidden-xs">{{$banner}}
+<!--accept bitcoins through coinbase (https://coinbase.com/)-->
+<a class="coinbase-button" data-code="7a7dc20e073d84e7d81dcf8f5acb9a4e" data-button-style="donation_small" href="https://coinbase.com/checkouts/7a7dc20e073d84e7d81dcf8f5acb9a4e">CLICK TO DONATE</a><script src="https://coinbase.com/assets/button.js" type="text/javascript"></script>
+</div>
<ul id="nav-notifications-template" style="display:none;" rel="template">
<li class="{5}"><a href="{0}" title="{2} {3}"><img data-src="{1}"><span class='contactname'>{2}</span>{3}<br><span class="notif-when">{4}</span></a></li>
diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl
index b90bf8b89..fb73c6de4 100755
--- a/view/tpl/head.tpl
+++ b/view/tpl/head.tpl
@@ -1,5 +1,7 @@
-<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<base href="{{$baseurl}}/" />
+<META NAME="description" CONTENT="The RedMatrix is a super network created from a huge number of smaller independent and autonomous websites - which are linked together...">
+<META NAME="keywords" CONTENT="network,matrix,social,communications,social networking,content ownership,privacy and content ownership">
+<META NAME="robot" CONTENT="index,follow">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=0" />
<meta name="generator" content="{{$generator}}" />