aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHaakon Meland Eriksen <haakon.eriksen@far.no>2016-02-18 20:33:25 +0100
committerHaakon Meland Eriksen <haakon.eriksen@far.no>2016-02-18 20:33:25 +0100
commitcc264b2d60049a844fe17322fbcb367712a7071f (patch)
treef1f069a49dd186d4cf21c37a25fb794d6d53e6f2
parentb77c5ae61e5a208daf4b9431a730db874c487e32 (diff)
parent33c34984e647f48452d53b93b635f6f517a0f392 (diff)
downloadvolse-hubzilla-cc264b2d60049a844fe17322fbcb367712a7071f.tar.gz
volse-hubzilla-cc264b2d60049a844fe17322fbcb367712a7071f.tar.bz2
volse-hubzilla-cc264b2d60049a844fe17322fbcb367712a7071f.zip
Merge remote-tracking branch 'upstream/master'
-rwxr-xr-x.homeinstall/hubzilla-setup.sh6
-rwxr-xr-xboot.php12
-rw-r--r--doc/Privacy.md3
-rw-r--r--doc/ca/Privacy.md78
-rw-r--r--doc/ca/TermsOfService.md8
-rw-r--r--doc/ca/about.bb27
-rw-r--r--doc/ca/accounts_profiles_channels_basics.bb19
-rw-r--r--doc/ca/admins.bb15
-rw-r--r--doc/ca/channels.bb32
-rw-r--r--doc/ca/develop.bb34
-rw-r--r--doc/ca/features.bb202
-rw-r--r--doc/ca/first-post.bb3
-rw-r--r--doc/ca/general.bb20
-rw-r--r--doc/ca/main.bb12
-rw-r--r--doc/ca/members.bb25
-rw-r--r--doc/ca/profiles.bb37
-rw-r--r--doc/ca/registration.bb35
-rw-r--r--doc/ca/what_is_zot.bb61
-rw-r--r--doc/hidden_configs.bb4
-rw-r--r--include/features.php2
-rwxr-xr-xinclude/items.php314
-rw-r--r--include/language.php13
-rw-r--r--include/widgets.php13
-rw-r--r--install/schema_mysql.sql15
-rw-r--r--install/schema_postgres.sql13
-rw-r--r--install/update.php49
-rw-r--r--mod/admin.php6
-rw-r--r--mod/connedit.php66
-rw-r--r--mod/item.php10
-rw-r--r--mod/new_channel.php2
-rw-r--r--mod/pdledit.php3
-rw-r--r--mod/profile_photo.php54
-rw-r--r--mod/register.php10
-rw-r--r--mod/settings.php8
-rw-r--r--version.inc2
-rw-r--r--view/css/mod_register.css5
-rw-r--r--view/es-es/hmessages.po1656
-rw-r--r--view/es-es/hstrings.php149
-rw-r--r--view/fr/hmessages.po12628
-rw-r--r--view/fr/hstrings.php3325
-rw-r--r--view/it/hmessages.po4318
-rw-r--r--view/it/hstrings.php868
-rw-r--r--view/js/main.js167
-rw-r--r--view/nl/hmessages.po1658
-rw-r--r--view/nl/hstrings.php151
-rwxr-xr-xview/tpl/cover_photo.tpl42
-rwxr-xr-xview/tpl/head.tpl1
-rwxr-xr-xview/tpl/mood_content.tpl38
-rw-r--r--view/tpl/pdledit.tpl4
-rwxr-xr-xview/tpl/profile_photo.tpl58
-rwxr-xr-xview/tpl/register.tpl7
-rwxr-xr-xview/tpl/settings.tpl2
-rwxr-xr-xview/tpl/settings_display.tpl1
-rwxr-xr-xview/tpl/settings_oauth.tpl9
-rwxr-xr-xview/tpl/settings_oauth_edit.tpl9
55 files changed, 14661 insertions, 11648 deletions
diff --git a/.homeinstall/hubzilla-setup.sh b/.homeinstall/hubzilla-setup.sh
index ec401e713..1a584b49c 100755
--- a/.homeinstall/hubzilla-setup.sh
+++ b/.homeinstall/hubzilla-setup.sh
@@ -220,6 +220,11 @@ function install_apache {
nocheck_install "apache2 apache2-utils"
}
+function install_curl {
+ print_info "installing curl..."
+ nocheck_install "curl"
+}
+
function install_php {
# openssl and mbstring are included in libapache2-mod-php5
# to_to: php5-suhosin
@@ -817,6 +822,7 @@ sslconf=/etc/apache2/sites-available/default-ssl.conf
check_config
update_upgrade
+install_curl
install_apache
install_php
install_mysql
diff --git a/boot.php b/boot.php
index cbc8f633a..20f07c452 100755
--- a/boot.php
+++ b/boot.php
@@ -48,10 +48,10 @@ require_once('include/AccessList.php');
define ( 'PLATFORM_NAME', 'hubzilla' );
define ( 'RED_VERSION', trim(file_get_contents('version.inc')));
-define ( 'STD_VERSION', '1.2.2' );
+define ( 'STD_VERSION', '1.2.3' );
define ( 'ZOT_REVISION', 1 );
-define ( 'DB_UPDATE_VERSION', 1161 );
+define ( 'DB_UPDATE_VERSION', 1163 );
/**
@@ -85,7 +85,8 @@ $DIRECTORY_FALLBACK_SERVERS = array(
'https://hubzilla.zottel.net',
'https://hub.pixelbits.de',
'https://my.federated.social',
- 'https://hubzilla.nl'
+ 'https://hubzilla.nl',
+ 'https://blablanet.es'
);
@@ -991,6 +992,10 @@ class App {
if ($user_scalable === false)
$user_scalable = 1;
+ $preload_images = ((local_channel()) ? get_pconfig(local_channel(),'system','preload_images') : 0);
+ if ($preload_images === false)
+ $preload_images = 0;
+
$interval = ((local_channel()) ? get_pconfig(local_channel(),'system','update_interval') : 80000);
if($interval < 10000)
$interval = 80000;
@@ -1004,6 +1009,7 @@ class App {
*/
$tpl = get_markup_template('head.tpl');
$this->page['htmlhead'] = replace_macros($tpl, array(
+ '$preload_images' => $preload_images,
'$user_scalable' => $user_scalable,
'$baseurl' => $this->get_baseurl(),
'$local_channel' => local_channel(),
diff --git a/doc/Privacy.md b/doc/Privacy.md
index ff5eac181..511293c52 100644
--- a/doc/Privacy.md
+++ b/doc/Privacy.md
@@ -48,10 +48,9 @@ Content (especially status posts) that you share with other networks or that you
Comments to posts that were created by others and posts which are designated as forum posts belong to you as the creator/author, but the distribution of these posts is not under your direct control. These posts/comments MAY be re-distributed to others, and MAY be visible to anybody on the internet. In the case of comments, the creator of the "first message" in the thread to which you are replying controls the distribution of all comments and replies to that message.
-
**Private Information**
-$Projectname developers will ensure that any content you provide which is designated as PRIVATE will be protected against eavesdropping - to the best of their ability. Private content is generally hidden or obscured even from hub administrators. It is also stripped from email notifications. It is difficult but NOT impossible for this content to be seen by a hub administrator. End to end encryption is provided as an optional feature and this CANNOT be seen, even by a determined administrator.
+$Projectname developers will ensure that any content you provide which is designated as PRIVATE will be protected against eavesdropping - to the best of their ability. Private channel content CAN be seen in the database of every involved hub administrator, but private messages are obscured in the database. The latter means that it is very difficult, but NOT impossible for this content to be seen by a hub administrator. Private channel content and private messages are also stripped from email notifications. End to end encryption is provided as an optional feature and this CANNOT be seen, even by a determined administrator.
##Identity Privacy
diff --git a/doc/ca/Privacy.md b/doc/ca/Privacy.md
new file mode 100644
index 000000000..918657497
--- /dev/null
+++ b/doc/ca/Privacy.md
@@ -0,0 +1,78 @@
+Política de Privacitat
+======================
+
+
+##Sumari##
+
+
+Q: Qui pot veure el meu contingut?
+
+A: Per defecte TOTHOM A INTERNET, EXCEPTE que ho hagis restringit. $Projectname permet te triar el nivell de privacitat que desitgis. El contingut restringit no serà visible als "espies de la xarxa " ni als anunciants. Estarà protegit contra l'espionatge per estranys - de la millor manera que sabem. Administradors de nodes amb habilitats i paciència suficients poden ser capaços d'espiar a algunes comunicacions privades però han de invertir molt esforç per fer-ho. Hi maneres de Privacitat en $Projectname que són fins i tot resistents a escoltes il·legals pels administradors de nodes hàbils i decidits.
+
+Q: Pot el meu contingut ser censurat?
+
+A: $Projectname (la xarxa de nodes) NO POT censurat el teu contingut. Els administradors de servidor i del node estan subjectes a les lleis locals i poden suprimir contingut censurable des del seu lloc/node. Qualsevol POT convertir-se en un administrador de node, inclòs tu; i per tant publicar contingut que d'altra manera podria ser censurat. Encara i això estaràs subjecte a les teves lleis locals. Es la teva decisió.
+
+
+##Definicions
+
+**$Projectname**
+
+Coneguda d'un altre forma com "la xarxa", Hubzilla és una col·lecció d'equips individuals/servidors (àlies nodes) que connecten entre si per formar una xarxa cooperativa més gran.
+
+**node (hub)**
+
+Un equip individual o un servidor connectat a $Projectname. Aquests són proporcionats per un **administrador del node** i poden ser públics o privats, de pagament o gratuïts.
+
+**administrador del node**
+
+L'operador del sistema d'un node individual.
+
+##Polítiques
+
+**Informació Pública**
+
+Qualsevol informació o cualsevol cosa publicada per tu a $Projectname POT ser pública o visible a qualsevol a Internet. En la mesura que sigui possible, $Projectname te permet protegir el contingut i restringir qui pot veure-ho.
+
+La teva foto de perfil, el nom del teu canal, i la ubicació (URL o adreça de xarxa) del seu canal són visibles per a qualsevol persona a Internet i els controls de privacitat no afectaràn la visualització d'aquests elements.
+
+POTS proporcionar, a més, un altra informació de perfil. Qualsevol informació que proporcionis en el teu perfil públic **per defecte** POT ser transmesa a altres centres en $Projectname i, a més, és possible que aparegui en el directori del canal. POTS restringir la visualització d'aquesta informació de perfil. Es POT restringir (permets que visualitzin), només als membres del teu nucli, o només les connexions (amics), o altres conjunts limitats de espectadors com desitgis. Si vols que el teu perfil estigui restringit, has d'establir la configuració de privacitat adequada, o simplement NO PROPORCIONIS informació addicional.
+
+**Contingut**
+
+El contingut que proporciones (missatges d'estat, fotos, arxius, etc.) et pertany a tu. Per defecte a $Projectname és publica contingut de forma oberta i visible per qualsevol en internet (PÚBLIC). POTS controlar això a la seva configuració del canal i restringir els permisos per defecte o pot restringir la visibilitat de qualsevol article únic publicat per separat (PRIVAT). Els desenvolupadors $Projectname s'han d'assegurat que el contingut restringit és visible NOMÉs per als que estan a la llista d'autoritzats - han emprat el millor d'ells per això.
+
+El contingut (especialment les entrades d'estat) que es comparteixen amb altres xarxes o que has fet visible a qualsevol a Internet (PÚBLIC) no poden ser retirats (esborrats) fàcilment un cop que ha estat publicats. Pot haver estat compartit amb altres xarxes i posat a disposició a través de feeds RSS/Atom. També pot haver estat sindicat en altres llocs $Projectname. Pot aparèixer en les xarxes d'espionatge i recerques a Internet. Si no desitges aquest comportament per defecte, si et plau, ajusta la configuració del canal i restringeix qui pot veure el teu contingut.
+
+**Comentaris i entrades a Forums**
+
+Els comentaris als llocs que es van crear per altres i entrades que es designen com missatges al fòrum pertanyen tant a tu com al creador/autor, però la distribució d'aquests llocs no està sota el teu control directe. Aquestes entrades/comentaris es poden tornar a distribuir als altres, i pot ser visible per qualsevol en internet. En el cas dels comentaris, el creador del "primer missatge" al fil al qual està responent controla la distribució de tots els comentaris i respostes a aquest missatge.
+
+
+**Informació Privada**
+
+Els desenvolupadors de $Projectname aseguraràn que cualsevol contingut que creis designat com PRIVAT estarà protegit contra estaràn protegits contra les escoltes - han emprat el millor d'ells per això. El contingut privat generalment s'amaga o enfosqueix fins i tot als administradors de nodes. També s'eliminen les notificacions per correu electrònic. És difícil, però no impossible que aquest contingut sigui vist per un administrador de node. El xifrat extrem a extrem es facilita com una característica opcional i fa el contingut, NO VISIBLE, fins i tot per un administrador determinat a veure'l.
+
+##Privacitat de la Identitat
+
+La Privacitat per la teva identitat és un altre aspecte. En tenir una identitat descentralitzada a $Projectname, la seva privacitat s'estén més enllà del seu node d'inici. Si vols tenir el control complet de la teva privacitat i seguretat has d'executar el teu propi centre en un servidor dedicat. Per a moltes persones, això és complicat i pot esgotar les seves habilitats tècniques. Així que anem a enumerar algunes precaucions que pots fer per assegurar la teva privacitat tant com sigui possible.
+
+Una identitat descentralitzat té molts avantatges i te dóna un munt de característiques interessants, però has de ser conscient del fet que la teva identitat és coneguda per altres centres de la xarxa $Projectname. Un d'aquests avantatges és que altres canals poden servir contingut personalitzat i permetrà veure el contingut privat (com fotos privades que altres volen compartir amb vostè). Per això els canals necessiten saber qui ets. Però entenem que de vegades aquests altres canals en saben més de tu del que pugui desitjar. Per exemple, el plug-in Visage pot dir-li al propietari d'un canal l'última vegada que vas visitar el seu perfil. Pots renunciar fàcilment a aquest baix nivell de seguiment, que creiem inofensiu.
+
+* Pots activar [No Em Segueixis (anglès:Do Not Track (DNT))](http://donottrack.us/) al teu navegador web. Respectem aquesta nova política de privacitat proposada. Tots en navegadors moderns soporten DNT. Trobaràs als ajustos de privacitat del teu navegador web o sino pots consultar el manual del navegador. Això no afectarà la funcionalitat de $Projectname. Aquest ajust, segurament, es suficient per la majoria de la gent.
+
+* Pots [deshabilitar publicacions](ajustos) del teu canal al nostre canal de directoris. Si vols que la gent trobi el teu canal, has de facilitar la teva direcció del canal a ell(a). Pensem que això es un bon indicador que, en aquest cas, vols es un extra de privacitat i automaticament s'activarà "No Em Segueixis" (DNT).
+
+* Pots tenir un node blocat. Això significa que tots els canals i contingut en aquest node no es públic i invisible al món exterior. Això és quelcom que només ho pot fer l'administrador del teu node. També es respecta això i automàticament s'activa DNT si és sel·leccionat.
+
+###Censura
+
+$Projectname és una xarxa global que inclou a totes les religions i cultures. Això no implica que tots els membres de la xarxa pensin de la mateixa manera que tu pel que fa en temes polèmics, i algunes persones poden sentir una forta oposició al contingut que publiquis. En general, si desitjes publicar alguna cosa que saps que no és universalment acceptable, el millor enfocament consisteix a restringir l'audiència utilitzant els controls de privacitat a un petit cercle d'amics.
+
+$Projectname com un proveïdor de la xarxa no pot censurar el contingut. No obstant això, els administradors de node poden censurar qualsevol contingut que apareix en el seu centre per complir amb les lleis locals o fins i tot el seu judici personal. La seva decisió serà inapel·lable. Si té problemes amb qualsevol administrador de node, pots moure el teu compte i publicacions a un altre lloc que estigui més d'acord amb les teves expectatives. Si us plau comprova (periòdicament) les [Condicions d'ús](help/TermsOfService) del teu centre per aprendre sobre les normes o directrius. Si el teu contingut consisteix en un material que és il·legal o que pugui causar problemes, es recomana ENCARIDAMENT a allotjar tu mateix (convertir-te en un administrador de node). Podràs trobar que el teu contingut està bloquejat en alguns centres, però $Projectname, com a xarxa, no pot bloquejar una vegada publicat.
+
+$Projectname RECOMANA que els administradors de nodes ofereixin un període de gràcia de 1-2 dies entre advertir al titular d'un compte, que hi ha contingut que ha de ser eliminat, i l'eliminació física o desactivació del compte. Això li donarà al propietari del contingut l'oportunitat d'exportar els seus canal de meta-dades i importar-lo a un altre lloc. En rares ocasions el contingut pot ser de tal naturalesa que es justifiqui l'eliminació immediata del compte. Aquesta és una decisió del node, no és una decisió de $Projectname.
+
+Si normalment i regularment publiques contingut per a adults o de caràcter ofensiu, es recomana ENCARIDAMENT que marquis el compte com "NSFW" (No segur per al treball). Això evitarà que es mostri la teva foto de perfil al directori, excepte per als espectadors que han optat per desactivar el "mode segur". Si la teva foto de perfil es considera per a adults o ofensiu pels administradors de directori, l'administrador del directori POT marcar la teva foto de perfil com NSFW. Actualment no hi ha un sistema oficial per revertir aquesta decisió. Així DEURIES marcar tu mateix, el teu compte, com a NSFW si és probable que no sigui apropiat per a audiències generals.
+
+#include doc/macros/main_footer.bb;
diff --git a/doc/ca/TermsOfService.md b/doc/ca/TermsOfService.md
new file mode 100644
index 000000000..51d786683
--- /dev/null
+++ b/doc/ca/TermsOfService.md
@@ -0,0 +1,8 @@
+Termes del Servei
+================
+Aquest node Hubzilla encara no te Termes del Servei. Estic buscant un model adient.....
+En resum empreu el servei respectant els altres i no cometeu il·legalitats. Aquest node no s'identifica amb les opinions dels usuaris ni es responsablilitza de les mateixes.
+
+
+#include doc/SiteTOS.md;
+
diff --git a/doc/ca/about.bb b/doc/ca/about.bb
new file mode 100644
index 000000000..0edd09221
--- /dev/null
+++ b/doc/ca/about.bb
@@ -0,0 +1,27 @@
+[b]Que és[/b]
+
+$Projectname és una xarxa de comunicacions descentralitzades, que permet comunicacions lliures de censura, amb privacitat, i per tant lliure de les urpes opressores de gegants contemporanis de comunicació corporativa. Aquests gegants funcionen principalment com xarxes d''espionatge per a cobrar a clients de totes les classes i tipus, a més de monopolitzar i centralitzar Internet; una característica que no formava part dels objectius originals i revolucionàries que van produir la World Wide Web.
+
+$Projectname és gratuït i de codi obert. Està dissenyat per a creixèr des de una raspberry pi de 35€, fins el màxim de la gama de servidors AMD i servidors empresarials de múltiples nuclis que funcionen amb Intel Xeon. Pot ser utilitzat per a suportar la comunicació entre uns pocs individus, o l'escalar a molts milers i més.
+
+$Projectname pretén ser àgil i capaç de treballar amb múltiples recursos informàtics. És fàcil d'utilitzar pels usuaris habituals d''ordinadors, així com per administradors de sistemes i desenvolupadors.
+
+
+La forma d'utilitzar depèn de com voleu utilitzar-lo.
+
+Està escrit en el llenguatge de scripting PHP, pel que és trivial instal·lar-lo en qualsevol plataforma d'allotjament en ús avui en dia. Això inclou l'auto-allotjament a casa, en els proveïdors d'allotjament, com ara [url=http://mediatemple.com/]Media Temple[/url] i [url=http://www.dreamhost.com/]Dreamhost[/url], o en servidors virtuals i dedicats, oferts per gràcia de [url=https://www.linode.com]Linode[/url], [url=http://greenqloud.com]GreenQloud[/url] o [url=https://aws.amazon.com]Amazon AWS[/url].
+
+
+En altres paraules, $Projectname es pot executar en qualsevol plataforma informàtica que vingui amb un servidor web, una base de dades compatible amb MySQL i el llenguatge de scripting PHP.
+
+
+
+De pas, $Projectname ofereix una sèrie de atractius únics:
+
+[b]Identificació amb un sol clic d'usuari:[/b] vol dir que pot accedir a llocs en $Projectname simplement fent clic als enllaços a llocs remots. L''autenticació passa automàgicament en segon plà. Oblida't de recordar múltiples noms d'usuari amb múltiples contrasenyes en accedir a diferents llocs en línia.
+
+[b]La clonació:[/b] de les identitats en línia. La seva presència en línia ja no ha d'estar lligat a un sol servidor, nom de domini o adreça IP. Pot clonar i importar la seva identitat (o canal com en diem) a un altre servidor (o, en un concentrasor com son coneguts els servidors a $Projectname). Ara, si el seu concentrador/servidor cau, no et preocupis, els teus contactes, missatges [i]*[/i], i els missatges de [i]*[/i] automàgicament segueixen estant disponibles i accessibles al seu canal clonat. [i](*: només es perden els missatges i els missatges a partir del moment en que va clonar el seu canal)[/i]
+
+[b]Privacitat:[/b] les identitats a $Projectname (Zot identificadors) es poden eliminar, salvar/descarregar i clonar. L'usuari té el control total de les seves dades. Si vostè decideix esborrar tot el seu contingut i esborrar la seva ID Zot, tot el que has de fer és fer clic a un enllaç i s'eliminen immediatament d concentrador/servidor. No hi ha preguntes, sense problemes.
+
+#include doc/macros/main_footer.bb;
diff --git a/doc/ca/accounts_profiles_channels_basics.bb b/doc/ca/accounts_profiles_channels_basics.bb
new file mode 100644
index 000000000..0f8c22c04
--- /dev/null
+++ b/doc/ca/accounts_profiles_channels_basics.bb
@@ -0,0 +1,19 @@
+[size=large][b]Comptes, Perfils i Canals[/b][/size]
+
+Una vegada t'has registrat amb un [i]compte[/i] al servei, també has de crear un [i]perfil[/i] i un [i]canal[/i].
+
+[b]Compte[/b]
+Tens i]un[/i] compte. Això consisteix en una adreça de correu electrònic i una contrasenya. Amb el teu compte pots accedit al teu perfil i al teu canal.
+[i]Pensa en el teu compte com una via per autenticar-te al teu lloc $Projectname. Et permet fer coses com, crear perfils i canals amb els que podràs amb altres persones.[/i]
+
+[b]Perfil[/b]
+Segurament t'has registrat a altres serveis a internet, com fòrums, o comunicacions en línia. Per a tots ells proveeixes alguna informació de tu, data de naixement, país, edat, i que es el que d'agrada. [observer=1]If you like you can see your profile here: [baseurl]/profile/[observer.webname] and edit it by clicking on the pencil icon next to your avatar image. [/observer]
+Unlike other services $Projectname offers you the advantage of creating [i]many more profiles[/i]. That way you are able to distinguish between profiles targeted specially at everyone (your public profile), your work mates, your family and your partner.
+[i]Think of your profile as the basic information about yourself you tell other people.[/i]
+
+[b]Channel[/b]
+During the registration you created your first [i]channel[/i]. Yes, besides several profiles you are able to have several channels. This might be a bit confusing in the beginning, but let's clear things up. You already have created one channel. You can use this one for the public, to communicate with people about every day life. But perhaps you are an avid book reader and many people are bored by that. So you open a [i]second channel[/i] just for the book lovers, where you all can talk about books as much as you like. Obviously this is a new stream of posts, with a new profile (... or new profile[i]s[/i] ...) and completely different contacts. Some connections might exist in both channels, but there will be some that are exclusive to only one of both. You yourself just switch between both of them just like you would in real life switch when talking to people you meet on the street or people you meet specially to talk about books. You can even connect to yourself, or better: to your other channel. :)
+[i]Think of a channel as different spaces dedicated to different topics where you meet with different people.[/i]
+
+#include doc/macros/main_footer.bb;
+
diff --git a/doc/ca/admins.bb b/doc/ca/admins.bb
new file mode 100644
index 000000000..74847ab72
--- /dev/null
+++ b/doc/ca/admins.bb
@@ -0,0 +1,15 @@
+[h2]Documentació per a Administradors de Concentradors (dits Hubs en anglès)[/h2]
+
+[h3]Administradors[/h3]
+
+[zrl=[baseurl]/help/install]Instal·lació[/zrl]
+[zrl=[baseurl]/help/red2pi]Instal·lant $Projectname en una Raspberry Pi[/zrl]
+[zrl=[baseurl]/help/Hubzilla_on_OpenShift]$Projectname en OpenShift[/zrl]
+[zrl=[baseurl]/help/troubleshooting]Consells per solucionar problemes[/zrl]
+[zrl=[baseurl]/help/hidden_configs]Afinant Configuracions ocultes de $Projectname[/zrl]
+[zrl=[baseurl]/help/faq_admins]FAQ Per als Administradors[/zrl]
+[zrl=[baseurl]/help/service_classes]Classes de Serveis[/zrl]
+[zrl=[baseurl]/help/directories]Treballant amb i configuració de directoris[/zrl]
+[zrl=[baseurl]/help/theme_management]Gestió de Temes[/zrl]
+
+
diff --git a/doc/ca/channels.bb b/doc/ca/channels.bb
new file mode 100644
index 000000000..898e919b0
--- /dev/null
+++ b/doc/ca/channels.bb
@@ -0,0 +1,32 @@
+[b]Canals[/b]
+
+
+
+Els canals són simplement col·leccions de continguts emmagatzemats en un sol lloc. Un canal pot representar qualsevol cosa. Podria representi, un lloc web, un fòrum, àlbums de fotos, qualsevol cosa. Per a la majoria de la gent, el seu primer canal serà &quot;Ell&quot; mateix.
+
+Les característiques més importants d'un canal que &quot;em&quot; representa són:
+
+Comunicacions segures i privades &quot;lliures d'spam&quot;
+
+Identitat i &quot;un sol inici de sessió &quot; a través de tota la xarxa
+
+Controls de privacitat i permisos que s'estenen a tota la xarxa
+
+Serveis de directori (com una guia telefònica)
+
+En resum, una cadena que et representa a tú mateix és &quot;jo, a l'Internet &quot;.
+
+Hauràs de crear el teu primer canal com a part del procés de registre. També pots crear canals additonal des del menú &quot;Selecciona canal &quot;.
+
+Se li demanarà que proporcioni un nom de canal, i un curt sobrenom. Per a un canal que et representa a tu mateix, és una bona idea utilitzar el teu nom real per assegurar-se que els teus amics puguin trobar-te, i connectar al teu canal. El sobrenom curt s'utilitzarà per generar un nom &quot;intermediari&quot;. Això és una mica com un nom d'usuari, i es veurà com una adreça de correu electrònic, prenent forma sobrenom@domini. Has de pensar una mica en que desitges utilitzar aquí. Imagina a algú demanant la teu nom intermediari i haver de dir-los que és &quot;Crema-miss_issipi.123&quot;. &quot;cremamississipi&quot; seria una opció molt millor.
+
+Una vegada que hagis creat el teu canal, se't portarà a la pàgina de configuració, que permet definir el teu canal, i establir els teus permisos predeterminats.
+
+Un cop fet això, el canal està llest per utilitzar. En [observer=1][observer.url][/observer][observer=0]example.com/channel/username[/observer] trobaràs el teu canal de &quot;flux&quot;. Aquí és on apareixerà la teva activitat recent, en ordre cronològic invers. Si publica a la casella &quot;compartir&quot;, apareixerà l'entrada a la part superior del teu flux. També trobaràs enllaços a totes les altres àrees de comunicació per aquest canal. El fitxa &quot;en quant a &quot; conté el teu &quot;perfil&quot;, la pàgina de fotos conté àlbums de fotos, i la pàgina d'esdeveniments conté esdeveniments compartits per tu i els teus contactes.
+
+La pàgina &quot;Xarxa&quot; conté tots els missatges recents de tota la xarxa $Projectname, de nou amb sentit cronològic invers. Els missatges exactes que apareixen aquí depenen en gran mesura dels teus permisos. En la teva forma més permissiva, rebràs missatges de desconeguts. A l'altre extrem de l'escala, podràs veure els missatges de només els seus amics - o si ets realment antisocial, només els teus propis missatges.
+
+Com s'ha esmentat al principi, són possibles molts altres tipus de canal, però, el procediment de creació és el mateix. La diferència entre els canals es troba principalment en els permisos assignats. Per exemple, una cadena per a l'intercanvi de documents amb els seus col.legues a la feina, és millor si canvieu valors més permissius per &quot;Em pot escriure en el meu&quot; públic &quot;magatzem d'arxius &quot;, que un compte personal. Per obtenir més informació, consulteu la secció de permisos.
+
+
+#include doc/macros/main_footer.bb; \ No newline at end of file
diff --git a/doc/ca/develop.bb b/doc/ca/develop.bb
new file mode 100644
index 000000000..7e82049c7
--- /dev/null
+++ b/doc/ca/develop.bb
@@ -0,0 +1,34 @@
+[h2]Documentació per Desenvolupadors[/h2]
+
+[h3]Documentació Tècnica[/h3]
+[zrl=[baseurl]/help/Zot---A-High-Level-Overview]Una vista en profunditat a Zot[/zrl]
+[zrl=[baseurl]/help/zot]Una introducció a Zot[/zrl]
+[zrl=[baseurl]/help/zot_structures]Estuctures a Zot[/zrl]
+[zrl=[baseurl]/help/comanche]Descripcions de Pàgina a Comanche[/zrl]
+[zrl=[baseurl]/help/Creating-Templates]Creant Plantilles a Comanche[/zrl]
+[zrl=[baseurl]/help/Widgets]Artilugis[/zrl]
+[zrl=[baseurl]/help/plugins]Complements[/zrl]
+[zrl=[baseurl]/help/hooklist]Ganxos (detallat - en construcció)[/zrl]
+[zrl=[baseurl]/help/doco]Documentació[/zrl]
+[zrl=[baseurl]/help/DerivedTheme1]Creant Temes Derivats[/zrl]
+[zrl=[baseurl]/help/schema_development]Esquemes[/zrl]
+[zrl=[baseurl]/help/Translations]Traduccions[/zrl]
+[zrl=[baseurl]/help/developers]Desenvolupadors[/zrl]
+[zrl=[baseurl]/help/intro_for_developers]Introducció per Desenvolupadors[/zrl]
+[zrl=[baseurl]/help/database]Documentació del esquema de la base de dades[/zrl]
+[zrl=[baseurl]/help/api_functions]Funcions de la API[/zrl]
+[zrl=[baseurl]/help/api_posting]Entrades a $Projectname emprant la API[/zrl]
+[zrl=[baseurl]/help/developer_function_primer]Funcions Red 101[/zrl]
+[zrl=[baseurl]/doc/html/]Refrència del Codi (Doxygen generat - ajust de cookies)[/zrl]
+[zrl=[baseurl]/help/to_do_doco]Llista de Pendents per a la Documentació del Projecte $Projectname[/zrl]
+[zrl=[baseurl]/help/to_do_code]Llista de Pendents per a Desenvolupadors[/zrl]
+[zrl=[baseurl]/help/roadmap]Full de ruta[/zrl]
+[zrl=[baseurl]/help/git_for_non_developers]Git per a No-Desenvolupadors[/zrl]
+[zrl=[baseurl]/help/dev_beginner]Manual pas-a-pas per a desenvolupadors principiants[/zrl]
+
+[h3]Preguntes Més Freqüents (FAQ) Per Desenvolupadors[/h3]
+[zrl=[baseurl]/help/faq_developers]FAQ Per Desenvoupadors[/zrl]
+
+[h3]Recursos Externs[/h3]
+[url=https://zothub.com/channel/one]Development Channel[/url]
+[url=https://federated.social/channel/postgres]Postgres-specific $Projectname Admin Support Channel[/url]
diff --git a/doc/ca/features.bb b/doc/ca/features.bb
new file mode 100644
index 000000000..320f52c62
--- /dev/null
+++ b/doc/ca/features.bb
@@ -0,0 +1,202 @@
+[b][size=36]Característiques[/size][/b]
+
+[b][size=24]$Projectname en Poques Paraules[/size][/b]
+
+TL;DR
+
+$Projectname proveeix publicacions i comunicacions socials distribuïdes amb [b]permisos descentralitzats[/b].
+
+Així, que vol dir "permisos descentralitzats"? Em donen la habilitat de compàrtir quelcom al meu lloc web (fotos, mitjans, arxius, pàgines web, etc.) Aamb persones específiques en llocs completament diferents - encara que no necesàriament amb [i]tothom[/i] en aquests llocs web; i no es necessita tenir un usuari i contrasenya en aquests altres llocs web per poder fer-ho ni per poder tafanejar el que ells han compartit amb mi. Ells tenen un usuari i contrasenya al seu lloc web i "màgica autenticació" entre llocs web afiliats a la xarxa. També, al esser centralitzat, no hi ha terceres parts que puguin saltar-se els permisos i veure el que estàs fent a la xarxa.
+
+$Projectname combina moltes característiques dels blocs tradicionals, les xarxes socials i els mitjans de comunicació, sistemes de gestió de continguts i emmagatzematge en el núvol personal en un marc de treball fàcil d'utilitzar. Cada node de la xarxa pot funcionar independent o enllaçar amb altres nodes per crear una súper-xarxa; deixant la privacitat sota el control de l'editor original.
+
+$Projectname és una aplicació de servidor web de codi obert escrit originalment en PHP/MySQL i és fàcilment instalable per aquells amb habilitats d'administració web bàsiques. També s'estén fàcilment a través de plugins i temes i altres eines de tercers.
+
+[b][size=24]Característiques de $Projectname[/size][/b]
+
+
+$Projectname és un tot terreny per a la publicació web i una xarxa de comunicacions amb diverses característiques úniques. Està dissenyat per a ser utilitzat per la gamma més àmplia de persones a la web, dels blocaires no tècnics, als programadors de PHP experts i administradors de sistemes experimentats.
+
+A aquesta pàgina s'enumeren algunes de les característiques fonamentals de $Projectname que s'inclouen amb la versió oficial. Igual que amb la majoria del programari lliure i de codi obert, pot haver moltes altres extensions, complements, plugins, temes i configuracions que estan limitats només per les necessitats i la imaginació dels membres.
+
+[b][size=24]Construït per la Privacitat i la Llibertat[/size][/b]
+
+Un dels objectius de disseny de $Projectname és permetre la comunicació fàcil a la web, mentre que preserva la intimitat, si així es desitja pels membres. Per aconseguir aquest objectiu, $Projectname inclou una sèrie de característiques que permeten nivells arbitraris de privacitat:
+
+[b]Control Lliscant d'Afinitat[/b]
+
+En afegir connexions en $Projectname, els membres tenen l'opció d'assignar nivells de "afinitat" (el prop que la seva amistat és amb el contacte) per a la nova connexió. Per exemple, quan s'afegeix a algú que resulta ser una persona a la que segueixes el seu bloc, podries assignar al seu canal un nivell d'afinitat de &quot;Coneguts&quot;.
+
+D'altra banda, quan s'afegeix el canal d'un amic, que pot ser col·locat sota el nivell d'afinitat de &quot;Amics&quot;.
+
+En aquest punt, l'eina [i]Control Lliscant d'Afinitat[/i] de $Projectname, que en general apareix a la part superior de la teva pàgina, ajusta el contingut de la pàgina per incloure als que estan dins del rang afinitat desitjada. No es mostraran Canals fora d'aquest rang, llevat que s'ajusti el Control Lliscant per incloure'ls.
+
+El Control Lliscant D'Afinitat permet filtrar instantàniament grans quantitats de contingut, agrupats per nivells de proximitat.
+
+[b]Filtre de Connexions[/b]
+
+Tens la capacitat de controlar amb precisió el que apareix en el teu flux emprant opcionalment el "filtre de connexió". Quan s'activa, l'editor de connexió proporciona entrades per a la selecció de criteris que ha de ser aparellat amb la finalitat d'incloure o excloure un lloc específic d'un canal específic. Una vegada que un missatge s'ha permès, tots els comentaris a aquest lloc se'ls permet, independentment de si s'ajusten als criteris de selecció. Pots seleccionar paraules que si estàn presents al bloc o assegurar-te que està inclosses en el teu flux. Les expressions regulars es poden usar per al control encara més fi, així com hashtags o fins i tot l'idioma detectat del lloc.
+
+[b]Llista de Control d'Accés[/b]
+
+En compartir el contingut, els membres tenen l'opció de restringir qui veu el contingut. En fer clic al cadenat sota de la casella de compartir, un pot triar els destinataris desitjats del lloc, fent clic en els seus noms.
+
+Un cop enviat, el missatge serà visible únicament pel remitent i els destinataris seleccionats. En altres paraules, el missatge no apareixerà al mur públic.
+
+Llistes de Control d'Accés es poden aplicar als continguts i missatges, fotos, esdeveniments, pàgines web, sales de xat i arxius.
+
+[b]Inici de Sessió Únic[/b]
+
+Les Llistes de Control d'Accés treballen per a tots els canals a la xarxa gràcies a la nostra tecnologia única d'inici de sessió únic. La majoria dels enllaços interns proporcionen una identitat símbolica que pot ser verificada en altres llocs $Projectname i s'utilitza per controlar l'accés als recursos privats. Entres una vegada al teu concentrador. Després d'això, l'autenticació de tots els recursos de $Projectname és "màgia".
+
+
+[b]WebDAV activa l'Emagatzematge d'Arxius[/b]
+
+Els arxius poden ser enviats a la teva àrea d'emmagatzematge personal utilitzant les teves utilitats del sistema operatiu (arrossegar i deixar anar en la majoria dels casos). Pots protegir aquests arxius amb la Llista de Control d'Accés amb qualsevol combinació de membres de $Projectname (incloent alguns membres d'altres terceres xarxes) o fer-los públics.
+
+[b]Foto Àlbums[/b]
+
+Salva Fotos en Àlbums. Totes les fotografies es poden protegir mitjançant llistes de control d'accés.
+
+[b]Calendari d'Esdeveniments[/b]
+
+Creació i gestió d'esdeveniments i tasques, que també poden ser protegits amb llistes de control d'accés. Els esdeveniments poden ser importats/exportats a un altre programari amb el format estàndard de la indústria vCalendar/iCal i compartida en els llocs amb els altres. Esdeveniments d'aniversari s'agreguen automàticament dels teus amics i es tradueixen a la seva zona horària correcta així sabràs exactament quan es produeix l'aniversari - no importa on et trobis en el món en relació amb la persona de l'aniversari. Els esdeveniments es creen normalment amb taulells d'assistència perquè els teus amics i connexions puguin confirmar la seva assistència a l'instant.
+
+[b]Sales de Xat[/b]
+
+Pots crear qualsevol nombre de sales de xat personals i permetre l'accés a través de llistes de control d'accés. Aquestes solen ser més segures que XMPP, IRC, i altres transports de missatgeria instantània, encara que també permetem l'ús d'aquests altres serveis a través de connectors.
+
+[b]Constructor de Pàgines Web[/b]
+
+$Projectname té moltes eines de creació de "Gestió de Contingut" per a la creació de pàgines web, incloent l'edició disposició, menús, blocs, widgets, i pàgina/contingut per regions. Totes aquestes poden ser d'accés controlat perquè les pàgines resultants siguin privades per al seu públic objectiu.
+
+[b]Apps/Aplicacions[/b]
+
+Apps poden ser construïdes i distribuïdes pels membres. Aquestes aplicacions són diferents del tradicional "bloqueig pel proveïdor" perquè són controlats completament per l'autor - que pot proporcionar control d'accés a les pàgines d'aplicacions de destinació i la càrrega consegüent per a aquest accés. La majoria de les aplicacions en $Projectname són gratuïtes i es poden crear fàcilment per aquells que no tenen coneixements de programació.
+
+[b]Disposició[/b]
+
+La disposició de la pàgina es basa en un llenguatge de descripció anomenat Comanche. $Projectname en si mateix està escrit amb dissenys de Comanche i es poden canviar. Això permet un nivell de personalització que no se sol trobar en els anomenats "entorns multiusuari".
+
+[b]Favorits[/b]
+
+Compartir i guardar/administrar els enllaços de favorits proporcionats en les converses.
+
+
+[b]Xifrat de missatges privats i Dubtes sobre la confidencialitat[/b]
+
+El correu privat s'emmagatzema en un format ocult. Si bé això no és a prova de bales, en general, evita l'espionatge informal per l'administrador del lloc o ISP.
+
+Cada canal de $Projectname té el seu propi conjunt únic de claus RSA (de 4096 bits) públiques i privades associades, que es genera quan es crea primer els canals. Això s'utilitza per protegir els missatges privats i missatges en trànsit.
+
+A més, els missatges poden ser creats utilitzant "xifrat d'extrem a extrem", que no pot ser llegit per els operadors $Projectname o ISPs o algú que no coneixi el codi d'accés.
+
+Els missatges públics en general, no es xifren en trànsit o en l'emmagatzematge.
+
+Els missatges privats poden ser retirats (com si no s'hagués enviat), encara que no es garanteix que el destinatari no l'ha llegit abans que l'hagis retirat.
+
+Entrades i missatges poden ser creats amb una data de venciment, moment en el qual s'eliminaran/borraran en el lloc del destinatari.
+
+
+[b]Servei de Federació[/b]
+
+A més de l'afegit (addon) "connectors d'entrades creuades" a una varietat de xarxes alternatives, no hi ha suport natiu per a la importació de continguts de RSS/Atom i usar això per crear canals especials. A més, una implementació experimental, però de treball del protocol de la Diàspora permet la comunicació amb la gent en les xarxes socials friendica i Diàspora descentralitzats. Actualment això es va marcar experimental a causa de que aquestes xarxes no tenen el mateix nivell de funcions de privacitat i encriptació i habilitats com $Projectname i poden presentar riscos per a la privacitat.
+També hi ha suport experimental per a l'autenticació OpenID que es pot utilitzar en les llistes de control d'accés. Aquest és un treball en progrés. El seu concentrador $Projectname pot ser utilitzat com un proveïdor d'OpenID per autenticar als serveis externs que utilitzen aquesta tecnologia.
+Els canals poden tenir permisos per convertir-se en "canals derivats" on dos o més canals existents es combinen per crear un nou canal d'actualitat.
+
+[b]Col·leccions[/b]
+
+"Col·leccions" és la nostra implementació de grups de privacitat, que és similar a Google "Cercles" i "Aspectes" de Diaspora. Això li permet filtrar el flux entrant per col·leccions o grups, i automàticament configurar la llista de control d'accés sortint a només aquells en la Col·lecció quan publiqui. Pots obviar tot això en qualsevol moment (abans d'enviar l'entrada).
+
+
+[b]Serveis de Directori [/b]
+
+Oferim fàcil accés a un directori de membres i proporcionem eines descentralitzades capaçes de proporcionar amics "suggerits". Els directoris són llocs normals $Projectname que han optat per acceptar la funció de servidor de directori. Això requereix més recursos que la majoria dels llocs típics pel que no és el predeterminat. Els Directoris estan sincronitzats i reflecteixen el que tots ells contenen amb informació actualitzada sobre tota la xarxa (subjecte a demores normals de propagació).
+
+
+[b]TLS/SSL[/b]
+
+Els concentradors de $Projectname que empran TLS/SSL, les comunicacions entre client i servidor son encriptades via TLS/SSL. Donades les recents revelacions en els mitjans de comunicació en relació amb, la vigilància global i l'elusió de xifrat pel NSA i GCHQ, és raonable suposar que les comunicacions HTTPS-protegides es poden veure compromeses de diverses maneres. Les comunicacions privades són en conseqüència xifrades en un nivell superior abans d'enviar-les fora del lloc.
+
+[b]Ajustos del Canals[/b]
+
+Quan es crea un canal, es tria un rol al que s'apliquen una sèrie d'ajustos de seguretat i privacitat preconfigurats. Aquests són elegits per les millors pràctiques per mantenir la privacitat en els nivells requerits.
+
+Si escolliu un paper privacitat "personalitzat", cada canal permet permisos de gra fi que es fixaràn per a diferents aspectes de la comunicació. Per exemple, sota la capçalera &quot;Ajusts de Seguretat i Privacitat&quot;, cada aspecte a la banda esquerra de la pàgina, té sis (6) Opcions possibles de visualització/accés, que es poden seleccionar fent clic al menú desplegable. També hi ha una sèrie d'altres opcions de privacitat que pots editar.
+
+Les opcions són:
+ - Ningú, excepte tu mateix.
+ - Només aquells que es permeten específicament.
+ - Qualsevol persona en la seva llibreta d'adreces.
+ - Qualsevol en aquest lloc web.
+ - Qualsevol persona en aquesta xarxa.
+ - Qualsevol autenticat.
+ - Qualsevol persona a Internet.
+
+[b]Forums Públics i Privats[/b]
+
+Els fòrums són típicament canals que poden estar obertes a la participació de múltiples autors. Actualment existeixen dos mecanismes per pujar als fòrums: 1) els missatges "de mur a mur" i 2) a través de les etiquetes de foro @menció. Els fòrums poden ser creats per qualsevol persona i s'utilitzats per a qualsevol propòsit. El directori conté una opció per buscar fòrums públics. Als Fòrums privats només es poden fer entrades pels membres i sovint només son vistos pels membres.
+
+
+[b]Clonat de Comptes[/b]
+
+Els Comptes a $Projectname es refereixen com a [i]identitats nómades[/i], perquè la identitat d'un membre no està lligada al concentrador/servidor on es va crear originalment. Per exemple, quan es crea un compte de Facebook o Gmail, que està lligat a aquests serveis. No poden funcionar sense Facebook.com o Gmail.com.
+
+Per contra, imagina que has creat una identitat a $Projectname anomenada [b]tina@Hubzillahub.com[/b]. Aquesta es pot clonar a un altre hub de $Projectname amb el mateix nom o un altre de diferent: per exemple [b]viuPerSempre@HubzillaHub.info[/b]
+
+Tots dos canals estan ara sincronitzats, el que significa que tots els seus contactes i preferències es dupliquen en el teu clon. No importa si s'envia un missatge des del seu hub original o el nou centre. Els missatges/emtrades seran reflectits/des en tots dos comptes.
+
+Aquesta és una característica bastant revolucionària, si tenim en compte alguns dels escenaris:
+
+ - Què passa si el concentrador/servidor on la identitat es basa cau sobtadament fora de línia? Sense clonació, un membre no pot comunicar fins que aquest centre torna a estar de nou en línia (sens dubte molts de vosaltres heu vist i maleït el Twitter "Fail Whale"). Amb la clonació, es pot iniciar la sessió al compte clonat, i la vida continua feliços per sempre. - L'administrador del teu concentrador/servidor ja no es pot permetre el luxe de pagar el concentrador/servidor $Projectname que ofereix gratuitament. Llavors anuncia que el centre serà tancant en dues setmanes. Això li dóna temps suficient als socis/partíceps per clonar la seva identitat/s i preservar les seves relacions de $Projectname, amics i contingut. - Què passa si la teva identitat està subjecta a la censura del govern? El teu proveïdor del concentrador/servidor pot ser obligat a eliminar el teu compte, juntament amb les identitats i dades associades. Amb la clonació, a $Projectname ofereixes [b]resistència a la censura[/b]. Pots tenir centenars de clons, si vols, amb noms totalment diferents, i existents en molts centres diferents, escampats a tot l'Internet.
+
+$Projectname ofereix noves i interesants possibilitats per a la privacitat. Pots llegir més a la pàgina &lt;&lt;Bones Pràctiques en Comunicacions Privades&gt;&gt;.
+
+A tenir en compte. Per a una explicació completa de la clonació d'identitat, llegir el &lt;HOW TO CLONE MY IDENTITY&gt;.
+
+[b]Perfils Multiples[/b]
+
+Es poden crear qualsevol nombre de perfils amb informació diferent i es poden fer-se visible/s a alguns de les teves connexions/amics. Un perfil "per defecte" es pot veure per qualsevol persona i pot contenir informació limitada, amb més informació disponible per grups o persones seleccionades. Això vol dir que el perfil (i el contingut del lloc) per als teus amics bevedors de cervesa pot ser diferents del que presentes als seus companys de treball, i també completament diferent del que és visible per al públic en general.
+
+[b]Còpies de Seguretat del Compte[/b]
+
+Hubzilla ofereix una còpia de seguretat del compte, amb un simple clic, on pots descarregar una còpia de seguretat completa del teu perfil(s).
+
+Les còpies de seguretat es poden utilitzar per clonar o restaurar un perfil.
+
+[b]Eliminació del Compte[/b]
+
+Els comptes poden ser [b]esborrats immediatament[/b] fent clic en un enllaç. [b]Això és així[/b]. Tot el contingut associat s'elimina de la xarxa (això inclou els missatges i qualsevol altre tipus de contingut produït pel perfil suprimit). Depenent del nombre de connexions que té, el procés d'eliminació de contingut remot podria portar el seu temps, però està previst que passi tan aviat com sigui possible.
+
+[b][size=20]Creació de Contingut[/size][/b]
+
+[b]Escribint Entrades[/b]
+
+$Projectname suporta un nombre de diferents alternatives per afegir contingut amb text enriquit. La opció per defecte es una variant personalitzada de _BBcode, ajustada per al seu ús a $Projectname. Pots activar l'ús de Markdown (un llenguatge de marques) fàcil de treballar amb ell. Un editor visual també es pot emprar. El editor visual tradicionalment emprat en $Projectname va tenir seriosos problemes i ha estat eliminat. Estem actualment buscant un substitut.
+
+Quant creem &quot;llocs Web&quot;, El contingut espot afegir en HTML, Markdown, BBcode, i/o text plà.
+
+[b]Esborrat del contingut[/b]
+Qualsevol contingut creat a $Projectname roman sota el control del membre (o canal) que el va crear originalment. En qualsevol moment, un membre pot esborrar un missatge o un rang de missatges. El procés d'esborrat assegura que el contingut es eliminat, indiferentment de on es va publicar si en el canal primari (l'inicial)del concentrador/servidor o en altre qualsevol on el canal es va autenticar remotament via Zot ($Projectname communicació i protocol d'autenticació).
+
+[b]Multimedia[/b]
+Igual que qualsevol altre sistema modern de blocs, xarxes socials, o d'un servei de micro-blogging, $Projectname és compatible amb la càrrega d'arxius, la incorporació dels vídeos, l'enllaç de pàgines web.
+
+[b]Vista Prèvia/Edició[/b]
+Les entrades es poder pre visualitzar abans d'enviar-les i reeditar desprès de ser enviades.
+
+[b]Votacions/Consens[/b]
+El missatges poden convertir-se en "consensos", són articles que ofereixen als lectors una forma de retroalimentació, es recopilen en comptadors de "d'acord", "en desacord" i "abstenir-se". Que permeten mesurar l'interès per les idees i crear enquestes informals.
+
+
+[b]Estenent $Projectname[/b]
+
+$Projectname es pot estendre per diferents nombre de vies, a través de la personalització del lloc, la teva personalització, ajustos optatius, temes i addons/plugins.
+
+[b]API[/b]
+
+Una API està disponible per al seu ús per serveis de terceres part. Està basat originalment en una de les primeres API's de Twitter(de la que existeixen cents d'eines de terceres parts). S'està ampliant actualment per proporcionar accés a les instal·lacions i capacitats que són específiques de $Projectname. L'accés pot ser proporcionada per usuari/contrasenya o OAuth i es proporciona registre de clients d'aplicacions OAuth.
+
+
+
+#include doc/macros/main_footer.bb;
diff --git a/doc/ca/first-post.bb b/doc/ca/first-post.bb
new file mode 100644
index 000000000..0702e20bf
--- /dev/null
+++ b/doc/ca/first-post.bb
@@ -0,0 +1,3 @@
+[size=large]La teva primera entrada[/size]
+
+... pendent de ser escrita ...
diff --git a/doc/ca/general.bb b/doc/ca/general.bb
new file mode 100644
index 000000000..f7d556130
--- /dev/null
+++ b/doc/ca/general.bb
@@ -0,0 +1,20 @@
+[h2]Informació del Projecte/Lloc[/h2]
+
+[zrl=[baseurl]/help/Privacy]Politica de Privacitat[/zrl]
+
+[zrl=[baseurl]/help/history]Història de $Projectname[/zrl]
+
+[h3]Recursos Externs[/h3]
+[zrl=[baseurl]/help/external-resource-links]Enllaços a Recursos Externs[/zrl]
+
+[url=https://github.com/redmatrix/hubzilla]Lloc Web Principal[/url]
+
+[url=https://github.com/redmatrix/hubzilla-addons]Complements del Lloc Web[/url]
+
+[url=[baseurl]/help/credits]Credits en $Projectname[/url]
+
+[h3]Sobre Aquest Node $Projectname[/h3]
+[zrl=[baseurl]/help/TermsOfService]Termes de Servei per a AQUEST Node[/zrl]
+[zrl=[baseurl]/siteinfo]Informació del Node[/zrl]
+[zrl=[baseurl]/siteinfo/json]Informació Tècnica Detallada en format JSON d'aquest Node[/zrl]
+
diff --git a/doc/ca/main.bb b/doc/ca/main.bb
new file mode 100644
index 000000000..77e935718
--- /dev/null
+++ b/doc/ca/main.bb
@@ -0,0 +1,12 @@
+[zrl=[baseurl]/help/about][b]Que és $Projectname?[/b][/zrl]
+$Projectname és una plataforma de comunicació i publicació descentralitzada que et permet mantenir el control de les teves necessitats de comunicació, gràcies a l'encriptació automàtica i control d'accés de gra fi. Éts tu, i només tu qui decideixes qui pot veure les teves coses.
+
+[zrl=[baseurl]/help/features][b]Característiques de $Projectname[/b][/zrl]
+
+$Projectname ja s'està executant com una xarxa distribuïda global i demostra la seva versatilitat i escalabilitat des de independent fins a grans llocs.
+Penseu en plataformes independents de comunicació de la família, de comunitats en línia distribuïdes, fòrums de suport, blocs i pàgines web. O proveïdors de continguts professionals amb canals premium comercials i accés de continguts específics. El que vulguis, $Projectname és allà per atendre la teva creativitat.
+
+[zrl=[baseurl]/help/what_is_zot][b]Tens Zot? Be, Deuries.[/b][/zrl]
+Zot és el gran nou protocol de communicació inventat especialment per a $Projectname. Com a membre, ja no estàs lligat a un sol lloc o concentrador (hub) gràcies a les "identitats nòmades". Migra fàcilment a un altre servidor i manté els teus contactes intactes, o clona i executa el mateix canal en diversos servidors. Encara que un d'ells tanqui, no es perd res. A més, una vegada que estàs dins de $Projectname no hi ha necessitat d'autenticar dues vegades, fins i tot quan s'accedeix des d'un altre lloc $Projectname. Zot és el que difèrencia $Projectname de qualsevol altre projecte.
+
+
diff --git a/doc/ca/members.bb b/doc/ca/members.bb
new file mode 100644
index 000000000..bfd636b8e
--- /dev/null
+++ b/doc/ca/members.bb
@@ -0,0 +1,25 @@
+[h2]Documentació per a Membres del Concentrador[/h2]
+
+[h3]Començant[/h3]
+[zrl=[baseurl]/help/registration]Registrant un Compte[/zrl]
+[zrl=[baseurl]/help/accounts_profiles_channels_basics]Tu a $Projectname: breument comptes, perfils i canals[/zrl]
+[zrl=[baseurl]/help/profiles]Perfils[/zrl]
+[zrl=[baseurl]/help/channels]Canals[/zrl]
+[zrl=[baseurl]/help/roles]Permisos per roles i tipus de Canals[/zrl]
+[zrl=[baseurl]/help/first-post]La teva primera entrada[/zrl]
+[zrl=[baseurl]/help/connecting_to_channels]Connectant Amb Altres Canals[/zrl]
+[zrl=[baseurl]/help/permissions]Permisos I Encriptació: Tu Tens El Control[/zrl]
+[zrl=[baseurl]/help/cloud]Emmagatzegament Al Núbol[/zrl]
+[zrl=[baseurl]/help/remove_account]Esborrar un Canal o un Compte[/zrl]
+
+[h3]Ajuda per als Membres[/h3]
+[zrl=[baseurl]/help/tags_and_mentions]Etiquetes i Mencions[/zrl]
+[zrl=[baseurl]/help/webpages]Pàgines Web[/zrl]
+[zrl=[baseurl]/help/bbcode]Referència BBcode per a entrades i comentaris[/zrl]
+[zrl=[baseurl]/help/checking_account_quota_usage]Comprovant la Quota d'Ús del Compte[/zrl]
+[zrl=[baseurl]/help/cloud_desktop_clients]Clients d'Escriptori al Núbol[/zrl]
+[zrl=[baseurl]/help/AdvancedSearch]Cerca Avançada al Directori[/zrl]
+[zrl=[baseurl]/help/addons]Ajuda pels Addons[/zrl]
+[zrl=[baseurl]/help/diaspora_compat]Compatibilitat de Comunicacions amb Diaspora (Diaspora i Friendica)[/zrl]
+[zrl=[baseurl]/help/faq_members]FAQ Per Membres[/zrl]
+[zrl=[baseurl]/help/bugs]Errors, Assumptes, i les coses que arriben de cop a la nit...[/zrl]
diff --git a/doc/ca/profiles.bb b/doc/ca/profiles.bb
new file mode 100644
index 000000000..513bf5fed
--- /dev/null
+++ b/doc/ca/profiles.bb
@@ -0,0 +1,37 @@
+[b]Profiles[/b]
+
+$Projectname has unlimited profiles. You may use different profiles to show different &quot;sides of yourself&quot; to different audiences. This is different to having different channels. Different channels allow for completely different sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded &quot;sides&quot; of each channel. For example, your default public profile might say &quot;Hello, I'm Fred, and I like laughing&quot;. You may show your close friends a profile that adds &quot;and I also enjoy dwarf tossing&quot;.
+
+You always have a profile known as your &quot;default&quot; or &quot;public&quot; profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile.
+
+That said, if you want other friends to be able to find you, it helps to have the following information in your public profile...
+
+[ul][*]Your real name or at least a nickname everybody knows
+[*]A photo of you
+[*]Your location on the planet, at least to a country level.[/ul]
+
+In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some &quot;Keywords&quot; to your profile. Such as &quot;music, linux, photography&quot; or whatever. You can add as many keywords as you like.
+
+To create an alternate profile, first go to [zrl=[baseurl]/settings/features]Settings &gt; Additional Features[/zrl] and enable &quot;Multiple Profiles&quot; there, otherwise you won't have the ability to use more than just your default profile.
+
+Then select &quot;Edit Profiles&quot; from the menu of your $Projectname site. You may edit an existing profile, change the profile photo, add things to a profile or create a new profile. You may also create a &quot;clone&quot; of an existing profile if you only wish to change a few items but don't wish to enter all the information again. To do that, click on the profile you want to clone and choose &quot;Clone this profile&quot; there.
+
+In the list of your profiles, you can also choose the contacts who can see a specific profile. Just click on &quot;Edit visibility&quot; next to the profile in question (only available for the profiles that are not your default profile) and then click on user images to add them to or remove them from the group of people who can see this profile.
+
+Once a profile has been selected, when the person views your profile, they will see the private profile you have assigned. If they are not authenticated, they will see your public profile.
+
+There is a setting which allows you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the &quot;Settings&quot; page.
+
+If you do not wish to be found be people unless you give them your channel address, you may leave your profile unpublished.
+
+[b]Keywords and Directory Search[/b]
+
+On the directory page, you may search for people with published profiles. Currently, only the name field and the keywords are searched. You may also include such keywords in your default profile - which may be used to search for common interests with other members. Keywords are used in the channel suggestion tool and although they aren't visible in the directory, they are shown if people visit your profile page.
+
+On your Connnections page and in the directory there is a link to &quot;Suggestions&quot; or &quot;Channel Suggestions&quot;, respectively. This will find channels who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance.
+
+See Also
+
+[zrl=[baseurl]/help/AdvancedSearch]Advanced Searching[/zrl]
+
+#include doc/macros/main_footer.bb;
diff --git a/doc/ca/registration.bb b/doc/ca/registration.bb
new file mode 100644
index 000000000..ae779e0b7
--- /dev/null
+++ b/doc/ca/registration.bb
@@ -0,0 +1,35 @@
+[size=large][b]Registre[/b][/size]
+
+No tots els llocs $Projectname permeten la inscripció oberta. Si es permet el registre, veureu un enllaç de &quot; Registre &quot; immediatament sota de l'entrada a la pàgina principal del lloc. Seguint aquest enllaç et portarà a la pàgina de registre del lloc. En alguns llocs es pot redirigir a un altre lloc que permet registres. Com tots els llocs $Projectname estan vinculats, no importa on resideix el teu compte.
+
+[b]La Teva Adreça de Correu Electrònic[/b]
+
+Si us plau introdueix la teva adreça de correu electrònic vàlida. La teva adreça de correu electrònic mai es farà pública. Aquesta adreça s'utilitzarà per activar el teu compte, que (opcionalment) enviarà notificacions de correu electrònic per als missatges entrants o articles, [i]i per recuperar contrasenyes perdudes[/i].
+
+[b]Contrasenya[/b]
+
+Introdueix una contrasenya de la teva elecció, i repeix-la en la segona casella per assegurar-te que es va escriure correctament. Com $Projectname ofereix una identitat descentralitzada, Es pot accedir al teu compte en molts altres llocs web no només en el que t'has donat d'alta.
+
+[b]Termes Del Servei[/b]
+
+Clica a l'enllaç per llegir els [zrl=[baseurl]/help/TermsOfService]Termes de Servei[/zrl] del lloc. Una vegada llegits, marca la casella al formulari de registre per confirmar.
+
+[b]Registre[/b]
+
+Una vegada que hagis proporcionat els detalls necessaris, fes clic al botó "Registrar-se". Alguns llocs poden requerir l'aprovació de l'administrador abans de processar el registre, s'avisarà si aquest és el cas. Si us plau, mira el teu correu electrònic (incloent carpetes d'spam) per poder finalitzar la teva aprovació de registre.
+
+[b]Crear un Canal[/b]
+
+A continuació, se et presentarà la pantalla &quot; Afegir un canal&quot;. Normalment, el primer canal serà un que et representa - pel que l'ús del seu propi nom (o pseudònim) com el nom del canal és una bona idea. El nom de la cadena ha de ser pensat com un títol o descripció breu del teu canal. El &quot; triar un sobrenom curt &quot; és similar a un &quot;nom d'usuari &quot;. Farem servir tot el que entra aquí per crear una adreça de canal, que altres persones utilitzaran per connectar-se amb tu, i que utilitzaràs per iniciar sessió en altres llocs. Això s'assembla a una adreça de correu electrònic, i pren la forma nickname@siteyouregisteredat.xyz
+
+Quan es crea el teu canal se't portarà directament a la pàgina de configuració on pots definir permisos, habilitar les funcions, etc. Totes aquestes coses es tracten a la secció corresponent dels fitxers d'ajuda.
+
+Veure Tambè
+[zrl=[baseurl]/help/accounts_profiles_channels_basics]Lo Basic sobre Identitats dins $Projectname[/zrl]
+[zrl=[baseurl]/help/accounts]Comptes[/zrl]
+[zrl=[baseurl]/help/profiles]Perfils[/zrl]
+[zrl=[baseurl]/help/permissions]Permisos[/zrl]
+[zrl=[baseurl]/help/remove_account]Eliminar Compte[/zrl]
+
+#include doc/macros/main_footer.bb;
+
diff --git a/doc/ca/what_is_zot.bb b/doc/ca/what_is_zot.bb
new file mode 100644
index 000000000..df1f15921
--- /dev/null
+++ b/doc/ca/what_is_zot.bb
@@ -0,0 +1,61 @@
+[b]Qué és Zot?[/b]
+
+Zot és el protocol que fa funcionar $Projectname, proveeix tres Característiques esencials: Comunicacions, Identitat, i Control d'Accéss.
+
+Les funcionalitats que proveeix es poden describir de la següent manera:
+
+ - una relació en línia es només un munt de permisos
+ - internet és només un altre carpeta
+
+[b][size=20]Comunicacions[/size][/b]
+
+Zot és un protocol revolucionari que ofereix [i]comunicacions descentralitzades[/i] i [i]gestió d'identitat[/i] en tota la malla (o entrallat de connexions). El resultat es una plataforma que proveeix serveis web comparables amb els que ofereixen les grans companyies, però sense elles ni els seus problemes de privacitat, la seva insaciable necessitat de beneficis, ni la seva idea dels jardins-privats.
+
+Comunicacions i xarxes socials són una part integral del teixit. Qualsevol canal (i qualsevol servei ofert per aquest canal) por fer ús complert de les grans caracteristiques de comunicació social a escala global. Aquestes comunicacions poden ser públiques o privades - i comunicacions privades no es limiten a encriptar totalment l'enviament, sino que també encripten l'emmagatzegament per tal d'impedir que, administradors de sistemes murris o proveidors de servei, accidental o intencionadament tafanegin o revelin dades personals.
+
+Zot permet un ampli vental de serveis en segon plà per a la xarxa, des de oferir suggeriments d'amics, a serveis de directori. També pot realitzar altres coses que normalment només són possibles en un proveïdor centralitzat, com missatges &quot;de mur a mur&quot;. Perfils particulars/múltiples es poden crear fàcilment i el contingut del web es pot adaptar a l'espectador a través del [i]Control Lliscant d'Afinitat[/i].
+
+No trobaràs, de cap manera, aquestes característiques en altres serveis de comunicació descentralitzades. A més de proporcionar la descentralització de concentradors (servidors), potser la característica més innovadora i interessant de Zot és el subministrament de serveis [i]d'identitat descentralitzada[/i].
+
+[b][size=20]Identitat[/size][/b]
+
+La capa que permet identitat mitjançant Zot es única. Facilita [i]l'identificació única invisible[/i] al llarg de tots els llocs de la malla.
+
+També ofereix [i]identitat nómada[/i], de tal forma que les teves comunicacions amb amics, familiars , i qualsevol amb el que et comuniquis no s'han de veure afectats per la pérdua (caiguda, desconnexió) temporal/permanent del teu node de comunicació primari.
+
+Les parts importants de la teva identitat i les relacions es poden copiar a una memòria USB, o el teu ordinador portàtil, i poden aparèixer en qualsevol node de la xarxa en qualsevol moment - amb tots els teus amics i preferències intactes.
+
+Fonamentalment, aquestes instàncies (identitats) nòmades es mantenen en sincronia per tal que qualsevol instància pugui fer-se càrrec si un altre està en perill o danyada. Això el protegeix contra no només d'una fallada del sistema, sinó també de sobrecàrregues temporals del lloc i/o la manipulació governamental o censura.
+
+Identitat nòmada, inici de sessió únic, i nodes $Projectname descentralitzats, al nostre parer, introduir un alt grau de grau de [i]resiliència[/i] i [i]persistència[/i] en les comunicacions d'Internet, que són profundament necessàries en direcció contrària de les tendències mundials cap a la centralització corporativa, així com la vigilància governamental indiscriminada i la censura.
+
+Com naveges per la xarxa, els canals de visualització i el seu contingut únic, que es produeix sobre la marxa, fins i tot a través de centres de servidors completament diferents. No hi ha contrasenyes per entrar. No hi ha res a escriure. No tens que posar teu nom en cada nou lloc que visites.
+
+Com Zot pot fer això? En diem [i]identificació-màgica[/i], perquè $Projectname oculta els detalls de les complexitats que van a l'inici únic de sessió, les identitats nòmades, i l'experiència de navegació a la xarxa. Aquest és un dels objectius de disseny de $Projectname: per augmentar la privacitat i la llibertat a la xarxa, alhora que redueix la complexitat i el tedi interposat per la necessitat d'introduir noves contrasenyes i noms d'usuari per a cada vista diferent, que pots visitar en línia.
+
+Entrar com a usuari només una vegada en el teu centre d'origen (o qualsevol centre de recolçament nòmada que hagis triat). Això permet accedir a tots els serveis autenticats en qualsevol lloc de la malla - com ara anar a comprar, blocs, fòrums, i l'accés a la informació privada. Això és igual que els serveis oferts pels grans proveïdors de les empreses amb enormes bases de dades d'usuaris; però, pots ser un membre d'aquesta comunitat, així com un servidor en aquesta xarxa emprant un RasberryPi de 35$. La teva contrasenya no s'emmagatzema en un miler de diferents llocs, o encara pitjor, només en uns pocs llocs com Google i Facebook, fora del teu control directe.
+
+No pots ser silenciat. No pots ser eliminat de la xarxa, llevat que triïs per sortir, tu mateix.
+
+[b][size=20]Control d'Accés[/size][/b]
+
+La capa de identitat de Zot permet proporcionar permisos específics a qualsevol contingut que desitgis publicar - i aquests permisos s'estenen per $ProjectName. Això és com tenir un sol súper gran espai web format per un exèrcit de petits llocs web individuals - i on cada canal a la xarxa pot controlar completament les seves preferències de privacitat i ús compartit dels recursos web que creen.
+
+Actualment, la xarxa suporta comunicacions, àlbums de fotos, esdeveniments, i arxius. Això s'ampliarà en el futur per proporcionar serveis de gestió de continguts (pàgines web) i instal·lacions d'emmagatzematge en el núvol, com biblioteques WebDAV i multimèdia. Cada objecte i la forma en què es comparteix i amb qui està completament sota el teu control.
+
+Aquest tipus de control està disponible en grans proveïdors de serveis com Facebook i Google, ja que poseeixen la base de dades d'usuari. Dins de la xarxa, no hi ha necessitat d'un gran usuari de base de dades a la teva màquina - perquè la xarxa [i]és[/i] la teva base de dades d'usuari. Té essencialment infinita capacitat (limitada pel nombre total de nodes en línia a través d'Internet), i s'estén entre centenars, i potencialment milions d'ordinadors.
+
+L'accés pot ser concedit o negat per a qualsevol recurs, a qualsevol canal, o qualsevol grup de canals; en qualsevol lloc dins de la malla. Altres podràn accedir al teu contingut si els permets fer-ho, i ni tan sols cal tenir un compte al node. Les teves fotos privades no es poden veure, perquè els permissos realment funcionen; no són un complement que s'ha afegit a l'últim moment. Si no ets a la llista d'espectadors permesos per a una foto en particular, tu no la veuràs.
+
+[b][size=18]Recursos Addicionals i Enllaços[/size][/b]
+
+Per més detalla, informació tècnica sobre Zot, clica sobre algún dels següents enllaços:
+
+ - [url=https://github.com/friendica/red/wiki/Zot---A-High-Level-Overview]Vista per experts (en anglès)[/url]
+
+ - [url=https://github.com/friendica/red/wiki/zot]Especificació pel desenvolupament de Zot (en anglès)[/url]
+
+ - [url=https://github.com/redmatrix/hubzilla/blob/master/include/zot.php]Referència per la implementació de Zot en PHP (en anglès)[/url]
+
+
+#include doc/macros/main_footer.bb;
diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb
index af938b0a6..520abc22b 100644
--- a/doc/hidden_configs.bb
+++ b/doc/hidden_configs.bb
@@ -83,7 +83,9 @@ This document assumes you're an administrator.
'forum', 'forum_restricted' and 'forum_private'.
Read more about permissions roles [zrl=[baseurl]/help/roles]here[/zrl].
[b]system.workflow_channel_next[/b]
- The page to direct users to immediately after creating a channel.
+ The page to direct new members to immediately after creating a channel.
+ [b]system.workflow_register_next[/b]
+ The page to direct members to immediately after creating an account (only when auto_channel_create or UNO is enabled).
[b]system.max_daily_registrations[/b]
Set the maximum number of new registrations allowed on any day.
Useful to prevent oversubscription after a bout of publicity
diff --git a/include/features.php b/include/features.php
index d6a223089..d8b0be7d5 100644
--- a/include/features.php
+++ b/include/features.php
@@ -38,7 +38,7 @@ function get_feature_default($feature) {
function get_features($filtered = true) {
- if(UNO)
+ if(UNO && $filtered)
return array();
$arr = array(
diff --git a/include/items.php b/include/items.php
index 1231b6209..f5eccfccd 100755
--- a/include/items.php
+++ b/include/items.php
@@ -849,7 +849,7 @@ function get_item_elements($x,$allow_code = false) {
if($allow_code)
$arr['body'] = $x['body'];
else
- $arr['body'] = (($x['body']) ? htmlspecialchars($x['body'],ENT_COMPAT,'UTF-8',false) : '');
+ $arr['body'] = (($x['body']) ? htmlspecialchars($x['body'],ENT_COMPAT,'UTF-8',false) : '');
$key = get_config('system','pubkey');
@@ -917,6 +917,7 @@ function get_item_elements($x,$allow_code = false) {
$arr['attach'] = activity_sanitise($x['attach']);
$arr['term'] = decode_tags($x['tags']);
+ $arr['iconfig'] = decode_item_meta($x['meta']);
$arr['item_private'] = ((array_key_exists('flags',$x) && is_array($x['flags']) && in_array('private',$x['flags'])) ? 1 : 0);
@@ -1324,6 +1325,9 @@ function encode_item($item,$mirror = false) {
if($item['term'])
$x['tags'] = encode_item_terms($item['term'],$mirror);
+ if($item['iconfig'])
+ $x['meta'] = encode_item_meta($item['iconfig'],$mirror);
+
if($item['diaspora_meta']) {
$z = json_decode($item['diaspora_meta'],true);
if($z) {
@@ -1434,6 +1438,30 @@ function encode_item_terms($terms,$mirror = false) {
return $ret;
}
+function encode_item_meta($meta,$mirror = false) {
+ $ret = array();
+
+ if($meta) {
+ foreach($meta as $m) {
+ if($m['sharing'] || $mirror)
+ $ret[] = array('family' => $m['cat'], 'key' => $m['k'], 'value' => $m['v'], 'sharing' => intval($m['sharing']));
+ }
+ }
+
+ return $ret;
+}
+
+function decode_item_meta($meta) {
+ $ret = array();
+
+ if(is_array($meta) && $meta) {
+ foreach($meta as $m) {
+ $ret[] = array('cat' => escape_tags($m['family']),'k' => escape_tags($m['key']),'v' => $m['value'],'sharing' => $m['sharing']);
+ }
+ }
+ return $ret;
+}
+
/**
* @brief
*
@@ -2446,6 +2474,13 @@ function item_store($arr, $allow_exec = false, $deliver = true) {
unset($arr['term']);
}
+ $meta = null;
+ if(array_key_exists('iconfig',$arr)) {
+ $meta = $arr['iconfig'];
+ unset($arr['iconfig']);
+ }
+
+
if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid) || strlen($public_policy))
$private = 1;
else
@@ -2523,6 +2558,15 @@ function item_store($arr, $allow_exec = false, $deliver = true) {
$arr['term'] = $terms;
}
+ if($meta) {
+ foreach($meta as $m) {
+ set_iconfig($current_post,$m['cat'],$m['k'],$m['v'],$m['sharing']);
+ }
+ $arr['iconfig'] = $meta;
+ }
+
+
+
call_hooks('post_remote_end',$arr);
// update the commented timestamp on the parent
@@ -2744,6 +2788,13 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) {
unset($arr['term']);
}
+ $meta = null;
+ if(array_key_exists('iconfig',$arr)) {
+ $meta = $arr['iconfig'];
+ unset($arr['iconfig']);
+ }
+
+
dbesc_array($arr);
logger('item_store_update: ' . print_r($arr,true), LOGGER_DATA);
@@ -2785,6 +2836,17 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) {
$arr['term'] = $terms;
}
+ $r = q("delete from iconfig where iid = %d",
+ intval($orig_post_id)
+ );
+
+ if($meta) {
+ foreach($meta as $m) {
+ set_iconfig($orig_post_id,$m['cat'],$m['k'],$m['v'],$m['sharing']);
+ }
+ $arr['iconfig'] = $meta;
+ }
+
call_hooks('post_remote_update_end',$arr);
if($deliver) {
@@ -4007,12 +4069,25 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) {
$o .= '<thr:in-reply-to ref="' . xmlify($parent_item) . '" type="text/html" href="' . xmlify($item['plink']) . '" />' . "\r\n";
}
+ if(activity_compare($item['obj_type'],ACTIVITY_OBJ_EVENT) && activity_compare($item['verb'],ACTIVITY_POST)) {
+ $obj = ((is_array($item['obj'])) ? $item['object'] : json_decode($item['object'],true));
+
+ $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
+ $o .= '<summary>' . xmlify(bbcode($obj['title'])) . '</summary>' . "\r\n";
+ $o .= '<dtstart xmlns="urn:ietf:params:xml:ns:xcal">' . datetime_convert('UTC','UTC', $obj['start'],'Ymd\\THis' . (($obj['adjust']) ? '\\Z' : '')) . '</dtstart>' . "\r\n";
+ $o .= '<dtend xmlns="urn:ietf:params:xml:ns:xcal">' . datetime_convert('UTC','UTC', $obj['finish'],'Ymd\\THis' . (($obj['adjust']) ? '\\Z' : '')) . '</dtend>' . "\r\n";
+ $o .= '<location>' . bbcode($obj['location']) . '</location>' . "\r\n";
+ $o .= '<content type="' . $type . '" >' . xmlify(bbcode($obj['description'])) . '</content>' . "\r\n";
+ }
+ else {
+ $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
+ $o .= '<content type="' . $type . '" >' . xmlify(prepare_text($body,$item['mimetype'])) . '</content>' . "\r\n";
+ }
+
$o .= '<id>' . xmlify($item['mid']) . '</id>' . "\r\n";
- $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
$o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
$o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
- $o .= '<content type="' . $type . '" >' . xmlify(prepare_text($body,$item['mimetype'])) . '</content>' . "\r\n";
$o .= '<link rel="alternate" type="text/html" href="' . xmlify($item['plink']) . '" />' . "\r\n";
if($item['location']) {
@@ -4675,6 +4750,10 @@ function fetch_post_tags($items,$link = false) {
dbesc($tag_finder_str),
intval(TERM_OBJ_POST)
);
+ $imeta = q("select * from iconfig where iid in ( %s )",
+ dbesc($tag_finder_str)
+ );
+
}
for($x = 0; $x < count($items); $x ++) {
@@ -4698,6 +4777,26 @@ function fetch_post_tags($items,$link = false) {
}
}
}
+ if($imeta) {
+ foreach($imeta as $i) {
+ if(array_key_exists('item_id',$items[$x])) {
+ if($i['iid'] == $items[$x]['item_id']) {
+ if(! is_array($items[$x]['iconfig']))
+ $items[$x]['iconfig'] = array();
+ $i['v'] = ((preg_match('|^a:[0-9]+:{.*}$|s',$i['v'])) ? unserialize($i['v']) : $i['v']);
+ $items[$x]['iconfig'][] = $i;
+ }
+ }
+ else {
+ if($i['iid'] == $items[$x]['id']) {
+ if(! is_array($items[$x]['iconfig']))
+ $items[$x]['iconfig'] = array();
+ $i['v'] = ((preg_match('|^a:[0-9]+:{.*}$|s',$i['v'])) ? unserialize($i['v']) : $i['v']);
+ $items[$x]['iconfig'][] = $i;
+ }
+ }
+ }
+ }
}
return $items;
@@ -5306,3 +5405,212 @@ function asencode_person($p) {
return $ret;
}
+
+
+function send_profile_photo_activity($channel,$photo,$profile) {
+
+ // for now only create activities for the default profile
+
+ if(! intval($profile['is_default']))
+ return;
+
+ $arr = array();
+ $arr['item_thread_top'] = 1;
+ $arr['item_origin'] = 1;
+ $arr['item_wall'] = 1;
+ $arr['obj_type'] = ACTIVITY_OBJ_PHOTO;
+ $arr['verb'] = ACTIVITY_UPDATE;
+
+ $arr['object'] = json_encode(array(
+ 'type' => $arr['obj_type'],
+ 'id' => z_root() . '/photo/profile/l/' . $channel['channel_id'],
+ 'link' => array('rel' => 'photo', 'type' => $photo['type'], 'href' => z_root() . '/photo/profile/l/' . $channel['channel_id'])
+ ));
+
+ if(stripos($profile['gender'],t('female')) !== false)
+ $t = t('%1$s updated her %2$s');
+ elseif(stripos($profile['gender'],t('male')) !== false)
+ $t = t('%1$s updated his %2$s');
+ else
+ $t = t('%1$s updated their %2$s');
+
+ $ptext = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo['resource_id'] . ']' . t('profile photo') . '[/zrl]';
+
+ $ltext = '[zrl=' . z_root() . '/profile/' . $channel['channel_address'] . ']' . '[zmg=150x150]' . z_root() . '/photo/' . $photo['resource_id'] . '-4[/zmg][/zrl]';
+
+ $arr['body'] = sprintf($t,$channel['channel_name'],$ptext) . "\n\n" . $ltext;
+
+ $acl = new AccessList($channel);
+ $x = $acl->get();
+ $arr['allow_cid'] = $x['allow_cid'];
+
+ $arr['allow_gid'] = $x['allow_gid'];
+ $arr['deny_cid'] = $x['deny_cid'];
+ $arr['deny_gid'] = $x['deny_gid'];
+
+ $arr['uid'] = $channel['channel_id'];
+ $arr['aid'] = $channel['channel_account_id'];
+
+ $arr['owner_xchan'] = $channel['channel_hash'];
+ $arr['author_xchan'] = $channel['channel_hash'];
+
+ post_activity_item($arr);
+
+
+}
+
+
+
+
+
+function get_iconfig(&$item, $family, $key) {
+
+ $is_item = false;
+ if(is_array($item)) {
+ $is_item = true;
+ if((! array_key_exists('iconfig',$item)) || (! is_array($item['iconfig'])))
+ $item['iconfig'] = array();
+
+ if(array_key_exists('item_id',$item))
+ $iid = $item['item_id'];
+ else
+ $iid = $item['id'];
+ }
+ elseif(intval($item))
+ $iid = $item;
+
+ if(! $iid)
+ return false;
+
+ if(is_array($item) && array_key_exists('iconfig',$item) && is_array($item['iconfig'])) {
+ foreach($item['iconfig'] as $c) {
+ if($c['iid'] == $iid && $c['cat'] == $family && $c['k'] == $key)
+ return $c['v'];
+ }
+ }
+
+ $r = q("select * from iconfig where iid = %d and cat = '%s' and k = '%s' limit 1",
+ intval($iid),
+ dbesc($family),
+ dbesc($key)
+ );
+ if($r) {
+ $r[0]['v'] = ((preg_match('|^a:[0-9]+:{.*}$|s',$r[0]['v'])) ? unserialize($r[0]['v']) : $r[0]['v']);
+ if($is_item)
+ $item['iconfig'][] = $r[0];
+ return $r[0]['v'];
+ }
+ return false;
+
+}
+
+/**
+ * set_iconfig(&$item, $family, $key, $value, $sharing = false);
+ *
+ * $item - item array or item id. If passed an array the iconfig meta information is
+ * added to the item structure (which will need to be saved with item_store eventually).
+ * If passed an id, the DB is updated, but may not be federated and/or cloned.
+ * $family - namespace of meta variable
+ * $key - key of meta variable
+ * $value - value of meta variable
+ * $sharing - boolean (default false); if true the meta information is propagated with the item
+ * to other sites/channels, mostly useful when $item is an array and has not yet been stored/delivered.
+ * If the meta information is added after delivery and you wish it to be shared, it may be necessary to
+ * alter the item edited timestamp and invoke the delivery process on the updated item. The edited
+ * timestamp needs to be altered in order to trigger an item_store_update() at the receiving end.
+ */
+
+
+function set_iconfig(&$item, $family, $key, $value, $sharing = false) {
+
+ $dbvalue = ((is_array($value)) ? serialize($value) : $value);
+ $dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue);
+
+ $is_item = false;
+ $idx = null;
+
+ if(is_array($item)) {
+ $is_item = true;
+ if((! array_key_exists('iconfig',$item)) || (! is_array($item['iconfig'])))
+ $item['iconfig'] = array();
+ elseif($item['iconfig']) {
+ for($x = 0; $x < count($item['iconfig']); $x ++) {
+ if($item['iconfig'][$x]['cat'] == $family && $item['iconfig'][$x]['k'] == $key) {
+ $idx = $x;
+ }
+ }
+ }
+ $entry = array('cat' => $family, 'k' => $key, 'v' => $value, 'sharing' => $sharing);
+
+ if(is_null($idx))
+ $item['iconfig'][] = $entry;
+ else
+ $item['iconfig'][$idx] = $entry;
+ return $value;
+ }
+
+ if(intval($item))
+ $iid = intval($item);
+
+ if(! $iid)
+ return false;
+
+ if(get_iconfig($item, $family, $key) === false) {
+ $r = q("insert into iconfig( iid, cat, k, v, sharing ) values ( %d, '%s', '%s', '%s', %d ) ",
+ intval($iid),
+ dbesc($family),
+ dbesc($key),
+ dbesc($dbvalue),
+ intval($sharing)
+ );
+ }
+ else {
+ $r = q("update iconfig set v = '%s', sharing = %d where iid = %d and cat = '%s' and k = '%s' ",
+ dbesc($dbvalue),
+ intval($sharing),
+ intval($iid),
+ dbesc($family),
+ dbesc($key)
+ );
+ }
+
+ if(! $r)
+ return false;
+
+ return $value;
+}
+
+
+
+function del_iconfig(&$item, $family, $key) {
+
+
+ $is_item = false;
+ $idx = null;
+
+ if(is_array($item)) {
+ $is_item = true;
+ if(is_array($item['iconfig'])) {
+ for($x = 0; $x < count($item['iconfig']); $x ++) {
+ if($item['iconfig'][$x]['cat'] == $family && $item['iconfig'][$x]['k'] == $key) {
+ unset($item['iconfig'][$x]);
+ }
+ }
+ }
+ return true;
+ }
+
+ if(intval($item))
+ $iid = intval($item);
+
+ if(! $iid)
+ return false;
+
+ return q("delete from iconfig where iid = %d and cat = '%s' and k = '%s' ",
+ intval($iid),
+ dbesc($family),
+ dbesc($key)
+ );
+
+}
+
diff --git a/include/language.php b/include/language.php
index cea31924c..c843db85e 100644
--- a/include/language.php
+++ b/include/language.php
@@ -65,15 +65,22 @@ function get_best_language() {
if(isset($langs) && count($langs)) {
foreach ($langs as $lang => $v) {
$lang = strtolower($lang);
- if(file_exists("view/$lang") && is_dir("view/$lang")) {
+ if(is_dir("view/$lang")) {
$preferred = $lang;
break;
}
}
}
- if(isset($preferred))
- return $preferred;
+ if(! isset($preferred))
+ $preferred = 'unset';
+
+ $arr = array('langs' => $langs, 'preferred' => $preferred);
+
+ call_hooks('get_best_language',$arr);
+
+ if($arr['preferred'] !== 'unset')
+ return $arr['preferred'];
$a = get_app();
return ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en');
diff --git a/include/widgets.php b/include/widgets.php
index fa2b3de4d..a995fdf1c 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -542,11 +542,14 @@ function widget_settings_menu($arr) {
'selected' => ((argv(1) === 'oauth') ? 'active' : ''),
);
- $tabs[] = array(
- 'label' => t('Export channel'),
- 'url' => $a->get_baseurl(true) . '/uexport',
- 'selected' => ''
- );
+ // IF can go away when UNO export and import is fully functional
+ if(! UNO) {
+ $tabs[] = array(
+ 'label' => t('Export channel'),
+ 'url' => $a->get_baseurl(true) . '/uexport',
+ 'selected' => ''
+ );
+ }
if($role === false || $role === 'custom') {
$tabs[] = array(
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql
index 3d7ea41df..693cad1a8 100644
--- a/install/schema_mysql.sql
+++ b/install/schema_mysql.sql
@@ -543,6 +543,21 @@ CREATE TABLE IF NOT EXISTS `hubloc` (
KEY `hubloc_error` (`hubloc_error`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+CREATE TABLE IF NOT EXISTS `iconfig` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `iid` int(11) NOT NULL DEFAULT '0',
+ `cat` char(255) NOT NULL DEFAULT '',
+ `k` char(255) NOT NULL DEFAULT '',
+ `v` mediumtext NOT NULL,
+ `sharing` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`),
+ KEY `iid` (`iid`),
+ KEY `cat` (`cat`),
+ KEY `k` (`k`),
+ KEY `sharing` (`sharing`),
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
CREATE TABLE IF NOT EXISTS `issue` (
`issue_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`issue_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index 5cabbc2c9..964ca5966 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -538,6 +538,19 @@ create index "hubloc_primary" on hubloc ("hubloc_primary");
create index "hubloc_orphancheck" on hubloc ("hubloc_orphancheck");
create index "hubloc_error" on hubloc ("hubloc_error");
create index "hubloc_deleted" on hubloc ("hubloc_deleted");
+CREATE TABLE "iconfig" (
+ "id" serial NOT NULL,
+ "iid" bigint NOT NULL DEFAULT '0',
+ "cat" text NOT NULL DEFAULT '',
+ "k" text NOT NULL DEFAULT '',
+ "v" text NOT NULL DEFAULT '',
+ "sharing" int NOT NULL DEFAULT '0',
+ PRIMARY_KEY("id")
+);
+create index "iconfig_iid" on iconfig ("iid");
+create index "iconfig_cat" on iconfig ("cat");
+create index "iconfig_k" on iconfig ("k");
+create index "iconfig_sharing" on iconfig ("sharing");
CREATE TABLE "issue" (
"issue_id" serial NOT NULL,
"issue_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
diff --git a/install/update.php b/install/update.php
index 24f4f21d5..d21295be7 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1161 );
+define( 'UPDATE_VERSION' , 1163 );
/**
*
@@ -1957,3 +1957,50 @@ function update_r1160() {
return UPDATE_FAILED;
}
+function update_r1161() {
+
+ if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
+ $r1 = q("CREATE TABLE \"iconfig\" (
+ \"id\" serial NOT NULL,
+ \"iid\" bigint NOT NULL DEFAULT '0',
+ \"cat\" text NOT NULL DEFAULT '',
+ \"k\" text NOT NULL DEFAULT '',
+ \"v\" text NOT NULL DEFAULT '',
+ PRIMARY_KEY(\"id\")
+) ");
+$r2 = q("create index \"iconfig_iid\" on iconfig (\"iid\") ");;
+$r3 = q("create index \"iconfig_cat\" on iconfig (\"cat\") ");
+$r4 = q("create index \"iconfig_k\" on iconfig (\"k\") ");
+ $r = $r1 && $r2 && $r3 && $r4;
+ }
+ else {
+ $r = q("CREATE TABLE IF NOT EXISTS `iconfig` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `iid` int(11) NOT NULL DEFAULT '0',
+ `cat` char(255) NOT NULL DEFAULT '',
+ `k` char(255) NOT NULL DEFAULT '',
+ `v` mediumtext NOT NULL,
+ PRIMARY KEY (`id`),
+ KEY `iid` (`iid`),
+ KEY `cat` (`cat`),
+ KEY `k` (`k`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8 ");
+
+ }
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
+
+function update_r1162() {
+ $r1 = q("alter table iconfig add sharing int not null default '0' ");
+
+ if(ACTIVE_DBTYPE == DBTYPE_POSTGRES)
+ $r2 = q("create index \"iconfig_sharing\" on iconfig (\"sharing\") ");
+ else
+ $r2 = q("alter table iconfig add index ( sharing ) ");
+ if($r1 && $r2)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+} \ No newline at end of file
diff --git a/mod/admin.php b/mod/admin.php
index 09bfef84a..5195db320 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -7,7 +7,7 @@
*/
require_once('include/queue_fn.php');
-
+require_once('include/account.php');
/**
* @param App &$a
@@ -861,13 +861,13 @@ function admin_page_users_post($a) {
// registration approved button was submitted
if (x($_POST, 'page_users_approve')) {
foreach ($pending as $hash) {
- user_allow($hash);
+ account_allow($hash);
}
}
// registration deny button was submitted
if (x($_POST, 'page_users_deny')) {
foreach ($pending as $hash) {
- user_deny($hash);
+ account_deny($hash);
}
}
diff --git a/mod/connedit.php b/mod/connedit.php
index cb785fc31..d50783d31 100644
--- a/mod/connedit.php
+++ b/mod/connedit.php
@@ -25,7 +25,7 @@ function connedit_init(&$a) {
return;
if((argc() >= 2) && intval(argv(1))) {
- $r = q("SELECT abook.*, xchan.*
+ $r = q("SELECT abook.*, xchan.*
FROM abook left join xchan on abook_xchan = xchan_hash
WHERE abook_channel = %d and abook_id = %d LIMIT 1",
intval(local_channel()),
@@ -58,14 +58,14 @@ function connedit_post(&$a) {
$channel = $a->get_channel();
// TODO if configured for hassle-free permissions, we'll post the form with ajax as soon as the
- // connection enable is toggled to a special autopost url and set permissions immediately, leaving
- // the other form elements alone pending a manual submit of the form. The downside is that there
+ // connection enable is toggled to a special autopost url and set permissions immediately, leaving
+ // the other form elements alone pending a manual submit of the form. The downside is that there
// will be a window of opportunity when the permissions have been set but before you've had a chance
// to review and possibly restrict them. The upside is we won't have to warn you that your connection
- // can't do anything until you save the bloody form.
+ // can't do anything until you save the bloody form.
$autopost = (((argc() > 2) && (argv(2) === 'auto')) ? true : false);
-
+
$orig_record = q("SELECT * FROM abook WHERE abook_id = %d AND abook_channel = %d LIMIT 1",
intval($contact_id),
intval(local_channel())
@@ -145,7 +145,7 @@ function connedit_post(&$a) {
if($z) {
$record = $z[0]['xlink_id'];
- $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s'
+ $w = q("update xlink set xlink_rating = '%d', xlink_rating_text = '%s', xlink_sig = '%s', xlink_updated = '%s'
where xlink_id = %d",
intval($rating),
dbesc($rating_text),
@@ -172,7 +172,7 @@ function connedit_post(&$a) {
}
if($record) {
proc_run('php','include/ratenotif.php','rating',$record);
- }
+ }
}
if(($_REQUEST['pending']) && intval($orig_record[0]['abook_pending'])) {
@@ -181,7 +181,7 @@ function connedit_post(&$a) {
// @fixme it won't be common, but when you accept a new connection request
// the permissions will now be that of your permissions role and ignore
// any you may have set manually on the form. We'll probably see a bug if somebody
- // tries to set the permissions *and* approve the connection in the same
+ // tries to set the permissions *and* approve the connection in the same
// request. The workaround is to approve the connection, then go back and
// adjust permissions as desired.
@@ -210,7 +210,7 @@ function connedit_post(&$a) {
intval(local_channel())
);
- if($orig_record[0]['abook_profile'] != $profile_id) {
+ if($orig_record[0]['abook_profile'] != $profile_id) {
//Update profile photo permissions
logger('A new profile was assigned - updating profile photos');
@@ -224,7 +224,7 @@ function connedit_post(&$a) {
else
notice( t('Failed to update connection record.') . EOL);
- if($a->poi && $a->poi['abook_my_perms'] != $abook_my_perms
+ if($a->poi && $a->poi['abook_my_perms'] != $abook_my_perms
&& (! intval($a->poi['abook_self']))) {
proc_run('php', 'include/notifier.php', (($new_friend) ? 'permission_create' : 'permission_update'), $contact_id);
}
@@ -238,8 +238,8 @@ function connedit_post(&$a) {
group_add_member(local_channel(),'',$a->poi['abook_xchan'],$g['id']);
}
- // Check if settings permit ("post new friend activity" is allowed, and
- // friends in general or this friend in particular aren't hidden)
+ // Check if settings permit ("post new friend activity" is allowed, and
+ // friends in general or this friend in particular aren't hidden)
// and send out a new friend activity
$pr = q("select * from profile where uid = %d and is_default = 1 and hide_friends = 0",
@@ -285,7 +285,7 @@ function connedit_post(&$a) {
// Refresh the structure in memory with the new data
- $r = q("SELECT abook.*, xchan.*
+ $r = q("SELECT abook.*, xchan.*
FROM abook left join xchan on abook_xchan = xchan_hash
WHERE abook_channel = %d and abook_id = %d LIMIT 1",
intval(local_channel()),
@@ -300,7 +300,7 @@ function connedit_post(&$a) {
call_hooks('accept_follow', $arr);
}
- if(! is_null($autoperms))
+ if(! is_null($autoperms))
set_pconfig(local_channel(),'system','autoperms',(($autoperms) ? $abook_my_perms : 0));
connedit_clone($a);
@@ -322,7 +322,7 @@ function connedit_clone(&$a) {
if(! $a->poi)
return;
- $r = q("SELECT abook.*, xchan.*
+ $r = q("SELECT abook.*, xchan.*
FROM abook left join xchan on abook_xchan = xchan_hash
WHERE abook_channel = %d and abook_id = %d LIMIT 1",
intval(local_channel()),
@@ -365,6 +365,8 @@ function connedit_content(&$a) {
$my_perms = $x['perms_accept'];
}
+ $yes_no = array(t('No'),t('Yes'));
+
if($my_perms) {
$o .= "<script>function connectDefaultShare() {
\$('.abook-edit-me').each(function() {
@@ -398,7 +400,7 @@ function connedit_content(&$a) {
notice( t('Could not access address book record.') . EOL);
goaway($a->get_baseurl(true) . '/connections');
}
-
+
if($cmd === 'update') {
// pull feed and consume it, which should subscribe to the hub.
proc_run('php',"include/poller.php","$contact_id");
@@ -408,7 +410,7 @@ function connedit_content(&$a) {
if($cmd === 'refresh') {
if($orig_record[0]['xchan_network'] === 'zot') {
- if(! zot_refresh($orig_record[0],get_app()->get_channel()))
+ if(! zot_refresh($orig_record[0],get_app()->get_channel()))
notice( t('Refresh failed - channel is currently unavailable.') );
}
else {
@@ -475,13 +477,13 @@ function connedit_content(&$a) {
require_once('include/Contact.php');
// FIXME
-// We need to send either a purge or a refresh packet to the other side (the channel being unfriended).
+// We need to send either a purge or a refresh packet to the other side (the channel being unfriended).
// The issue is that the abook DB record _may_ get destroyed when we call contact_remove. As the notifier runs
// in the background there could be a race condition preventing this packet from being sent in all cases.
// PLACEHOLDER
contact_remove(local_channel(), $orig_record[0]['abook_id']);
- build_sync_packet(0 /* use the current local_channel */,
+ build_sync_packet(0 /* use the current local_channel */,
array('abook' => array(array(
'abook_xchan' => $orig_record[0]['abook_xchan'],
'entry_deleted' => true))
@@ -505,28 +507,28 @@ function connedit_content(&$a) {
'view' => array(
'label' => t('View Profile'),
- 'url' => chanlink_cid($contact['abook_id']),
+ 'url' => chanlink_cid($contact['abook_id']),
'sel' => '',
'title' => sprintf( t('View %s\'s profile'), $contact['xchan_name']),
),
'refresh' => array(
'label' => t('Refresh Permissions'),
- 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/refresh',
+ 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/refresh',
'sel' => '',
'title' => t('Fetch updated permissions'),
),
'recent' => array(
'label' => t('Recent Activity'),
- 'url' => $a->get_baseurl(true) . '/network/?f=&cid=' . $contact['abook_id'],
+ 'url' => $a->get_baseurl(true) . '/network/?f=&cid=' . $contact['abook_id'],
'sel' => '',
'title' => t('View recent posts and comments'),
),
'block' => array(
'label' => (intval($contact['abook_blocked']) ? t('Unblock') : t('Block')),
- 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/block',
+ 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/block',
'sel' => (intval($contact['abook_blocked']) ? 'active' : ''),
'title' => t('Block (or Unblock) all communications with this connection'),
'info' => (intval($contact['abook_blocked']) ? t('This connection is blocked!') : ''),
@@ -534,7 +536,7 @@ function connedit_content(&$a) {
'ignore' => array(
'label' => (intval($contact['abook_ignored']) ? t('Unignore') : t('Ignore')),
- 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/ignore',
+ 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/ignore',
'sel' => (intval($contact['abook_ignored']) ? 'active' : ''),
'title' => t('Ignore (or Unignore) all inbound communications from this connection'),
'info' => (intval($contact['abook_ignored']) ? t('This connection is ignored!') : ''),
@@ -542,7 +544,7 @@ function connedit_content(&$a) {
'archive' => array(
'label' => (intval($contact['abook_archived']) ? t('Unarchive') : t('Archive')),
- 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/archive',
+ 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/archive',
'sel' => (intval($contact['abook_archived']) ? 'active' : ''),
'title' => t('Archive (or Unarchive) this connection - mark channel dead but keep content'),
'info' => (intval($contact['abook_archived']) ? t('This connection is archived!') : ''),
@@ -550,7 +552,7 @@ function connedit_content(&$a) {
'hide' => array(
'label' => (intval($contact['abook_hidden']) ? t('Unhide') : t('Hide')),
- 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/hide',
+ 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/hide',
'sel' => (intval($contact['abook_hidden']) ? 'active' : ''),
'title' => t('Hide or Unhide this connection from your other connections'),
'info' => (intval($contact['abook_hidden']) ? t('This connection is hidden!') : ''),
@@ -558,7 +560,7 @@ function connedit_content(&$a) {
'delete' => array(
'label' => t('Delete'),
- 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/drop',
+ 'url' => $a->get_baseurl(true) . '/connedit/' . $contact['abook_id'] . '/drop',
'sel' => '',
'title' => t('Delete this connection'),
),
@@ -639,7 +641,7 @@ function connedit_content(&$a) {
$channel = $a->get_channel();
$global_perms = get_perms();
- $existing = get_all_perms(local_channel(),$contact['abook_xchan']);
+ $existing = get_all_perms(local_channel(),$contact['abook_xchan']);
$unapproved = array('pending', t('Approve this connection'), '', t('Accept connection to allow communication'), array(t('No'),('Yes')));
@@ -668,7 +670,7 @@ function connedit_content(&$a) {
$locstr = '';
- $locs = q("select hubloc_addr as location from hubloc left join site on hubloc_url = site_url where hubloc_hash = '%s'
+ $locs = q("select hubloc_addr as location from hubloc left join site on hubloc_url = site_url where hubloc_hash = '%s'
and hubloc_deleted = 0 and site_dead = 0",
dbesc($contact['xchan_hash'])
);
@@ -690,7 +692,7 @@ function connedit_content(&$a) {
$o .= replace_macros($tpl,array(
'$header' => (($self) ? t('Connection Default Permissions') : sprintf( t('Connection: %s'),$contact['xchan_name'])),
- '$autoperms' => array('autoperms',t('Apply these permissions automatically'), ((get_pconfig(local_channel(),'system','autoperms')) ? 1 : 0), 'Connection requests will be approved without your interaction', array(t('No'),('Yes'))),
+ '$autoperms' => array('autoperms',t('Apply these permissions automatically'), ((get_pconfig(local_channel(),'system','autoperms')) ? 1 : 0), t('Connection requests will be approved without your interaction'), $yes_no),
'$addr' => $contact['xchan_addr'],
'$addr_text' => t('This connection\'s primary address is'),
'$loc_text' => t('Available locations:'),
@@ -705,8 +707,8 @@ function connedit_content(&$a) {
'$lbl_rating_txt' => t('Optionally explain your rating'),
'$connfilter' => feature_enabled(local_channel(),'connfilter'),
'$connfilter_label' => t('Custom Filter'),
- '$incl' => array('abook_incl',t('Only import posts with this text'), $contact['abook_incl'],t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')),
- '$excl' => array('abook_excl',t('Do not import posts with this text'), $contact['abook_excl'],t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')),
+ '$incl' => array('abook_incl',t('Only import posts with this text'), $contact['abook_incl'],t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')),
+ '$excl' => array('abook_excl',t('Do not import posts with this text'), $contact['abook_excl'],t('words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts')),
'$rating_text' => array('rating_text', t('Optionally explain your rating'),$rating_text,''),
'$rating_info' => t('This information is public!'),
'$rating' => $rating,
diff --git a/mod/item.php b/mod/item.php
index fdc768c67..d861967a9 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -233,6 +233,8 @@ function item_post(&$a) {
$post_id = $i[0]['iid'];
}
+ $iconfig = null;
+
if($post_id) {
$i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
intval($profile_uid),
@@ -241,6 +243,9 @@ function item_post(&$a) {
if(! count($i))
killme();
$orig_post = $i[0];
+ $iconfig = q("select * from iconfig where iid = %d",
+ intval($post_id)
+ );
}
@@ -792,6 +797,9 @@ function item_post(&$a) {
$datarray['plink'] = $plink;
$datarray['route'] = $route;
+ if($iconfig)
+ $datarray['iconfig'] = $iconfig;
+
// preview mode - prepare the body for display and send it via json
if($preview) {
@@ -808,8 +816,6 @@ function item_post(&$a) {
if($orig_post)
$datarray['edit'] = true;
-
-
if(feature_enabled($profile_uid,'suppress_duplicates') && (! $orig_post)) {
$z = q("select created from item where uid = %d and body = '%s'",
diff --git a/mod/new_channel.php b/mod/new_channel.php
index 630984bf2..b22a5cacb 100644
--- a/mod/new_channel.php
+++ b/mod/new_channel.php
@@ -130,7 +130,7 @@ function new_channel_content(&$a) {
'$title' => t('Add a Channel'),
'$desc' => t('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.'),
- '$label_name' => t('Channel Name'),
+ '$label_name' => t('Name'),
'$help_name' => t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group" '),
'$label_nick' => t('Choose a short nickname'),
'$nick_hub' => '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl')),
diff --git a/mod/pdledit.php b/mod/pdledit.php
index f2a25566a..bf29b2da0 100644
--- a/mod/pdledit.php
+++ b/mod/pdledit.php
@@ -26,6 +26,7 @@ function pdledit_content(&$a) {
if(argc() > 1)
$module = 'mod_' . argv(1) . '.pdl';
else {
+ $o .= '<div class="generic-content-wrapper-styled">';
$o .= '<h1>' . t('Edit System Page Description') . '</h1>';
$files = glob('mod/*');
if($files) {
@@ -38,6 +39,8 @@ function pdledit_content(&$a) {
}
}
+ $o .= '</div>';
+
// list module pdl files
return $o;
}
diff --git a/mod/profile_photo.php b/mod/profile_photo.php
index 0091d0585..9dc71f256 100644
--- a/mod/profile_photo.php
+++ b/mod/profile_photo.php
@@ -274,58 +274,6 @@ function profile_photo_post(&$a) {
}
-function send_profile_photo_activity($channel,$photo,$profile) {
-
- // for now only create activities for the default profile
-
- if(! intval($profile['is_default']))
- return;
-
- $arr = array();
- $arr['item_thread_top'] = 1;
- $arr['item_origin'] = 1;
- $arr['item_wall'] = 1;
- $arr['obj_type'] = ACTIVITY_OBJ_PHOTO;
- $arr['verb'] = ACTIVITY_UPDATE;
-
- $arr['object'] = json_encode(array(
- 'type' => $arr['obj_type'],
- 'id' => z_root() . '/photo/profile/l/' . $channel['channel_id'],
- 'link' => array('rel' => 'photo', 'type' => $photo['type'], 'href' => z_root() . '/photo/profile/l/' . $channel['channel_id'])
- ));
-
- if(stripos($profile['gender'],t('female')) !== false)
- $t = t('%1$s updated her %2$s');
- elseif(stripos($profile['gender'],t('male')) !== false)
- $t = t('%1$s updated his %2$s');
- else
- $t = t('%1$s updated their %2$s');
-
- $ptext = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo['resource_id'] . ']' . t('profile photo') . '[/zrl]';
-
- $ltext = '[zrl=' . z_root() . '/profile/' . $channel['channel_address'] . ']' . '[zmg=150x150]' . z_root() . '/photo/' . $photo['resource_id'] . '-4[/zmg][/zrl]';
-
- $arr['body'] = sprintf($t,$channel['channel_name'],$ptext) . "\n\n" . $ltext;
-
- $acl = new AccessList($channel);
- $x = $acl->get();
- $arr['allow_cid'] = $x['allow_cid'];
-
- $arr['allow_gid'] = $x['allow_gid'];
- $arr['deny_cid'] = $x['deny_cid'];
- $arr['deny_gid'] = $x['deny_gid'];
-
- $arr['uid'] = $channel['channel_id'];
- $arr['aid'] = $channel['channel_account_id'];
-
- $arr['owner_xchan'] = $channel['channel_hash'];
- $arr['author_xchan'] = $channel['channel_hash'];
-
- post_activity_item($arr);
-
-
-}
-
/* @brief Generate content of profile-photo view
*
@@ -452,6 +400,8 @@ function profile_photo_content(&$a) {
'$title' => t('Upload Profile Photo'),
'$submit' => t('Upload'),
'$profiles' => $profiles,
+ '$single' => ((count($profiles) == 1) ? true : false),
+ '$profile0' => $profiles[0],
'$form_security_token' => get_form_security_token("profile_photo"),
// FIXME - yuk
'$select' => sprintf('%s %s', t('or'), ($newuser) ? '<a href="' . $a->get_baseurl() . '">' . t('skip this step') . '</a>' : '<a href="'. $a->get_baseurl() . '/photos/' . $a->channel['channel_address'] . '">' . t('select a photo from your photo albums') . '</a>')
diff --git a/mod/register.php b/mod/register.php
index 49b010cc7..77ddfb4b1 100644
--- a/mod/register.php
+++ b/mod/register.php
@@ -145,6 +145,7 @@ function register_post(&$a) {
authenticate_success($result['account'],true,false,true);
$new_channel = false;
+ $next_page = 'new_channel';
if(get_config('system','auto_channel_create') || UNO) {
$new_channel = auto_channel_create($result['account']['account_id']);
@@ -156,10 +157,10 @@ function register_post(&$a) {
else
$new_channel = false;
}
- if(! $new_channel) {
- if(! strlen($next_page = get_config('system','workflow_register_next')))
- $next_page = 'new_channel';
+ $x = get_config('system','workflow_register_next');
+ if($x) {
+ $next_page = $x;
$_SESSION['workflow'] = true;
}
@@ -243,9 +244,10 @@ function register_content(&$a) {
'$label_invite' => t('Please enter your invitation code'),
'$invite_code' => $invite_code,
'$auto_create' => $auto_create,
- '$label_name' => t('Channel Name'),
+ '$label_name' => t('Name'),
'$help_name' => t('Enter your name'),
'$label_nick' => t('Choose a short nickname'),
+ '$nick_hub' => '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl')),
'$nick_desc' => t('Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others.'),
'$name' => $name,
'$help_role' => t('Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you'),
diff --git a/mod/settings.php b/mod/settings.php
index 3ca2d1218..ea9c73435 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -155,6 +155,7 @@ function settings_post(&$a) {
$theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : $a->channel['channel_theme']);
$mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme'])) : '');
+ $preload_images = ((x($_POST,'preload_images')) ? intval($_POST['preload_images']) : 0);
$user_scalable = ((x($_POST,'user_scalable')) ? intval($_POST['user_scalable']) : 0);
$nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0);
$title_tosource = ((x($_POST,'title_tosource')) ? intval($_POST['title_tosource']) : 0);
@@ -184,6 +185,7 @@ function settings_post(&$a) {
set_pconfig(local_channel(),'system','mobile_theme',$mobile_theme);
}
+ set_pconfig(local_channel(),'system','preload_images',$preload_images);
set_pconfig(local_channel(),'system','user_scalable',$user_scalable);
set_pconfig(local_channel(),'system','update_interval', $browser_update);
set_pconfig(local_channel(),'system','itemspage', $itemspage);
@@ -803,6 +805,9 @@ function settings_content(&$a) {
$theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
$mobile_theme_selected = (!x($_SESSION,'mobile_theme')? $default_mobile_theme : $_SESSION['mobile_theme']);
+ $preload_images = get_pconfig(local_channel(),'system','preload_images');
+ $preload_images = (($preload_images===false)? '0': $preload_images); // default if not set: 0
+
$user_scalable = get_pconfig(local_channel(),'system','user_scalable');
$user_scalable = (($user_scalable===false)? '1': $user_scalable); // default if not set: 1
@@ -836,7 +841,8 @@ function settings_content(&$a) {
'$uid' => local_channel(),
'$theme' => (($themes) ? array('theme', t('Display Theme:'), $theme_selected, '', $themes, 'preview') : false),
- '$mobile_theme' => (($mobile_themes) ? array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, '') : false),
+ '$mobile_theme' => (($mobile_themes) ? array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, '') : false),
+ '$preload_images' => array('preload_images', t("Preload images before rendering the page"), $preload_images, t("The subjective page load time will be longer but the page will be ready when displayed"), $yes_no),
'$user_scalable' => array('user_scalable', t("Enable user zoom on mobile devices"), $user_scalable, '', $yes_no),
'$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
'$itemspage' => array('itemspage', t("Maximum number of conversations to load at any time:"), $itemspage, t('Maximum of 100 items')),
diff --git a/version.inc b/version.inc
index 86359b809..830cdcca5 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2016-02-12.1307H
+2016-02-17.1312H
diff --git a/view/css/mod_register.css b/view/css/mod_register.css
index 890a3f76b..68ccac131 100644
--- a/view/css/mod_register.css
+++ b/view/css/mod_register.css
@@ -79,3 +79,8 @@ h2 {
clear: both;
margin-bottom: 20px;
}
+
+.descriptive-paragraph {
+ margin-left: 20px;
+ margin-bottom: 25px;
+}
diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po
index 1abd1de1e..b54509cb1 100644
--- a/view/es-es/hmessages.po
+++ b/view/es-es/hmessages.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-02-05 00:03-0800\n"
-"PO-Revision-Date: 2016-02-06 06:35+0000\n"
+"POT-Creation-Date: 2016-02-12 00:03-0800\n"
+"PO-Revision-Date: 2016-02-13 15:08+0000\n"
"Last-Translator: Manuel Jiménez Friaza <mjfriaza@openmailbox.org>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n"
"MIME-Version: 1.0\n"
@@ -34,8 +34,8 @@ msgid "Welcome %s. Remote authentication successful."
msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."
#: ../../include/Contact.php:101 ../../include/conversation.php:961
-#: ../../include/identity.php:954 ../../include/widgets.php:137
-#: ../../include/widgets.php:175 ../../mod/directory.php:321
+#: ../../include/identity.php:954 ../../include/widgets.php:147
+#: ../../include/widgets.php:185 ../../mod/directory.php:321
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
msgstr "Conectar"
@@ -61,319 +61,10 @@ msgstr "No se ha encontrado el nombre de usuario en el fichero importado."
msgid "Unable to create a unique channel address. Import failed."
msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
msgid "Import completed."
msgstr "Importación completada."
-#: ../../include/ItemObject.php:89 ../../include/conversation.php:664
-msgid "Private Message"
-msgstr "Mensaje Privado"
-
-#: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240
-#: ../../include/apps.php:259 ../../include/menu.php:108
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../mod/blocks.php:153 ../../mod/connections.php:286
-#: ../../mod/connections.php:306 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
-#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
-#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
-#: ../../mod/webpages.php:181
-msgid "Edit"
-msgstr "Editar"
-
-#: ../../include/ItemObject.php:120 ../../include/RedDAV/RedBrowser.php:241
-#: ../../include/apps.php:260 ../../include/conversation.php:657
-#: ../../mod/blocks.php:155 ../../mod/connections.php:259
-#: ../../mod/connedit.php:560 ../../mod/editblock.php:181
-#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
-#: ../../mod/group.php:173 ../../mod/photos.php:1132 ../../mod/admin.php:993
-#: ../../mod/admin.php:1152 ../../mod/settings.php:649 ../../mod/thing.php:257
-#: ../../mod/webpages.php:183
-msgid "Delete"
-msgstr "Eliminar"
-
-#: ../../include/ItemObject.php:126 ../../include/conversation.php:656
-msgid "Select"
-msgstr "Seleccionar"
-
-#: ../../include/ItemObject.php:130
-msgid "Save to Folder"
-msgstr "Guardar en carpeta"
-
-#: ../../include/ItemObject.php:151
-msgid "I will attend"
-msgstr "Participaré"
-
-#: ../../include/ItemObject.php:151
-msgid "I will not attend"
-msgstr "No participaré"
-
-#: ../../include/ItemObject.php:151
-msgid "I might attend"
-msgstr "Quizá participe"
-
-#: ../../include/ItemObject.php:161
-msgid "I agree"
-msgstr "Estoy de acuerdo"
-
-#: ../../include/ItemObject.php:161
-msgid "I disagree"
-msgstr "No estoy de acuerdo"
-
-#: ../../include/ItemObject.php:161
-msgid "I abstain"
-msgstr "Me abstengo"
-
-#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187
-#: ../../include/conversation.php:1707 ../../mod/photos.php:1085
-#: ../../mod/photos.php:1097
-msgid "View all"
-msgstr "Ver todo"
-
-#: ../../include/ItemObject.php:179 ../../include/conversation.php:1731
-#: ../../include/taxonomy.php:415 ../../include/identity.php:1264
-#: ../../mod/photos.php:1089
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Me gusta"
-msgstr[1] "Me gusta"
-
-#: ../../include/ItemObject.php:184 ../../include/conversation.php:1734
-#: ../../mod/photos.php:1094
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "No me gusta"
-msgstr[1] "No me gusta"
-
-#: ../../include/ItemObject.php:212
-msgid "Add Star"
-msgstr "Destacar añadiendo una estrella"
-
-#: ../../include/ItemObject.php:213
-msgid "Remove Star"
-msgstr "Eliminar estrella"
-
-#: ../../include/ItemObject.php:214
-msgid "Toggle Star Status"
-msgstr "Activar o desactivar el estado de entrada preferida"
-
-#: ../../include/ItemObject.php:218
-msgid "starred"
-msgstr "preferidas"
-
-#: ../../include/ItemObject.php:227 ../../include/conversation.php:671
-msgid "Message signature validated"
-msgstr "Firma de mensaje validada"
-
-#: ../../include/ItemObject.php:228 ../../include/conversation.php:672
-msgid "Message signature incorrect"
-msgstr "Firma de mensaje incorrecta"
-
-#: ../../include/ItemObject.php:236
-msgid "Add Tag"
-msgstr "Añadir etiqueta"
-
-#: ../../include/ItemObject.php:254 ../../mod/photos.php:1029
-msgid "I like this (toggle)"
-msgstr "Me gusta (cambiar)"
-
-#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328
-msgid "like"
-msgstr "me gusta"
-
-#: ../../include/ItemObject.php:255 ../../mod/photos.php:1030
-msgid "I don't like this (toggle)"
-msgstr "No me gusta esto (cambiar)"
-
-#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329
-msgid "dislike"
-msgstr "no me gusta"
-
-#: ../../include/ItemObject.php:259
-msgid "Share This"
-msgstr "Compartir esto"
-
-#: ../../include/ItemObject.php:259
-msgid "share"
-msgstr "compartir"
-
-#: ../../include/ItemObject.php:268
-msgid "Delivery Report"
-msgstr "Informe de transmisión"
-
-#: ../../include/ItemObject.php:286
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d comentario"
-msgstr[1] "%d comentarios"
-
-#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Ver el perfil de %s - %s"
-
-#: ../../include/ItemObject.php:319
-msgid "to"
-msgstr "a"
-
-#: ../../include/ItemObject.php:320
-msgid "via"
-msgstr "mediante"
-
-#: ../../include/ItemObject.php:321
-msgid "Wall-to-Wall"
-msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")"
-
-#: ../../include/ItemObject.php:322
-msgid "via Wall-To-Wall:"
-msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"
-
-#: ../../include/ItemObject.php:334 ../../include/conversation.php:719
-#, php-format
-msgid "from %s"
-msgstr "desde %s"
-
-#: ../../include/ItemObject.php:337 ../../include/conversation.php:722
-#, php-format
-msgid "last edited: %s"
-msgstr "último cambio: %s"
-
-#: ../../include/ItemObject.php:338 ../../include/conversation.php:723
-#, php-format
-msgid "Expires: %s"
-msgstr "Caduca: %s"
-
-#: ../../include/ItemObject.php:362
-msgid "Save Bookmarks"
-msgstr "Guardar en Marcadores"
-
-#: ../../include/ItemObject.php:363
-msgid "Add to Calendar"
-msgstr "Añadir al calendario"
-
-#: ../../include/ItemObject.php:372
-msgid "Mark all seen"
-msgstr "Marcar todo como visto"
-
-#: ../../include/ItemObject.php:378 ../../mod/photos.php:1215
-msgctxt "noun"
-msgid "Likes"
-msgstr "Me gusta"
-
-#: ../../include/ItemObject.php:379 ../../mod/photos.php:1216
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "No me gusta"
-
-#: ../../include/ItemObject.php:384 ../../include/acl_selectors.php:252
-#: ../../mod/photos.php:1221
-msgid "Close"
-msgstr "Cerrar"
-
-#: ../../include/ItemObject.php:389 ../../include/conversation.php:740
-#: ../../include/conversation.php:1237 ../../mod/editblock.php:150
-#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
-#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1032
-msgid "Please wait"
-msgstr "Espere por favor"
-
-#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] mostrar todo:"
-
-#: ../../include/ItemObject.php:700 ../../mod/photos.php:1048
-#: ../../mod/photos.php:1166
-msgid "This is you"
-msgstr "Este es usted"
-
-#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1050 ../../mod/photos.php:1168
-msgid "Comment"
-msgstr "Comentar"
-
-#: ../../include/ItemObject.php:703 ../../include/js_strings.php:22
-#: ../../include/widgets.php:679 ../../include/widgets.php:691
-#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
-#: ../../mod/connect.php:93 ../../mod/connedit.php:720
-#: ../../mod/events.php:461 ../../mod/events.php:658
-#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/group.php:81 ../../mod/import.php:527
-#: ../../mod/import_items.php:116 ../../mod/invite.php:142
-#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
-#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
-#: ../../mod/photos.php:637 ../../mod/photos.php:1011
-#: ../../mod/photos.php:1051 ../../mod/photos.php:1169 ../../mod/admin.php:457
-#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
-#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
-#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
-#: ../../mod/rate.php:168 ../../mod/settings.php:586
-#: ../../mod/settings.php:698 ../../mod/settings.php:726
-#: ../../mod/settings.php:749 ../../mod/settings.php:834
-#: ../../mod/settings.php:1024 ../../mod/setup.php:332 ../../mod/setup.php:372
-#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
-#: ../../mod/thing.php:358 ../../mod/xchan.php:11
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Enviar"
-
-#: ../../include/ItemObject.php:704 ../../include/conversation.php:1209
-#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
-#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
-msgid "Bold"
-msgstr "Negrita"
-
-#: ../../include/ItemObject.php:705 ../../include/conversation.php:1210
-#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
-#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
-msgid "Italic"
-msgstr "Itálico "
-
-#: ../../include/ItemObject.php:706 ../../include/conversation.php:1211
-#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
-#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
-msgid "Underline"
-msgstr "Subrayar"
-
-#: ../../include/ItemObject.php:707 ../../include/conversation.php:1212
-#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
-#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
-msgid "Quote"
-msgstr "Citar"
-
-#: ../../include/ItemObject.php:708 ../../include/conversation.php:1213
-#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
-#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
-msgid "Code"
-msgstr "Código"
-
-#: ../../include/ItemObject.php:709
-msgid "Image"
-msgstr "Imagen"
-
-#: ../../include/ItemObject.php:710
-msgid "Insert Link"
-msgstr "Insertar enlace"
-
-#: ../../include/ItemObject.php:711
-msgid "Video"
-msgstr "Vídeo"
-
-#: ../../include/ItemObject.php:712 ../../include/conversation.php:1179
-#: ../../include/page_widgets.php:40 ../../mod/editblock.php:171
-#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
-#: ../../mod/events.php:458 ../../mod/photos.php:1052
-#: ../../mod/webpages.php:188
-msgid "Preview"
-msgstr "Previsualizar"
-
-#: ../../include/ItemObject.php:715 ../../include/conversation.php:1267
-#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
-msgid "Encrypt text"
-msgstr "Cifrar texto"
-
#: ../../include/RedDAV/RedBrowser.php:107
#: ../../include/RedDAV/RedBrowser.php:239
msgid "parent"
@@ -405,8 +96,8 @@ msgstr "Programar bandeja de salida"
#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360
#: ../../include/apps.php:415 ../../include/conversation.php:1037
-#: ../../include/widgets.php:1387 ../../mod/photos.php:758
-#: ../../mod/photos.php:1201
+#: ../../include/widgets.php:1407 ../../mod/photos.php:766
+#: ../../mod/photos.php:1209
msgid "Unknown"
msgstr "Desconocido"
@@ -433,8 +124,8 @@ msgid "Create"
msgstr "Crear"
#: ../../include/RedDAV/RedBrowser.php:231
-#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1400
-#: ../../mod/photos.php:785 ../../mod/photos.php:1325
+#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1420
+#: ../../mod/photos.php:793 ../../mod/photos.php:1333
#: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353
msgid "Upload"
msgstr "Subir"
@@ -458,6 +149,29 @@ msgstr "Tamaño"
msgid "Last Modified"
msgstr "Última modificación"
+#: ../../include/RedDAV/RedBrowser.php:240 ../../include/apps.php:259
+#: ../../include/menu.php:108 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/ItemObject.php:100
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
+#: ../../mod/webpages.php:181
+msgid "Edit"
+msgstr "Editar"
+
+#: ../../include/RedDAV/RedBrowser.php:241 ../../include/apps.php:260
+#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
+#: ../../mod/blocks.php:155 ../../mod/connections.php:259
+#: ../../mod/connedit.php:560 ../../mod/editblock.php:181
+#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
+#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
+#: ../../mod/admin.php:1152 ../../mod/settings.php:649 ../../mod/thing.php:257
+#: ../../mod/webpages.php:183
+msgid "Delete"
+msgstr "Eliminar"
+
#: ../../include/RedDAV/RedBrowser.php:282
#, php-format
msgid "You are using %1$s of your available file storage."
@@ -574,11 +288,16 @@ msgid "Other networks and post services"
msgstr "Otras redes y servicios de publicación"
#: ../../include/acl_selectors.php:251 ../../mod/chat.php:211
-#: ../../mod/filestorage.php:147 ../../mod/photos.php:631
-#: ../../mod/photos.php:1004 ../../mod/thing.php:309 ../../mod/thing.php:355
+#: ../../mod/filestorage.php:147 ../../mod/photos.php:639
+#: ../../mod/photos.php:1012 ../../mod/thing.php:309 ../../mod/thing.php:355
msgid "Permissions"
msgstr "Permisos"
+#: ../../include/acl_selectors.php:252 ../../include/ItemObject.php:384
+#: ../../mod/photos.php:1229
+msgid "Close"
+msgstr "Cerrar"
+
#: ../../include/activities.php:42
msgid " and "
msgstr "y"
@@ -608,10 +327,10 @@ msgstr "Cronología pública"
#: ../../include/apps.php:128
msgid "Site Admin"
-msgstr "Adminstrador del sitio"
+msgstr "Administrador del sitio"
#: ../../include/apps.php:129 ../../include/conversation.php:1665
-#: ../../include/nav.php:103
+#: ../../include/nav.php:104
msgid "Bookmarks"
msgstr "Marcadores"
@@ -619,36 +338,36 @@ msgstr "Marcadores"
msgid "Address Book"
msgstr "Libreta de direcciones"
-#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1518
+#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1518
msgid "Login"
msgstr "Iniciar sesión"
-#: ../../include/apps.php:132 ../../include/nav.php:200
+#: ../../include/apps.php:132 ../../include/nav.php:203
#: ../../mod/manage.php:162
msgid "Channel Manager"
msgstr "Administración de canales"
-#: ../../include/apps.php:133 ../../include/nav.php:174
+#: ../../include/apps.php:133 ../../include/nav.php:176
msgid "Grid"
msgstr "Red"
-#: ../../include/apps.php:134 ../../include/nav.php:202
-#: ../../include/widgets.php:557 ../../mod/admin.php:1266
+#: ../../include/apps.php:134 ../../include/nav.php:205
+#: ../../include/widgets.php:577 ../../mod/admin.php:1266
#: ../../mod/admin.php:1488
msgid "Settings"
msgstr "Ajustes"
#: ../../include/apps.php:136 ../../include/conversation.php:1675
-#: ../../include/nav.php:107 ../../mod/webpages.php:178
+#: ../../include/nav.php:108 ../../mod/webpages.php:178
msgid "Webpages"
msgstr "Páginas web"
-#: ../../include/apps.php:137 ../../include/nav.php:177
+#: ../../include/apps.php:137 ../../include/nav.php:179
msgid "Channel Home"
msgstr "Mi canal"
-#: ../../include/apps.php:138 ../../include/identity.php:1238
-#: ../../include/identity.php:1355 ../../mod/profperm.php:112
+#: ../../include/apps.php:138 ../../include/identity.php:1242
+#: ../../include/identity.php:1359 ../../mod/profperm.php:112
msgid "Profile"
msgstr "Perfil"
@@ -657,20 +376,20 @@ msgstr "Perfil"
msgid "Photos"
msgstr "Fotos"
-#: ../../include/apps.php:140 ../../include/nav.php:196
+#: ../../include/apps.php:140 ../../include/nav.php:198
msgid "Events"
msgstr "Eventos"
-#: ../../include/apps.php:141 ../../include/nav.php:162
+#: ../../include/apps.php:141 ../../include/nav.php:164
msgid "Directory"
msgstr "Directorio"
-#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:208
+#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:208
#: ../../mod/help.php:213 ../../mod/layouts.php:176
msgid "Help"
msgstr "Ayuda"
-#: ../../include/apps.php:143 ../../include/nav.php:188
+#: ../../include/apps.php:143 ../../include/nav.php:190
msgid "Mail"
msgstr "Correo"
@@ -683,11 +402,11 @@ msgstr "Estado de ánimo"
msgid "Poke"
msgstr "Toques y otras cosas"
-#: ../../include/apps.php:146 ../../include/nav.php:97
+#: ../../include/apps.php:146 ../../include/nav.php:98
msgid "Chat"
msgstr "Chat"
-#: ../../include/apps.php:147 ../../include/nav.php:159
+#: ../../include/apps.php:147 ../../include/nav.php:161
#: ../../include/text.php:885 ../../include/text.php:897
#: ../../mod/connections.php:302 ../../mod/search.php:40
msgid "Search"
@@ -709,7 +428,7 @@ msgstr "Canal aleatorio"
msgid "Invite"
msgstr "Invitar"
-#: ../../include/apps.php:152 ../../include/widgets.php:1273
+#: ../../include/apps.php:152 ../../include/widgets.php:1293
msgid "Features"
msgstr "Funcionalidades"
@@ -746,7 +465,7 @@ msgstr "Comprar"
#: ../../include/attach.php:436 ../../include/attach.php:888
#: ../../include/attach.php:959 ../../include/attach.php:1111
#: ../../include/chat.php:133 ../../include/photos.php:29
-#: ../../include/items.php:4430 ../../index.php:186 ../../index.php:374
+#: ../../include/items.php:4437 ../../index.php:189 ../../index.php:377
#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22
#: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76
@@ -775,7 +494,7 @@ msgstr "Comprar"
#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
#: ../../mod/service_limits.php:7 ../../mod/settings.php:568
-#: ../../mod/setup.php:228 ../../mod/sharedwithme.php:7
+#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
@@ -1028,18 +747,18 @@ msgstr "Invitar a amigos"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Ejemplo avanzado: nombre=juan y país=españa"
-#: ../../include/contact_widgets.php:57 ../../include/features.php:93
-#: ../../include/widgets.php:304
+#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Carpetas guardadas"
#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98
-#: ../../include/widgets.php:307
+#: ../../include/widgets.php:317
msgid "Everything"
msgstr "Todo"
#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:282
-#: ../../include/widgets.php:36
+#: ../../include/widgets.php:46
msgid "Categories"
msgstr "Categorías"
@@ -1110,46 +829,62 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s está %2$s"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1066
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Likes"
msgstr "Me gusta"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1066
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Dislikes"
msgstr "No me gusta"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1067
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Agree"
msgstr "De acuerdo"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1067
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Disagree"
msgstr "En desacuerdo"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1067
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Abstain"
msgstr "Abstención"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1068
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Attending"
msgstr "Participaré"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1068
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Not attending"
msgstr "No participaré"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1068
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Might attend"
msgstr "Quizá participe"
+#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
+msgid "Select"
+msgstr "Seleccionar"
+
+#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
+msgid "Private Message"
+msgstr "Mensaje Privado"
+
+#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
+msgid "Message signature validated"
+msgstr "Firma de mensaje validada"
+
+#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
+msgid "Message signature incorrect"
+msgstr "Firma de mensaje incorrecta"
+
#: ../../include/conversation.php:691
#, php-format
msgid "View %s's profile @ %s"
@@ -1163,15 +898,37 @@ msgstr "Categorías:"
msgid "Filed under:"
msgstr "Archivado bajo:"
+#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
+#, php-format
+msgid "from %s"
+msgstr "desde %s"
+
+#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
+#, php-format
+msgid "last edited: %s"
+msgstr "último cambio: %s"
+
+#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
+#, php-format
+msgid "Expires: %s"
+msgstr "Caduca: %s"
+
#: ../../include/conversation.php:738
msgid "View in context"
msgstr "Mostrar en su contexto"
+#: ../../include/conversation.php:740 ../../include/conversation.php:1237
+#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
+msgid "Please wait"
+msgstr "Espere por favor"
+
#: ../../include/conversation.php:850
msgid "remove"
msgstr "eliminar"
-#: ../../include/conversation.php:854 ../../include/nav.php:241
+#: ../../include/conversation.php:854 ../../include/nav.php:244
msgid "Loading..."
msgstr "Cargando..."
@@ -1291,8 +1048,16 @@ msgstr "¿Donde está ahora?"
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Caduca YYYY-MM-DD HH:MM"
+#: ../../include/conversation.php:1179 ../../include/page_widgets.php:40
+#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:458 ../../mod/photos.php:1060
+#: ../../mod/webpages.php:188
+msgid "Preview"
+msgstr "Previsualizar"
+
#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
-#: ../../mod/layouts.php:184 ../../mod/photos.php:1031
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
#: ../../mod/webpages.php:182
msgid "Share"
msgstr "Compartir"
@@ -1305,6 +1070,36 @@ msgstr "Nombre de enlace de página"
msgid "Post as"
msgstr "Publicar como"
+#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
+msgid "Bold"
+msgstr "Negrita"
+
+#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
+msgid "Italic"
+msgstr "Itálico "
+
+#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
+msgid "Underline"
+msgstr "Subrayar"
+
+#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
+msgid "Quote"
+msgstr "Citar"
+
+#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
+msgid "Code"
+msgstr "Código"
+
#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
#: ../../mod/editwebpage.php:182
@@ -1418,6 +1213,11 @@ msgstr "Configurar fecha de caducidad"
msgid "Set publish date"
msgstr "Establecer la fecha de publicación"
+#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
+#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
+msgid "Encrypt text"
+msgstr "Cifrar texto"
+
#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
msgid "OK"
msgstr "OK"
@@ -1453,7 +1253,7 @@ msgstr "Publicaciones recientes"
msgid "Sort by Post Date"
msgstr "Ordenar por fecha de publicación"
-#: ../../include/conversation.php:1536 ../../include/widgets.php:95
+#: ../../include/conversation.php:1536 ../../include/widgets.php:105
msgid "Personal"
msgstr "Personales"
@@ -1522,6 +1322,29 @@ msgstr "Marcadores guardados"
msgid "Manage Webpages"
msgstr "Administrar páginas web"
+#: ../../include/conversation.php:1707 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
+#: ../../mod/photos.php:1105
+msgid "View all"
+msgstr "Ver todo"
+
+#: ../../include/conversation.php:1731 ../../include/taxonomy.php:415
+#: ../../include/identity.php:1268 ../../include/ItemObject.php:179
+#: ../../mod/photos.php:1097
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Me gusta"
+msgstr[1] "Me gusta"
+
+#: ../../include/conversation.php:1734 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1102
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "No me gusta"
+msgstr[1] "No me gusta"
+
#: ../../include/conversation.php:1737
msgctxt "noun"
msgid "Attending"
@@ -1577,7 +1400,7 @@ msgstr "AAAA-MM-DD o MM-DD"
msgid "Required"
msgstr "Obligatorio"
-#: ../../include/datetime.php:263 ../../boot.php:2348
+#: ../../include/datetime.php:263 ../../boot.php:2349
msgid "never"
msgstr "nunca"
@@ -1677,7 +1500,7 @@ msgstr "Modo seguro"
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../mod/photos.php:626 ../../mod/admin.php:425 ../../mod/removeme.php:60
+#: ../../mod/photos.php:634 ../../mod/admin.php:425 ../../mod/removeme.php:60
#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
msgid "No"
@@ -1689,7 +1512,7 @@ msgstr "No"
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../mod/photos.php:626 ../../mod/admin.php:427 ../../mod/removeme.php:60
+#: ../../mod/photos.php:634 ../../mod/admin.php:427 ../../mod/removeme.php:60
#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
msgid "Yes"
@@ -1778,7 +1601,7 @@ msgstr "Todos los canales"
msgid "edit"
msgstr "editar"
-#: ../../include/group.php:295 ../../include/features.php:79
+#: ../../include/group.php:295 ../../include/features.php:82
msgid "Privacy Groups"
msgstr "Grupos de canales"
@@ -1794,7 +1617,7 @@ msgstr "Añadir un grupo de canales"
msgid "Channels not in any privacy group"
msgstr "Sin canales en ningún grupo"
-#: ../../include/group.php:300 ../../include/widgets.php:275
+#: ../../include/group.php:300 ../../include/widgets.php:285
msgid "add"
msgstr "añadir"
@@ -1807,7 +1630,7 @@ msgstr "No se ha podido crear un canal con un identificador que ya existe en est
msgid "Channel clone failed. Import failed."
msgstr "La clonación del canal no ha salido bien. La importación ha fallado."
-#: ../../include/import.php:80 ../../mod/import.php:139
+#: ../../include/import.php:80 ../../mod/import.php:148
msgid "Cloned channel not found. Import failed."
msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado."
@@ -1815,6 +1638,15 @@ msgstr "No se ha podido importar el canal porque el canal clonado no se ha encon
msgid "Delete this item?"
msgstr "¿Borrar este elemento?"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:702
+#: ../../mod/photos.php:1058 ../../mod/photos.php:1176
+msgid "Comment"
+msgstr "Comentar"
+
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:413
+msgid "[+] show all"
+msgstr "[+] mostrar todo:"
+
#: ../../include/js_strings.php:8
msgid "[-] show less"
msgstr "[-] mostrar menos"
@@ -1872,6 +1704,31 @@ msgstr "Valoración"
msgid "Describe (optional)"
msgstr "Describir (opcional)"
+#: ../../include/js_strings.php:22 ../../include/widgets.php:699
+#: ../../include/widgets.php:711 ../../include/ItemObject.php:703
+#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
+#: ../../mod/connect.php:93 ../../mod/connedit.php:720
+#: ../../mod/events.php:461 ../../mod/events.php:658
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/import_items.php:116 ../../mod/invite.php:142
+#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
+#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
+#: ../../mod/photos.php:645 ../../mod/photos.php:1019
+#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
+#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
+#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
+#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
+#: ../../mod/rate.php:168 ../../mod/settings.php:586
+#: ../../mod/settings.php:698 ../../mod/settings.php:726
+#: ../../mod/settings.php:749 ../../mod/settings.php:834
+#: ../../mod/settings.php:1025 ../../mod/setup.php:333 ../../mod/setup.php:374
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
+#: ../../mod/thing.php:358 ../../mod/xchan.php:11
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Enviar"
+
#: ../../include/js_strings.php:23
msgid "Please enter a link URL"
msgstr "Por favor, introduzca una dirección de enlace"
@@ -2153,15 +2010,15 @@ msgstr "No ha sido posible determinar el remitente. "
msgid "Stored post could not be verified."
msgstr "No se han podido verificar las publicaciones guardadas."
-#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1517
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1517
msgid "Logout"
msgstr "Finalizar sesión"
-#: ../../include/nav.php:82 ../../include/nav.php:114
+#: ../../include/nav.php:82 ../../include/nav.php:115
msgid "End this session"
msgstr "Finalizar esta sesión"
-#: ../../include/nav.php:85 ../../include/nav.php:145
+#: ../../include/nav.php:85 ../../include/nav.php:146
msgid "Home"
msgstr "Inicio"
@@ -2197,162 +2054,162 @@ msgstr "Sus fotos"
msgid "Your files"
msgstr "Sus ficheros"
-#: ../../include/nav.php:97
+#: ../../include/nav.php:98
msgid "Your chatrooms"
msgstr "Sus salas de chat"
-#: ../../include/nav.php:103
+#: ../../include/nav.php:104
msgid "Your bookmarks"
msgstr "Sus marcadores"
-#: ../../include/nav.php:107
+#: ../../include/nav.php:108
msgid "Your webpages"
msgstr "Sus páginas web"
-#: ../../include/nav.php:111
+#: ../../include/nav.php:112
msgid "Sign in"
msgstr "Acceder"
-#: ../../include/nav.php:128
+#: ../../include/nav.php:129
#, php-format
msgid "%s - click to logout"
msgstr "%s - pulsar para finalizar sesión"
-#: ../../include/nav.php:131
+#: ../../include/nav.php:132
msgid "Remote authentication"
msgstr "Acceder desde su servidor"
-#: ../../include/nav.php:131
+#: ../../include/nav.php:132
msgid "Click to authenticate to your home hub"
msgstr "Pulsar para identificarse en su servidor de inicio"
-#: ../../include/nav.php:145
+#: ../../include/nav.php:146
msgid "Home Page"
msgstr "Página de inicio"
-#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1500
+#: ../../include/nav.php:150 ../../mod/register.php:264 ../../boot.php:1500
msgid "Register"
msgstr "Registrarse"
-#: ../../include/nav.php:149
+#: ../../include/nav.php:150
msgid "Create an account"
msgstr "Crear una cuenta"
-#: ../../include/nav.php:154
+#: ../../include/nav.php:155
msgid "Help and documentation"
msgstr "Ayuda y documentación"
-#: ../../include/nav.php:157 ../../include/widgets.php:92
+#: ../../include/nav.php:159 ../../include/widgets.php:102
#: ../../mod/apps.php:36
msgid "Apps"
msgstr "Aplicaciones"
-#: ../../include/nav.php:157
+#: ../../include/nav.php:159
msgid "Applications, utilities, links, games"
msgstr "Aplicaciones, utilidades, enlaces, juegos"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:161
msgid "Search site @name, #tag, ?docs, content"
msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
msgid "Channel Directory"
msgstr "Directorio de canales"
-#: ../../include/nav.php:174
+#: ../../include/nav.php:176
msgid "Your grid"
msgstr "Mi red"
-#: ../../include/nav.php:175
+#: ../../include/nav.php:177
msgid "Mark all grid notifications seen"
msgstr "Marcar todas las notificaciones de la red como vistas"
-#: ../../include/nav.php:177
+#: ../../include/nav.php:179
msgid "Channel home"
msgstr "Mi canal"
-#: ../../include/nav.php:178
+#: ../../include/nav.php:180
msgid "Mark all channel notifications seen"
msgstr "Marcar todas las notificaciones del canal como leídas"
-#: ../../include/nav.php:181 ../../include/text.php:815
+#: ../../include/nav.php:183 ../../include/text.php:815
#: ../../mod/connections.php:298
msgid "Connections"
msgstr "Conexiones"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:186
msgid "Notices"
msgstr "Avisos"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:186
msgid "Notifications"
msgstr "Notificaciones"
-#: ../../include/nav.php:185
+#: ../../include/nav.php:187
msgid "See all notifications"
msgstr "Ver todas las notificaciones"
-#: ../../include/nav.php:186 ../../mod/notifications.php:99
+#: ../../include/nav.php:188 ../../mod/notifications.php:99
msgid "Mark all system notifications seen"
msgstr "Marcar todas las notificaciones de sistema como leídas"
-#: ../../include/nav.php:188
+#: ../../include/nav.php:190
msgid "Private mail"
msgstr "Correo privado"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "See all private messages"
msgstr "Ver todas los mensajes privados"
-#: ../../include/nav.php:190
+#: ../../include/nav.php:192
msgid "Mark all private messages seen"
msgstr "Marcar todos los mensajes privados como leídos"
-#: ../../include/nav.php:191 ../../include/widgets.php:578
+#: ../../include/nav.php:193 ../../include/widgets.php:598
msgid "Inbox"
msgstr "Bandeja de entrada"
-#: ../../include/nav.php:192 ../../include/widgets.php:583
+#: ../../include/nav.php:194 ../../include/widgets.php:603
msgid "Outbox"
msgstr "Bandeja de salida"
-#: ../../include/nav.php:193 ../../include/widgets.php:588
+#: ../../include/nav.php:195 ../../include/widgets.php:608
msgid "New Message"
msgstr "Nuevo mensaje"
-#: ../../include/nav.php:196
+#: ../../include/nav.php:198
msgid "Event Calendar"
msgstr "Calendario de eventos"
-#: ../../include/nav.php:197
+#: ../../include/nav.php:199
msgid "See all events"
msgstr "Ver todos los eventos"
-#: ../../include/nav.php:198
+#: ../../include/nav.php:200
msgid "Mark all events seen"
msgstr "Marcar todos los eventos como leidos"
-#: ../../include/nav.php:200
+#: ../../include/nav.php:203
msgid "Manage Your Channels"
msgstr "Gestionar sus canales"
-#: ../../include/nav.php:202
+#: ../../include/nav.php:205
msgid "Account/Channel Settings"
msgstr "Ajustes de cuenta/canales"
-#: ../../include/nav.php:210 ../../include/widgets.php:1300
+#: ../../include/nav.php:213 ../../include/widgets.php:1320
msgid "Admin"
msgstr "Administrador"
-#: ../../include/nav.php:210
+#: ../../include/nav.php:213
msgid "Site Setup and Configuration"
msgstr "Ajustes y configuración del sitio"
-#: ../../include/nav.php:246
+#: ../../include/nav.php:249
msgid "@name, #tag, ?doc, content"
msgstr "@nombre, #etiqueta, ?ayuda, contenido"
-#: ../../include/nav.php:247
+#: ../../include/nav.php:250
msgid "Please wait..."
msgstr "Espere por favor…"
@@ -2422,7 +2279,7 @@ msgid "Edited"
msgstr "Editado"
#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94
-#: ../../mod/photos.php:703 ../../mod/profile_photo.php:147
+#: ../../mod/photos.php:711 ../../mod/profile_photo.php:147
#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379
msgid "Profile Photos"
msgstr "Fotos del perfil"
@@ -2614,7 +2471,7 @@ msgstr "Con adicción al sexo"
#: ../../include/profile_selectors.php:80 ../../include/identity.php:390
#: ../../include/identity.php:391 ../../include/identity.php:398
-#: ../../include/widgets.php:430 ../../mod/connedit.php:582
+#: ../../include/widgets.php:451 ../../mod/connedit.php:582
#: ../../mod/settings.php:338 ../../mod/settings.php:342
#: ../../mod/settings.php:343 ../../mod/settings.php:346
#: ../../mod/settings.php:357
@@ -2741,10 +2598,18 @@ msgstr "quiero"
msgid "wants"
msgstr "quiere"
+#: ../../include/taxonomy.php:328 ../../include/ItemObject.php:254
+msgid "like"
+msgstr "me gusta"
+
#: ../../include/taxonomy.php:328
msgid "likes"
msgstr "gusta de"
+#: ../../include/taxonomy.php:329 ../../include/ItemObject.php:255
+msgid "dislike"
+msgstr "no me gusta"
+
#: ../../include/taxonomy.php:329
msgid "dislikes"
msgstr "no gusta de"
@@ -2762,7 +2627,7 @@ msgstr "No ha sido posible de verificar la firma del canal"
msgid "Unable to verify site signature for %s"
msgstr "No ha sido posible de verificar la firma del sitio para %s"
-#: ../../include/zot.php:3585
+#: ../../include/zot.php:3591
msgid "invalid target signature"
msgstr "La firma recibida no es válida"
@@ -2866,7 +2731,7 @@ msgid "View all %s connections"
msgstr "Ver todas las %s conexiones"
#: ../../include/text.php:886 ../../include/text.php:898
-#: ../../include/widgets.php:192 ../../mod/filer.php:49
+#: ../../include/widgets.php:202 ../../mod/filer.php:49
#: ../../mod/admin.php:1666 ../../mod/admin.php:1686 ../../mod/rbmark.php:28
#: ../../mod/rbmark.php:100
msgid "Save"
@@ -3072,76 +2937,76 @@ msgstr "Formato gráfico"
msgid "Pages"
msgstr "Páginas"
-#: ../../include/items.php:423 ../../index.php:373 ../../mod/dreport.php:6
+#: ../../include/items.php:423 ../../index.php:376 ../../mod/dreport.php:6
#: ../../mod/dreport.php:45 ../../mod/group.php:68
#: ../../mod/import_items.php:108 ../../mod/like.php:280
#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
msgid "Permission denied"
msgstr "Permiso denegado"
-#: ../../include/items.php:1130 ../../include/items.php:1176
+#: ../../include/items.php:1137 ../../include/items.php:1183
msgid "(Unknown)"
msgstr "(Desconocido)"
-#: ../../include/items.php:1373
+#: ../../include/items.php:1380
msgid "Visible to anybody on the internet."
msgstr "Visible para cualquiera en internet."
-#: ../../include/items.php:1375
+#: ../../include/items.php:1382
msgid "Visible to you only."
msgstr "Visible sólo para usted."
-#: ../../include/items.php:1377
+#: ../../include/items.php:1384
msgid "Visible to anybody in this network."
msgstr "Visible para cualquiera en esta red."
-#: ../../include/items.php:1379
+#: ../../include/items.php:1386
msgid "Visible to anybody authenticated."
msgstr "Visible para cualquiera que haya sido autenticado."
-#: ../../include/items.php:1381
+#: ../../include/items.php:1388
#, php-format
msgid "Visible to anybody on %s."
msgstr "Visible para cualquiera en %s."
-#: ../../include/items.php:1383
+#: ../../include/items.php:1390
msgid "Visible to all connections."
msgstr "Visible para todas las conexiones."
-#: ../../include/items.php:1385
+#: ../../include/items.php:1392
msgid "Visible to approved connections."
msgstr "Visible para las conexiones permitidas."
-#: ../../include/items.php:1387
+#: ../../include/items.php:1394
msgid "Visible to specific connections."
msgstr "Visible para conexiones específicas."
-#: ../../include/items.php:4351 ../../mod/display.php:36
+#: ../../include/items.php:4358 ../../mod/display.php:36
#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
#: ../../mod/viewsrc.php:20
msgid "Item not found."
msgstr "Elemento no encontrado."
-#: ../../include/items.php:4863 ../../mod/group.php:38 ../../mod/group.php:137
+#: ../../include/items.php:4870 ../../mod/group.php:38 ../../mod/group.php:137
msgid "Privacy group not found."
msgstr "Grupo de canales no encontrado."
-#: ../../include/items.php:4879
+#: ../../include/items.php:4886
msgid "Privacy group is empty."
msgstr "El grupo de canales está vacío."
-#: ../../include/items.php:4886
+#: ../../include/items.php:4893
#, php-format
msgid "Privacy group: %s"
msgstr "Grupo de canales: %s"
-#: ../../include/items.php:4896 ../../mod/connedit.php:692
+#: ../../include/items.php:4903 ../../mod/connedit.php:692
#, php-format
msgid "Connection: %s"
msgstr "Conexión: %s"
-#: ../../include/items.php:4898
+#: ../../include/items.php:4905
msgid "Connection not found."
msgstr "Conexión no encontrada"
@@ -3324,277 +3189,277 @@ msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia."
msgid "[Hubzilla:Notify]"
msgstr "[Hubzilla:Aviso]"
-#: ../../include/features.php:45
+#: ../../include/features.php:48
msgid "General Features"
msgstr "Funcionalidades básicas"
-#: ../../include/features.php:47
+#: ../../include/features.php:50
msgid "Content Expiration"
msgstr "Caducidad del contenido"
-#: ../../include/features.php:47
+#: ../../include/features.php:50
msgid "Remove posts/comments and/or private messages at a future time"
msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"
-#: ../../include/features.php:48
+#: ../../include/features.php:51
msgid "Multiple Profiles"
msgstr "Múltiples perfiles"
-#: ../../include/features.php:48
+#: ../../include/features.php:51
msgid "Ability to create multiple profiles"
msgstr "Capacidad de crear múltiples perfiles"
-#: ../../include/features.php:49
+#: ../../include/features.php:52
msgid "Advanced Profiles"
msgstr "Perfiles avanzados"
-#: ../../include/features.php:49
+#: ../../include/features.php:52
msgid "Additional profile sections and selections"
msgstr "Secciones y selecciones de perfil adicionales"
-#: ../../include/features.php:50
+#: ../../include/features.php:53
msgid "Profile Import/Export"
msgstr "Importar/Exportar perfil"
-#: ../../include/features.php:50
+#: ../../include/features.php:53
msgid "Save and load profile details across sites/channels"
msgstr "Guardar y cargar detalles del perfil a través de sitios/canales"
-#: ../../include/features.php:51
+#: ../../include/features.php:54
msgid "Web Pages"
msgstr "Páginas web"
-#: ../../include/features.php:51
+#: ../../include/features.php:54
msgid "Provide managed web pages on your channel"
msgstr "Proveer páginas web gestionadas en su canal"
-#: ../../include/features.php:52
+#: ../../include/features.php:55
msgid "Hide Rating"
msgstr "Ocultar las valoraciones"
-#: ../../include/features.php:52
+#: ../../include/features.php:55
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."
-#: ../../include/features.php:53
+#: ../../include/features.php:56
msgid "Private Notes"
msgstr "Notas privadas"
-#: ../../include/features.php:53
+#: ../../include/features.php:56
msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"
-#: ../../include/features.php:54
+#: ../../include/features.php:57
msgid "Navigation Channel Select"
msgstr "Navegación por el selector de canales"
-#: ../../include/features.php:54
+#: ../../include/features.php:57
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Cambiar de canales directamente desde el menú de navegación desplegable"
-#: ../../include/features.php:55
+#: ../../include/features.php:58
msgid "Photo Location"
msgstr "Ubicación de las fotos"
-#: ../../include/features.php:55
+#: ../../include/features.php:58
msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."
-#: ../../include/features.php:57
+#: ../../include/features.php:60
msgid "Expert Mode"
msgstr "Modo de experto"
-#: ../../include/features.php:57
+#: ../../include/features.php:60
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"
-#: ../../include/features.php:58
+#: ../../include/features.php:61
msgid "Premium Channel"
msgstr "Canal premium"
-#: ../../include/features.php:58
+#: ../../include/features.php:61
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"
-#: ../../include/features.php:63
+#: ../../include/features.php:66
msgid "Post Composition Features"
msgstr "Opciones para la redacción de entradas"
-#: ../../include/features.php:65
+#: ../../include/features.php:68
msgid "Use Markdown"
msgstr "Usar Markdown"
-#: ../../include/features.php:65
+#: ../../include/features.php:68
msgid "Allow use of \"Markdown\" to format posts"
msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones"
-#: ../../include/features.php:66
+#: ../../include/features.php:69
msgid "Large Photos"
msgstr "Fotos de gran tamaño"
-#: ../../include/features.php:66
+#: ../../include/features.php:69
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"
-#: ../../include/features.php:67 ../../include/widgets.php:549
+#: ../../include/features.php:70 ../../include/widgets.php:569
#: ../../mod/sources.php:88
msgid "Channel Sources"
msgstr "Orígenes de los contenidos del canal"
-#: ../../include/features.php:67
+#: ../../include/features.php:70
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importar automáticamente contenido de otros canales o \"feeds\""
-#: ../../include/features.php:68
+#: ../../include/features.php:71
msgid "Even More Encryption"
msgstr "Más cifrado todavía"
-#: ../../include/features.php:68
+#: ../../include/features.php:71
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."
-#: ../../include/features.php:69
+#: ../../include/features.php:72
msgid "Enable Voting Tools"
msgstr "Permitir entradas con votación"
-#: ../../include/features.php:69
+#: ../../include/features.php:72
msgid "Provide a class of post which others can vote on"
msgstr "Proveer una clase de publicación en la que otros puedan votar"
-#: ../../include/features.php:70
+#: ../../include/features.php:73
msgid "Delayed Posting"
msgstr "Publicación aplazada"
-#: ../../include/features.php:70
+#: ../../include/features.php:73
msgid "Allow posts to be published at a later date"
msgstr "Permitir mensajes que se publicarán en una fecha posterior"
-#: ../../include/features.php:71
+#: ../../include/features.php:74
msgid "Suppress Duplicate Posts/Comments"
msgstr "Prevenir entradas o comentarios duplicados"
-#: ../../include/features.php:71
+#: ../../include/features.php:74
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."
-#: ../../include/features.php:77
+#: ../../include/features.php:80
msgid "Network and Stream Filtering"
msgstr "Filtrado del contenido"
-#: ../../include/features.php:78
+#: ../../include/features.php:81
msgid "Search by Date"
msgstr "Buscar por fecha"
-#: ../../include/features.php:78
+#: ../../include/features.php:81
msgid "Ability to select posts by date ranges"
msgstr "Capacidad de seleccionar entradas por rango de fechas"
-#: ../../include/features.php:79
+#: ../../include/features.php:82
msgid "Enable management and selection of privacy groups"
msgstr "Activar la gestión y selección de grupos de canales"
-#: ../../include/features.php:80 ../../include/widgets.php:274
+#: ../../include/features.php:83 ../../include/widgets.php:284
msgid "Saved Searches"
msgstr "Búsquedas guardadas"
-#: ../../include/features.php:80
+#: ../../include/features.php:83
msgid "Save search terms for re-use"
msgstr "Guardar términos de búsqueda para su reutilización"
-#: ../../include/features.php:81
+#: ../../include/features.php:84
msgid "Network Personal Tab"
msgstr "Actividad personal"
-#: ../../include/features.php:81
+#: ../../include/features.php:84
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."
-#: ../../include/features.php:82
+#: ../../include/features.php:85
msgid "Network New Tab"
msgstr "Contenido nuevo"
-#: ../../include/features.php:82
+#: ../../include/features.php:85
msgid "Enable tab to display all new Network activity"
msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo"
-#: ../../include/features.php:83
+#: ../../include/features.php:86
msgid "Affinity Tool"
msgstr "Herramienta de afinidad"
-#: ../../include/features.php:83
+#: ../../include/features.php:86
msgid "Filter stream activity by depth of relationships"
msgstr "Filtrar el contenido según la profundidad de las relaciones"
-#: ../../include/features.php:84
+#: ../../include/features.php:87
msgid "Connection Filtering"
msgstr "Filtrado de conexiones"
-#: ../../include/features.php:84
+#: ../../include/features.php:87
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"
-#: ../../include/features.php:85
+#: ../../include/features.php:88
msgid "Suggest Channels"
msgstr "Sugerir canales"
-#: ../../include/features.php:85
+#: ../../include/features.php:88
msgid "Show channel suggestions"
msgstr "Mostrar sugerencias de canales"
-#: ../../include/features.php:90
+#: ../../include/features.php:93
msgid "Post/Comment Tools"
msgstr "Gestión de entradas y comentarios"
-#: ../../include/features.php:91
+#: ../../include/features.php:94
msgid "Community Tagging"
msgstr "Etiquetas de la comunidad"
-#: ../../include/features.php:91
+#: ../../include/features.php:94
msgid "Ability to tag existing posts"
msgstr "Capacidad de etiquetar entradas existentes"
-#: ../../include/features.php:92
+#: ../../include/features.php:95
msgid "Post Categories"
msgstr "Categorías de entradas"
-#: ../../include/features.php:92
+#: ../../include/features.php:95
msgid "Add categories to your posts"
msgstr "Añadir categorías a sus publicaciones"
-#: ../../include/features.php:93
+#: ../../include/features.php:96
msgid "Ability to file posts under folders"
msgstr "Capacidad de archivar entradas en carpetas"
-#: ../../include/features.php:94
+#: ../../include/features.php:97
msgid "Dislike Posts"
msgstr "Desagrado de publicaciones"
-#: ../../include/features.php:94
+#: ../../include/features.php:97
msgid "Ability to dislike posts/comments"
msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"
-#: ../../include/features.php:95
+#: ../../include/features.php:98
msgid "Star Posts"
msgstr "Entradas destacadas"
-#: ../../include/features.php:95
+#: ../../include/features.php:98
msgid "Ability to mark special posts with a star indicator"
msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella"
-#: ../../include/features.php:96
+#: ../../include/features.php:99
msgid "Tag Cloud"
msgstr "Nube de etiquetas"
-#: ../../include/features.php:96
+#: ../../include/features.php:99
msgid "Provide a personal tag cloud on your channel page"
msgstr "Proveer nube de etiquetas personal en su página de canal"
@@ -3676,15 +3541,15 @@ msgstr "visible para cualquiera"
msgid "Edit visibility"
msgstr "Editar visibilidad"
-#: ../../include/identity.php:1009 ../../include/identity.php:1248
+#: ../../include/identity.php:1009 ../../include/identity.php:1252
msgid "Gender:"
msgstr "Género:"
-#: ../../include/identity.php:1010 ../../include/identity.php:1292
+#: ../../include/identity.php:1010 ../../include/identity.php:1296
msgid "Status:"
msgstr "Estado:"
-#: ../../include/identity.php:1011 ../../include/identity.php:1303
+#: ../../include/identity.php:1011 ../../include/identity.php:1307
msgid "Homepage:"
msgstr "Página personal:"
@@ -3692,147 +3557,147 @@ msgstr "Página personal:"
msgid "Online Now"
msgstr "Ahora en línea"
-#: ../../include/identity.php:1095 ../../include/identity.php:1173
+#: ../../include/identity.php:1099 ../../include/identity.php:1177
#: ../../mod/ping.php:318
msgid "g A l F d"
msgstr "g A l d F"
-#: ../../include/identity.php:1096 ../../include/identity.php:1174
+#: ../../include/identity.php:1100 ../../include/identity.php:1178
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:1141 ../../include/identity.php:1213
+#: ../../include/identity.php:1145 ../../include/identity.php:1217
#: ../../mod/ping.php:341
msgid "[today]"
msgstr "[hoy]"
-#: ../../include/identity.php:1152
+#: ../../include/identity.php:1156
msgid "Birthday Reminders"
msgstr "Recordatorios de cumpleaños"
-#: ../../include/identity.php:1153
+#: ../../include/identity.php:1157
msgid "Birthdays this week:"
msgstr "Cumpleaños de esta semana:"
-#: ../../include/identity.php:1206
+#: ../../include/identity.php:1210
msgid "[No description]"
msgstr "[Sin descripción]"
-#: ../../include/identity.php:1224
+#: ../../include/identity.php:1228
msgid "Event Reminders"
msgstr "Recordatorios de eventos"
-#: ../../include/identity.php:1225
+#: ../../include/identity.php:1229
msgid "Events this week:"
msgstr "Eventos de esta semana:"
-#: ../../include/identity.php:1246 ../../mod/settings.php:1030
+#: ../../include/identity.php:1250 ../../mod/settings.php:1031
msgid "Full Name:"
msgstr "Nombre completo:"
-#: ../../include/identity.php:1253
+#: ../../include/identity.php:1257
msgid "Like this channel"
msgstr "Me gusta este canal"
-#: ../../include/identity.php:1277
+#: ../../include/identity.php:1281
msgid "j F, Y"
msgstr "j F Y"
-#: ../../include/identity.php:1278
+#: ../../include/identity.php:1282
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:1285
+#: ../../include/identity.php:1289
msgid "Birthday:"
msgstr "Cumpleaños:"
-#: ../../include/identity.php:1289 ../../mod/directory.php:302
+#: ../../include/identity.php:1293 ../../mod/directory.php:302
msgid "Age:"
msgstr "Edad:"
-#: ../../include/identity.php:1298
+#: ../../include/identity.php:1302
#, php-format
msgid "for %1$d %2$s"
msgstr "por %1$d %2$s"
-#: ../../include/identity.php:1301 ../../mod/profiles.php:699
+#: ../../include/identity.php:1305 ../../mod/profiles.php:699
msgid "Sexual Preference:"
msgstr "Orientación sexual:"
-#: ../../include/identity.php:1305 ../../mod/directory.php:318
+#: ../../include/identity.php:1309 ../../mod/directory.php:318
#: ../../mod/profiles.php:701
msgid "Hometown:"
msgstr "Ciudad de origen:"
-#: ../../include/identity.php:1307
+#: ../../include/identity.php:1311
msgid "Tags:"
msgstr "Etiquetas:"
-#: ../../include/identity.php:1309 ../../mod/profiles.php:702
+#: ../../include/identity.php:1313 ../../mod/profiles.php:702
msgid "Political Views:"
msgstr "Posición política:"
-#: ../../include/identity.php:1311
+#: ../../include/identity.php:1315
msgid "Religion:"
msgstr "Religión:"
-#: ../../include/identity.php:1313 ../../mod/directory.php:320
+#: ../../include/identity.php:1317 ../../mod/directory.php:320
msgid "About:"
msgstr "Sobre mí:"
-#: ../../include/identity.php:1315
+#: ../../include/identity.php:1319
msgid "Hobbies/Interests:"
msgstr "Aficciones/Intereses:"
-#: ../../include/identity.php:1317 ../../mod/profiles.php:705
+#: ../../include/identity.php:1321 ../../mod/profiles.php:705
msgid "Likes:"
msgstr "Me gusta:"
-#: ../../include/identity.php:1319 ../../mod/profiles.php:706
+#: ../../include/identity.php:1323 ../../mod/profiles.php:706
msgid "Dislikes:"
msgstr "No me gusta:"
-#: ../../include/identity.php:1321
+#: ../../include/identity.php:1325
msgid "Contact information and Social Networks:"
msgstr "Información de contacto y redes sociales:"
-#: ../../include/identity.php:1323
+#: ../../include/identity.php:1327
msgid "My other channels:"
msgstr "Mis otros canales:"
-#: ../../include/identity.php:1325
+#: ../../include/identity.php:1329
msgid "Musical interests:"
msgstr "Intereses musicales:"
-#: ../../include/identity.php:1327
+#: ../../include/identity.php:1331
msgid "Books, literature:"
msgstr "Libros, literatura:"
-#: ../../include/identity.php:1329
+#: ../../include/identity.php:1333
msgid "Television:"
msgstr "Televisión:"
-#: ../../include/identity.php:1331
+#: ../../include/identity.php:1335
msgid "Film/dance/culture/entertainment:"
msgstr "Cine/danza/cultura/entretenimiento:"
-#: ../../include/identity.php:1333
+#: ../../include/identity.php:1337
msgid "Love/Romance:"
msgstr "Vida sentimental/amorosa:"
-#: ../../include/identity.php:1335
+#: ../../include/identity.php:1339
msgid "Work/employment:"
msgstr "Trabajo:"
-#: ../../include/identity.php:1337
+#: ../../include/identity.php:1341
msgid "School/education:"
msgstr "Estudios:"
-#: ../../include/identity.php:1357
+#: ../../include/identity.php:1361
msgid "Like this thing"
msgstr "Me gusta esto"
-#: ../../include/identity.php:1765 ../../mod/cover_photo.php:236
+#: ../../include/identity.php:1769 ../../mod/cover_photo.php:236
msgid "cover photo"
msgstr "Imagen de portada del perfil"
@@ -3967,305 +3832,440 @@ msgstr "Repositorio de grupo"
msgid "Custom/Expert Mode"
msgstr "Modo personalizado/experto"
-#: ../../include/widgets.php:93
+#: ../../include/widgets.php:103
msgid "System"
msgstr "Sistema"
-#: ../../include/widgets.php:96
+#: ../../include/widgets.php:106
msgid "Create Personal App"
msgstr "Crear una aplicación personal"
-#: ../../include/widgets.php:97
+#: ../../include/widgets.php:107
msgid "Edit Personal App"
msgstr "Editar una aplicación personal"
-#: ../../include/widgets.php:139 ../../mod/suggest.php:54
+#: ../../include/widgets.php:149 ../../mod/suggest.php:54
msgid "Ignore/Hide"
msgstr "Ignorar/Ocultar"
-#: ../../include/widgets.php:144
+#: ../../include/widgets.php:154
msgid "Suggestions"
msgstr "Sugerencias"
-#: ../../include/widgets.php:145
+#: ../../include/widgets.php:155
msgid "See more..."
msgstr "Ver más..."
-#: ../../include/widgets.php:166
+#: ../../include/widgets.php:176
#, php-format
msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas."
-#: ../../include/widgets.php:172
+#: ../../include/widgets.php:182
msgid "Add New Connection"
msgstr "Añadir nueva conexión"
-#: ../../include/widgets.php:173
+#: ../../include/widgets.php:183
msgid "Enter channel address"
msgstr "Dirección del canal"
-#: ../../include/widgets.php:174
+#: ../../include/widgets.php:184
msgid "Examples: bob@example.com, https://example.com/barbara"
msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"
-#: ../../include/widgets.php:190
+#: ../../include/widgets.php:200
msgid "Notes"
msgstr "Notas"
-#: ../../include/widgets.php:266
+#: ../../include/widgets.php:276
msgid "Remove term"
msgstr "Eliminar término"
-#: ../../include/widgets.php:349
+#: ../../include/widgets.php:359
msgid "Archives"
msgstr "Hemeroteca"
-#: ../../include/widgets.php:428 ../../mod/connedit.php:580
+#: ../../include/widgets.php:449 ../../mod/connedit.php:580
msgid "Me"
msgstr "Yo"
-#: ../../include/widgets.php:429 ../../mod/connedit.php:581
+#: ../../include/widgets.php:450 ../../mod/connedit.php:581
msgid "Family"
msgstr "Familia"
-#: ../../include/widgets.php:431 ../../mod/connedit.php:583
+#: ../../include/widgets.php:452 ../../mod/connedit.php:583
msgid "Acquaintances"
msgstr "Conocidos/as"
-#: ../../include/widgets.php:432 ../../mod/connections.php:88
+#: ../../include/widgets.php:453 ../../mod/connections.php:88
#: ../../mod/connections.php:103 ../../mod/connedit.php:584
msgid "All"
msgstr "Todos/as"
-#: ../../include/widgets.php:451
+#: ../../include/widgets.php:472
msgid "Refresh"
msgstr "Recargar"
-#: ../../include/widgets.php:485
+#: ../../include/widgets.php:506
msgid "Account settings"
msgstr "Configuración de la cuenta"
-#: ../../include/widgets.php:491
+#: ../../include/widgets.php:512
msgid "Channel settings"
msgstr "Configuración del canal"
-#: ../../include/widgets.php:500
+#: ../../include/widgets.php:521
msgid "Additional features"
msgstr "Funcionalidades"
-#: ../../include/widgets.php:507
+#: ../../include/widgets.php:528
msgid "Feature/Addon settings"
msgstr "Complementos"
-#: ../../include/widgets.php:513
+#: ../../include/widgets.php:534
msgid "Display settings"
msgstr "Ajustes de visualización"
-#: ../../include/widgets.php:519
+#: ../../include/widgets.php:540
msgid "Connected apps"
msgstr "Aplicaciones conectadas"
-#: ../../include/widgets.php:525
+#: ../../include/widgets.php:546
msgid "Export channel"
msgstr "Exportar canal"
-#: ../../include/widgets.php:533 ../../mod/connedit.php:692
+#: ../../include/widgets.php:553 ../../mod/connedit.php:692
msgid "Connection Default Permissions"
msgstr "Permisos predeterminados de conexión"
-#: ../../include/widgets.php:541
+#: ../../include/widgets.php:561
msgid "Premium Channel Settings"
msgstr "Configuración del canal premium"
-#: ../../include/widgets.php:571
+#: ../../include/widgets.php:591
msgid "Private Mail Menu"
msgstr "Menú de correo privado"
-#: ../../include/widgets.php:573
+#: ../../include/widgets.php:593
msgid "Combined View"
msgstr "Vista combinada"
-#: ../../include/widgets.php:607 ../../include/widgets.php:619
+#: ../../include/widgets.php:627 ../../include/widgets.php:639
msgid "Conversations"
msgstr "Conversaciones"
-#: ../../include/widgets.php:611
+#: ../../include/widgets.php:631
msgid "Received Messages"
msgstr "Mensajes recibidos"
-#: ../../include/widgets.php:615
+#: ../../include/widgets.php:635
msgid "Sent Messages"
msgstr "Enviar mensajes"
-#: ../../include/widgets.php:629
+#: ../../include/widgets.php:649
msgid "No messages."
msgstr "Sin mensajes."
-#: ../../include/widgets.php:647
+#: ../../include/widgets.php:667
msgid "Delete conversation"
msgstr "Eliminar conversación"
-#: ../../include/widgets.php:673
+#: ../../include/widgets.php:693
msgid "Events Menu"
msgstr "Menú de eventos"
-#: ../../include/widgets.php:674
+#: ../../include/widgets.php:694
msgid "Day View"
msgstr "Eventos del día"
-#: ../../include/widgets.php:675
+#: ../../include/widgets.php:695
msgid "Week View"
msgstr "Eventos de la semana"
-#: ../../include/widgets.php:676
+#: ../../include/widgets.php:696
msgid "Month View"
msgstr "Eventos del mes"
-#: ../../include/widgets.php:677 ../../mod/events.php:654
+#: ../../include/widgets.php:697 ../../mod/events.php:654
msgid "Export"
msgstr "Exportar"
-#: ../../include/widgets.php:678 ../../mod/events.php:657
+#: ../../include/widgets.php:698 ../../mod/events.php:657
msgid "Import"
msgstr "Importar"
-#: ../../include/widgets.php:688
+#: ../../include/widgets.php:708
msgid "Events Tools"
msgstr "Gestión de eventos"
-#: ../../include/widgets.php:689
+#: ../../include/widgets.php:709
msgid "Export Calendar"
msgstr "Exportar el calendario"
-#: ../../include/widgets.php:690
+#: ../../include/widgets.php:710
msgid "Import Calendar"
msgstr "Importar un calendario"
-#: ../../include/widgets.php:764
+#: ../../include/widgets.php:784
msgid "Chat Rooms"
msgstr "Salas de chat"
-#: ../../include/widgets.php:784
+#: ../../include/widgets.php:804
msgid "Bookmarked Chatrooms"
msgstr "Salas de chat preferidas"
-#: ../../include/widgets.php:804
+#: ../../include/widgets.php:824
msgid "Suggested Chatrooms"
msgstr "Salas de chat sugeridas"
-#: ../../include/widgets.php:949 ../../include/widgets.php:1039
+#: ../../include/widgets.php:969 ../../include/widgets.php:1059
msgid "photo/image"
msgstr "foto/imagen"
-#: ../../include/widgets.php:1133
+#: ../../include/widgets.php:1153
msgid "Rating Tools"
msgstr "Valoraciones"
-#: ../../include/widgets.php:1137 ../../include/widgets.php:1139
+#: ../../include/widgets.php:1157 ../../include/widgets.php:1159
msgid "Rate Me"
msgstr "Valorar este canal"
-#: ../../include/widgets.php:1142
+#: ../../include/widgets.php:1162
msgid "View Ratings"
msgstr "Mostrar las valoraciones"
-#: ../../include/widgets.php:1153
+#: ../../include/widgets.php:1173
msgid "Public Hubs"
msgstr "Servidores públicos"
-#: ../../include/widgets.php:1201
+#: ../../include/widgets.php:1221
msgid "Forums"
msgstr "Foros"
-#: ../../include/widgets.php:1230
+#: ../../include/widgets.php:1250
msgid "Tasks"
msgstr "Tareas"
-#: ../../include/widgets.php:1239
+#: ../../include/widgets.php:1259
msgid "Documentation"
msgstr "Documentación"
-#: ../../include/widgets.php:1241
+#: ../../include/widgets.php:1261
msgid "Project/Site Information"
msgstr "Información sobre el proyecto o sitio"
-#: ../../include/widgets.php:1242
+#: ../../include/widgets.php:1262
msgid "For Members"
msgstr "Para los usuarios"
-#: ../../include/widgets.php:1243
+#: ../../include/widgets.php:1263
msgid "For Administrators"
msgstr "Para los administradores"
-#: ../../include/widgets.php:1244
+#: ../../include/widgets.php:1264
msgid "For Developers"
msgstr "Para los desarrolladores"
-#: ../../include/widgets.php:1269 ../../mod/admin.php:456
+#: ../../include/widgets.php:1289 ../../mod/admin.php:456
msgid "Site"
msgstr "Sitio"
-#: ../../include/widgets.php:1270
+#: ../../include/widgets.php:1290
msgid "Accounts"
msgstr "Cuentas"
-#: ../../include/widgets.php:1271 ../../mod/admin.php:1149
+#: ../../include/widgets.php:1291 ../../mod/admin.php:1149
msgid "Channels"
msgstr "Canales"
-#: ../../include/widgets.php:1272 ../../mod/admin.php:710
+#: ../../include/widgets.php:1292 ../../mod/admin.php:710
msgid "Security"
msgstr "Seguridad"
-#: ../../include/widgets.php:1274 ../../mod/admin.php:1264
+#: ../../include/widgets.php:1294 ../../mod/admin.php:1264
#: ../../mod/admin.php:1325
msgid "Plugins"
msgstr "Extensiones"
-#: ../../include/widgets.php:1275 ../../mod/admin.php:1486
+#: ../../include/widgets.php:1295 ../../mod/admin.php:1486
#: ../../mod/admin.php:1520
msgid "Themes"
msgstr "Temas"
-#: ../../include/widgets.php:1276
+#: ../../include/widgets.php:1296
msgid "Inspect queue"
msgstr "Examinar la cola"
-#: ../../include/widgets.php:1277
+#: ../../include/widgets.php:1297
msgid "Profile Config"
msgstr "Ajustes del perfil"
-#: ../../include/widgets.php:1278
+#: ../../include/widgets.php:1298
msgid "DB updates"
msgstr "Actualizaciones de la base de datos"
-#: ../../include/widgets.php:1296 ../../include/widgets.php:1302
+#: ../../include/widgets.php:1316 ../../include/widgets.php:1322
#: ../../mod/admin.php:1605
msgid "Logs"
msgstr "Informes"
-#: ../../include/widgets.php:1301
+#: ../../include/widgets.php:1321
msgid "Plugin Features"
msgstr "Extensiones"
-#: ../../include/widgets.php:1303
+#: ../../include/widgets.php:1323
msgid "User registrations waiting for confirmation"
msgstr "Registros de usuarios pendientes de confirmación"
-#: ../../include/widgets.php:1381 ../../mod/photos.php:752
-#: ../../mod/photos.php:1292
+#: ../../include/widgets.php:1401 ../../mod/photos.php:760
+#: ../../mod/photos.php:1300
msgid "View Photo"
msgstr "Ver foto"
-#: ../../include/widgets.php:1398 ../../mod/photos.php:783
+#: ../../include/widgets.php:1418 ../../mod/photos.php:791
msgid "Edit Album"
msgstr "Editar álbum"
-#: ../../index.php:242 ../../mod/help.php:217
+#: ../../include/ItemObject.php:130
+msgid "Save to Folder"
+msgstr "Guardar en carpeta"
+
+#: ../../include/ItemObject.php:151
+msgid "I will attend"
+msgstr "Participaré"
+
+#: ../../include/ItemObject.php:151
+msgid "I will not attend"
+msgstr "No participaré"
+
+#: ../../include/ItemObject.php:151
+msgid "I might attend"
+msgstr "Quizá participe"
+
+#: ../../include/ItemObject.php:161
+msgid "I agree"
+msgstr "Estoy de acuerdo"
+
+#: ../../include/ItemObject.php:161
+msgid "I disagree"
+msgstr "No estoy de acuerdo"
+
+#: ../../include/ItemObject.php:161
+msgid "I abstain"
+msgstr "Me abstengo"
+
+#: ../../include/ItemObject.php:212
+msgid "Add Star"
+msgstr "Destacar añadiendo una estrella"
+
+#: ../../include/ItemObject.php:213
+msgid "Remove Star"
+msgstr "Eliminar estrella"
+
+#: ../../include/ItemObject.php:214
+msgid "Toggle Star Status"
+msgstr "Activar o desactivar el estado de entrada preferida"
+
+#: ../../include/ItemObject.php:218
+msgid "starred"
+msgstr "preferidas"
+
+#: ../../include/ItemObject.php:236
+msgid "Add Tag"
+msgstr "Añadir etiqueta"
+
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:1037
+msgid "I like this (toggle)"
+msgstr "Me gusta (cambiar)"
+
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:1038
+msgid "I don't like this (toggle)"
+msgstr "No me gusta esto (cambiar)"
+
+#: ../../include/ItemObject.php:259
+msgid "Share This"
+msgstr "Compartir esto"
+
+#: ../../include/ItemObject.php:259
+msgid "share"
+msgstr "compartir"
+
+#: ../../include/ItemObject.php:268
+msgid "Delivery Report"
+msgstr "Informe de transmisión"
+
+#: ../../include/ItemObject.php:286
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comentario"
+msgstr[1] "%d comentarios"
+
+#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Ver el perfil de %s - %s"
+
+#: ../../include/ItemObject.php:319
+msgid "to"
+msgstr "a"
+
+#: ../../include/ItemObject.php:320
+msgid "via"
+msgstr "mediante"
+
+#: ../../include/ItemObject.php:321
+msgid "Wall-to-Wall"
+msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")"
+
+#: ../../include/ItemObject.php:322
+msgid "via Wall-To-Wall:"
+msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"
+
+#: ../../include/ItemObject.php:362
+msgid "Save Bookmarks"
+msgstr "Guardar en Marcadores"
+
+#: ../../include/ItemObject.php:363
+msgid "Add to Calendar"
+msgstr "Añadir al calendario"
+
+#: ../../include/ItemObject.php:372
+msgid "Mark all seen"
+msgstr "Marcar todo como visto"
+
+#: ../../include/ItemObject.php:378 ../../mod/photos.php:1223
+msgctxt "noun"
+msgid "Likes"
+msgstr "Me gusta"
+
+#: ../../include/ItemObject.php:379 ../../mod/photos.php:1224
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "No me gusta"
+
+#: ../../include/ItemObject.php:700 ../../mod/photos.php:1056
+#: ../../mod/photos.php:1174
+msgid "This is you"
+msgstr "Este es usted"
+
+#: ../../include/ItemObject.php:709
+msgid "Image"
+msgstr "Imagen"
+
+#: ../../include/ItemObject.php:710
+msgid "Insert Link"
+msgstr "Insertar enlace"
+
+#: ../../include/ItemObject.php:711
+msgid "Video"
+msgstr "Vídeo"
+
+#: ../../index.php:245 ../../mod/help.php:217
msgid "Not Found"
msgstr "No encontrado"
-#: ../../index.php:245 ../../mod/block.php:75 ../../mod/display.php:110
+#: ../../index.php:248 ../../mod/block.php:75 ../../mod/display.php:110
#: ../../mod/help.php:220 ../../mod/page.php:89
msgid "Page not found."
msgstr "Página no encontrada."
@@ -5203,12 +5203,12 @@ msgstr "Editar el evento"
msgid "Create Event"
msgstr "Crear un evento"
-#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:908
+#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:916
msgid "Previous"
msgstr "Anterior"
-#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:917
-#: ../../mod/setup.php:286
+#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:925
+#: ../../mod/setup.php:288
msgid "Next"
msgstr "Siguiente"
@@ -5465,51 +5465,55 @@ msgstr "No se han podido descargar datos de su antiguo servidor"
msgid "Imported file is empty."
msgstr "El fichero importado está vacío."
-#: ../../mod/import.php:116 ../../mod/import_items.php:82
+#: ../../mod/import.php:119 ../../mod/import_items.php:82
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones."
-#: ../../mod/import.php:149
+#: ../../mod/import.php:124
+msgid "Server platform is not compatible. Operation not permitted."
+msgstr "La plataforma del servidor no es compatible. Operación no permitida."
+
+#: ../../mod/import.php:158
msgid "No channel. Import failed."
msgstr "No hay canal. La importación ha fallado"
-#: ../../mod/import.php:509
+#: ../../mod/import.php:518
msgid "You must be logged in to use this feature."
msgstr "Debe estar registrado para poder usar esta funcionalidad."
-#: ../../mod/import.php:514
+#: ../../mod/import.php:523
msgid "Import Channel"
msgstr "Importar canal"
-#: ../../mod/import.php:515
+#: ../../mod/import.php:524
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."
msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."
-#: ../../mod/import.php:516 ../../mod/import_items.php:115
+#: ../../mod/import.php:525 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "Fichero para subir"
-#: ../../mod/import.php:517
+#: ../../mod/import.php:526
msgid "Or provide the old server/hub details"
msgstr "O proporcione los detalles de su antiguo servidor/hub"
-#: ../../mod/import.php:518
+#: ../../mod/import.php:527
msgid "Your old identity address (xyz@example.com)"
msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)"
-#: ../../mod/import.php:519
+#: ../../mod/import.php:528
msgid "Your old login email address"
msgstr "Su antigua dirección de correo electrónico"
-#: ../../mod/import.php:520
+#: ../../mod/import.php:529
msgid "Your old login password"
msgstr "Su antigua contraseña"
-#: ../../mod/import.php:521
+#: ../../mod/import.php:530
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"
@@ -5517,17 +5521,17 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."
-#: ../../mod/import.php:522
+#: ../../mod/import.php:531
msgid "Make this hub my primary location"
msgstr "Convertir este servidor en mi ubicación primaria"
-#: ../../mod/import.php:523
+#: ../../mod/import.php:532
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:533
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -5596,8 +5600,8 @@ msgid "Please join my community on $Projectname."
msgstr "Por favor, únase a mi comunidad en $Projectname."
#: ../../mod/invite.php:134
-msgid "You will need to supply this invitation code: "
-msgstr "Debe proporcionar este código de invitación:"
+msgid "You will need to supply this invitation code:"
+msgstr "Tendrá que suministrar este código de invitación:"
#: ../../mod/invite.php:135
msgid ""
@@ -5609,8 +5613,8 @@ msgid "2. Enter my $Projectname network address into the site searchbar."
msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio."
#: ../../mod/invite.php:138
-msgid "or visit "
-msgstr "o visite "
+msgid "or visit"
+msgstr "o visitar"
#: ../../mod/invite.php:140
msgid "3. Click [Connect]"
@@ -6060,7 +6064,7 @@ msgstr "No es posible añadir el elemento al menú"
msgid "Menu Item Permissions"
msgstr "Permisos del elemento del menú"
-#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1057
+#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1059
msgid "(click to open/close)"
msgstr "(pulsar para abrir o cerrar)"
@@ -6326,7 +6330,7 @@ msgstr "Álbum no encontrado."
msgid "Delete Album"
msgstr "Borrar álbum"
-#: ../../mod/photos.php:171 ../../mod/photos.php:1012
+#: ../../mod/photos.php:171 ../../mod/photos.php:1020
msgid "Delete Photo"
msgstr "Borrar foto"
@@ -6348,121 +6352,121 @@ msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."
msgid "%1$.2f MB photo storage used."
msgstr "%1$.2f MB de almacenamiento de fotos utilizado."
-#: ../../mod/photos.php:620
+#: ../../mod/photos.php:628
msgid "Upload Photos"
msgstr "Subir fotos"
-#: ../../mod/photos.php:624
+#: ../../mod/photos.php:632
msgid "Enter an album name"
msgstr "Introducir un nombre de álbum"
-#: ../../mod/photos.php:625
+#: ../../mod/photos.php:633
msgid "or select an existing album (doubleclick)"
msgstr "o seleccionar uno existente (doble click)"
-#: ../../mod/photos.php:626
+#: ../../mod/photos.php:634
msgid "Create a status post for this upload"
msgstr "Crear un mensaje de estado para esta subida"
-#: ../../mod/photos.php:627
+#: ../../mod/photos.php:635
msgid "Caption (optional):"
msgstr "Título (opcional):"
-#: ../../mod/photos.php:628
+#: ../../mod/photos.php:636
msgid "Description (optional):"
msgstr "Descripción (opcional):"
-#: ../../mod/photos.php:655
+#: ../../mod/photos.php:663
msgid "Album name could not be decoded"
msgstr "El nombre del álbum no ha podido ser descifrado"
-#: ../../mod/photos.php:703 ../../mod/photos.php:1242
-#: ../../mod/photos.php:1259
+#: ../../mod/photos.php:711 ../../mod/photos.php:1250
+#: ../../mod/photos.php:1267
msgid "Contact Photos"
msgstr "Fotos de contacto"
-#: ../../mod/photos.php:726
+#: ../../mod/photos.php:734
msgid "Show Newest First"
msgstr "Mostrar lo más reciente primero"
-#: ../../mod/photos.php:728
+#: ../../mod/photos.php:736
msgid "Show Oldest First"
msgstr "Mostrar lo más antiguo primero"
-#: ../../mod/photos.php:830
+#: ../../mod/photos.php:838
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permiso denegado. El acceso a este elemento puede estar restringido."
-#: ../../mod/photos.php:832
+#: ../../mod/photos.php:840
msgid "Photo not available"
msgstr "Foto no disponible"
-#: ../../mod/photos.php:890
+#: ../../mod/photos.php:898
msgid "Use as profile photo"
msgstr "Usar como foto del perfil"
-#: ../../mod/photos.php:897
+#: ../../mod/photos.php:905
msgid "Private Photo"
msgstr "Foto privada"
-#: ../../mod/photos.php:912
+#: ../../mod/photos.php:920
msgid "View Full Size"
msgstr "Ver tamaño completo"
-#: ../../mod/photos.php:957 ../../mod/tagrm.php:133
+#: ../../mod/photos.php:965 ../../mod/tagrm.php:133
msgid "Remove"
msgstr "Eliminar"
-#: ../../mod/photos.php:991
+#: ../../mod/photos.php:999
msgid "Edit photo"
msgstr "Editar foto"
-#: ../../mod/photos.php:993
+#: ../../mod/photos.php:1001
msgid "Rotate CW (right)"
msgstr "Girar CW (a la derecha)"
-#: ../../mod/photos.php:994
+#: ../../mod/photos.php:1002
msgid "Rotate CCW (left)"
msgstr "Girar CCW (a la izquierda)"
-#: ../../mod/photos.php:997
+#: ../../mod/photos.php:1005
msgid "Enter a new album name"
msgstr "Introducir un nuevo nombre de álbum"
-#: ../../mod/photos.php:998
+#: ../../mod/photos.php:1006
msgid "or select an existing one (doubleclick)"
msgstr "o seleccionar uno (doble click) existente"
-#: ../../mod/photos.php:1001
+#: ../../mod/photos.php:1009
msgid "Caption"
msgstr "Título"
-#: ../../mod/photos.php:1003
+#: ../../mod/photos.php:1011
msgid "Add a Tag"
msgstr "Añadir una etiqueta"
-#: ../../mod/photos.php:1007
+#: ../../mod/photos.php:1015
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"
-#: ../../mod/photos.php:1010
+#: ../../mod/photos.php:1018
msgid "Flag as adult in album view"
msgstr "Marcar como \"solo para adultos\" en el álbum"
-#: ../../mod/photos.php:1202
+#: ../../mod/photos.php:1210
msgid "In This Photo:"
msgstr "En esta foto:"
-#: ../../mod/photos.php:1207
+#: ../../mod/photos.php:1215
msgid "Map"
msgstr "Mapa"
-#: ../../mod/photos.php:1298
+#: ../../mod/photos.php:1306
msgid "View Album"
msgstr "Ver álbum"
-#: ../../mod/photos.php:1309 ../../mod/photos.php:1322
-#: ../../mod/photos.php:1323
+#: ../../mod/photos.php:1317 ../../mod/photos.php:1330
+#: ../../mod/photos.php:1331
msgid "Recent Photos"
msgstr "Fotos recientes"
@@ -6883,7 +6887,7 @@ msgstr "Bloquear páginas públicas"
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently authenticated."
-msgstr "Intentar bloquear el acceso a este sitio da todas las páginas personales o públicas, a menos que estén autenticadas actualmente."
+msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."
#: ../../mod/admin.php:713
msgid "Allow communications only from these sites"
@@ -7933,7 +7937,7 @@ msgid ""
"removed from the network"
msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"
-#: ../../mod/removeme.php:61 ../../mod/settings.php:1113
+#: ../../mod/removeme.php:61 ../../mod/settings.php:1115
msgid "Remove Channel"
msgstr "Eliminar el canal"
@@ -8057,8 +8061,8 @@ msgid "Optional"
msgstr "Opcional"
#: ../../mod/settings.php:603
-msgid "You can't edit this application."
-msgstr "No puede modificar esta aplicación."
+msgid "Application not found."
+msgstr "Aplicación no encontrada."
#: ../../mod/settings.php:646
msgid "Connected Apps"
@@ -8078,7 +8082,7 @@ msgstr "Eliminar autorización"
#: ../../mod/settings.php:665
msgid "No feature settings configured"
-msgstr "No se ha establecido la configuración de características"
+msgstr "No se ha establecido la configuración de los complementos"
#: ../../mod/settings.php:672
msgid "Feature/Addon Settings"
@@ -8100,7 +8104,7 @@ msgstr "Confirme la nueva contraseña:"
msgid "Leave password fields blank unless changing"
msgstr "Dejar en blanco los campos de contraseña a menos que cambie"
-#: ../../mod/settings.php:699 ../../mod/settings.php:1031
+#: ../../mod/settings.php:699 ../../mod/settings.php:1032
msgid "Email Address:"
msgstr "Dirección de correo electrónico:"
@@ -8249,701 +8253,711 @@ msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"
msgid "Your channel address is"
msgstr "Su dirección de canal es"
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1023
msgid "Channel Settings"
msgstr "Ajustes del canal"
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1030
msgid "Basic Settings"
msgstr "Configuración básica"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1033
msgid "Your Timezone:"
msgstr "Su zona horaria:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Default Post Location:"
msgstr "Ubicación de publicación predeterminada:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Geographical location to display on your posts"
msgstr "Ubicación geográfica que debe mostrarse en sus publicaciones"
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1035
msgid "Use Browser Location:"
msgstr "Usar la ubicación del navegador:"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid "Adult Content"
msgstr "Contenido solo para adultos"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1039
msgid "Security and Privacy Settings"
msgstr "Configuración de seguridad y privacidad"
-#: ../../mod/settings.php:1040
+#: ../../mod/settings.php:1042
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar"
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1044
msgid "Hide my online presence"
msgstr "Ocultar mi presencia en línea"
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1044
msgid "Prevents displaying in your profile that you are online"
msgstr "Evitar mostrar en su perfil que está en línea"
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1046
msgid "Simple Privacy Settings:"
msgstr "Configuración de privacidad sencilla:"
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1047
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Muy Público - <em>extremadamente permisivo (debería ser usado con precaución)</em>"
-#: ../../mod/settings.php:1046
+#: ../../mod/settings.php:1048
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Típico - <em>por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)</em>"
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1049
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privado - <em>por defecto, privado, nunca abierto o público</em>"
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1050
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Bloqueado - <em>por defecto, bloqueado/a para cualquiera</em>"
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1052
msgid "Allow others to tag your posts"
msgstr "Permitir a otros etiquetar sus publicaciones"
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1052
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1054
msgid "Advanced Privacy Settings"
msgstr "Configuración de privacidad avanzada"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
msgid "Expire other channel content after this many days"
msgstr "Caducar contenido de otros canales después de este número de días"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
#, php-format
msgid ""
"0 or blank to use the website limit. The website expires after %d days."
msgstr "0 o en blanco para usar el límite del sitio. El sitio web caduca después de %d días."
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1057
msgid "Maximum Friend Requests/Day:"
msgstr "Máximo de solicitudes de amistad por día:"
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1057
msgid "May reduce spam activity"
msgstr "Podría reducir la actividad de spam"
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1058
msgid "Default Post Permissions"
msgstr "Permisos de publicación predeterminados"
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1063
msgid "Channel permissions category:"
msgstr "Categoría de permisos del canal:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1069
msgid "Maximum private messages per day from unknown people:"
msgstr "Máximo de mensajes privados por día de gente desconocida:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1069
msgid "Useful to reduce spamming"
msgstr "Útil para reducir el envío de correo no deseado"
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1072
msgid "Notification Settings"
msgstr "Configuración de notificaciones"
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1073
msgid "By default post a status message when:"
msgstr "Por defecto, enviar un mensaje de estado cuando:"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1074
msgid "accepting a friend request"
msgstr "Acepte una solicitud de amistad"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1075
msgid "joining a forum/community"
msgstr "al unirse a un foro o comunidad"
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1076
msgid "making an <em>interesting</em> profile change"
msgstr "Realice un cambio <em>interesante</em> en su perfil"
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1077
msgid "Send a notification email when:"
msgstr "Enviar una notificación por correo electrónico cuando:"
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1078
msgid "You receive a connection request"
msgstr "Reciba una solicitud de conexión"
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1079
msgid "Your connections are confirmed"
msgstr "Sus conexiones hayan sido confirmadas"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1080
msgid "Someone writes on your profile wall"
msgstr "Alguien escriba en la página de su perfil (\"muro\")"
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1081
msgid "Someone writes a followup comment"
msgstr "Alguien escriba un comentario sobre sus publicaciones"
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1082
msgid "You receive a private message"
msgstr "Reciba un mensaje privado"
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1083
msgid "You receive a friend suggestion"
msgstr "Reciba una sugerencia de amistad"
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1084
msgid "You are tagged in a post"
msgstr "Usted sea etiquetado en una publicación"
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1085
msgid "You are poked/prodded/etc. in a post"
msgstr "Reciba un toque o incitación en una publicación"
-#: ../../mod/settings.php:1086
+#: ../../mod/settings.php:1088
msgid "Show visual notifications including:"
msgstr "Mostrar notificaciones visuales que incluyan:"
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1090
msgid "Unseen grid activity"
msgstr "Nueva actividad en la red"
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1091
msgid "Unseen channel activity"
msgstr "Actividad no vista en el canal"
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1092
msgid "Unseen private messages"
msgstr "Mensajes privados no leídos"
-#: ../../mod/settings.php:1090 ../../mod/settings.php:1095
-#: ../../mod/settings.php:1096 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1092 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1098 ../../mod/settings.php:1099
msgid "Recommended"
msgstr "Recomendado"
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1093
msgid "Upcoming events"
msgstr "Próximos eventos"
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1094
msgid "Events today"
msgstr "Eventos de hoy"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "Upcoming birthdays"
msgstr "Próximos cumpleaños"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "Not available in all themes"
msgstr "No disponible en todos los temas"
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1096
msgid "System (personal) notifications"
msgstr "Notificaciones del sistema (personales)"
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1097
msgid "System info messages"
msgstr "Mensajes de información del sistema"
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1098
msgid "System critical alerts"
msgstr "Alertas críticas del sistema"
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1099
msgid "New connections"
msgstr "Nuevas conexiones"
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1100
msgid "System Registrations"
msgstr "Registros del sistema"
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1101
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Notify me of events this many days in advance"
msgstr "Avisarme de los eventos con algunos días de antelación"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Must be greater than 0"
msgstr "Debe ser mayor que 0"
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1105
msgid "Advanced Account/Page Type Settings"
msgstr "Ajustes avanzados de la cuenta y de los tipos de página"
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1106
msgid "Change the behaviour of this account for special situations"
msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales"
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1109
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "¡Activar el modo de experto (en <a href=\"settings/features\">Ajustes > Funcionalidades</a>) para realizar cambios!."
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1110
msgid "Miscellaneous Settings"
msgstr "Ajustes diversos"
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1111
msgid "Default photo upload folder"
msgstr "Carpeta por defecto de las fotos subidas"
-#: ../../mod/settings.php:1109 ../../mod/settings.php:1110
+#: ../../mod/settings.php:1111 ../../mod/settings.php:1112
msgid "%Y - current year, %m - current month"
msgstr "%Y - año en curso, %m - mes actual"
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1112
msgid "Default file upload folder"
msgstr "Carpeta por defecto de los archivos subidos"
-#: ../../mod/settings.php:1112
+#: ../../mod/settings.php:1114
msgid "Personal menu to display in your channel pages"
msgstr "Menú personal que debe mostrarse en las páginas de su canal"
-#: ../../mod/settings.php:1114
+#: ../../mod/settings.php:1116
msgid "Remove this channel."
msgstr "Eliminar este canal."
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1117
msgid "Firefox Share $Projectname provider"
msgstr "Servicio de compartición de Firefox: proveedor $Projectname"
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1118
msgid "Start calendar week on monday"
msgstr "Comenzar el calendario semanal por el lunes"
-#: ../../mod/setup.php:192
+#: ../../mod/setup.php:194
msgid "$Projectname Server - Setup"
msgstr "Servidor $Projectname - Instalación"
-#: ../../mod/setup.php:196
+#: ../../mod/setup.php:198
msgid "Could not connect to database."
msgstr "No se ha podido conectar a la base de datos."
-#: ../../mod/setup.php:200
+#: ../../mod/setup.php:202
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."
-#: ../../mod/setup.php:207
+#: ../../mod/setup.php:209
msgid "Could not create table."
msgstr "No se puede crear la tabla."
-#: ../../mod/setup.php:212
+#: ../../mod/setup.php:214
msgid "Your site database has been installed."
msgstr "La base de datos del sitio ha sido instalada."
-#: ../../mod/setup.php:216
+#: ../../mod/setup.php:218
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."
-#: ../../mod/setup.php:217 ../../mod/setup.php:285 ../../mod/setup.php:735
+#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:282
+#: ../../mod/setup.php:284
msgid "System check"
msgstr "Verificación del sistema"
-#: ../../mod/setup.php:287
+#: ../../mod/setup.php:289
msgid "Check again"
msgstr "Verificar de nuevo"
-#: ../../mod/setup.php:309
+#: ../../mod/setup.php:311
msgid "Database connection"
msgstr "Conexión a la base de datos"
-#: ../../mod/setup.php:310
+#: ../../mod/setup.php:312
msgid ""
"In order to install $Projectname we need to know how to connect to your "
"database."
msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos."
-#: ../../mod/setup.php:311
+#: ../../mod/setup.php:313
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."
-#: ../../mod/setup.php:312
+#: ../../mod/setup.php:314
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."
-#: ../../mod/setup.php:316
+#: ../../mod/setup.php:318
msgid "Database Server Name"
msgstr "Nombre del servidor de base de datos"
-#: ../../mod/setup.php:316
+#: ../../mod/setup.php:318
msgid "Default is 127.0.0.1"
msgstr "De forma predeterminada es 127.0.0.1"
-#: ../../mod/setup.php:317
+#: ../../mod/setup.php:319
msgid "Database Port"
msgstr "Puerto de la base de datos"
-#: ../../mod/setup.php:317
+#: ../../mod/setup.php:319
msgid "Communication port number - use 0 for default"
msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto"
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:320
msgid "Database Login Name"
msgstr "Usuario de la base de datos"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:321
msgid "Database Login Password"
msgstr "Contraseña de acceso a la base de datos"
-#: ../../mod/setup.php:320
+#: ../../mod/setup.php:322
msgid "Database Name"
msgstr "Nombre de la base de datos"
-#: ../../mod/setup.php:321
+#: ../../mod/setup.php:323
msgid "Database Type"
msgstr "Tipo de base de datos"
-#: ../../mod/setup.php:323 ../../mod/setup.php:364
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
msgid "Site administrator email address"
msgstr "Dirección de correo electrónico del administrador del sitio"
-#: ../../mod/setup.php:323 ../../mod/setup.php:364
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."
-#: ../../mod/setup.php:324 ../../mod/setup.php:366
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
msgid "Website URL"
msgstr "Dirección del sitio web"
-#: ../../mod/setup.php:324 ../../mod/setup.php:366
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
msgid "Please use SSL (https) URL if available."
msgstr "Por favor, use SSL (https) si está disponible."
-#: ../../mod/setup.php:326 ../../mod/setup.php:368
+#: ../../mod/setup.php:327 ../../mod/setup.php:370
msgid "Please select a default timezone for your website"
msgstr "Por favor, selecciones la zona horaria por defecto de su sitio web"
-#: ../../mod/setup.php:353
+#: ../../mod/setup.php:354
msgid "Site settings"
msgstr "Ajustes del sitio"
-#: ../../mod/setup.php:418
+#: ../../mod/setup.php:368
+msgid "Enable $Projectname <strong>advanced</strong> features?"
+msgstr "¿Habilitar las funcionalidades <strong>avanzadas</strong> de $Projectname ?"
+
+#: ../../mod/setup.php:368
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
+msgstr "Algunas funcionalidades avanzadas, si bien bien son útiles, pueden ser más adecuadas para un público técnicamente competente"
+
+#: ../../mod/setup.php:420
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."
-#: ../../mod/setup.php:419
+#: ../../mod/setup.php:421
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 "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron."
-#: ../../mod/setup.php:423
+#: ../../mod/setup.php:425
msgid "PHP executable path"
msgstr "Ruta del ejecutable PHP"
-#: ../../mod/setup.php:423
+#: ../../mod/setup.php:425
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."
-#: ../../mod/setup.php:428
+#: ../../mod/setup.php:430
msgid "Command line PHP"
msgstr "PHP en línea de comandos"
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:439
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."
-#: ../../mod/setup.php:438
+#: ../../mod/setup.php:440
msgid "This is required for message delivery to work."
msgstr "Esto es necesario para que funcione la transmisión de mensajes."
-#: ../../mod/setup.php:441
+#: ../../mod/setup.php:443
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:459
+#: ../../mod/setup.php:461
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to"
" upload is set to %s. You are allowed to upload up to %d files at once."
msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."
-#: ../../mod/setup.php:464
+#: ../../mod/setup.php:466
msgid "You can adjust these settings in the servers php.ini."
msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor."
-#: ../../mod/setup.php:466
+#: ../../mod/setup.php:468
msgid "PHP upload limits"
msgstr "Límites PHP de subida"
-#: ../../mod/setup.php:489
+#: ../../mod/setup.php:491
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."
-#: ../../mod/setup.php:490
+#: ../../mod/setup.php:492
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/setup.php:493
+#: ../../mod/setup.php:495
msgid "Generate encryption keys"
msgstr "Generar claves de cifrado"
-#: ../../mod/setup.php:505
+#: ../../mod/setup.php:507
msgid "libCurl PHP module"
msgstr "módulo libCurl PHP"
-#: ../../mod/setup.php:506
+#: ../../mod/setup.php:508
msgid "GD graphics PHP module"
msgstr "módulo PHP GD graphics"
-#: ../../mod/setup.php:507
+#: ../../mod/setup.php:509
msgid "OpenSSL PHP module"
msgstr "módulo PHP OpenSSL"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:510
msgid "mysqli or postgres PHP module"
msgstr "módulo PHP mysqli o postgres"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:511
msgid "mb_string PHP module"
msgstr "módulo PHP mb_string"
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:512
msgid "mcrypt PHP module"
msgstr "módulo PHP mcrypt "
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:513
msgid "xml PHP module"
msgstr "módulo PHP xml"
-#: ../../mod/setup.php:515 ../../mod/setup.php:517
+#: ../../mod/setup.php:517 ../../mod/setup.php:519
msgid "Apache mod_rewrite module"
msgstr "módulo Apache mod_rewrite "
-#: ../../mod/setup.php:515
+#: ../../mod/setup.php:517
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."
-#: ../../mod/setup.php:521 ../../mod/setup.php:524
+#: ../../mod/setup.php:523 ../../mod/setup.php:526
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:521
+#: ../../mod/setup.php:523
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"
-#: ../../mod/setup.php:529
+#: ../../mod/setup.php:531
msgid "Error: libCURL PHP module required but not installed."
msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado."
-#: ../../mod/setup.php:533
+#: ../../mod/setup.php:535
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado."
-#: ../../mod/setup.php:537
+#: ../../mod/setup.php:539
msgid "Error: openssl PHP module required but not installed."
msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado."
-#: ../../mod/setup.php:541
+#: ../../mod/setup.php:543
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."
-#: ../../mod/setup.php:545
+#: ../../mod/setup.php:547
msgid "Error: mb_string PHP module required but not installed."
msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado."
-#: ../../mod/setup.php:549
+#: ../../mod/setup.php:551
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado."
-#: ../../mod/setup.php:553
+#: ../../mod/setup.php:555
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."
-#: ../../mod/setup.php:571
+#: ../../mod/setup.php:573
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 "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."
-#: ../../mod/setup.php:572
+#: ../../mod/setup.php:574
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 "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos."
-#: ../../mod/setup.php:573
+#: ../../mod/setup.php:575
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 "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."
-#: ../../mod/setup.php:574
+#: ../../mod/setup.php:576
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."
-#: ../../mod/setup.php:577
+#: ../../mod/setup.php:579
msgid ".htconfig.php is writable"
msgstr ".htconfig.php tiene permisos de escritura"
-#: ../../mod/setup.php:591
+#: ../../mod/setup.php:593
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."
-#: ../../mod/setup.php:592
+#: ../../mod/setup.php:594
#, php-format
msgid ""
"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."
msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Hubzilla."
-#: ../../mod/setup.php:593 ../../mod/setup.php:614
+#: ../../mod/setup.php:595 ../../mod/setup.php:616
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)."
-#: ../../mod/setup.php:594
+#: ../../mod/setup.php:596
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene."
-#: ../../mod/setup.php:597
+#: ../../mod/setup.php:599
#, php-format
msgid "%s is writable"
msgstr "%s tiene permisos de escritura"
-#: ../../mod/setup.php:613
+#: ../../mod/setup.php:615
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 guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación."
-#: ../../mod/setup.php:617
+#: ../../mod/setup.php:619
msgid "store is writable"
msgstr "\"store\" tiene permisos de escritura"
-#: ../../mod/setup.php:650
+#: ../../mod/setup.php:652
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."
-#: ../../mod/setup.php:651
+#: ../../mod/setup.php:653
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 su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo."
-#: ../../mod/setup.php:652
+#: ../../mod/setup.php:654
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."
-#: ../../mod/setup.php:653
+#: ../../mod/setup.php:655
msgid ""
"If your certificate is not recognized, 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 su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web."
-#: ../../mod/setup.php:654
+#: ../../mod/setup.php:656
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."
-#: ../../mod/setup.php:655
+#: ../../mod/setup.php:657
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."
-#: ../../mod/setup.php:657
+#: ../../mod/setup.php:659
msgid "SSL certificate validation"
msgstr "validación del certificado SSL"
-#: ../../mod/setup.php:663
+#: ../../mod/setup.php:665
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"
-#: ../../mod/setup.php:666
+#: ../../mod/setup.php:668
msgid "Url rewrite is working"
msgstr "La reescritura de las direcciones funciona correctamente"
-#: ../../mod/setup.php:675
+#: ../../mod/setup.php:677
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 "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor."
-#: ../../mod/setup.php:699
+#: ../../mod/setup.php:701
msgid "Errors encountered creating database tables."
msgstr "Se han encontrado errores al crear las tablas de la base de datos."
-#: ../../mod/setup.php:733
+#: ../../mod/setup.php:735
msgid "<h1>What next</h1>"
msgstr "<h1>Siguiente paso</h1>"
-#: ../../mod/setup.php:734
+#: ../../mod/setup.php:736
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -9507,20 +9521,20 @@ msgstr "¿Olvidó su contraseña?"
msgid "toggle mobile"
msgstr "cambiar a modo móvil"
-#: ../../boot.php:2307
+#: ../../boot.php:2308
msgid "Website SSL certificate is not valid. Please correct."
msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."
-#: ../../boot.php:2310
+#: ../../boot.php:2311
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Error SSL del sitio web en %s"
-#: ../../boot.php:2347
+#: ../../boot.php:2348
msgid "Cron/Scheduled tasks not running."
msgstr "Las tareas del Planificador/Cron no están funcionando."
-#: ../../boot.php:2351
+#: ../../boot.php:2352
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s"
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php
index f692da270..e664dfea9 100644
--- a/view/es-es/hstrings.php
+++ b/view/es-es/hstrings.php
@@ -14,73 +14,6 @@ $a->strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado";
$a->strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado.";
$a->strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación.";
$a->strings["Import completed."] = "Importación completada.";
-$a->strings["Private Message"] = "Mensaje Privado";
-$a->strings["Edit"] = "Editar";
-$a->strings["Delete"] = "Eliminar";
-$a->strings["Select"] = "Seleccionar";
-$a->strings["Save to Folder"] = "Guardar en carpeta";
-$a->strings["I will attend"] = "Participaré";
-$a->strings["I will not attend"] = "No participaré";
-$a->strings["I might attend"] = "Quizá participe";
-$a->strings["I agree"] = "Estoy de acuerdo";
-$a->strings["I disagree"] = "No estoy de acuerdo";
-$a->strings["I abstain"] = "Me abstengo";
-$a->strings["View all"] = "Ver todo";
-$a->strings["__ctx:noun__ Like"] = array(
- 0 => "Me gusta",
- 1 => "Me gusta",
-);
-$a->strings["__ctx:noun__ Dislike"] = array(
- 0 => "No me gusta",
- 1 => "No me gusta",
-);
-$a->strings["Add Star"] = "Destacar añadiendo una estrella";
-$a->strings["Remove Star"] = "Eliminar estrella";
-$a->strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida";
-$a->strings["starred"] = "preferidas";
-$a->strings["Message signature validated"] = "Firma de mensaje validada";
-$a->strings["Message signature incorrect"] = "Firma de mensaje incorrecta";
-$a->strings["Add Tag"] = "Añadir etiqueta";
-$a->strings["I like this (toggle)"] = "Me gusta (cambiar)";
-$a->strings["like"] = "me gusta";
-$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)";
-$a->strings["dislike"] = "no me gusta";
-$a->strings["Share This"] = "Compartir esto";
-$a->strings["share"] = "compartir";
-$a->strings["Delivery Report"] = "Informe de transmisión";
-$a->strings["%d comment"] = array(
- 0 => "%d comentario",
- 1 => "%d comentarios",
-);
-$a->strings["View %s's profile - %s"] = "Ver el perfil de %s - %s";
-$a->strings["to"] = "a";
-$a->strings["via"] = "mediante";
-$a->strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")";
-$a->strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")";
-$a->strings["from %s"] = "desde %s";
-$a->strings["last edited: %s"] = "último cambio: %s";
-$a->strings["Expires: %s"] = "Caduca: %s";
-$a->strings["Save Bookmarks"] = "Guardar en Marcadores";
-$a->strings["Add to Calendar"] = "Añadir al calendario";
-$a->strings["Mark all seen"] = "Marcar todo como visto";
-$a->strings["__ctx:noun__ Likes"] = "Me gusta";
-$a->strings["__ctx:noun__ Dislikes"] = "No me gusta";
-$a->strings["Close"] = "Cerrar";
-$a->strings["Please wait"] = "Espere por favor";
-$a->strings["[+] show all"] = "[+] mostrar todo:";
-$a->strings["This is you"] = "Este es usted";
-$a->strings["Comment"] = "Comentar";
-$a->strings["Submit"] = "Enviar";
-$a->strings["Bold"] = "Negrita";
-$a->strings["Italic"] = "Itálico ";
-$a->strings["Underline"] = "Subrayar";
-$a->strings["Quote"] = "Citar";
-$a->strings["Code"] = "Código";
-$a->strings["Image"] = "Imagen";
-$a->strings["Insert Link"] = "Insertar enlace";
-$a->strings["Video"] = "Vídeo";
-$a->strings["Preview"] = "Previsualizar";
-$a->strings["Encrypt text"] = "Cifrar texto";
$a->strings["parent"] = "padre";
$a->strings["Collection"] = "Colección";
$a->strings["Principal"] = "Principal";
@@ -98,6 +31,8 @@ $a->strings["Name"] = "Nombre";
$a->strings["Type"] = "Tipo";
$a->strings["Size"] = "Tamaño";
$a->strings["Last Modified"] = "Última modificación";
+$a->strings["Edit"] = "Editar";
+$a->strings["Delete"] = "Eliminar";
$a->strings["You are using %1\$s of your available file storage."] = "Está usando %1\$s de su espacio disponible para ficheros.";
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Está usando %1\$s de %2\$s que tiene a su disposición para ficheros. (%3\$s&#37;)";
$a->strings["WARNING:"] = "ATENCIÓN:";
@@ -126,13 +61,14 @@ $a->strings["Show"] = "Mostrar";
$a->strings["Don't show"] = "No mostrar";
$a->strings["Other networks and post services"] = "Otras redes y servicios de publicación";
$a->strings["Permissions"] = "Permisos";
+$a->strings["Close"] = "Cerrar";
$a->strings[" and "] = "y";
$a->strings["public profile"] = "perfil público";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiado %2\$s a &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s cambiando %3\$s.";
$a->strings["Public Timeline"] = "Cronología pública";
-$a->strings["Site Admin"] = "Adminstrador del sitio";
+$a->strings["Site Admin"] = "Administrador del sitio";
$a->strings["Bookmarks"] = "Marcadores";
$a->strings["Address Book"] = "Libreta de direcciones";
$a->strings["Login"] = "Iniciar sesión";
@@ -248,10 +184,18 @@ $a->strings["__ctx:title__ Abstain"] = "Abstención";
$a->strings["__ctx:title__ Attending"] = "Participaré";
$a->strings["__ctx:title__ Not attending"] = "No participaré";
$a->strings["__ctx:title__ Might attend"] = "Quizá participe";
+$a->strings["Select"] = "Seleccionar";
+$a->strings["Private Message"] = "Mensaje Privado";
+$a->strings["Message signature validated"] = "Firma de mensaje validada";
+$a->strings["Message signature incorrect"] = "Firma de mensaje incorrecta";
$a->strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
$a->strings["Categories:"] = "Categorías:";
$a->strings["Filed under:"] = "Archivado bajo:";
+$a->strings["from %s"] = "desde %s";
+$a->strings["last edited: %s"] = "último cambio: %s";
+$a->strings["Expires: %s"] = "Caduca: %s";
$a->strings["View in context"] = "Mostrar en su contexto";
+$a->strings["Please wait"] = "Espere por favor";
$a->strings["remove"] = "eliminar";
$a->strings["Loading..."] = "Cargando...";
$a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
@@ -288,9 +232,15 @@ $a->strings["Tag term:"] = "Término de la etiqueta:";
$a->strings["Save to Folder:"] = "Guardar en carpeta:";
$a->strings["Where are you right now?"] = "¿Donde está ahora?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM";
+$a->strings["Preview"] = "Previsualizar";
$a->strings["Share"] = "Compartir";
$a->strings["Page link name"] = "Nombre de enlace de página";
$a->strings["Post as"] = "Publicar como";
+$a->strings["Bold"] = "Negrita";
+$a->strings["Italic"] = "Itálico ";
+$a->strings["Underline"] = "Subrayar";
+$a->strings["Quote"] = "Citar";
+$a->strings["Code"] = "Código";
$a->strings["Upload photo"] = "Subir foto";
$a->strings["upload photo"] = "subir foto";
$a->strings["Attach file"] = "Adjuntar fichero";
@@ -314,6 +264,7 @@ $a->strings["Public post"] = "Entrada pública";
$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com";
$a->strings["Set expiration date"] = "Configurar fecha de caducidad";
$a->strings["Set publish date"] = "Establecer la fecha de publicación";
+$a->strings["Encrypt text"] = "Cifrar texto";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Cancelar";
$a->strings["Discover"] = "Descubrir";
@@ -339,6 +290,15 @@ $a->strings["Files and Storage"] = "Ficheros y repositorio";
$a->strings["Chatrooms"] = "Salas de chat";
$a->strings["Saved Bookmarks"] = "Marcadores guardados";
$a->strings["Manage Webpages"] = "Administrar páginas web";
+$a->strings["View all"] = "Ver todo";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "Me gusta",
+ 1 => "Me gusta",
+);
+$a->strings["__ctx:noun__ Dislike"] = array(
+ 0 => "No me gusta",
+ 1 => "No me gusta",
+);
$a->strings["__ctx:noun__ Attending"] = array(
0 => "Participaré",
1 => "Participaré",
@@ -419,6 +379,8 @@ $a->strings["Cannot create a duplicate channel identifier on this system. Import
$a->strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado.";
$a->strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado.";
$a->strings["Delete this item?"] = "¿Borrar este elemento?";
+$a->strings["Comment"] = "Comentar";
+$a->strings["[+] show all"] = "[+] mostrar todo:";
$a->strings["[-] show less"] = "[-] mostrar menos";
$a->strings["[+] expand"] = "[+] expandir";
$a->strings["[-] collapse"] = "[-] contraer";
@@ -433,6 +395,7 @@ $a->strings["Nothing new here"] = "Nada nuevo por aquí";
$a->strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)";
$a->strings["Rating"] = "Valoración";
$a->strings["Describe (optional)"] = "Describir (opcional)";
+$a->strings["Submit"] = "Enviar";
$a->strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace";
$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?";
$a->strings["Location"] = "Ubicación";
@@ -638,7 +601,9 @@ $a->strings["have"] = "tener";
$a->strings["has"] = "tiene";
$a->strings["want"] = "quiero";
$a->strings["wants"] = "quiere";
+$a->strings["like"] = "me gusta";
$a->strings["likes"] = "gusta de";
+$a->strings["dislike"] = "no me gusta";
$a->strings["dislikes"] = "no gusta de";
$a->strings["Invalid data packet"] = "Paquete de datos no válido";
$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal";
@@ -998,6 +963,41 @@ $a->strings["Plugin Features"] = "Extensiones";
$a->strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación";
$a->strings["View Photo"] = "Ver foto";
$a->strings["Edit Album"] = "Editar álbum";
+$a->strings["Save to Folder"] = "Guardar en carpeta";
+$a->strings["I will attend"] = "Participaré";
+$a->strings["I will not attend"] = "No participaré";
+$a->strings["I might attend"] = "Quizá participe";
+$a->strings["I agree"] = "Estoy de acuerdo";
+$a->strings["I disagree"] = "No estoy de acuerdo";
+$a->strings["I abstain"] = "Me abstengo";
+$a->strings["Add Star"] = "Destacar añadiendo una estrella";
+$a->strings["Remove Star"] = "Eliminar estrella";
+$a->strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida";
+$a->strings["starred"] = "preferidas";
+$a->strings["Add Tag"] = "Añadir etiqueta";
+$a->strings["I like this (toggle)"] = "Me gusta (cambiar)";
+$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)";
+$a->strings["Share This"] = "Compartir esto";
+$a->strings["share"] = "compartir";
+$a->strings["Delivery Report"] = "Informe de transmisión";
+$a->strings["%d comment"] = array(
+ 0 => "%d comentario",
+ 1 => "%d comentarios",
+);
+$a->strings["View %s's profile - %s"] = "Ver el perfil de %s - %s";
+$a->strings["to"] = "a";
+$a->strings["via"] = "mediante";
+$a->strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")";
+$a->strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")";
+$a->strings["Save Bookmarks"] = "Guardar en Marcadores";
+$a->strings["Add to Calendar"] = "Añadir al calendario";
+$a->strings["Mark all seen"] = "Marcar todo como visto";
+$a->strings["__ctx:noun__ Likes"] = "Me gusta";
+$a->strings["__ctx:noun__ Dislikes"] = "No me gusta";
+$a->strings["This is you"] = "Este es usted";
+$a->strings["Image"] = "Imagen";
+$a->strings["Insert Link"] = "Insertar enlace";
+$a->strings["Video"] = "Vídeo";
$a->strings["Not Found"] = "No encontrado";
$a->strings["Page not found."] = "Página no encontrada.";
$a->strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí";
@@ -1289,6 +1289,7 @@ $a->strings["Nothing to import."] = "No hay nada para importar.";
$a->strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor";
$a->strings["Imported file is empty."] = "El fichero importado está vacío.";
$a->strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones.";
+$a->strings["Server platform is not compatible. Operation not permitted."] = "La plataforma del servidor no es compatible. Operación no permitida.";
$a->strings["No channel. Import failed."] = "No hay canal. La importación ha fallado";
$a->strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad.";
$a->strings["Import Channel"] = "Importar canal";
@@ -1319,10 +1320,10 @@ $a->strings["Send invitations"] = "Enviar invitaciones";
$a->strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:";
$a->strings["Your message:"] = "Su mensaje:";
$a->strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname.";
-$a->strings["You will need to supply this invitation code: "] = "Debe proporcionar este código de invitación:";
+$a->strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio.";
-$a->strings["or visit "] = "o visite ";
+$a->strings["or visit"] = "o visitar";
$a->strings["3. Click [Connect]"] = "3. Pulse [conectar]";
$a->strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original.";
$a->strings["Empty post discarded."] = "La entrada vacía ha sido desechada.";
@@ -1619,7 +1620,7 @@ $a->strings["for channel"] = "por canal";
$a->strings["on server"] = "en el servidor";
$a->strings["Server"] = "Servidor";
$a->strings["Block public"] = "Bloquear páginas públicas";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Intentar bloquear el acceso a este sitio da todas las páginas personales o públicas, a menos que estén autenticadas actualmente.";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado.";
$a->strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios";
$a->strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera";
$a->strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios";
@@ -1907,12 +1908,12 @@ $a->strings["Redirect"] = "Redirigir";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera";
$a->strings["Icon url"] = "Dirección del icono";
$a->strings["Optional"] = "Opcional";
-$a->strings["You can't edit this application."] = "No puede modificar esta aplicación.";
+$a->strings["Application not found."] = "Aplicación no encontrada.";
$a->strings["Connected Apps"] = "Aplicaciones conectadas";
$a->strings["Client key starts with"] = "La \"client key\" empieza por";
$a->strings["No name"] = "Sin nombre";
$a->strings["Remove authorization"] = "Eliminar autorización";
-$a->strings["No feature settings configured"] = "No se ha establecido la configuración de características";
+$a->strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos";
$a->strings["Feature/Addon Settings"] = "Ajustes de los complementos";
$a->strings["Account Settings"] = "Configuración de la cuenta";
$a->strings["Enter New Password:"] = "Introduzca la nueva contraseña:";
@@ -2052,6 +2053,8 @@ $a->strings["Website URL"] = "Dirección del sitio web";
$a->strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible.";
$a->strings["Please select a default timezone for your website"] = "Por favor, selecciones la zona horaria por defecto de su sitio web";
$a->strings["Site settings"] = "Ajustes del sitio";
+$a->strings["Enable \$Projectname <strong>advanced</strong> features?"] = "¿Habilitar las funcionalidades <strong>avanzadas</strong> de \$Projectname ?";
+$a->strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Algunas funcionalidades avanzadas, si bien bien son útiles, pueden ser más adecuadas para un público técnicamente competente";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron.";
$a->strings["PHP executable path"] = "Ruta del ejecutable PHP";
diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po
index c54cd5f2c..217d413e3 100644
--- a/view/fr/hmessages.po
+++ b/view/fr/hmessages.po
@@ -3,1207 +3,699 @@
# This file is distributed under the same license as the Red package.
#
# Translators:
-# Olivier <olivier+transifex@migeot.org>, 2013-2014
-# Webmaster_Hubzilla.ca <webmaster@hubzilla.ca>, 2014
-# Webmaster_Hubzilla.ca <webmaster@hubzilla.ca>, 2014
+# kris1373 <aktosc@gmail.com>, 2015-2016
+# Raymond Monret <raymond.monret@retmesagxo.net>, 2016
msgid ""
msgstr ""
-"Project-Id-Version: Hubzilla\n"
+"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-08-15 00:03-0700\n"
-"PO-Revision-Date: 2014-08-17 00:08+0000\n"
-"Last-Translator: Webmaster_Hubzilla.ca <webmaster@hubzilla.ca>\n"
-"Language-Team: French (http://www.transifex.com/projects/p/red-matrix/language/fr/)\n"
+"POT-Creation-Date: 2016-02-12 00:03-0800\n"
+"PO-Revision-Date: 2016-02-13 10:26+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../../include/dba/dba_driver.php:50
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de trouver les infos DNS du serveur de base de données '%s'"
-
-#: ../../include/photo/photo_driver.php:653 ../../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:659 ../../mod/photos.php:681
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../Zotlabs/Zot/Auth.php:140
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer."
-#: ../../include/diaspora.php:610
+#: ../../Zotlabs/Zot/Auth.php:248 ../../mod/openid.php:72
+#: ../../mod/openid.php:179
#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s et %2$s sont maintenant amis."
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Bienvenue %s. L'authentification distante a fonctionné."
-#: ../../include/diaspora.php:693
-msgid "Sharing notification from Diaspora network"
-msgstr "Partage de vos notifications du réseau Diaspora"
+#: ../../include/Contact.php:101 ../../include/conversation.php:961
+#: ../../include/identity.php:954 ../../include/widgets.php:147
+#: ../../include/widgets.php:185 ../../mod/directory.php:321
+#: ../../mod/match.php:64 ../../mod/suggest.php:52
+msgid "Connect"
+msgstr "Ajouter/Suivre"
-#: ../../include/diaspora.php:1910 ../../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/Contact.php:118
+msgid "New window"
+msgstr "Nouvelle fenêtre"
-#: ../../include/diaspora.php:1910 ../../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/Contact.php:119
+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/diaspora.php:1926 ../../include/conversation.php:164
-#: ../../mod/like.php:331
+#: ../../include/Contact.php:237
#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
-#: ../../include/diaspora.php:2303
-msgid "Attachments:"
-msgstr "Pièces jointes:"
+#: ../../include/Import/import_diaspora.php:17
+msgid "No username found in import file."
+msgstr "Aucun nom d'utilisateur dans le fichier d'import."
-#: ../../include/oembed.php:163
-msgid "Embedded content"
-msgstr "Contenu imbriqué"
+#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "Impossible de créer une adresse de canal unique. Echec de l'import."
-#: ../../include/oembed.php:172
-msgid "Embedding disabled"
-msgstr "Imbrication désactivée"
-
-#: ../../include/notify.php:23
-msgid "created a new post"
-msgstr "a publié"
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
+msgid "Import completed."
+msgstr "L'import est terminé."
-#: ../../include/notify.php:24
-#, php-format
-msgid "commented on %s's post"
-msgstr "a commenté la publication de %s"
+#: ../../include/RedDAV/RedBrowser.php:107
+#: ../../include/RedDAV/RedBrowser.php:239
+msgid "parent"
+msgstr "retour"
-#: ../../include/apps.php:123
-msgid "Site Admin"
-msgstr "Administrateur"
+#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2614
+msgid "Collection"
+msgstr "Groupe de contacts"
-#: ../../include/apps.php:124 ../../include/nav.php:100
-#: ../../include/conversation.php:1543
-msgid "Bookmarks"
-msgstr "Favoris"
+#: ../../include/RedDAV/RedBrowser.php:134
+msgid "Principal"
+msgstr "Principal"
-#: ../../include/apps.php:125
-msgid "Address Book"
-msgstr "Carnet d'adresses"
+#: ../../include/RedDAV/RedBrowser.php:137
+msgid "Addressbook"
+msgstr "Carnet d'adresse"
-#: ../../include/apps.php:126 ../../include/nav.php:106 ../../boot.php:1498
-msgid "Login"
-msgstr "Connexion"
+#: ../../include/RedDAV/RedBrowser.php:140
+msgid "Calendar"
+msgstr "Calendrier"
-#: ../../include/apps.php:127 ../../include/nav.php:196
-msgid "Channel Select"
-msgstr "Changer de canal"
+#: ../../include/RedDAV/RedBrowser.php:143
+msgid "Schedule Inbox"
+msgstr "Calendrier - Message entrants"
-#: ../../include/apps.php:128 ../../include/nav.php:170
-msgid "Matrix"
-msgstr "Matrice"
+#: ../../include/RedDAV/RedBrowser.php:146
+msgid "Schedule Outbox"
+msgstr "Calendrier - Message sortants"
-#: ../../include/apps.php:129 ../../include/nav.php:198
-#: ../../include/widgets.php:514 ../../mod/admin.php:987
-#: ../../mod/admin.php:1192
-msgid "Settings"
-msgstr "Réglages"
+#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360
+#: ../../include/apps.php:415 ../../include/conversation.php:1037
+#: ../../include/widgets.php:1407 ../../mod/photos.php:766
+#: ../../mod/photos.php:1209
+msgid "Unknown"
+msgstr "Inconnu"
-#: ../../include/apps.php:130 ../../include/nav.php:92
-#: ../../include/reddav.php:1280 ../../include/conversation.php:1521
-#: ../../mod/fbrowser.php:114
+#: ../../include/RedDAV/RedBrowser.php:226 ../../include/apps.php:135
+#: ../../include/conversation.php:1639 ../../include/nav.php:93
+#: ../../mod/fbrowser.php:109
msgid "Files"
msgstr "Fichiers"
-#: ../../include/apps.php:131 ../../include/nav.php:102
-#: ../../include/conversation.php:1554 ../../mod/webpages.php:79
-msgid "Webpages"
-msgstr "Pages web"
-
-#: ../../include/apps.php:132 ../../include/nav.php:173
-msgid "Channel Home"
-msgstr "Mon canal"
-
-#: ../../include/apps.php:133 ../../include/identity.php:973
-#: ../../include/identity.php:1091 ../../mod/profperm.php:112
-msgid "Profile"
-msgstr "Profil"
-
-#: ../../include/apps.php:134 ../../include/nav.php:91
-#: ../../include/conversation.php:1512 ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Photos"
-
-#: ../../include/apps.php:135 ../../include/nav.php:192
-#: ../../mod/events.php:396
-msgid "Events"
-msgstr "Événements"
-
-#: ../../include/apps.php:136 ../../include/nav.php:159
-#: ../../mod/directory.php:226
-msgid "Directory"
-msgstr "Annuaire"
-
-#: ../../include/apps.php:137 ../../include/nav.php:151 ../../mod/help.php:60
-#: ../../mod/help.php:65
-msgid "Help"
-msgstr "Aide"
-
-#: ../../include/apps.php:138 ../../include/nav.php:184
-msgid "Mail"
-msgstr "Messages"
-
-#: ../../include/apps.php:139 ../../mod/mood.php:131
-msgid "Mood"
-msgstr "Humeur"
-
-#: ../../include/apps.php:140 ../../include/conversation.php:945
-msgid "Poke"
-msgstr "Cogner"
-
-#: ../../include/apps.php:141 ../../include/nav.php:97
-msgid "Chat"
-msgstr "Clavardage"
-
-#: ../../include/apps.php:142 ../../include/text.php:815
-#: ../../include/text.php:829 ../../include/nav.php:156
-#: ../../mod/search.php:30
-msgid "Search"
-msgstr "Recherche"
-
-#: ../../include/apps.php:143
-msgid "Probe"
-msgstr "Sonder"
-
-#: ../../include/apps.php:144
-msgid "Suggest"
-msgstr "Suggérer"
-
-#: ../../include/apps.php:145
-msgid "Random Channel"
-msgstr "Un canal au hasard"
-
-#: ../../include/apps.php:146
-msgid "Invite"
-msgstr "Invitation"
+#: ../../include/RedDAV/RedBrowser.php:227
+msgid "Total"
+msgstr "Total"
-#: ../../include/apps.php:147
-msgid "Features"
-msgstr "Fonctionalités"
+#: ../../include/RedDAV/RedBrowser.php:229
+msgid "Shared"
+msgstr "Partagé"
-#: ../../include/apps.php:148
-msgid "Language"
-msgstr "Langue"
+#: ../../include/RedDAV/RedBrowser.php:230
+#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152
+#: ../../mod/layouts.php:175 ../../mod/menu.php:114
+#: ../../mod/new_channel.php:144 ../../mod/register.php:255
+#: ../../mod/webpages.php:180
+msgid "Create"
+msgstr "Créer"
-#: ../../include/apps.php:149
-msgid "Post"
+#: ../../include/RedDAV/RedBrowser.php:231
+#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1420
+#: ../../mod/photos.php:793 ../../mod/photos.php:1333
+#: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353
+msgid "Upload"
msgstr "Envoyer"
-#: ../../include/apps.php:150
-msgid "Profile Photo"
-msgstr "Photo du profil"
+#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:1158
+#: ../../mod/settings.php:588 ../../mod/settings.php:614
+#: ../../mod/sharedwithme.php:95
+msgid "Name"
+msgstr "Nom"
-#: ../../include/apps.php:239 ../../mod/settings.php:79
-#: ../../mod/settings.php:543
-msgid "Update"
-msgstr "Mise à jour"
+#: ../../include/RedDAV/RedBrowser.php:236
+msgid "Type"
+msgstr "Type"
-#: ../../include/apps.php:239
-msgid "Install"
-msgstr "Installer"
+#: ../../include/RedDAV/RedBrowser.php:237 ../../include/text.php:1274
+#: ../../mod/sharedwithme.php:97
+msgid "Size"
+msgstr "Taille"
-#: ../../include/apps.php:244
-msgid "Purchase"
-msgstr "Acheter"
+#: ../../include/RedDAV/RedBrowser.php:238 ../../mod/sharedwithme.php:98
+msgid "Last Modified"
+msgstr "Modifié le"
-#: ../../include/apps.php:246 ../../include/page_widgets.php:8
-#: ../../include/page_widgets.php:36 ../../include/reddav.php:1289
-#: ../../include/menu.php:42 ../../include/ItemObject.php:96
-#: ../../mod/settings.php:579 ../../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
+#: ../../include/RedDAV/RedBrowser.php:240 ../../include/apps.php:259
+#: ../../include/menu.php:108 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/ItemObject.php:100
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
+#: ../../mod/webpages.php:181
msgid "Edit"
-msgstr "Éditer"
+msgstr "Modifier"
-#: ../../include/apps.php:247 ../../include/reddav.php:1290
-#: ../../include/conversation.php:635 ../../include/ItemObject.php:108
-#: ../../mod/settings.php:580 ../../mod/connedit.php:440
-#: ../../mod/photos.php:1052 ../../mod/group.php:176 ../../mod/admin.php:767
-#: ../../mod/admin.php:897 ../../mod/thing.php:236
+#: ../../include/RedDAV/RedBrowser.php:241 ../../include/apps.php:260
+#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
+#: ../../mod/blocks.php:155 ../../mod/connections.php:259
+#: ../../mod/connedit.php:560 ../../mod/editblock.php:181
+#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
+#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
+#: ../../mod/admin.php:1152 ../../mod/settings.php:649 ../../mod/thing.php:257
+#: ../../mod/webpages.php:183
msgid "Delete"
msgstr "Supprimer"
-#: ../../include/apps.php:328 ../../include/apps.php:379
-#: ../../include/reddav.php:1202 ../../mod/connedit.php:476
-msgid "Unknown"
-msgstr "Inconnu"
-
-#: ../../include/text.php:321
-msgid "prev"
-msgstr "préc."
-
-#: ../../include/text.php:323
-msgid "first"
-msgstr "premier"
-
-#: ../../include/text.php:352
-msgid "last"
-msgstr "dernier"
-
-#: ../../include/text.php:355
-msgid "next"
-msgstr "suiv."
-
-#: ../../include/text.php:367
-msgid "older"
-msgstr "plus ancien"
-
-#: ../../include/text.php:369
-msgid "newer"
-msgstr "plus récent"
-
-#: ../../include/text.php:730
-msgid "No connections"
-msgstr "Sans relations"
-
-#: ../../include/text.php:743
+#: ../../include/RedDAV/RedBrowser.php:282
#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d relation"
-msgstr[1] "%d relations"
-
-#: ../../include/text.php:756
-msgid "View Connections"
-msgstr "Voir les relations"
-
-#: ../../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 "cogner"
-
-#: ../../include/text.php:897 ../../include/conversation.php:243
-msgid "poked"
-msgstr "a cogné"
+msgid "You are using %1$s of your available file storage."
+msgstr "Vous utilisez %1$s de votre espace de stockage."
-#: ../../include/text.php:898
-msgid "ping"
-msgstr "solliciter"
-
-#: ../../include/text.php:898
-msgid "pinged"
-msgstr "a sollicité"
-
-#: ../../include/text.php:899
-msgid "prod"
-msgstr "encourager"
-
-#: ../../include/text.php:899
-msgid "prodded"
-msgstr "a encouragé"
-
-#: ../../include/text.php:900
-msgid "slap"
-msgstr "gifler"
-
-#: ../../include/text.php:900
-msgid "slapped"
-msgstr "a giflé"
-
-#: ../../include/text.php:901
-msgid "finger"
-msgstr "pointer"
-
-#: ../../include/text.php:901
-msgid "fingered"
-msgstr "a pointé"
-
-#: ../../include/text.php:902
-msgid "rebuff"
-msgstr "rejeter"
-
-#: ../../include/text.php:902
-msgid "rebuffed"
-msgstr "a rejeté"
-
-#: ../../include/text.php:911
-msgid "happy"
-msgstr "heureux"
-
-#: ../../include/text.php:912
-msgid "sad"
-msgstr "triste"
-
-#: ../../include/text.php:913
-msgid "mellow"
-msgstr "mélancolique"
-
-#: ../../include/text.php:914
-msgid "tired"
-msgstr "fatigué"
-
-#: ../../include/text.php:915
-msgid "perky"
-msgstr "impertinent"
-
-#: ../../include/text.php:916
-msgid "angry"
-msgstr "colérique"
-
-#: ../../include/text.php:917
-msgid "stupified"
-msgstr "stupéfié"
-
-#: ../../include/text.php:918
-msgid "puzzled"
-msgstr "perplexe"
-
-#: ../../include/text.php:919
-msgid "interested"
-msgstr "intéressé"
-
-#: ../../include/text.php:920
-msgid "bitter"
-msgstr "amer"
-
-#: ../../include/text.php:921
-msgid "cheerful"
-msgstr "joyeux"
-
-#: ../../include/text.php:922
-msgid "alive"
-msgstr "énergique"
-
-#: ../../include/text.php:923
-msgid "annoyed"
-msgstr "agacé"
-
-#: ../../include/text.php:924
-msgid "anxious"
-msgstr "anxieux"
-
-#: ../../include/text.php:925
-msgid "cranky"
-msgstr "énervé"
-
-#: ../../include/text.php:926
-msgid "disturbed"
-msgstr "perturbé"
-
-#: ../../include/text.php:927
-msgid "frustrated"
-msgstr "frustré"
-
-#: ../../include/text.php:928
-msgid "depressed"
-msgstr "déprimé"
-
-#: ../../include/text.php:929
-msgid "motivated"
-msgstr "motivé"
-
-#: ../../include/text.php:930
-msgid "relaxed"
-msgstr "détendu"
-
-#: ../../include/text.php:931
-msgid "surprised"
-msgstr "surpris"
-
-#: ../../include/text.php:1092
-msgid "Monday"
-msgstr "Lundi"
-
-#: ../../include/text.php:1092
-msgid "Tuesday"
-msgstr "Mardi"
-
-#: ../../include/text.php:1092
-msgid "Wednesday"
-msgstr "Mercredi"
-
-#: ../../include/text.php:1092
-msgid "Thursday"
-msgstr "Jeudi"
-
-#: ../../include/text.php:1092
-msgid "Friday"
-msgstr "Vendredi"
-
-#: ../../include/text.php:1092
-msgid "Saturday"
-msgstr "Samedi"
-
-#: ../../include/text.php:1092
-msgid "Sunday"
-msgstr "Dimanche"
-
-#: ../../include/text.php:1096
-msgid "January"
-msgstr "Janvier"
-
-#: ../../include/text.php:1096
-msgid "February"
-msgstr "Février"
-
-#: ../../include/text.php:1096
-msgid "March"
-msgstr "Mars"
-
-#: ../../include/text.php:1096
-msgid "April"
-msgstr "Avril"
-
-#: ../../include/text.php:1096
-msgid "May"
-msgstr "Mai"
-
-#: ../../include/text.php:1096
-msgid "June"
-msgstr "Juin"
-
-#: ../../include/text.php:1096
-msgid "July"
-msgstr "Juillet"
-
-#: ../../include/text.php:1096
-msgid "August"
-msgstr "Août"
-
-#: ../../include/text.php:1096
-msgid "September"
-msgstr "Septembre"
-
-#: ../../include/text.php:1096
-msgid "October"
-msgstr "Octobre"
-
-#: ../../include/text.php:1096
-msgid "November"
-msgstr "Novembre"
-
-#: ../../include/text.php:1096
-msgid "December"
-msgstr "Décembre"
-
-#: ../../include/text.php:1174
-msgid "unknown.???"
-msgstr "inconnu.???"
-
-#: ../../include/text.php:1175
-msgid "bytes"
-msgstr "octets"
-
-#: ../../include/text.php:1210
-msgid "remove category"
-msgstr "supprimer la catégorie"
-
-#: ../../include/text.php:1280
-msgid "remove from file"
-msgstr "retirer du fichier"
-
-#: ../../include/text.php:1345 ../../include/text.php:1357
-msgid "Click to open/close"
-msgstr "Cliquer pour ouvrir/fermer"
-
-#: ../../include/text.php:1512 ../../mod/events.php:374
-msgid "Link to Source"
-msgstr "Lien vers la source"
-
-#: ../../include/text.php:1531
-msgid "Select a page layout: "
-msgstr "Choisir une mise en page&nbsp;:"
-
-#: ../../include/text.php:1534 ../../include/text.php:1599
-msgid "default"
-msgstr "défaut"
-
-#: ../../include/text.php:1570
-msgid "Page content type: "
-msgstr "Type de contenu&nbsp;:"
-
-#: ../../include/text.php:1611
-msgid "Select an alternate language"
-msgstr "Choisir une langue alternative"
-
-#: ../../include/text.php:1735 ../../include/conversation.php:123
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "événement"
-
-#: ../../include/text.php:1740 ../../include/conversation.php:150
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "commentaire"
-
-#: ../../include/text.php:1745
-msgid "activity"
-msgstr "activité"
-
-#: ../../include/text.php:2004
-msgid "Design"
-msgstr "Conception"
-
-#: ../../include/text.php:2006
-msgid "Blocks"
-msgstr "Blocs"
-
-#: ../../include/text.php:2007
-msgid "Menus"
-msgstr "Menus"
-
-#: ../../include/text.php:2008
-msgid "Layouts"
-msgstr "Mises en page"
-
-#: ../../include/text.php:2009
-msgid "Pages"
-msgstr "Pages"
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr "Nouvelle page"
-
-#: ../../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:1003
-#: ../../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/RedDAV/RedBrowser.php:287
+#, php-format
+msgid "You are using %1$s of %2$s available file storage. (%3$s&#37;)"
+msgstr "Vous utilisez %1$s sur %2$s d'espace disponible. (%3$s&#37;)"
-#: ../../include/page_widgets.php:44 ../../mod/webpages.php:128
-msgid "Created"
-msgstr "Créé"
+#: ../../include/RedDAV/RedBrowser.php:299
+msgid "WARNING:"
+msgstr "AVERTISSEMENT&nbsp;:"
-#: ../../include/page_widgets.php:45 ../../mod/webpages.php:129
-msgid "Edited"
-msgstr "Édité"
+#: ../../include/RedDAV/RedBrowser.php:302
+msgid "Create new folder"
+msgstr "Nouveau dossier"
-#: ../../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/RedDAV/RedBrowser.php:304
+msgid "Upload file"
+msgstr "Téléverser un fichier"
-#: ../../include/account.php:23
+#: ../../include/account.php:28
msgid "Not a valid email address"
msgstr "Ce n'est pas une adresse de courriel valide"
-#: ../../include/account.php:25
+#: ../../include/account.php:30
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
+#: ../../include/account.php:36
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
+#: ../../include/account.php:68
msgid "An invitation is required."
msgstr "Une invitation est requise."
-#: ../../include/account.php:68
+#: ../../include/account.php:72
msgid "Invitation could not be verified."
msgstr "Votre invitation n'a pas pu être vérifiée."
-#: ../../include/account.php:119
+#: ../../include/account.php:122
msgid "Please enter the required information."
msgstr "Merci d'entrer les informations requises."
-#: ../../include/account.php:187
+#: ../../include/account.php:189
msgid "Failed to store account information."
msgstr "Impossible de stocker les informations liées au compte."
-#: ../../include/account.php:245
+#: ../../include/account.php:249
#, php-format
msgid "Registration confirmation for %s"
-msgstr "Confirmation de l'enregistrement pour %s"
+msgstr "Confirmation de l'inscription pour %s"
-#: ../../include/account.php:313
+#: ../../include/account.php:315
#, php-format
msgid "Registration request at %s"
msgstr "Demande d'inscription sur %s"
-#: ../../include/account.php:315 ../../include/account.php:342
-#: ../../include/account.php:399
+#: ../../include/account.php:317 ../../include/account.php:344
+#: ../../include/account.php:404 ../../include/network.php:1660
msgid "Administrator"
msgstr "Administrateur"
-#: ../../include/account.php:337
+#: ../../include/account.php:339
msgid "your registration password"
msgstr "votre mot de passe d'inscription"
-#: ../../include/account.php:340 ../../include/account.php:397
+#: ../../include/account.php:342 ../../include/account.php:402
#, php-format
msgid "Registration details for %s"
-msgstr "Détails de l'inscription à %s"
+msgstr "Détails de l'inscription pour %s"
-#: ../../include/account.php:406
+#: ../../include/account.php:414
msgid "Account approved."
msgstr "Compte approuvé."
-#: ../../include/account.php:440
+#: ../../include/account.php:454
#, php-format
msgid "Registration revoked for %s"
msgstr "Inscription révoquée pour %s"
-#: ../../include/account.php:486
+#: ../../include/account.php:506
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:3711
-#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:27
-#: ../../mod/settings.php:494 ../../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:179
-#: ../../mod/profiles.php:524 ../../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:254 ../../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:178
-#: ../../mod/item.php:186 ../../mod/item.php:916 ../../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/photos.php:104
-#, 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:111
-msgid "Image file is empty."
-msgstr "L'image est vide."
-
-#: ../../include/photos.php:140 ../../mod/profile_photo.php:216
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
-
-#: ../../include/photos.php:212
-msgid "Photo storage failed."
-msgstr "Le stockage de l'image a échoué."
+#: ../../include/account.php:719 ../../include/account.php:721
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
-#: ../../include/photos.php:339 ../../include/conversation.php:1515
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: ../../include/account.php:727
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action outrepasserait les limites prévues par votre forfait."
-#: ../../include/photos.php:343 ../../mod/photos.php:697
-#: ../../mod/photos.php:1199
-msgid "Upload New Photos"
-msgstr "Ajouter des photos"
+#: ../../include/account.php:732
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas disponible avec votre forfait."
-#: ../../include/acl_selectors.php:240
+#: ../../include/acl_selectors.php:218
msgid "Visible to your default audience"
-msgstr "Visible pour vos contacts seulement."
+msgstr "Visible pour vos contacts seulement"
-#: ../../include/acl_selectors.php:241
+#: ../../include/acl_selectors.php:243
msgid "Show"
-msgstr "Voir plus"
+msgstr "Montrer"
-#: ../../include/acl_selectors.php:242
+#: ../../include/acl_selectors.php:244
msgid "Don't show"
msgstr "Cacher"
-#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209
-#: ../../mod/photos.php:604 ../../mod/photos.php:958
-#: ../../mod/filestorage.php:128
+#: ../../include/acl_selectors.php:249
+msgid "Other networks and post services"
+msgstr "Autres réseaux et services de messagerie"
+
+#: ../../include/acl_selectors.php:251 ../../mod/chat.php:211
+#: ../../mod/filestorage.php:147 ../../mod/photos.php:639
+#: ../../mod/photos.php:1012 ../../mod/thing.php:309 ../../mod/thing.php:355
msgid "Permissions"
-msgstr "Permissions"
+msgstr "Autorisations"
-#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:289
+#: ../../include/acl_selectors.php:252 ../../include/ItemObject.php:384
+#: ../../mod/photos.php:1229
msgid "Close"
msgstr "Fermer"
-#: ../../include/activities.php:39
+#: ../../include/activities.php:42
msgid " and "
-msgstr " et "
+msgstr "et"
-#: ../../include/activities.php:47
+#: ../../include/activities.php:50
msgid "public profile"
msgstr "profil public"
-#: ../../include/activities.php:52
+#: ../../include/activities.php:59
#, 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
+#: ../../include/activities.php:60
#, php-format
msgid "Visit %1$s's %2$s"
-msgstr "Visiter %1$s sur %2$s"
+msgstr "Visiter %2$s de %1$s"
-#: ../../include/activities.php:56
+#: ../../include/activities.php:63
#, 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:1036
+#: ../../include/api.php:1336
msgid "Public Timeline"
msgstr "Fil public"
-#: ../../include/attach.php:224 ../../include/attach.php:278
+#: ../../include/apps.php:128
+msgid "Site Admin"
+msgstr "Administrateur"
+
+#: ../../include/apps.php:129 ../../include/conversation.php:1665
+#: ../../include/nav.php:104
+msgid "Bookmarks"
+msgstr "Favoris"
+
+#: ../../include/apps.php:130
+msgid "Address Book"
+msgstr "Carnet d'adresses"
+
+#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1518
+msgid "Login"
+msgstr "Connexion"
+
+#: ../../include/apps.php:132 ../../include/nav.php:203
+#: ../../mod/manage.php:162
+msgid "Channel Manager"
+msgstr "Gérer les canaux"
+
+#: ../../include/apps.php:133 ../../include/nav.php:176
+msgid "Grid"
+msgstr "Réseau"
+
+#: ../../include/apps.php:134 ../../include/nav.php:205
+#: ../../include/widgets.php:577 ../../mod/admin.php:1266
+#: ../../mod/admin.php:1488
+msgid "Settings"
+msgstr "Paramètres"
+
+#: ../../include/apps.php:136 ../../include/conversation.php:1675
+#: ../../include/nav.php:108 ../../mod/webpages.php:178
+msgid "Webpages"
+msgstr "Pages web"
+
+#: ../../include/apps.php:137 ../../include/nav.php:179
+msgid "Channel Home"
+msgstr "Mon canal"
+
+#: ../../include/apps.php:138 ../../include/identity.php:1242
+#: ../../include/identity.php:1359 ../../mod/profperm.php:112
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../include/apps.php:139 ../../include/conversation.php:1632
+#: ../../include/nav.php:92 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Photos"
+
+#: ../../include/apps.php:140 ../../include/nav.php:198
+msgid "Events"
+msgstr "Événements"
+
+#: ../../include/apps.php:141 ../../include/nav.php:164
+msgid "Directory"
+msgstr "Annuaire"
+
+#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:208
+#: ../../mod/help.php:213 ../../mod/layouts.php:176
+msgid "Help"
+msgstr "Aide"
+
+#: ../../include/apps.php:143 ../../include/nav.php:190
+msgid "Mail"
+msgstr "Messages"
+
+#: ../../include/apps.php:144 ../../mod/mood.php:131
+msgid "Mood"
+msgstr "Humeur"
+
+#: ../../include/apps.php:145 ../../include/conversation.php:965
+#: ../../mod/poke.php:164
+msgid "Poke"
+msgstr "Tapoter"
+
+#: ../../include/apps.php:146 ../../include/nav.php:98
+msgid "Chat"
+msgstr "Clavardage"
+
+#: ../../include/apps.php:147 ../../include/nav.php:161
+#: ../../include/text.php:885 ../../include/text.php:897
+#: ../../mod/connections.php:302 ../../mod/search.php:40
+msgid "Search"
+msgstr "Recherche"
+
+#: ../../include/apps.php:148
+msgid "Probe"
+msgstr "Sonder"
+
+#: ../../include/apps.php:149
+msgid "Suggest"
+msgstr "Suggérer"
+
+#: ../../include/apps.php:150
+msgid "Random Channel"
+msgstr "Un canal au hasard"
+
+#: ../../include/apps.php:151
+msgid "Invite"
+msgstr "Invitation"
+
+#: ../../include/apps.php:152 ../../include/widgets.php:1293
+msgid "Features"
+msgstr "Fonctionalités"
+
+#: ../../include/apps.php:153 ../../mod/id.php:28
+msgid "Language"
+msgstr "Langue"
+
+#: ../../include/apps.php:154
+msgid "Post"
+msgstr "Envoyer"
+
+#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18
+#: ../../mod/id.php:19
+msgid "Profile Photo"
+msgstr "Photo du Profil"
+
+#: ../../include/apps.php:252 ../../mod/settings.php:84
+#: ../../mod/settings.php:612
+msgid "Update"
+msgstr "Mise à jour"
+
+#: ../../include/apps.php:252
+msgid "Install"
+msgstr "Installer"
+
+#: ../../include/apps.php:257
+msgid "Purchase"
+msgstr "Acheter"
+
+#: ../../include/attach.php:140 ../../include/attach.php:188
+#: ../../include/attach.php:251 ../../include/attach.php:265
+#: ../../include/attach.php:272 ../../include/attach.php:337
+#: ../../include/attach.php:351 ../../include/attach.php:358
+#: ../../include/attach.php:436 ../../include/attach.php:888
+#: ../../include/attach.php:959 ../../include/attach.php:1111
+#: ../../include/chat.php:133 ../../include/photos.php:29
+#: ../../include/items.php:4437 ../../index.php:189 ../../index.php:377
+#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22
+#: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76
+#: ../../mod/bookmarks.php:48 ../../mod/channel.php:100
+#: ../../mod/channel.php:217 ../../mod/channel.php:257 ../../mod/chat.php:94
+#: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29
+#: ../../mod/connedit.php:355 ../../mod/editblock.php:65
+#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
+#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64
+#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
+#: ../../mod/editwebpage.php:125 ../../mod/events.php:260
+#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73
+#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115
+#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71
+#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206
+#: ../../mod/item.php:214 ../../mod/item.php:1050 ../../mod/layouts.php:69
+#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177
+#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6
+#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111
+#: ../../mod/mood.php:112 ../../mod/network.php:12
+#: ../../mod/new_channel.php:75 ../../mod/new_channel.php:109
+#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86
+#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
+#: ../../mod/profile_photo.php:341 ../../mod/profile_photo.php:354
+#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
+#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
+#: ../../mod/service_limits.php:7 ../../mod/settings.php:568
+#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
+#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
+#: ../../mod/thing.php:290 ../../mod/thing.php:327
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69
+#: ../../mod/cover_photo.php:273 ../../mod/cover_photo.php:286
+msgid "Permission denied."
+msgstr "Permission refusée."
+
+#: ../../include/attach.php:246 ../../include/attach.php:332
msgid "Item was not found."
msgstr "Élément introuvable."
-#: ../../include/attach.php:335
+#: ../../include/attach.php:496
msgid "No source file."
msgstr "Pas de fichier source."
-#: ../../include/attach.php:352
+#: ../../include/attach.php:518
msgid "Cannot locate file to replace"
msgstr "Impossible de trouver le fichier à remplacer."
-#: ../../include/attach.php:370
+#: ../../include/attach.php:536
msgid "Cannot locate file to revise/update"
msgstr "Impossible de trouver le fichier à corriger/mettre à jour"
-#: ../../include/attach.php:381
+#: ../../include/attach.php:671
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Le fichier dépasse la taille limite de %d"
-#: ../../include/attach.php:393
+#: ../../include/attach.php:685
#, 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"
+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
+#: ../../include/attach.php:841
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
+#: ../../include/attach.php:854
msgid "Stored file could not be verified. Upload failed."
-msgstr "Le fichier stocké n'a pu être vérifié. Envoi impossible."
+msgstr "Le fichier stocké n'a pu être vérifié. Echec de l'envoi."
-#: ../../include/attach.php:528 ../../include/attach.php:545
+#: ../../include/attach.php:902 ../../include/attach.php:918
msgid "Path not available."
msgstr "Chemin non disponible."
-#: ../../include/attach.php:590
+#: ../../include/attach.php:964 ../../include/attach.php:1116
msgid "Empty pathname"
msgstr "Chemin vide"
-#: ../../include/attach.php:606
+#: ../../include/attach.php:990
msgid "duplicate filename or path"
msgstr "doublon de chemin ou de fichier"
-#: ../../include/attach.php:630
+#: ../../include/attach.php:1012
msgid "Path not found."
msgstr "Chemin introuvable."
-#: ../../include/attach.php:681
+#: ../../include/attach.php:1070
msgid "mkdir failed."
msgstr "mkdir a échoué."
-#: ../../include/attach.php:685
+#: ../../include/attach.php:1074
msgid "database storage failed."
-msgstr "l'écriture dans la BD a échoué"
+msgstr "l'écriture dans la base de données a échoué."
-#: ../../include/plugin.php:504 ../../include/plugin.php:506
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
+#: ../../include/attach.php:1122
+msgid "Empty path"
+msgstr "Chemin vide"
-#: ../../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/auth.php:132
+msgid "Logged out."
+msgstr "Deconnecté."
-#: ../../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/auth.php:273
+msgid "Failed authentication"
+msgstr "Échec de l'authentification"
+
+#: ../../include/auth.php:287 ../../mod/openid.php:189
+msgid "Login failed."
+msgstr "Échec de la connexion."
-#: ../../include/bb2diaspora.php:463 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:376
+msgid "Attachments:"
+msgstr "Pièces jointes&nbsp;:"
+
+#: ../../include/bb2diaspora.php:465 ../../include/event.php:22
+#: ../../include/text.php:1418
msgid "l F d, Y \\@ g:i A"
msgstr "l d F Y \\à G\\hi"
-#: ../../include/bb2diaspora.php:469 ../../include/event.php:20
+#: ../../include/bb2diaspora.php:467
+msgid "$Projectname event notification:"
+msgstr "Notification d'événement de $Projectname&nbsp;:"
+
+#: ../../include/bb2diaspora.php:471 ../../include/event.php:30
+#: ../../include/text.php:1422
msgid "Starts:"
msgstr "Début&nbsp;:"
-#: ../../include/bb2diaspora.php:477 ../../include/event.php:30
+#: ../../include/bb2diaspora.php:479 ../../include/event.php:40
+#: ../../include/text.php:1426
msgid "Finishes:"
msgstr "Fin&nbsp;:"
-#: ../../include/bb2diaspora.php:485 ../../include/event.php:40
-#: ../../include/identity.php:757 ../../mod/directory.php:156
-#: ../../mod/dirprofile.php:105 ../../mod/events.php:504
+#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
+#: ../../include/text.php:1433 ../../include/identity.php:1005
+#: ../../mod/directory.php:307
msgid "Location:"
msgstr "Emplacement&nbsp;:"
-#: ../../include/nav.php:81 ../../include/nav.php:108 ../../boot.php:1497
-msgid "Logout"
-msgstr "Déconnexion"
-
-#: ../../include/nav.php:81 ../../include/nav.php:108
-msgid "End this session"
-msgstr "Mettre fin à la session"
-
-#: ../../include/nav.php:84 ../../include/nav.php:142
-msgid "Home"
-msgstr "Canal"
-
-#: ../../include/nav.php:84
-msgid "Your posts and conversations"
-msgstr "Vos publications et conversations"
-
-#: ../../include/nav.php:85 ../../include/conversation.php:940
-#: ../../mod/connedit.php:393 ../../mod/connedit.php:507
-msgid "View Profile"
-msgstr "Voir profil"
-
-#: ../../include/nav.php:85
-msgid "Your profile page"
-msgstr "Votre profil"
-
-#: ../../include/nav.php:87
-msgid "Edit Profiles"
-msgstr "Éditer les profils"
-
-#: ../../include/nav.php:87
-msgid "Manage/Edit profiles"
-msgstr "Gérer/éditer les profils"
-
-#: ../../include/nav.php:89 ../../include/identity.php:730
-msgid "Edit Profile"
-msgstr "Éditer le profil"
-
-#: ../../include/nav.php:89
-msgid "Edit your profile"
-msgstr "Éditer votre profil"
-
-#: ../../include/nav.php:91
-msgid "Your photos"
-msgstr "Vos photos"
-
-#: ../../include/nav.php:92
-msgid "Your files"
-msgstr "Vos fichiers"
-
-#: ../../include/nav.php:97
-msgid "Your chatrooms"
-msgstr "Vos salons"
-
-#: ../../include/nav.php:100
-msgid "Your bookmarks"
-msgstr "Vos favoris"
-
-#: ../../include/nav.php:102
-msgid "Your webpages"
-msgstr "Vos pages web"
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
+#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
+#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
+#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
+#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
+#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
+#: ../../include/bbcode.php:833
+msgid "Image/photo"
+msgstr "Image/photo"
-#: ../../include/nav.php:106
-msgid "Sign in"
-msgstr "Connexion"
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
-#: ../../include/nav.php:123
+#: ../../include/bbcode.php:179
#, php-format
-msgid "%s - click to logout"
-msgstr "%s - cliquer ici pour déconnecter"
-
-#: ../../include/nav.php:128
-msgid "Click to authenticate to your home hub"
-msgstr "S'authentifier auprès de votre hub"
-
-#: ../../include/nav.php:142
-msgid "Home Page"
-msgstr "Page d'accueil"
-
-#: ../../include/nav.php:146 ../../mod/register.php:221 ../../boot.php:1474
-msgid "Register"
-msgstr "S'inscrire"
-
-#: ../../include/nav.php:146
-msgid "Create an account"
-msgstr "Créer un compte"
-
-#: ../../include/nav.php:151
-msgid "Help and documentation"
-msgstr "Aide et documentation"
-
-#: ../../include/nav.php:154 ../../include/widgets.php:79
-#: ../../mod/apps.php:33
-msgid "Apps"
-msgstr "Applications"
-
-#: ../../include/nav.php:154
-msgid "Applications, utilities, links, games"
-msgstr "Applications, utilitaires, liens, jeux"
-
-#: ../../include/nav.php:156
-msgid "Search site content"
-msgstr "Rechercher parmi le contenu du site"
-
-#: ../../include/nav.php:159
-msgid "Channel Locator"
-msgstr "Localisation de canaux"
-
-#: ../../include/nav.php:170
-msgid "Your matrix"
-msgstr "Votre matrice"
-
-#: ../../include/nav.php:171
-msgid "Mark all matrix notifications seen"
-msgstr "Marquer toutes les notifications de la matrice comme vues"
-
-#: ../../include/nav.php:173
-msgid "Channel home"
-msgstr "Mon canal"
-
-#: ../../include/nav.php:174
-msgid "Mark all channel notifications seen"
-msgstr "Marquer toutes les notifications du canal comme vues"
-
-#: ../../include/nav.php:177 ../../mod/connections.php:386
-msgid "Connections"
-msgstr "Relations"
-
-#: ../../include/nav.php:180
-msgid "Notices"
-msgstr "Notifications"
-
-#: ../../include/nav.php:180
-msgid "Notifications"
-msgstr "Notifications"
-
-#: ../../include/nav.php:181
-msgid "See all notifications"
-msgstr "Voir toutes les notifications"
-
-#: ../../include/nav.php:182 ../../mod/notifications.php:99
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme vues"
-
-#: ../../include/nav.php:184
-msgid "Private mail"
-msgstr "Messages privés"
-
-#: ../../include/nav.php:185
-msgid "See all private messages"
-msgstr "Voir tous les messages privés"
-
-#: ../../include/nav.php:186
-msgid "Mark all private messages seen"
-msgstr "Marquer tous les messages privés comme vus"
-
-#: ../../include/nav.php:187
-msgid "Inbox"
-msgstr "Boîte de réception"
+msgid "Install %s element: "
+msgstr "Installer %s élément"
-#: ../../include/nav.php:188
-msgid "Outbox"
-msgstr "Boîte d'envoi"
+#: ../../include/bbcode.php:183
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site."
-#: ../../include/nav.php:189 ../../include/widgets.php:536
-msgid "New Message"
-msgstr "Nouveau message"
+#: ../../include/bbcode.php:193 ../../mod/impel.php:37
+msgid "webpage"
+msgstr "pages web"
-#: ../../include/nav.php:192
-msgid "Event Calendar"
-msgstr "Calendrier des événements"
+#: ../../include/bbcode.php:196 ../../mod/impel.php:47
+msgid "layout"
+msgstr "mise en page"
-#: ../../include/nav.php:193
-msgid "See all events"
-msgstr "Voir tous les événements"
+#: ../../include/bbcode.php:199 ../../mod/impel.php:42
+msgid "block"
+msgstr "bloquer"
-#: ../../include/nav.php:194
-msgid "Mark all events seen"
-msgstr "Marquer tous les événements comme vus"
+#: ../../include/bbcode.php:202 ../../mod/impel.php:54
+msgid "menu"
+msgstr "menu"
-#: ../../include/nav.php:196
-msgid "Manage Your Channels"
-msgstr "Gérer vos canaux"
+#: ../../include/bbcode.php:257
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s a écrit %2$s qui suit %3$s"
-#: ../../include/nav.php:198
-msgid "Account/Channel Settings"
-msgstr "Réglages du Compte/Canal"
+#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
+msgid "post"
+msgstr "publication"
-#: ../../include/nav.php:206 ../../mod/admin.php:123
-msgid "Admin"
-msgstr "Administrateur"
+#: ../../include/bbcode.php:547
+msgid "Different viewers will see this text differently"
+msgstr "Ce texte aura un rendu différent en fonction des utilisateurs"
-#: ../../include/nav.php:206
-msgid "Site Setup and Configuration"
-msgstr "Configuration du site"
+#: ../../include/bbcode.php:755
+msgid "$1 spoiler"
+msgstr "dévoile&nbsp;: $1"
-#: ../../include/nav.php:231
-msgid "Nothing new here"
-msgstr "Aucun nouveau contenu trouvé"
-
-#: ../../include/nav.php:235
-msgid "Please wait..."
-msgstr "Merci de patienter..."
+#: ../../include/bbcode.php:782
+msgid "$1 wrote:"
+msgstr "$1 a écrit&nbsp;:"
#: ../../include/bookmarks.php:35
#, php-format
msgid "%1$s's bookmarks"
msgstr "Favoris de %1$s"
-#: ../../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/chat.php:23
+msgid "Missing room name"
+msgstr "Il manque le nom du salon"
-#: ../../include/taxonomy.php:254
-msgid "likes"
-msgstr "aiment"
+#: ../../include/chat.php:32
+msgid "Duplicate room name"
+msgstr "Un salon avec ce nom existe déjà"
-#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:209
-msgid "dislike"
-msgstr "déteste"
+#: ../../include/chat.php:82 ../../include/chat.php:90
+msgid "Invalid room specifier."
+msgstr "Identifiant de salon invalide."
-#: ../../include/taxonomy.php:255
-msgid "dislikes"
-msgstr "détestent"
+#: ../../include/chat.php:122
+msgid "Room not found."
+msgstr "Salon introuvable."
-#: ../../include/taxonomy.php:338 ../../include/identity.php:999
-#: ../../include/ItemObject.php:134
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "J'aime"
-msgstr[1] "J'aime"
+#: ../../include/chat.php:143
+msgid "Room is full"
+msgstr "Le salon est plein"
-#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185
+#: ../../include/comanche.php:34 ../../mod/admin.php:366
msgid "Default"
msgstr "Défaut"
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Constamment"
-
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Chaque heure"
-
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Deux fois par jour"
-
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Chaque jour"
-
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Chaque semaine"
-
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Chaque mois"
-
-#: ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
-
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
-
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
-
-#: ../../include/contact_selectors.php:79 ../../mod/admin.php:763
-#: ../../mod/admin.php:772 ../../boot.php:1500
-msgid "Email"
-msgstr "Courriel"
-
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
-
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "Linkedin"
-
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
-
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
-
#: ../../include/contact_widgets.php:14
#, php-format
msgid "%d invitation available"
@@ -1211,7 +703,7 @@ msgid_plural "%d invitations available"
msgstr[0] "%d invitation disponible"
msgstr[1] "%d invitations disponibles"
-#: ../../include/contact_widgets.php:19 ../../mod/admin.php:455
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:461
msgid "Advanced"
msgstr "Avancé"
@@ -1229,14 +721,15 @@ msgstr "Ajouter/Suivre"
#: ../../include/contact_widgets.php:25
msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Course à pieds"
+msgstr "Exemples: Guillaume Martin, Course à pieds"
-#: ../../include/contact_widgets.php:26 ../../mod/connections.php:392
-#: ../../mod/directory.php:222 ../../mod/directory.php:227
+#: ../../include/contact_widgets.php:26 ../../mod/connections.php:305
+#: ../../mod/directory.php:384 ../../mod/directory.php:389
msgid "Find"
msgstr "Trouver"
-#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59
+#: ../../include/contact_widgets.php:27 ../../mod/directory.php:388
+#: ../../mod/suggest.php:60
msgid "Channel Suggestions"
msgstr "Canaux suggérés"
@@ -1249,1995 +742,1603 @@ 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"
+msgid "Advanced example: name=fred and country=iceland"
+msgstr "Exemple avancé&nbsp;: name=fred and country=iceland"
-#: ../../include/contact_widgets.php:58 ../../include/features.php:69
-#: ../../include/widgets.php:296
+#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Dossiers sauvegardés"
-#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96
-#: ../../include/widgets.php:299
+#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98
+#: ../../include/widgets.php:317
msgid "Everything"
msgstr "Tout"
-#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29
+#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:282
+#: ../../include/widgets.php:46
msgid "Categories"
msgstr "Catégories"
-#: ../../include/contact_widgets.php:126
+#: ../../include/contact_widgets.php:128
#, 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"
+msgstr[0] "%d contact en commun"
+msgstr[1] "%d contacts en commun"
-#: ../../include/contact_widgets.php:131
+#: ../../include/contact_widgets.php:133
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:638
-msgid "Unable to verify channel signature"
-msgstr "Impossible de vérifier la signature du canal"
-
-#: ../../include/zot.php:835
-#, 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"
-
-#: ../../include/datetime.php:152 ../../include/datetime.php:284
-msgid "year"
-msgstr "année"
-
-#: ../../include/datetime.php:157 ../../include/datetime.php:285
-msgid "month"
-msgstr "mois"
-
-#: ../../include/datetime.php:162 ../../include/datetime.php:287
-msgid "day"
-msgstr "jour"
-
-#: ../../include/datetime.php:275
-msgid "never"
-msgstr "jamais"
-
-#: ../../include/datetime.php:281
-msgid "less than a second ago"
-msgstr "à l'instant"
-
-#: ../../include/datetime.php:284
-msgid "years"
-msgstr "années"
-
-#: ../../include/datetime.php:285
-msgid "months"
-msgstr "mois"
-
-#: ../../include/datetime.php:286
-msgid "week"
-msgstr "semaine"
-
-#: ../../include/datetime.php:286
-msgid "weeks"
-msgstr "semaines"
-
-#: ../../include/datetime.php:287
-msgid "days"
-msgstr "jours"
-
-#: ../../include/datetime.php:288
-msgid "hour"
-msgstr "heure"
-
-#: ../../include/datetime.php:288
-msgid "hours"
-msgstr "heures"
-
-#: ../../include/datetime.php:289
-msgid "minute"
-msgstr "minute"
-
-#: ../../include/datetime.php:289
-msgid "minutes"
-msgstr "minutes"
-
-#: ../../include/datetime.php:290
-msgid "second"
-msgstr "seconde"
-
-#: ../../include/datetime.php:290
-msgid "seconds"
-msgstr "secondes"
-
-#: ../../include/datetime.php:299
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "il y a %1$d %2$s"
-
-#: ../../include/datetime.php:504
-#, php-format
-msgid "%1$s's birthday"
-msgstr "Anniversaire de %1$s"
-
-#: ../../include/datetime.php:505
-#, php-format
-msgid "Happy Birthday %1$s"
-msgstr "Joyeux Anniversaire %1$s"
-
-#: ../../include/dir_fns.php:36
-msgid "Sort Options"
-msgstr "Options de tri"
-
-#: ../../include/dir_fns.php:37
-msgid "Alphabetic"
-msgstr "Alphabétique"
-
-#: ../../include/dir_fns.php:38
-msgid "Reverse Alphabetic"
-msgstr "Alphabétique inversé"
-
-#: ../../include/dir_fns.php:39
-msgid "Newest to Oldest"
-msgstr "Anté-chronologique"
-
-#: ../../include/dir_fns.php:51
-msgid "Enable Safe Search"
-msgstr "Activer la recherche sûre"
-
-#: ../../include/dir_fns.php:53
-msgid "Disable Safe Search"
-msgstr "Désactiver la recherche sûre"
-
-#: ../../include/dir_fns.php:55
-msgid "Safe Mode"
-msgstr "Mode sûr"
-
-#: ../../include/enotify.php:41
-msgid "Hubzilla Notification"
-msgstr "Notification Matrice Rouge"
-
-#: ../../include/enotify.php:42
-msgid "hubzilla"
-msgstr "Matrice Rouge"
-
-#: ../../include/enotify.php:44
-msgid "Thank You,"
-msgstr "Merci,"
-
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%s Administrator"
-msgstr "l'administrateur de %s"
-
-#: ../../include/enotify.php:81
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../include/enotify.php:85
-#, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red:Notification] Nouveau message reçu sur %s"
-
-#: ../../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/enotify.php:88
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
-
-#: ../../include/enotify.php:88
-msgid "a private message"
-msgstr "un message privé"
-
-#: ../../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/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/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/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/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/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/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/enotify.php:182
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
-msgstr "[Red:Notification] %s a publié sur votre profil"
-
-#: ../../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/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/enotify.php:210
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red:Notification] %s vous a étiqueté"
-
-#: ../../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/enotify.php:212
-#, php-format
-msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
-msgstr "%1$s, %2$s [zrl=%3$s]vous a étiqueté[/zrl]."
-
-#: ../../include/enotify.php:225
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red:Notification] %1$s vous a cogné"
-
-#: ../../include/enotify.php:226
-#, php-format
-msgid "%1$s, %2$s poked you at %3$s"
-msgstr "%1$s, %2$s vous a cogné sur %3$s
-
-#: ../../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/enotify.php:243
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Notification] %s a étiqueté votre publication"
-
-#: ../../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/enotify.php:245
-#, php-format
-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/enotify.php:257
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Notification] Nouvelle introduction"
-
-#: ../../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/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/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/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/enotify.php:272
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Notification] Nouvelle suggestion d'amitié"
-
-#: ../../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/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/enotify.php:280
-msgid "Name:"
-msgstr "Nom&nbsp;:"
-
-#: ../../include/enotify.php:281
-msgid "Photo:"
-msgstr "Photo&nbsp;:"
-
-#: ../../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/enotify.php:474
-msgid "[Red:Notify]"
-msgstr "[Red:Notification]"
-
-#: ../../include/reddav.php:1145 ../../include/reddav.php:1288
-msgid "parent"
-msgstr "retour"
-
-#: ../../include/reddav.php:1169
-msgid "Collection"
-msgstr "Collection"
-
-#: ../../include/reddav.php:1172
-msgid "Principal"
-msgstr "Principal"
-
-#: ../../include/reddav.php:1175
-msgid "Addressbook"
-msgstr "Carnet d'adresse"
+#: ../../include/conversation.php:120 ../../include/text.php:1948
+#: ../../mod/like.php:361 ../../mod/subthread.php:83 ../../mod/tagger.php:43
+msgid "photo"
+msgstr "photo"
-#: ../../include/reddav.php:1178
-msgid "Calendar"
-msgstr "Calendrier"
+#: ../../include/conversation.php:123 ../../include/event.php:904
+#: ../../include/text.php:1951 ../../mod/events.php:249 ../../mod/like.php:363
+#: ../../mod/tagger.php:47
+msgid "event"
+msgstr "événement"
-#: ../../include/reddav.php:1181
-msgid "Schedule Inbox"
-msgstr "Calendrier - Message entrants"
+#: ../../include/conversation.php:126 ../../mod/like.php:113
+msgid "channel"
+msgstr "canal"
-#: ../../include/reddav.php:1184
-msgid "Schedule Outbox"
-msgstr "Calendrier - Message sortants"
+#: ../../include/conversation.php:148 ../../include/text.php:1954
+#: ../../mod/like.php:361 ../../mod/subthread.php:83
+msgid "status"
+msgstr "état"
-#: ../../include/reddav.php:1262
-#, php-format
-msgid "%1$s used"
-msgstr "%1$s utilisé"
+#: ../../include/conversation.php:150 ../../include/text.php:1956
+#: ../../mod/tagger.php:53
+msgid "comment"
+msgstr "commentaire"
-#: ../../include/reddav.php:1267
+#: ../../include/conversation.php:164 ../../mod/like.php:410
#, php-format
-msgid "%1$s used of %2$s (%3$s&#37;)"
-msgstr "%1$s utilisé de %2$s (%3$s&#37;)"
-
-#: ../../include/reddav.php:1284 ../../mod/settings.php:519
-#: ../../mod/settings.php:545 ../../mod/admin.php:902
-msgid "Name"
-msgstr "Nom"
-
-#: ../../include/reddav.php:1285
-msgid "Type"
-msgstr "Type"
-
-#: ../../include/reddav.php:1286
-msgid "Size"
-msgstr "Taille"
-
-#: ../../include/reddav.php:1287
-msgid "Last Modified"
-msgstr "Modifié le"
-
-#: ../../include/reddav.php:1291
-msgid "Total"
-msgstr "Total"
-
-#: ../../include/reddav.php:1344
-msgid "Create new folder"
-msgstr "Nouveau dossier"
-
-#: ../../include/reddav.php:1345 ../../mod/mitem.php:142 ../../mod/menu.php:84
-#: ../../mod/new_channel.php:117
-msgid "Create"
-msgstr "Créer"
-
-#: ../../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:126 ../../mod/like.php:89
-msgid "channel"
-msgstr "canal"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
-#: ../../include/conversation.php:167 ../../mod/like.php:333
+#: ../../include/conversation.php:167 ../../mod/like.php:412
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s déteste %3$s de %2$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
#: ../../include/conversation.php:204
#, php-format
msgid "%1$s is now connected with %2$s"
-msgstr "%1$s ajoute %2$s à ses relations"
+msgstr "%1$s ajoute %2$s à ses contacts"
#: ../../include/conversation.php:239
#, php-format
msgid "%1$s poked %2$s"
-msgstr "%1$s a cogné %2$s"
+msgstr "%1$s a tapoté %2$s"
-#: ../../include/conversation.php:261 ../../mod/mood.php:63
+#: ../../include/conversation.php:243 ../../include/text.php:973
+#: ../../include/text.php:978
+msgid "poked"
+msgstr "a tapoté"
+
+#: ../../include/conversation.php:260 ../../mod/mood.php:63
#, php-format
msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s est %2$s"
-#: ../../include/conversation.php:634 ../../include/ItemObject.php:114
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
+msgctxt "title"
+msgid "Likes"
+msgstr "Aime"
+
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
+msgctxt "title"
+msgid "Dislikes"
+msgstr "N'aime pas"
+
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
+msgctxt "title"
+msgid "Agree"
+msgstr "D'accord"
+
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
+msgctxt "title"
+msgid "Disagree"
+msgstr "Pas d'accord"
+
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
+msgctxt "title"
+msgid "Abstain"
+msgstr "Abstention"
+
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
+msgctxt "title"
+msgid "Attending"
+msgstr "Participations"
+
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
+msgctxt "title"
+msgid "Not attending"
+msgstr "Non-participations"
+
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
+msgctxt "title"
+msgid "Might attend"
+msgstr "Participation possible"
+
+#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
msgid "Select"
msgstr "Sélectionner"
-#: ../../include/conversation.php:642 ../../include/ItemObject.php:89
-#: ../../mod/photos.php:850
+#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
msgid "Private Message"
msgstr "Message Privé"
-#: ../../include/conversation.php:649 ../../include/ItemObject.php:182
-msgid "Message is verified"
-msgstr "Message vérifié"
+#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
+msgid "Message signature validated"
+msgstr "Signature du message validée"
-#: ../../include/conversation.php:669
+#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
+msgid "Message signature incorrect"
+msgstr "Signature du message incorrecte"
+
+#: ../../include/conversation.php:691
#, php-format
msgid "View %s's profile @ %s"
msgstr "Voir le profil de %s @ %s"
-#: ../../include/conversation.php:683
+#: ../../include/conversation.php:710
msgid "Categories:"
msgstr "Catégories&nbsp;:"
-#: ../../include/conversation.php:684
+#: ../../include/conversation.php:711
msgid "Filed under:"
msgstr "Classé sous&nbsp;:"
-#: ../../include/conversation.php:693 ../../include/ItemObject.php:250
+#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
#, php-format
-msgid " from %s"
+msgid "from %s"
msgstr "de %s"
-#: ../../include/conversation.php:696 ../../include/ItemObject.php:253
+#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
#, php-format
msgid "last edited: %s"
-msgstr "dernière édition&nbsp;: %s"
+msgstr "dernière modification&nbsp;: %s"
-#: ../../include/conversation.php:697 ../../include/ItemObject.php:254
+#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
#, php-format
msgid "Expires: %s"
msgstr "Expire&nbsp;: %s"
-#: ../../include/conversation.php:712
+#: ../../include/conversation.php:738
msgid "View in context"
msgstr "Voir en contexte"
-#: ../../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:983
-#: ../../mod/mail.php:231 ../../mod/mail.php:346
+#: ../../include/conversation.php:740 ../../include/conversation.php:1237
+#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
msgid "Please wait"
msgstr "Merci de patienter"
-#: ../../include/conversation.php:841
+#: ../../include/conversation.php:850
msgid "remove"
msgstr "supprimer"
-#: ../../include/conversation.php:845
+#: ../../include/conversation.php:854 ../../include/nav.php:244
msgid "Loading..."
msgstr "Chargement..."
-#: ../../include/conversation.php:846
+#: ../../include/conversation.php:855
msgid "Delete Selected Items"
msgstr "Supprimer les éléments selectionnés"
-#: ../../include/conversation.php:937
+#: ../../include/conversation.php:953
msgid "View Source"
msgstr "Voir source"
-#: ../../include/conversation.php:938
+#: ../../include/conversation.php:954
msgid "Follow Thread"
-msgstr "Suivre discussion"
+msgstr "Suivre la discussion"
+
+#: ../../include/conversation.php:955
+msgid "Unfollow Thread"
+msgstr "Ne plus suivre la discussion"
-#: ../../include/conversation.php:939
-msgid "View Status"
-msgstr "Voir état"
+#: ../../include/conversation.php:959 ../../include/nav.php:86
+#: ../../mod/connedit.php:507
+msgid "View Profile"
+msgstr "Voir le profil"
-#: ../../include/conversation.php:941
-msgid "View Photos"
-msgstr "Voir photos"
+#: ../../include/conversation.php:960
+msgid "Activity/Posts"
+msgstr "Activité/Publications"
-#: ../../include/conversation.php:942
-msgid "Matrix Activity"
-msgstr "Activité sur la matrice"
+#: ../../include/conversation.php:962
+msgid "Edit Connection"
+msgstr "Modifier le contact"
-#: ../../include/conversation.php:943
-msgid "Edit Contact"
-msgstr "Éditer contact"
+#: ../../include/conversation.php:963
+msgid "Message"
+msgstr "Message"
-#: ../../include/conversation.php:944
-msgid "Send PM"
-msgstr "Envoyer un Message Privé"
+#: ../../include/conversation.php:964 ../../mod/ratings.php:99
+msgid "Ratings"
+msgstr "Evaluations"
-#: ../../include/conversation.php:1001
+#: ../../include/conversation.php:1080
#, php-format
msgid "%s likes this."
msgstr "%s aime ça."
-#: ../../include/conversation.php:1001
+#: ../../include/conversation.php:1080
#, php-format
msgid "%s doesn't like this."
-msgstr "%s déteste ça."
+msgstr "%s n'aime pas ça."
-#: ../../include/conversation.php:1005
+#: ../../include/conversation.php:1084
#, 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."
+msgstr[0] "<span %1$s>%2$d personne</span> aime ceci."
+msgstr[1] "<span %1$s>%2$d personnes</span> aiment ceci."
-#: ../../include/conversation.php:1007
+#: ../../include/conversation.php:1086
#, 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."
+msgstr[0] "<span %1$s>%2$d personne</span> n'aime pas ça."
+msgstr[1] "<span %1$s>%2$d personnes</span> n'aiment pas ça."
-#: ../../include/conversation.php:1013
+#: ../../include/conversation.php:1092
msgid "and"
msgstr "et"
-#: ../../include/conversation.php:1016
+#: ../../include/conversation.php:1095
#, php-format
msgid ", and %d other people"
msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ", et %d autre(s) personne(s)"
+msgstr[0] ", et %d autre personne"
+msgstr[1] ", et %d autres personnes"
-#: ../../include/conversation.php:1017
+#: ../../include/conversation.php:1096
#, php-format
msgid "%s like this."
msgstr "%s aime ça."
-#: ../../include/conversation.php:1017
+#: ../../include/conversation.php:1096
#, php-format
msgid "%s don't like this."
-msgstr "%s déteste ça."
+msgstr "%s n'aime pas ça."
-#: ../../include/conversation.php:1074
+#: ../../include/conversation.php:1164
msgid "Visible to <strong>everybody</strong>"
msgstr "Visible par <strong>tout le monde</strong>"
-#: ../../include/conversation.php:1075 ../../mod/mail.php:167
-#: ../../mod/mail.php:279
+#: ../../include/conversation.php:1165 ../../mod/mail.php:202
+#: ../../mod/mail.php:316
msgid "Please enter a link URL:"
msgstr "Merci d'entrer l'URL d'un lien&nbsp;:"
-#: ../../include/conversation.php:1076
+#: ../../include/conversation.php:1166
msgid "Please enter a video link/URL:"
msgstr "Merci d'entrer l'URL d'une video&nbsp;:"
-#: ../../include/conversation.php:1077
+#: ../../include/conversation.php:1167
msgid "Please enter an audio link/URL:"
-msgstr "Merci d'entrer l'URL d'un contenu audio&nbsp;:"
+msgstr "Merci d'entrer l'URL d'un contenu audio&nsbp;:"
-#: ../../include/conversation.php:1078
+#: ../../include/conversation.php:1168
msgid "Tag term:"
msgstr "Étiquette&nbsp;:"
-#: ../../include/conversation.php:1079 ../../mod/filer.php:49
+#: ../../include/conversation.php:1169 ../../mod/filer.php:48
msgid "Save to Folder:"
msgstr "Classer dans le dossier&nbsp;:"
-#: ../../include/conversation.php:1080
+#: ../../include/conversation.php:1170
msgid "Where are you right now?"
-msgstr "Où êtes-vous présentement?"
+msgstr "Où êtes-vous en ce moment&nbsp;?"
-#: ../../include/conversation.php:1081 ../../mod/editpost.php:52
-#: ../../mod/mail.php:168 ../../mod/mail.php:280
+#: ../../include/conversation.php:1171 ../../mod/editpost.php:56
+#: ../../mod/mail.php:203 ../../mod/mail.php:317
msgid "Expires YYYY-MM-DD HH:MM"
-msgstr "Expire YYYY-MM-DD HH:MM"
+msgstr "Expire le YYYY-MM-DD à HH:MM"
+
+#: ../../include/conversation.php:1179 ../../include/page_widgets.php:40
+#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:458 ../../mod/photos.php:1060
+#: ../../mod/webpages.php:188
+msgid "Preview"
+msgstr "Aperçu"
-#: ../../include/conversation.php:1105 ../../mod/photos.php:982
-#: ../../mod/layouts.php:113
+#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
+#: ../../mod/webpages.php:182
msgid "Share"
msgstr "Partager"
-#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139
-msgid "Page link title"
-msgstr "Titre du lien vers la page"
+#: ../../include/conversation.php:1204
+msgid "Page link name"
+msgstr "Nom du lien vers la page"
-#: ../../include/conversation.php:1110
+#: ../../include/conversation.php:1207
msgid "Post as"
msgstr "Publier en tant que"
-#: ../../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
+#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
+msgid "Bold"
+msgstr "Gras"
+
+#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
+msgid "Italic"
+msgstr "Italique"
+
+#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
+msgid "Underline"
+msgstr "Souligné"
+
+#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
+msgid "Quote"
+msgstr "Citation"
+
+#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
+msgid "Code"
+msgstr "Code"
+
+#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
+#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
+#: ../../mod/editwebpage.php:182
msgid "Upload photo"
msgstr "Téléverser une photo"
-#: ../../include/conversation.php:1112
+#: ../../include/conversation.php:1215
msgid "upload photo"
msgstr "téléverser une photo"
-#: ../../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
+#: ../../include/conversation.php:1216 ../../mod/editblock.php:143
+#: ../../mod/editlayout.php:141 ../../mod/editpost.php:119
+#: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378
msgid "Attach file"
-msgstr "Attacher un fichier"
+msgstr "Joindre un fichier"
-#: ../../include/conversation.php:1114
+#: ../../include/conversation.php:1217
msgid "attach file"
-msgstr "attacher un fichier"
+msgstr "joindre un fichier"
-#: ../../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
+#: ../../include/conversation.php:1218 ../../mod/editblock.php:144
+#: ../../mod/editlayout.php:142 ../../mod/editpost.php:120
+#: ../../mod/editwebpage.php:184 ../../mod/mail.php:249 ../../mod/mail.php:379
msgid "Insert web link"
msgstr "Insérer lien web"
-#: ../../include/conversation.php:1116
+#: ../../include/conversation.php:1219
msgid "web link"
msgstr "lien web"
-#: ../../include/conversation.php:1117
+#: ../../include/conversation.php:1220
msgid "Insert video link"
msgstr "Insérer lien vidéo"
-#: ../../include/conversation.php:1118
+#: ../../include/conversation.php:1221
msgid "video link"
msgstr "lien vidéo"
-#: ../../include/conversation.php:1119
+#: ../../include/conversation.php:1222
msgid "Insert audio link"
msgstr "Insérer un lien audio"
-#: ../../include/conversation.php:1120
+#: ../../include/conversation.php:1223
msgid "audio link"
msgstr "lien audio"
-#: ../../include/conversation.php:1121 ../../mod/editblock.php:118
-#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119
-#: ../../mod/editwebpage.php:150
+#: ../../include/conversation.php:1224 ../../mod/editblock.php:148
+#: ../../mod/editlayout.php:146 ../../mod/editpost.php:124
+#: ../../mod/editwebpage.php:188
msgid "Set your location"
msgstr "Spécifier votre emplacement géographique"
-#: ../../include/conversation.php:1122
+#: ../../include/conversation.php:1225
msgid "set location"
msgstr "spécifier l'emplacement géographique"
-#: ../../include/conversation.php:1123 ../../mod/editblock.php:119
-#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120
-#: ../../mod/editwebpage.php:151
+#: ../../include/conversation.php:1226 ../../mod/editpost.php:126
+msgid "Toggle voting"
+msgstr "(Dés)activer le vote"
+
+#: ../../include/conversation.php:1229 ../../mod/editblock.php:149
+#: ../../mod/editlayout.php:147 ../../mod/editpost.php:125
+#: ../../mod/editwebpage.php:189
msgid "Clear browser location"
-msgstr "Nettoyer l'emplacement géographique du navigateur"
+msgstr "Supprimer l'emplacement géographique du navigateur"
-#: ../../include/conversation.php:1124
+#: ../../include/conversation.php:1230
msgid "clear location"
-msgstr "nettoyer l'emplacement géographique"
-
-#: ../../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: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:1131 ../../mod/editblock.php:121
-#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122
-#: ../../mod/editwebpage.php:153
+msgstr "supprimer l'emplacement géographique"
+
+#: ../../include/conversation.php:1232 ../../mod/editblock.php:162
+#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205
+msgid "Title (optional)"
+msgstr "Titre (facultatif)"
+
+#: ../../include/conversation.php:1236 ../../mod/editblock.php:165
+#: ../../mod/editlayout.php:163 ../../mod/editpost.php:143
+#: ../../mod/editwebpage.php:207
+msgid "Categories (optional, comma-separated list)"
+msgstr "Catégories (facultatives, séparées par des virgules)"
+
+#: ../../include/conversation.php:1238 ../../mod/editblock.php:151
+#: ../../mod/editlayout.php:149 ../../mod/editpost.php:130
+#: ../../mod/editwebpage.php:191 ../../mod/events.php:459
msgid "Permission settings"
-msgstr "Permissions"
+msgstr "Gérer les autorisations"
-#: ../../include/conversation.php:1132
+#: ../../include/conversation.php:1239
msgid "permissions"
-msgstr "permissions"
+msgstr "autorisations"
-#: ../../include/conversation.php:1139 ../../mod/editblock.php:129
-#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129
-#: ../../mod/editwebpage.php:162
+#: ../../include/conversation.php:1247 ../../mod/editblock.php:159
+#: ../../mod/editlayout.php:156 ../../mod/editpost.php:138
+#: ../../mod/editwebpage.php:200
msgid "Public post"
msgstr "Contenu public"
-#: ../../include/conversation.php:1141 ../../mod/editblock.php:136
-#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135
-#: ../../mod/editwebpage.php:170
+#: ../../include/conversation.php:1249 ../../mod/editblock.php:166
+#: ../../mod/editlayout.php:164 ../../mod/editpost.php:144
+#: ../../mod/editwebpage.php:208
msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: robert@exemple.com, marie@exemple.com"
+msgstr "Exemple: julien@exemple.com, marie@exemple.com"
-#: ../../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
+#: ../../include/conversation.php:1262 ../../mod/editblock.php:176
+#: ../../mod/editlayout.php:173 ../../mod/editpost.php:155
+#: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383
msgid "Set expiration date"
msgstr "Définir la date d'expiration"
-#: ../../include/conversation.php:1156 ../../include/ItemObject.php:595
-#: ../../mod/editpost.php:148 ../../mod/mail.php:237 ../../mod/mail.php:351
+#: ../../include/conversation.php:1265
+msgid "Set publish date"
+msgstr "Définir la date de publication"
+
+#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
+#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
msgid "Encrypt text"
msgstr "Chiffrer le texte"
-#: ../../include/conversation.php:1158 ../../mod/editpost.php:150
+#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
msgid "OK"
-msgstr "Ok"
+msgstr "OK"
-#: ../../include/conversation.php:1159 ../../mod/settings.php:518
-#: ../../mod/settings.php:544 ../../mod/editpost.php:151
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94
+#: ../../include/conversation.php:1270 ../../mod/editpost.php:160
+#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112
+#: ../../mod/settings.php:587 ../../mod/settings.php:613
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
msgid "Cancel"
msgstr "Annuler"
-#: ../../include/conversation.php:1401
+#: ../../include/conversation.php:1513
msgid "Discover"
msgstr "À découvrir"
-#: ../../include/conversation.php:1404
+#: ../../include/conversation.php:1516
msgid "Imported public streams"
msgstr "Flux publics importés"
-#: ../../include/conversation.php:1409
+#: ../../include/conversation.php:1521
msgid "Commented Order"
-msgstr "Commentaires Récents"
+msgstr "Par date de commentaire"
-#: ../../include/conversation.php:1412
+#: ../../include/conversation.php:1524
msgid "Sort by Comment Date"
msgstr "Trier par date de dernier commentaire"
-#: ../../include/conversation.php:1416
+#: ../../include/conversation.php:1528
msgid "Posted Order"
-msgstr "Publications Récentes"
+msgstr "Par date de publication"
-#: ../../include/conversation.php:1419
+#: ../../include/conversation.php:1531
msgid "Sort by Post Date"
msgstr "Trier par date de publication"
-#: ../../include/conversation.php:1424 ../../include/widgets.php:82
+#: ../../include/conversation.php:1536 ../../include/widgets.php:105
msgid "Personal"
-msgstr "Personnel"
+msgstr "Me concernant"
-#: ../../include/conversation.php:1427
+#: ../../include/conversation.php:1539
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:1433 ../../mod/connections.php:211
-#: ../../mod/connections.php:224 ../../mod/menu.php:61
+#: ../../include/conversation.php:1545 ../../mod/connections.php:72
+#: ../../mod/connections.php:82 ../../mod/menu.php:112
msgid "New"
msgstr "Nouveautés"
-#: ../../include/conversation.php:1436
+#: ../../include/conversation.php:1548
msgid "Activity Stream - by date"
msgstr "Flux d'activité - par date"
-#: ../../include/conversation.php:1442
+#: ../../include/conversation.php:1554
msgid "Starred"
-msgstr "Mis en avant"
+msgstr "Mis en avant (étoiles)"
-#: ../../include/conversation.php:1445
+#: ../../include/conversation.php:1557
msgid "Favourite Posts"
msgstr "Publications préférées"
-#: ../../include/conversation.php:1452
+#: ../../include/conversation.php:1564
msgid "Spam"
msgstr "Indésirable"
-#: ../../include/conversation.php:1455
+#: ../../include/conversation.php:1567
msgid "Posts flagged as SPAM"
msgstr "Publications marquées comme indésirables"
-#: ../../include/conversation.php:1491 ../../mod/admin.php:901
+#: ../../include/conversation.php:1611 ../../mod/admin.php:1157
msgid "Channel"
msgstr "Canal"
-#: ../../include/conversation.php:1494
+#: ../../include/conversation.php:1614
msgid "Status Messages and Posts"
msgstr "Messages d'état et contributions"
-#: ../../include/conversation.php:1503
+#: ../../include/conversation.php:1623
msgid "About"
msgstr "À propos"
-#: ../../include/conversation.php:1506
+#: ../../include/conversation.php:1626
msgid "Profile Details"
msgstr "Détails du profil"
-#: ../../include/conversation.php:1524
+#: ../../include/conversation.php:1635 ../../include/photos.php:506
+msgid "Photo Albums"
+msgstr "Albums photo"
+
+#: ../../include/conversation.php:1642
msgid "Files and Storage"
msgstr "Fichiers et Stockage"
-#: ../../include/conversation.php:1533 ../../include/conversation.php:1536
+#: ../../include/conversation.php:1652 ../../include/conversation.php:1655
msgid "Chatrooms"
msgstr "Salons de clavardage"
-#: ../../include/conversation.php:1546
+#: ../../include/conversation.php:1668
msgid "Saved Bookmarks"
msgstr "Favoris sauvegardés"
-#: ../../include/conversation.php:1557
+#: ../../include/conversation.php:1678
msgid "Manage Webpages"
msgstr "Gérer les pages web"
-#: ../../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 "Advanced Profiles"
-msgstr "Profils Avancés"
-
-#: ../../include/features.php:27
-msgid "Additional profile sections and selections"
-msgstr "Sections additionnelles du profil"
-
-#: ../../include/features.php:28
-msgid "Profile Import/Export"
-msgstr "Importer/Exporter le profil"
-
-#: ../../include/features.php:28
-msgid "Save and load profile details across sites/channels"
-msgstr "Distribuer les détails du profil sur la matrice."
-
-#: ../../include/features.php:29
-msgid "Web Pages"
-msgstr "Pages web"
-
-#: ../../include/features.php:29
-msgid "Provide managed web pages on your channel"
-msgstr "Fournir des pages web, sous votre contrôle, sur votre canal"
-
-#: ../../include/features.php:30
-msgid "Private Notes"
-msgstr "Notes privées"
-
-#: ../../include/features.php:30
-msgid "Enables a tool to store notes and reminders"
-msgstr "Active un outil pour stocker notes et mémos"
-
-#: ../../include/features.php:35
-msgid "Extended Identity Sharing"
-msgstr "Partage d'identité étendue"
+#: ../../include/conversation.php:1707 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
+#: ../../mod/photos.php:1105
+msgid "View all"
+msgstr "Voir tout"
-#: ../../include/features.php:35
-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/conversation.php:1731 ../../include/taxonomy.php:415
+#: ../../include/identity.php:1268 ../../include/ItemObject.php:179
+#: ../../mod/photos.php:1097
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Aime"
+msgstr[1] "Aime"
-#: ../../include/features.php:36
-msgid "Expert Mode"
-msgstr "Mode expert"
+#: ../../include/conversation.php:1734 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1102
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "N'aime pas"
+msgstr[1] "N'aime pas"
-#: ../../include/features.php:36
-msgid "Enable Expert Mode to provide advanced configuration options"
-msgstr "Activer le mode expert pour accéder aux options avancées"
+#: ../../include/conversation.php:1737
+msgctxt "noun"
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Participe"
+msgstr[1] "Participent"
-#: ../../include/features.php:37
-msgid "Premium Channel"
-msgstr "Canal VIP"
+#: ../../include/conversation.php:1740
+msgctxt "noun"
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Ne participe pas"
+msgstr[1] "Ne participent pas"
-#: ../../include/features.php:37
-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/conversation.php:1743
+msgctxt "noun"
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Indécis(e)"
+msgstr[1] "Indécis(es)"
-#: ../../include/features.php:42
-msgid "Post Composition Features"
-msgstr "Fonctionnalités de composition"
+#: ../../include/conversation.php:1746
+msgctxt "noun"
+msgid "Agree"
+msgid_plural "Agrees"
+msgstr[0] "D'accord"
+msgstr[1] "D'accord"
-#: ../../include/features.php:44
-msgid "Use Markdown"
-msgstr "Utiliser Markdown"
+#: ../../include/conversation.php:1749
+msgctxt "noun"
+msgid "Disagree"
+msgid_plural "Disagrees"
+msgstr[0] "Pas d'accord"
+msgstr[1] "Pas d'accord"
-#: ../../include/features.php:44
-msgid "Allow use of \"Markdown\" to format posts"
-msgstr "Authoriser l'usage de \"Markdown\" pour le format des partages"
+#: ../../include/conversation.php:1752
+msgctxt "noun"
+msgid "Abstain"
+msgid_plural "Abstains"
+msgstr[0] "S'abstient"
+msgstr[1] "S'abstiennent"
-#: ../../include/features.php:45
-msgid "Post Preview"
-msgstr "Aperçu avant publication"
+#: ../../include/datetime.php:48
+msgid "Miscellaneous"
+msgstr "Divers"
-#: ../../include/features.php:45
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permettre de prévisualiser les publications/commentaires"
+#: ../../include/datetime.php:132
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "AAAA-MM-JJ ou MM-JJ"
-#: ../../include/features.php:46 ../../include/widgets.php:503
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Canaux sources"
+#: ../../include/datetime.php:236 ../../mod/appman.php:91
+#: ../../mod/appman.php:92 ../../mod/events.php:437 ../../mod/events.php:442
+msgid "Required"
+msgstr "Requis"
-#: ../../include/features.php:46
-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/datetime.php:263 ../../boot.php:2349
+msgid "never"
+msgstr "jamais"
-#: ../../include/features.php:47
-msgid "Even More Encryption"
-msgstr "Encore plus de chiffrement"
+#: ../../include/datetime.php:269
+msgid "less than a second ago"
+msgstr "à l'instant"
-#: ../../include/features.php:47
-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/datetime.php:272
+msgid "year"
+msgstr "année"
-#: ../../include/features.php:52
-msgid "Network and Stream Filtering"
-msgstr "Filtrage du réseau et des flux"
+#: ../../include/datetime.php:272
+msgid "years"
+msgstr "années"
-#: ../../include/features.php:53
-msgid "Search by Date"
-msgstr "Chercher par date"
+#: ../../include/datetime.php:273
+msgid "month"
+msgstr "mois"
-#: ../../include/features.php:53
-msgid "Ability to select posts by date ranges"
-msgstr "Pouvoir choisir des publications par date"
+#: ../../include/datetime.php:273
+msgid "months"
+msgstr "mois"
-#: ../../include/features.php:54
-msgid "Collections Filter"
-msgstr "Filtre des collections"
+#: ../../include/datetime.php:274
+msgid "week"
+msgstr "semaine"
-#: ../../include/features.php:54
-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/datetime.php:274
+msgid "weeks"
+msgstr "semaines"
-#: ../../include/features.php:55 ../../include/widgets.php:265
-msgid "Saved Searches"
-msgstr "Recherches sauvées"
+#: ../../include/datetime.php:275
+msgid "day"
+msgstr "jour"
-#: ../../include/features.php:55
-msgid "Save search terms for re-use"
-msgstr "Sauver des termes de recherche pour utilisation ultérieure"
+#: ../../include/datetime.php:275
+msgid "days"
+msgstr "jours"
-#: ../../include/features.php:56
-msgid "Network Personal Tab"
-msgstr "Onglet \"réseau personnel\""
+#: ../../include/datetime.php:276
+msgid "hour"
+msgstr "heure"
-#: ../../include/features.php:56
-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/datetime.php:276
+msgid "hours"
+msgstr "heures"
-#: ../../include/features.php:57
-msgid "Network New Tab"
-msgstr "Onglet \"nouveautés réseau\""
+#: ../../include/datetime.php:277
+msgid "minute"
+msgstr "minute"
-#: ../../include/features.php:57
-msgid "Enable tab to display all new Network activity"
-msgstr "Activer un onglet avec toute activité récente sur le réseau"
+#: ../../include/datetime.php:277
+msgid "minutes"
+msgstr "minutes"
-#: ../../include/features.php:58
-msgid "Affinity Tool"
-msgstr "Gérer l'affinité"
+#: ../../include/datetime.php:278
+msgid "second"
+msgstr "seconde"
-#: ../../include/features.php:58
-msgid "Filter stream activity by depth of relationships"
-msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations"
+#: ../../include/datetime.php:278
+msgid "seconds"
+msgstr "secondes"
-#: ../../include/features.php:59
-msgid "Suggest Channels"
-msgstr "Suggérer des canaux"
+#: ../../include/datetime.php:286
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
+msgstr "il y a %1$d %2$s"
-#: ../../include/features.php:59
-msgid "Show channel suggestions"
-msgstr "Montrer les suggestions de canaux"
+#: ../../include/datetime.php:520
+#, php-format
+msgid "%1$s's birthday"
+msgstr "Anniversaire de %1$s"
-#: ../../include/features.php:64
-msgid "Post/Comment Tools"
-msgstr "Gérer les publications/commentaires"
+#: ../../include/datetime.php:521
+#, php-format
+msgid "Happy Birthday %1$s"
+msgstr "Joyeux Anniversaire %1$s"
-#: ../../include/features.php:66
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
+#: ../../include/dba/dba_driver.php:141
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'"
-#: ../../include/features.php:66
-msgid "Edit and correct posts and comments after sending"
-msgstr "Permettre d'éditer/corriger les publications/commentaires après envoi"
+#: ../../include/dir_fns.php:139
+msgid "Directory Options"
+msgstr "Options d'annuaire"
-#: ../../include/features.php:67
-msgid "Tagging"
-msgstr "Étiquettes"
+#: ../../include/dir_fns.php:141
+msgid "Safe Mode"
+msgstr "Mode sûr"
-#: ../../include/features.php:67
-msgid "Ability to tag existing posts"
-msgstr "Permettre de marquer les publications existantes"
+#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
+#: ../../include/dir_fns.php:143 ../../mod/api.php:102
+#: ../../mod/connedit.php:644 ../../mod/connedit.php:693
+#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
+#: ../../mod/photos.php:634 ../../mod/admin.php:425 ../../mod/removeme.php:60
+#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
+msgid "No"
+msgstr "Non"
-#: ../../include/features.php:68
-msgid "Post Categories"
-msgstr "Catégoriser les publications"
+#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
+#: ../../include/dir_fns.php:143 ../../mod/api.php:101
+#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
+#: ../../mod/photos.php:634 ../../mod/admin.php:427 ../../mod/removeme.php:60
+#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
+msgid "Yes"
+msgstr "Oui"
-#: ../../include/features.php:68
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
+#: ../../include/dir_fns.php:142
+msgid "Public Forums Only"
+msgstr "Les forums publics uniquement"
-#: ../../include/features.php:69
-msgid "Ability to file posts under folders"
-msgstr "Permettre de classer les publications dans des dossiers"
+#: ../../include/dir_fns.php:143
+msgid "This Website Only"
+msgstr "Ce site uniquement"
-#: ../../include/features.php:70
-msgid "Dislike Posts"
-msgstr "Détester les publications"
+#: ../../include/event.php:768
+msgid "This event has been added to your calendar."
+msgstr "Cet évènement a été ajouté dans votre calendrier."
-#: ../../include/features.php:70
-msgid "Ability to dislike posts/comments"
-msgstr "Pouvoir détester les publications/commentaires"
+#: ../../include/event.php:967
+msgid "Not specified"
+msgstr "Non spécifié"
-#: ../../include/features.php:71
-msgid "Star Posts"
-msgstr "Mettre en avant les publications"
+#: ../../include/event.php:968
+msgid "Needs Action"
+msgstr "Besoin d'une action"
-#: ../../include/features.php:71
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Pouvoir marquer certaines publications d'une étoile"
+#: ../../include/event.php:969
+msgid "Completed"
+msgstr "Terminé"
-#: ../../include/features.php:72
-msgid "Tag Cloud"
-msgstr "Nuage de tags"
+#: ../../include/event.php:970
+msgid "In Process"
+msgstr "En cours"
-#: ../../include/features.php:72
-msgid "Provide a personal tag cloud on your channel page"
-msgstr "Afficher un nuage de vos tags sur votre canal"
+#: ../../include/event.php:971
+msgid "Cancelled"
+msgstr "Annulé"
-#: ../../include/follow.php:23
+#: ../../include/follow.php:28
msgid "Channel is blocked on this site."
msgstr "Ce canal est bloqué sur ce site."
-#: ../../include/follow.php:28
+#: ../../include/follow.php:33
msgid "Channel location missing."
msgstr "Emplacement du canal introuvable."
-#: ../../include/follow.php:54
+#: ../../include/follow.php:82
msgid "Response from remote channel was incomplete."
msgstr "La réponse du canal distant était incomplète."
-#: ../../include/follow.php:85
+#: ../../include/follow.php:99
msgid "Channel was deleted and no longer exists."
msgstr "Le canal a été supprimé et n'existe plus."
-#: ../../include/follow.php:132
+#: ../../include/follow.php:153 ../../include/follow.php:183
+msgid "Protocol disabled."
+msgstr "Protocole désactivé."
+
+#: ../../include/follow.php:173
msgid "Channel discovery failed."
-msgstr "La tentative d'accéder au canal a échouée."
+msgstr "La tentative d'accéder au canal a échoué."
-#: ../../include/follow.php:149
+#: ../../include/follow.php:199
msgid "local account not found."
msgstr "compte local introuvable."
-#: ../../include/follow.php:158
+#: ../../include/follow.php:224
msgid "Cannot connect to yourself."
msgstr "Ne peut pas se connecter à vous."
-#: ../../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/items.php:295 ../../mod/profperm.php:23
-#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242
-#: ../../mod/frphotos.php:69 ../../index.php:360
-msgid "Permission denied"
-msgstr "Accès refusé"
-
-#: ../../include/items.php:830
-msgid "(Unknown)"
-msgstr "(Inconnu)"
-
-#: ../../include/items.php:959
-msgid "Visible to anybody on the internet."
-msgstr "Visible à tout le monde sur internet."
-
-#: ../../include/items.php:961
-msgid "Visible to you only."
-msgstr "Visible pour vous seulement."
-
-#: ../../include/items.php:963
-msgid "Visible to anybody in this network."
-msgstr "Visible sur toute la Matrice."
-
-#: ../../include/items.php:965
-msgid "Visible to anybody authenticated."
-msgstr "Visible aux utilisateurs authentifiés."
-
-#: ../../include/items.php:967
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Visible pour tous sur %s."
-
-#: ../../include/items.php:969
-msgid "Visible to all connections."
-msgstr "Visible pour tous les contacts."
-
-#: ../../include/items.php:971
-msgid "Visible to approved connections."
-msgstr "Visible aux contacts approuvés."
-
-#: ../../include/items.php:3649 ../../mod/home.php:67 ../../mod/display.php:32
-#: ../../mod/filestorage.php:18 ../../mod/admin.php:168
-#: ../../mod/admin.php:932 ../../mod/admin.php:1135 ../../mod/thing.php:78
-#: ../../mod/viewsrc.php:18
-msgid "Item not found."
-msgstr "Élément introuvable."
-
-#: ../../include/items.php:4082 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr "Collection introuvable."
-
-#: ../../include/items.php:4097
-msgid "Collection is empty."
-msgstr "Collection vide."
-
-#: ../../include/items.php:4104
-#, php-format
-msgid "Collection: %s"
-msgstr "Collection&nbsp;: %s"
-
-#: ../../include/items.php:4115
-#, php-format
-msgid "Connection: %s"
-msgstr "Relation&nbsp;: %s"
-
-#: ../../include/items.php:4118
-msgid "Connection not found."
-msgstr "Relation introuvable."
-
-#: ../../include/group.php:25
+#: ../../include/group.php:26
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."
+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 créer un autre 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:232
+msgid "Add new connections to this privacy group"
+msgstr "Ajouter de nouveaux contacts à ce groupe d'accès"
-#: ../../include/group.php:253 ../../mod/admin.php:772
+#: ../../include/group.php:251 ../../mod/admin.php:998
msgid "All Channels"
-msgstr "Tous canaux"
+msgstr "Tous les canaux"
-#: ../../include/group.php:275
+#: ../../include/group.php:273
msgid "edit"
-msgstr "éditer"
+msgstr "modifier"
+
+#: ../../include/group.php:295 ../../include/features.php:82
+msgid "Privacy Groups"
+msgstr "Groupes d'accès"
#: ../../include/group.php:296
-msgid "Collections"
-msgstr "Collections"
+msgid "Edit group"
+msgstr "Modifier le groupe"
#: ../../include/group.php:297
-msgid "Edit collection"
-msgstr "Éditer collection"
+msgid "Add privacy group"
+msgstr "Ajouter un groupe d'accès"
#: ../../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"
+msgid "Channels not in any privacy group"
+msgstr "Canaux n'étant dans aucun groupe d'accès"
-#: ../../include/group.php:301 ../../include/widgets.php:266
+#: ../../include/group.php:300 ../../include/widgets.php:285
msgid "add"
msgstr "ajouter"
-#: ../../include/identity.php:30 ../../mod/item.php:1297
-msgid "Unable to obtain identity information from database"
-msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
+#: ../../include/import.php:23
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "L'import a échoué. Un canal existe déjà avec ce nom"
-#: ../../include/identity.php:63
-msgid "Empty name"
-msgstr "Nom vide"
+#: ../../include/import.php:70
+msgid "Channel clone failed. Import failed."
+msgstr "Echec du clonage du canal. Echec de l'impot."
-#: ../../include/identity.php:65
-msgid "Name too long"
-msgstr "Nom trop long"
+#: ../../include/import.php:80 ../../mod/import.php:148
+msgid "Cloned channel not found. Import failed."
+msgstr "Canal cloné non trouvé. Echec de l'import."
-#: ../../include/identity.php:166
-msgid "No account identifier"
-msgstr "Pas d'identifiant de compte"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Supprimer cet élément?"
-#: ../../include/identity.php:176
-msgid "Nickname is required."
-msgstr "Un surnom est requis."
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:702
+#: ../../mod/photos.php:1058 ../../mod/photos.php:1176
+msgid "Comment"
+msgstr "Commenter"
-#: ../../include/identity.php:190
-msgid "Reserved nickname. Please choose another."
-msgstr "Pseudonyme réservé. Merci d'en choisir un autre."
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:413
+msgid "[+] show all"
+msgstr "[+] voir tous"
-#: ../../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/js_strings.php:8
+msgid "[-] show less"
+msgstr "[-] montrer moins"
-#: ../../include/identity.php:258
-msgid "Unable to retrieve created identity"
-msgstr "Impossible de récupérer l'identité créée"
+#: ../../include/js_strings.php:9
+msgid "[+] expand"
+msgstr "[+] déplier"
-#: ../../include/identity.php:317
-msgid "Default Profile"
-msgstr "Profil par défaut"
+#: ../../include/js_strings.php:10
+msgid "[-] collapse"
+msgstr "[-] replier"
-#: ../../include/identity.php:342 ../../include/widgets.php:400
-#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:473
-msgid "Friends"
-msgstr "Amis"
+#: ../../include/js_strings.php:11
+msgid "Password too short"
+msgstr "Mot de passe trop court"
-#: ../../include/identity.php:509
-msgid "Requested channel is not available."
-msgstr "Canal demandé non-disponible."
+#: ../../include/js_strings.php:12
+msgid "Passwords do not match"
+msgstr "Les mots de passe ne correspondent pas"
-#: ../../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 ../../mod/hcard.php:8
-msgid "Requested profile is not available."
-msgstr "Profil demandé inaccessible."
+#: ../../include/js_strings.php:13 ../../mod/photos.php:41
+msgid "everybody"
+msgstr "tout le monde"
-#: ../../include/identity.php:706 ../../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/js_strings.php:14
+msgid "Secret Passphrase"
+msgstr "Phrase de passe secrète"
-#: ../../include/identity.php:720 ../../mod/profiles.php:695
-msgid "Change profile photo"
-msgstr "Changer la photo du profil"
+#: ../../include/js_strings.php:15
+msgid "Passphrase hint"
+msgstr "Indice pour la phrase de passe"
-#: ../../include/identity.php:726
-msgid "Profiles"
-msgstr "Profils"
+#: ../../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/identity.php:726
-msgid "Manage/edit profiles"
-msgstr "Gérer/éditer les profils"
+#: ../../include/js_strings.php:17
+msgid "close all"
+msgstr "fermer tout"
-#: ../../include/identity.php:727 ../../mod/profiles.php:696
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../include/js_strings.php:18
+msgid "Nothing new here"
+msgstr "Aucun nouveau contenu trouvé"
-#: ../../include/identity.php:741 ../../mod/profiles.php:707
-msgid "Profile Image"
-msgstr "Image du profil"
+#: ../../include/js_strings.php:19
+msgid "Rate This Channel (this is public)"
+msgstr "Evaluer ce canal (publiquement)"
-#: ../../include/identity.php:744
-msgid "visible to everybody"
-msgstr "visible pour tous"
+#: ../../include/js_strings.php:20 ../../mod/connedit.php:703
+#: ../../mod/rate.php:157
+msgid "Rating"
+msgstr "Evaluation"
-#: ../../include/identity.php:745 ../../mod/profiles.php:591
-#: ../../mod/profiles.php:711
-msgid "Edit visibility"
-msgstr "Éditer la visibilité"
-
-#: ../../include/identity.php:759 ../../include/identity.php:983
-#: ../../mod/directory.php:158
-msgid "Gender:"
-msgstr "Sexe&nbsp;:"
+#: ../../include/js_strings.php:21
+msgid "Describe (optional)"
+msgstr "Description (facultative)"
+
+#: ../../include/js_strings.php:22 ../../include/widgets.php:699
+#: ../../include/widgets.php:711 ../../include/ItemObject.php:703
+#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
+#: ../../mod/connect.php:93 ../../mod/connedit.php:720
+#: ../../mod/events.php:461 ../../mod/events.php:658
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/import_items.php:116 ../../mod/invite.php:142
+#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
+#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
+#: ../../mod/photos.php:645 ../../mod/photos.php:1019
+#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
+#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
+#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
+#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
+#: ../../mod/rate.php:168 ../../mod/settings.php:586
+#: ../../mod/settings.php:698 ../../mod/settings.php:726
+#: ../../mod/settings.php:749 ../../mod/settings.php:834
+#: ../../mod/settings.php:1025 ../../mod/setup.php:333 ../../mod/setup.php:374
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
+#: ../../mod/thing.php:358 ../../mod/xchan.php:11
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Envoyer"
-#: ../../include/identity.php:760 ../../include/identity.php:1027
-#: ../../mod/directory.php:160
-msgid "Status:"
-msgstr "État&nbsp;:"
+#: ../../include/js_strings.php:23
+msgid "Please enter a link URL"
+msgstr "Merci d'insérer une URL"
-#: ../../include/identity.php:761 ../../include/identity.php:1038
-#: ../../mod/directory.php:162
-msgid "Homepage:"
-msgstr "Site web&nbsp;:"
+#: ../../include/js_strings.php:24
+msgid "Unsaved changes. Are you sure you wish to leave this page?"
+msgstr "Changements en attente. Voulez-vous vraiment quitter cette page?"
-#: ../../include/identity.php:762 ../../mod/dirprofile.php:151
-msgid "Online Now"
-msgstr "Connecté"
+#: ../../include/js_strings.php:25 ../../mod/events.php:452
+#: ../../mod/profiles.php:464 ../../mod/pubsites.php:28
+msgid "Location"
+msgstr "Emplacement"
-#: ../../include/identity.php:827 ../../include/identity.php:907
-#: ../../mod/ping.php:298
-msgid "g A l F d"
-msgstr "H:i l d F"
+#: ../../include/js_strings.php:27
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
-#: ../../include/identity.php:828 ../../include/identity.php:908
-msgid "F d"
-msgstr "d F"
+#: ../../include/js_strings.php:28
+msgid "timeago.prefixFromNow"
+msgstr "timeago.prefixFromNow"
-#: ../../include/identity.php:873 ../../include/identity.php:948
-#: ../../mod/ping.php:320
-msgid "[today]"
-msgstr "[aujourd'hui]"
+#: ../../include/js_strings.php:29
+msgid "ago"
+msgstr "auparavant"
-#: ../../include/identity.php:885
-msgid "Birthday Reminders"
-msgstr "Rappels d'anniversaires"
+#: ../../include/js_strings.php:30
+msgid "from now"
+msgstr "de maintenant"
-#: ../../include/identity.php:886
-msgid "Birthdays this week:"
-msgstr "Anniversaires cette semaine&nbsp;:"
+#: ../../include/js_strings.php:31
+msgid "less than a minute"
+msgstr "moins d'une minute"
-#: ../../include/identity.php:941
-msgid "[No description]"
-msgstr "[Pas de description]"
+#: ../../include/js_strings.php:32
+msgid "about a minute"
+msgstr "environ une minute"
-#: ../../include/identity.php:959
-msgid "Event Reminders"
-msgstr "Rappels d'événements"
+#: ../../include/js_strings.php:33
+#, php-format
+msgid "%d minutes"
+msgstr "%d minutes"
-#: ../../include/identity.php:960
-msgid "Events this week:"
-msgstr "Événements cette semaine&nbsp;:"
+#: ../../include/js_strings.php:34
+msgid "about an hour"
+msgstr "environ une heure"
-#: ../../include/identity.php:981 ../../mod/settings.php:942
-msgid "Full Name:"
-msgstr "Nom complet&nbsp;:"
+#: ../../include/js_strings.php:35
+#, php-format
+msgid "about %d hours"
+msgstr "environ %d heures"
-#: ../../include/identity.php:988
-msgid "Like this channel"
-msgstr "J'aime ce canal"
+#: ../../include/js_strings.php:36
+msgid "a day"
+msgstr "un jour"
-#: ../../include/identity.php:1012
-msgid "j F, Y"
-msgstr "j F Y"
+#: ../../include/js_strings.php:37
+#, php-format
+msgid "%d days"
+msgstr "%d jours"
-#: ../../include/identity.php:1013
-msgid "j F"
-msgstr "j F"
+#: ../../include/js_strings.php:38
+msgid "about a month"
+msgstr "environ un mois"
-#: ../../include/identity.php:1020
-msgid "Birthday:"
-msgstr "Date de naissance&nbsp;:"
+#: ../../include/js_strings.php:39
+#, php-format
+msgid "%d months"
+msgstr "%d mois"
-#: ../../include/identity.php:1024
-msgid "Age:"
-msgstr "Age&nbsp;:"
+#: ../../include/js_strings.php:40
+msgid "about a year"
+msgstr "environ un an"
-#: ../../include/identity.php:1033
+#: ../../include/js_strings.php:41
#, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+msgid "%d years"
+msgstr "%d années"
-#: ../../include/identity.php:1036 ../../mod/profiles.php:613
-msgid "Sexual Preference:"
-msgstr "Orientation sexuelle&nbsp;:"
+#: ../../include/js_strings.php:42
+msgid " "
+msgstr ""
-#: ../../include/identity.php:1040 ../../mod/profiles.php:615
-msgid "Hometown:"
-msgstr "Ville natale&nbsp;:"
+#: ../../include/js_strings.php:43
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
-#: ../../include/identity.php:1042
-msgid "Tags:"
-msgstr "Étiquettes&nbsp;:"
+#: ../../include/js_strings.php:45 ../../include/text.php:1191
+msgid "January"
+msgstr "Janvier"
-#: ../../include/identity.php:1044 ../../mod/profiles.php:616
-msgid "Political Views:"
-msgstr "Opinions politiques&nbsp;:"
+#: ../../include/js_strings.php:46 ../../include/text.php:1191
+msgid "February"
+msgstr "Février"
-#: ../../include/identity.php:1046
-msgid "Religion:"
-msgstr "Religion&nbsp;:"
+#: ../../include/js_strings.php:47 ../../include/text.php:1191
+msgid "March"
+msgstr "Mars"
-#: ../../include/identity.php:1048 ../../mod/directory.php:164
-msgid "About:"
-msgstr "À propos&nbsp;:"
+#: ../../include/js_strings.php:48 ../../include/text.php:1191
+msgid "April"
+msgstr "Avril"
-#: ../../include/identity.php:1050
-msgid "Hobbies/Interests:"
-msgstr "Occupations/Centres d'intérêt&nbsp;:"
+#: ../../include/js_strings.php:49
+msgctxt "long"
+msgid "May"
+msgstr "Mai"
-#: ../../include/identity.php:1052 ../../mod/profiles.php:619
-msgid "Likes:"
-msgstr "Aime&nbsp;:"
+#: ../../include/js_strings.php:50 ../../include/text.php:1191
+msgid "June"
+msgstr "Juin"
-#: ../../include/identity.php:1054 ../../mod/profiles.php:620
-msgid "Dislikes:"
-msgstr "N'aime pas&nbsp;:"
+#: ../../include/js_strings.php:51 ../../include/text.php:1191
+msgid "July"
+msgstr "Juillet"
-#: ../../include/identity.php:1057
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées et réseaux sociaux&nbsp;:"
+#: ../../include/js_strings.php:52 ../../include/text.php:1191
+msgid "August"
+msgstr "Août"
-#: ../../include/identity.php:1059
-msgid "My other channels:"
-msgstr "Mes autres canaux&nbsp;:"
+#: ../../include/js_strings.php:53 ../../include/text.php:1191
+msgid "September"
+msgstr "Septembre"
-#: ../../include/identity.php:1061
-msgid "Musical interests:"
-msgstr "Goûts musicaux&nbsp;:"
+#: ../../include/js_strings.php:54 ../../include/text.php:1191
+msgid "October"
+msgstr "Octobre"
-#: ../../include/identity.php:1063
-msgid "Books, literature:"
-msgstr "Lectures, goûts littéraires&nbsp;:"
+#: ../../include/js_strings.php:55 ../../include/text.php:1191
+msgid "November"
+msgstr "Novembre"
-#: ../../include/identity.php:1065
-msgid "Television:"
-msgstr "Télévision&nbsp;:"
+#: ../../include/js_strings.php:56 ../../include/text.php:1191
+msgid "December"
+msgstr "Décembre"
-#: ../../include/identity.php:1067
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/danse/culture/divertissement&nbsp;:"
+#: ../../include/js_strings.php:57
+msgid "Jan"
+msgstr "Jan"
-#: ../../include/identity.php:1069
-msgid "Love/Romance:"
-msgstr "Vie sentimentale/amoureuse&nbsp;:"
+#: ../../include/js_strings.php:58
+msgid "Feb"
+msgstr "Fev"
-#: ../../include/identity.php:1071
-msgid "Work/employment:"
-msgstr "Travail&nbsp;:"
+#: ../../include/js_strings.php:59
+msgid "Mar"
+msgstr "Mar"
-#: ../../include/identity.php:1073
-msgid "School/education:"
-msgstr "Cursus&nbsp;:"
+#: ../../include/js_strings.php:60
+msgid "Apr"
+msgstr "Avr"
-#: ../../include/identity.php:1093
-msgid "Like this thing"
-msgstr "J'aime ceci"
+#: ../../include/js_strings.php:61
+msgctxt "short"
+msgid "May"
+msgstr "Mai"
-#: ../../include/network.php:652
-msgid "view full size"
-msgstr "pleine taille"
-
-#: ../../include/bbcode.php:112 ../../include/bbcode.php:645
-#: ../../include/bbcode.php:648 ../../include/bbcode.php:653
-#: ../../include/bbcode.php:656 ../../include/bbcode.php:659
-#: ../../include/bbcode.php:662 ../../include/bbcode.php:667
-#: ../../include/bbcode.php:670 ../../include/bbcode.php:675
-#: ../../include/bbcode.php:678 ../../include/bbcode.php:681
-#: ../../include/bbcode.php:684
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../include/js_strings.php:62
+msgid "Jun"
+msgstr "Jun"
-#: ../../include/bbcode.php:147 ../../include/bbcode.php:695
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../include/js_strings.php:63
+msgid "Jul"
+msgstr "Jul"
-#: ../../include/bbcode.php:163
-msgid "QR code"
-msgstr "code QR"
+#: ../../include/js_strings.php:64
+msgid "Aug"
+msgstr "Aou"
-#: ../../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/js_strings.php:65
+msgid "Sep"
+msgstr "Sep"
-#: ../../include/bbcode.php:214
-msgid "post"
-msgstr "l'article"
+#: ../../include/js_strings.php:66
+msgid "Oct"
+msgstr "Oct"
-#: ../../include/bbcode.php:613 ../../include/bbcode.php:633
-msgid "$1 wrote:"
-msgstr "$1 a écrit&nbsp;:"
+#: ../../include/js_strings.php:67
+msgid "Nov"
+msgstr "Nov"
-#: ../../include/message.php:18
-msgid "No recipient provided."
-msgstr "Pas de destinataire."
+#: ../../include/js_strings.php:68
+msgid "Dec"
+msgstr "Dec"
-#: ../../include/message.php:23
-msgid "[no subject]"
-msgstr "[sans objet]"
+#: ../../include/js_strings.php:69 ../../include/text.php:1187
+msgid "Sunday"
+msgstr "Dimanche"
-#: ../../include/message.php:42
-msgid "Unable to determine sender."
-msgstr "Impossible de déterminer l'émetteur."
+#: ../../include/js_strings.php:70 ../../include/text.php:1187
+msgid "Monday"
+msgstr "Lundi"
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
-msgstr "Le message stocké n'a pas pu être vérifié."
+#: ../../include/js_strings.php:71 ../../include/text.php:1187
+msgid "Tuesday"
+msgstr "Mardi"
-#: ../../include/widgets.php:80
-msgid "System"
-msgstr "Système"
+#: ../../include/js_strings.php:72 ../../include/text.php:1187
+msgid "Wednesday"
+msgstr "Mercredi"
-#: ../../include/widgets.php:83
-msgid "Create Personal App"
-msgstr "Créer Votre Application"
+#: ../../include/js_strings.php:73 ../../include/text.php:1187
+msgid "Thursday"
+msgstr "Jeudi"
-#: ../../include/widgets.php:84
-msgid "Edit Personal App"
-msgstr "Éditer Votre Application"
+#: ../../include/js_strings.php:74 ../../include/text.php:1187
+msgid "Friday"
+msgstr "Vendredi"
-#: ../../include/widgets.php:130 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorer/Cacher"
+#: ../../include/js_strings.php:75 ../../include/text.php:1187
+msgid "Saturday"
+msgstr "Samedi"
-#: ../../include/widgets.php:136 ../../mod/connections.php:267
-msgid "Suggestions"
-msgstr "Suggestion"
+#: ../../include/js_strings.php:76
+msgid "Sun"
+msgstr "Dim"
-#: ../../include/widgets.php:137
-msgid "See more..."
-msgstr "Voir plus..."
+#: ../../include/js_strings.php:77
+msgid "Mon"
+msgstr "Lun"
-#: ../../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/js_strings.php:78
+msgid "Tue"
+msgstr "Mar"
-#: ../../include/widgets.php:165
-msgid "Add New Connection"
-msgstr "Ajouter une nouvelle relation"
+#: ../../include/js_strings.php:79
+msgid "Wed"
+msgstr "Mer"
-#: ../../include/widgets.php:166
-msgid "Enter the channel address"
-msgstr "Adresse du canal"
+#: ../../include/js_strings.php:80
+msgid "Thu"
+msgstr "Jeu"
-#: ../../include/widgets.php:167
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple&nbsp;: bob@exemple.com, http://exemple.com/barbara"
+#: ../../include/js_strings.php:81
+msgid "Fri"
+msgstr "Ven"
-#: ../../include/widgets.php:184
-msgid "Notes"
-msgstr "Notes"
+#: ../../include/js_strings.php:82
+msgid "Sat"
+msgstr "Sam"
-#: ../../include/widgets.php:256
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../include/js_strings.php:83
+msgctxt "calendar"
+msgid "today"
+msgstr "aujourd'hui"
-#: ../../include/widgets.php:335
-msgid "Archives"
-msgstr "Archives"
+#: ../../include/js_strings.php:84
+msgctxt "calendar"
+msgid "month"
+msgstr "mois"
-#: ../../include/widgets.php:397
-msgid "Refresh"
-msgstr "Actualiser"
+#: ../../include/js_strings.php:85
+msgctxt "calendar"
+msgid "week"
+msgstr "semaine"
-#: ../../include/widgets.php:398 ../../mod/connedit.php:470
-msgid "Me"
-msgstr "Moi"
+#: ../../include/js_strings.php:86
+msgctxt "calendar"
+msgid "day"
+msgstr "jour"
-#: ../../include/widgets.php:399 ../../mod/connedit.php:472
-msgid "Best Friends"
-msgstr "Mes meilleurs amis"
+#: ../../include/js_strings.php:87
+msgctxt "calendar"
+msgid "All day"
+msgstr "Toute la journée"
-#: ../../include/widgets.php:401
-msgid "Co-workers"
-msgstr "Mes collègues"
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr "Pas de destinataire."
-#: ../../include/widgets.php:402 ../../mod/connedit.php:474
-msgid "Former Friends"
-msgstr "Mes anciens amis"
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr "[sans objet]"
-#: ../../include/widgets.php:403 ../../mod/connedit.php:475
-msgid "Acquaintances"
-msgstr "Mes connaissances"
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr "Impossible de déterminer l'émetteur."
-#: ../../include/widgets.php:404
-msgid "Everybody"
-msgstr "Tout le monde"
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
+msgstr "Le message stocké n'a pas pu être vérifié."
-#: ../../include/widgets.php:436
-msgid "Account settings"
-msgstr "Réglages du Compte"
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1517
+msgid "Logout"
+msgstr "Déconnexion"
-#: ../../include/widgets.php:442
-msgid "Channel settings"
-msgstr "Réglages du Canal"
+#: ../../include/nav.php:82 ../../include/nav.php:115
+msgid "End this session"
+msgstr "Mettre fin à la session"
-#: ../../include/widgets.php:448
-msgid "Additional features"
-msgstr "Fonctions supplémentaires"
+#: ../../include/nav.php:85 ../../include/nav.php:146
+msgid "Home"
+msgstr "Mon canal"
-#: ../../include/widgets.php:454
-msgid "Feature settings"
-msgstr "Extensions"
+#: ../../include/nav.php:85
+msgid "Your posts and conversations"
+msgstr "Vos publications et conversations"
-#: ../../include/widgets.php:460
-msgid "Display settings"
-msgstr "Réglages d'affichage"
+#: ../../include/nav.php:86
+msgid "Your profile page"
+msgstr "Votre profil"
-#: ../../include/widgets.php:466
-msgid "Connected apps"
-msgstr "Applications connectées"
+#: ../../include/nav.php:88
+msgid "Edit Profiles"
+msgstr "Modifier les profils"
-#: ../../include/widgets.php:472
-msgid "Export channel"
-msgstr "Exporter le canal"
+#: ../../include/nav.php:88
+msgid "Manage/Edit profiles"
+msgstr "Gérer/modifier les profils"
-#: ../../include/widgets.php:484
-msgid "Automatic Permissions (Advanced)"
-msgstr "Permissions automatiques (avancé)"
+#: ../../include/nav.php:90 ../../include/identity.php:977
+msgid "Edit Profile"
+msgstr "Éditeur de profil"
-#: ../../include/widgets.php:494
-msgid "Premium Channel Settings"
-msgstr "Canal VIP"
+#: ../../include/nav.php:90
+msgid "Edit your profile"
+msgstr "Modifier votre profil"
-#: ../../include/widgets.php:531
-msgid "Check Mail"
-msgstr "Vérifier le courrier"
+#: ../../include/nav.php:92
+msgid "Your photos"
+msgstr "Vos photos"
-#: ../../include/widgets.php:612
-msgid "Chat Rooms"
-msgstr "Salons de clavardage"
+#: ../../include/nav.php:93
+msgid "Your files"
+msgstr "Vos fichiers"
-#: ../../include/widgets.php:630
-msgid "Bookmarked Chatrooms"
-msgstr "Salons favoris"
+#: ../../include/nav.php:98
+msgid "Your chatrooms"
+msgstr "Vos salons"
-#: ../../include/widgets.php:648
-msgid "Suggested Chatrooms"
-msgstr "Salons suggérés"
+#: ../../include/nav.php:104
+msgid "Your bookmarks"
+msgstr "Vos favoris"
-#: ../../include/ItemObject.php:118
-msgid "Save to Folder"
-msgstr "Sauvegarder dans le dossier"
+#: ../../include/nav.php:108
+msgid "Your webpages"
+msgstr "Vos pages web"
-#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142
-msgid "View all"
-msgstr "Voir tout"
+#: ../../include/nav.php:112
+msgid "Sign in"
+msgstr "Connexion"
-#: ../../include/ItemObject.php:139
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Je déteste"
-msgstr[1] "Je déteste"
+#: ../../include/nav.php:129
+#, php-format
+msgid "%s - click to logout"
+msgstr "%s - cliquer ici pour déconnecter"
-#: ../../include/ItemObject.php:167
-msgid "Add Star"
-msgstr "Ajouter Étoile"
+#: ../../include/nav.php:132
+msgid "Remote authentication"
+msgstr "Authentification distante"
-#: ../../include/ItemObject.php:168
-msgid "Remove Star"
-msgstr "Supprimer Étoile"
+#: ../../include/nav.php:132
+msgid "Click to authenticate to your home hub"
+msgstr "S'authentifier auprès de votre hub principal"
-#: ../../include/ItemObject.php:169
-msgid "Toggle Star Status"
-msgstr "Changer le Statut des Étoiles"
+#: ../../include/nav.php:146
+msgid "Home Page"
+msgstr "Page d'accueil"
-#: ../../include/ItemObject.php:173
-msgid "starred"
-msgstr "mis en avant"
+#: ../../include/nav.php:150 ../../mod/register.php:264 ../../boot.php:1500
+msgid "Register"
+msgstr "S'inscrire"
-#: ../../include/ItemObject.php:190
-msgid "Add Tag"
-msgstr "Ajouter une balise"
+#: ../../include/nav.php:150
+msgid "Create an account"
+msgstr "Créer un compte"
-#: ../../include/ItemObject.php:208 ../../mod/photos.php:980
-msgid "I like this (toggle)"
-msgstr "J'aime (oui/non)"
+#: ../../include/nav.php:155
+msgid "Help and documentation"
+msgstr "Aide et documentation"
-#: ../../include/ItemObject.php:209 ../../mod/photos.php:981
-msgid "I don't like this (toggle)"
-msgstr "Je déteste (oui/non)"
+#: ../../include/nav.php:159 ../../include/widgets.php:102
+#: ../../mod/apps.php:36
+msgid "Apps"
+msgstr "Applications"
-#: ../../include/ItemObject.php:211
-msgid "Share This"
-msgstr "Partager"
+#: ../../include/nav.php:159
+msgid "Applications, utilities, links, games"
+msgstr "Applications, utilitaires, liens, jeux"
-#: ../../include/ItemObject.php:211
-msgid "share"
-msgstr "partager"
+#: ../../include/nav.php:161
+msgid "Search site @name, #tag, ?docs, content"
+msgstr "Recherche @nom, #tag, contenu"
-#: ../../include/ItemObject.php:235 ../../include/ItemObject.php:236
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Voir le profil de %s - %s"
+#: ../../include/nav.php:164
+msgid "Channel Directory"
+msgstr "Annuaire des canaux"
-#: ../../include/ItemObject.php:237
-msgid "to"
-msgstr "à"
+#: ../../include/nav.php:176
+msgid "Your grid"
+msgstr "Votre réseau"
-#: ../../include/ItemObject.php:238
-msgid "via"
-msgstr "via"
+#: ../../include/nav.php:177
+msgid "Mark all grid notifications seen"
+msgstr "Marquer toutes les notifications du réseau comme vues"
-#: ../../include/ItemObject.php:239
-msgid "Wall-to-Wall"
-msgstr "Mur-mur"
+#: ../../include/nav.php:179
+msgid "Channel home"
+msgstr "Mon canal"
-#: ../../include/ItemObject.php:240
-msgid "via Wall-To-Wall:"
-msgstr "par Mur-mur&nbsp;:"
+#: ../../include/nav.php:180
+msgid "Mark all channel notifications seen"
+msgstr "Marquer toutes les notifications du canal comme vues"
-#: ../../include/ItemObject.php:274
-msgid "Save Bookmarks"
-msgstr "Enregistrer les favoris"
+#: ../../include/nav.php:183 ../../include/text.php:815
+#: ../../mod/connections.php:298
+msgid "Connections"
+msgstr "Contacts"
-#: ../../include/ItemObject.php:275
-msgid "Add to Calendar"
-msgstr "Ajouter au Calendrier"
+#: ../../include/nav.php:186
+msgid "Notices"
+msgstr "Notifications"
-#: ../../include/ItemObject.php:283
-msgctxt "noun"
-msgid "Likes"
-msgstr "Aimes"
+#: ../../include/nav.php:186
+msgid "Notifications"
+msgstr "Notifications"
-#: ../../include/ItemObject.php:284
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "Détestes"
+#: ../../include/nav.php:187
+msgid "See all notifications"
+msgstr "Voir toutes les notifications"
-#: ../../include/ItemObject.php:315
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commentaire"
-msgstr[1] "%d commentaires"
+#: ../../include/nav.php:188 ../../mod/notifications.php:99
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme vues"
-#: ../../include/ItemObject.php:316 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] voir plus"
+#: ../../include/nav.php:190
+msgid "Private mail"
+msgstr "Messages privés"
-#: ../../include/ItemObject.php:580 ../../mod/photos.php:999
-#: ../../mod/photos.php:1086
-msgid "This is you"
-msgstr "C'est vous"
+#: ../../include/nav.php:191
+msgid "See all private messages"
+msgstr "Voir tous les messages privés"
-#: ../../include/ItemObject.php:582 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1001 ../../mod/photos.php:1088
-msgid "Comment"
-msgstr "Commenter"
+#: ../../include/nav.php:192
+msgid "Mark all private messages seen"
+msgstr "Marquer tous les messages privés comme vus"
-#: ../../include/ItemObject.php:583 ../../mod/mood.php:135
-#: ../../mod/settings.php:517 ../../mod/settings.php:629
-#: ../../mod/settings.php:657 ../../mod/settings.php:681
-#: ../../mod/settings.php:754 ../../mod/settings.php:934
-#: ../../mod/poke.php:166 ../../mod/profiles.php:589 ../../mod/chat.php:177
-#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:518
-#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58
-#: ../../mod/photos.php:563 ../../mod/photos.php:674 ../../mod/photos.php:962
-#: ../../mod/photos.php:1002 ../../mod/photos.php:1089
-#: ../../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:451
-#: ../../mod/admin.php:760 ../../mod/admin.php:895 ../../mod/admin.php:1028
-#: ../../mod/admin.php:1227 ../../mod/admin.php:1314 ../../mod/thing.php:286
-#: ../../mod/thing.php:329 ../../mod/import.php:393 ../../mod/invite.php:142
-#: ../../mod/mail.php:345 ../../mod/appman.php:99 ../../mod/poll.php:68
-#: ../../mod/frphotos.php:84 ../../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/nav.php:193 ../../include/widgets.php:598
+msgid "Inbox"
+msgstr "Boîte de réception"
-#: ../../include/ItemObject.php:584
-msgid "Bold"
-msgstr "Gras"
+#: ../../include/nav.php:194 ../../include/widgets.php:603
+msgid "Outbox"
+msgstr "Boîte d'envoi"
-#: ../../include/ItemObject.php:585
-msgid "Italic"
-msgstr "Italique"
+#: ../../include/nav.php:195 ../../include/widgets.php:608
+msgid "New Message"
+msgstr "Nouveau message"
-#: ../../include/ItemObject.php:586
-msgid "Underline"
-msgstr "Souligné"
+#: ../../include/nav.php:198
+msgid "Event Calendar"
+msgstr "Calendrier des événements"
-#: ../../include/ItemObject.php:587
-msgid "Quote"
-msgstr "Citation"
+#: ../../include/nav.php:199
+msgid "See all events"
+msgstr "Voir tous les événements"
-#: ../../include/ItemObject.php:588
-msgid "Code"
-msgstr "Code"
+#: ../../include/nav.php:200
+msgid "Mark all events seen"
+msgstr "Marquer tous les événements comme vus"
-#: ../../include/ItemObject.php:589
-msgid "Image"
-msgstr "Image"
+#: ../../include/nav.php:203
+msgid "Manage Your Channels"
+msgstr "Gérer vos canaux"
-#: ../../include/ItemObject.php:590
-msgid "Link"
-msgstr "Lien/URL"
+#: ../../include/nav.php:205
+msgid "Account/Channel Settings"
+msgstr "Paramètres du Compte/Canal"
-#: ../../include/ItemObject.php:591
-msgid "Video"
-msgstr "Vidéo"
+#: ../../include/nav.php:213 ../../include/widgets.php:1320
+msgid "Admin"
+msgstr "Administrateur"
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr "Supprimer cet élément?"
+#: ../../include/nav.php:213
+msgid "Site Setup and Configuration"
+msgstr "Configuration du site"
-#: ../../include/js_strings.php:8
-msgid "[-] show less"
-msgstr "[-] montrer moins"
+#: ../../include/nav.php:249
+msgid "@name, #tag, ?doc, content"
+msgstr "@nom, #étiquette, ?doc, contenu"
-#: ../../include/js_strings.php:9
-msgid "[+] expand"
-msgstr "[+] déplier"
+#: ../../include/nav.php:250
+msgid "Please wait..."
+msgstr "Merci de patienter..."
-#: ../../include/js_strings.php:10
-msgid "[-] collapse"
-msgstr "[-] replier"
+#: ../../include/network.php:630
+msgid "view full size"
+msgstr "voir en taille réelle"
-#: ../../include/js_strings.php:11
-msgid "Password too short"
-msgstr "Mot de passe trop court"
+#: ../../include/network.php:1612 ../../include/enotify.php:57
+msgid "$Projectname Notification"
+msgstr "Notification $Projectname"
-#: ../../include/js_strings.php:12
-msgid "Passwords do not match"
-msgstr "Les mots de passe ne correspondent pas"
+#: ../../include/network.php:1613 ../../include/enotify.php:58
+msgid "$projectname"
+msgstr "$projectname"
-#: ../../include/js_strings.php:13 ../../mod/photos.php:39
-msgid "everybody"
-msgstr "tout le monde"
+#: ../../include/network.php:1615 ../../include/enotify.php:60
+msgid "Thank You,"
+msgstr "Merci,"
-#: ../../include/js_strings.php:14
-msgid "Secret Passphrase"
-msgstr "Phrase de passe secrète"
+#: ../../include/network.php:1617 ../../include/enotify.php:62
+#, php-format
+msgid "%s Administrator"
+msgstr "l'administrateur de %s"
-#: ../../include/js_strings.php:15
-msgid "Passphrase hint"
-msgstr "Indice pour la phrase de passe"
+#: ../../include/network.php:1674
+msgid "No Subject"
+msgstr "Pas d'objet"
-#: ../../include/js_strings.php:16
-msgid "Notice: Permissions have changed but have not yet been submitted."
-msgstr "Note&nbsp;: Les permissions ont changé, mais n'ont pas encore été soumises."
+#: ../../include/notify.php:20
+msgid "created a new post"
+msgstr "a publié un nouveau message"
-#: ../../include/js_strings.php:17
-msgid "close all"
-msgstr "fermer tout"
+#: ../../include/notify.php:21
+#, php-format
+msgid "commented on %s's post"
+msgstr "a commenté la publication de %s"
-#: ../../include/js_strings.php:19
-msgid "timeago.prefixAgo"
-msgstr "Il y a"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Nouvelle page"
-#: ../../include/js_strings.php:20
-msgid "timeago.prefixFromNow"
-msgstr "timeago.prefixFromNow"
+#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159
+#: ../../mod/layouts.php:188 ../../mod/webpages.php:187
+msgid "View"
+msgstr "Voir"
-#: ../../include/js_strings.php:21
-msgid "ago"
-msgstr " "
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189
+msgid "Actions"
+msgstr "Actions"
-#: ../../include/js_strings.php:22
-msgid "from now"
-msgstr "de maintenant"
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190
+msgid "Page Link"
+msgstr "Lien vers la page"
-#: ../../include/js_strings.php:23
-msgid "less than a minute"
-msgstr "moins d'une minute"
+#: ../../include/page_widgets.php:43
+msgid "Title"
+msgstr "Titre"
-#: ../../include/js_strings.php:24
-msgid "about a minute"
-msgstr "environ une minute"
+#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150
+#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:192
+msgid "Created"
+msgstr "Créé(e)"
-#: ../../include/js_strings.php:25
-#, php-format
-msgid "%d minutes"
-msgstr "%d minutes"
+#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151
+#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:193
+msgid "Edited"
+msgstr "Modifié(e)"
-#: ../../include/js_strings.php:26
-msgid "about an hour"
-msgstr "environ une heure"
+#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94
+#: ../../mod/photos.php:711 ../../mod/profile_photo.php:147
+#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379
+msgid "Profile Photos"
+msgstr "Photos du profil"
-#: ../../include/js_strings.php:27
+#: ../../include/photos.php:112
#, php-format
-msgid "about %d hours"
-msgstr "environ %d heures"
-
-#: ../../include/js_strings.php:28
-msgid "a day"
-msgstr "un jour"
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "L'image dépasse la taille limite de %lu octets"
-#: ../../include/js_strings.php:29
-#, php-format
-msgid "%d days"
-msgstr "%d jours"
+#: ../../include/photos.php:119
+msgid "Image file is empty."
+msgstr "L'image est vide."
-#: ../../include/js_strings.php:30
-msgid "about a month"
-msgstr "environ un mois"
+#: ../../include/photos.php:146 ../../mod/profile_photo.php:225
+#: ../../mod/cover_photo.php:164
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
-#: ../../include/js_strings.php:31
-#, php-format
-msgid "%d months"
-msgstr "%d mois"
+#: ../../include/photos.php:257
+msgid "Photo storage failed."
+msgstr "Le stockage de l'image a échoué."
-#: ../../include/js_strings.php:32
-msgid "about a year"
-msgstr "environ un an"
+#: ../../include/photos.php:297
+msgid "a new photo"
+msgstr "une nouvelle photo"
-#: ../../include/js_strings.php:33
+#: ../../include/photos.php:301
#, php-format
-msgid "%d years"
-msgstr "%d années"
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
+msgstr "%1$s a publié %2$s pour %3$s"
-#: ../../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/photos.php:510
+msgid "Upload New Photos"
+msgstr "Ajouter des photos"
#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
msgid "Male"
-msgstr "Masculin"
+msgstr "Homme"
#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:105
msgid "Female"
-msgstr "Féminin"
+msgstr "Femme"
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
-msgstr "Actuellement masculin"
+msgstr "Actuellement homme"
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
-msgstr "Actuellement féminin"
+msgstr "Actuellement femme"
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
-msgstr "Surtout masculin"
+msgstr "Surtout homme"
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
-msgstr "Surtout féminin"
+msgstr "Surtout femme"
#: ../../include/profile_selectors.php:6
msgid "Transgender"
@@ -3261,12 +2362,12 @@ msgstr "Neutre"
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
-msgstr "Rien de spécifique"
+msgstr "Non spécifique"
#: ../../include/profile_selectors.php:6
#: ../../include/profile_selectors.php:23
#: ../../include/profile_selectors.php:61
-#: ../../include/profile_selectors.php:97
+#: ../../include/profile_selectors.php:97 ../../include/permissions.php:871
msgid "Other"
msgstr "Autre"
@@ -3326,7 +2427,7 @@ msgstr "Une floppée"
#: ../../include/profile_selectors.php:42
msgid "Nonsexual"
-msgstr "Nonsexuel"
+msgstr "Non-sexuel"
#: ../../include/profile_selectors.php:80
#: ../../include/profile_selectors.php:97
@@ -3366,6 +2467,15 @@ msgstr "Infidèle"
msgid "Sex Addict"
msgstr "Accro au sexe"
+#: ../../include/profile_selectors.php:80 ../../include/identity.php:390
+#: ../../include/identity.php:391 ../../include/identity.php:398
+#: ../../include/widgets.php:451 ../../mod/connedit.php:582
+#: ../../mod/settings.php:338 ../../mod/settings.php:342
+#: ../../mod/settings.php:343 ../../mod/settings.php:346
+#: ../../mod/settings.php:357
+msgid "Friends"
+msgstr "Amis"
+
#: ../../include/profile_selectors.php:80
msgid "Friends/Benefits"
msgstr "Amis avec bénéfices"
@@ -3410,7 +2520,7 @@ msgstr "Pas en recherche"
#: ../../include/profile_selectors.php:80
msgid "Swinger"
-msgstr "Infidèle"
+msgstr "Echangiste"
#: ../../include/profile_selectors.php:80
msgid "Betrayed"
@@ -3456,1361 +2566,1882 @@ msgstr "S'en fiche"
msgid "Ask me"
msgstr "Me demander"
-#: ../../include/auth.php:90
-msgid "Logged out."
-msgstr "Deconnecté."
+#: ../../include/security.php:384
+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/auth.php:236
-msgid "Failed authentication"
-msgstr "Échec de l'authentification"
+#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261
+msgid "Tags"
+msgstr "Étiquettes"
-#: ../../include/auth.php:251 ../../mod/openid.php:188
-msgid "Login failed."
-msgstr "Échec de la connexion."
+#: ../../include/taxonomy.php:305
+msgid "Keywords"
+msgstr "Mots-clefs"
-#: ../../include/permissions.php:13
-msgid "Can view my normal stream and posts"
-msgstr "Peut voir les publications sur mon canal et ses partages."
+#: ../../include/taxonomy.php:326
+msgid "have"
+msgstr "ont"
-#: ../../include/permissions.php:14
-msgid "Can view my default channel profile"
-msgstr "Peut voir le profil du canal par défaut."
+#: ../../include/taxonomy.php:326
+msgid "has"
+msgstr "a"
-#: ../../include/permissions.php:15
-msgid "Can view my photo albums"
-msgstr "Peut voir mon album photos"
+#: ../../include/taxonomy.php:327
+msgid "want"
+msgstr "veulent"
-#: ../../include/permissions.php:16
-msgid "Can view my connections"
-msgstr "Peut voir mes connections"
+#: ../../include/taxonomy.php:327
+msgid "wants"
+msgstr "veut"
-#: ../../include/permissions.php:17
-msgid "Can view my file storage"
-msgstr "Peut voir mes fichiers en partage"
+#: ../../include/taxonomy.php:328 ../../include/ItemObject.php:254
+msgid "like"
+msgstr "aiment"
-#: ../../include/permissions.php:18
-msgid "Can view my webpages"
-msgstr "Peut voir mes sites-web"
+#: ../../include/taxonomy.php:328
+msgid "likes"
+msgstr "aime"
-#: ../../include/permissions.php:21
-msgid "Can send me their channel stream and posts"
-msgstr "Peut m'envoyer le flux et les publications de leur canal"
+#: ../../include/taxonomy.php:329 ../../include/ItemObject.php:255
+msgid "dislike"
+msgstr "n'aiment pas"
-#: ../../include/permissions.php:22
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Peut poster sur la page de mon canal (\"mur\")"
+#: ../../include/taxonomy.php:329
+msgid "dislikes"
+msgstr "n'aime pas"
-#: ../../include/permissions.php:23
-msgid "Can comment on or like my posts"
-msgstr "Peuvent commenter et/ou aimer mes publications"
+#: ../../include/zot.php:676
+msgid "Invalid data packet"
+msgstr "Paquet de données invalide"
-#: ../../include/permissions.php:24
-msgid "Can send me private mail messages"
-msgstr "Peut m'envoyer des messages privés"
+#: ../../include/zot.php:692
+msgid "Unable to verify channel signature"
+msgstr "Impossible de vérifier la signature du canal"
-#: ../../include/permissions.php:25
-msgid "Can post photos to my photo albums"
-msgstr "Peut ajouter des photos à mes albums"
+#: ../../include/zot.php:2268
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Impossible de vérifier la signature de site pour %s"
-#: ../../include/permissions.php:26
-msgid "Can like/dislike stuff"
-msgstr "Peuvent aimer/détester"
+#: ../../include/zot.php:3591
+msgid "invalid target signature"
+msgstr "signature de la cible invalide"
-#: ../../include/permissions.php:26
-msgid "Profiles and things other than posts/comments"
-msgstr "Profils et autres excluant les publications/commentaires."
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Fréquemment"
-#: ../../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/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Toutes les heures"
-#: ../../include/permissions.php:28
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Avancé - utile seulement pour les canaux de type \"forum/groupe\""
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Deux fois par jour"
-#: ../../include/permissions.php:29
-msgid "Can chat with me (when available)"
-msgstr "Peut discuter avec moi (sous réserve de disponibilité)"
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Chaque jour"
-#: ../../include/permissions.php:30
-msgid "Can write to my file storage"
-msgstr "Peut écrire dans mon partage de fichiers"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Chaque semaine"
-#: ../../include/permissions.php:31
-msgid "Can edit my webpages"
-msgstr "Peut modifier mes sites-web"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Chaque mois"
-#: ../../include/permissions.php:33
-msgid "Can source my public posts in derived channels"
-msgstr "Peut rediriger mes publications publiques dans des canaux dérivés"
+#: ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
-#: ../../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/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
-#: ../../include/permissions.php:35
-msgid "Can administer my channel resources"
-msgstr "Peut administrer les ressources de mon canal"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
-#: ../../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/contact_selectors.php:79 ../../mod/id.php:15
+#: ../../mod/id.php:16 ../../mod/admin.php:989 ../../mod/admin.php:998
+#: ../../boot.php:1520
+msgid "Email"
+msgstr "Courriel"
-#: ../../mod/mood.php:132
-msgid "Set your current mood and tell your friends"
-msgstr "Indiquez votre humeur du moment à vos amis"
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
-#: ../../mod/mitem.php:14 ../../mod/menu.php:92
-msgid "Menu not found."
-msgstr "Menu introuvable."
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
-msgstr "Entrée de menu mis à jour."
+#: ../../include/contact_selectors.php:82
+msgid "Zot"
+msgstr "Zot"
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
-msgstr "Impossible de mettre l'entrée de menu à jour."
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "Linkedin"
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
-msgstr "Entrée de menu ajouté."
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
-msgstr "Impossible d'ajouter l'entrée de menu."
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
-#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120
-#: ../../mod/xchan.php:27
-msgid "Not found."
-msgstr "Introuvable."
+#: ../../include/text.php:394
+msgid "prev"
+msgstr "préc."
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
-msgstr "Gérer les entrées de menu"
+#: ../../include/text.php:396
+msgid "first"
+msgstr "premier"
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
-msgstr "Éditer le menu"
+#: ../../include/text.php:425
+msgid "last"
+msgstr "dernier"
-#: ../../mod/mitem.php:102
-msgid "Edit element"
-msgstr "Éditer l'entrée"
+#: ../../include/text.php:428
+msgid "next"
+msgstr "Suivant"
-#: ../../mod/mitem.php:103
-msgid "Drop element"
-msgstr "Supprimer l'entrée"
+#: ../../include/text.php:438
+msgid "older"
+msgstr "plus ancien"
-#: ../../mod/mitem.php:104
-msgid "New element"
-msgstr "Nouvelle entrée"
+#: ../../include/text.php:440
+msgid "newer"
+msgstr "plus récent"
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
-msgstr "Éditer ce bloc de menu"
+#: ../../include/text.php:803
+msgid "No connections"
+msgstr "Pas de relations."
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
-msgstr "Ajouter une entrée au menu"
+#: ../../include/text.php:828
+#, php-format
+msgid "View all %s connections"
+msgstr "Voir les %s contacts"
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
-msgstr "Supprimer cet entrée du menu"
+#: ../../include/text.php:886 ../../include/text.php:898
+#: ../../include/widgets.php:202 ../../mod/filer.php:49
+#: ../../mod/admin.php:1666 ../../mod/admin.php:1686 ../../mod/rbmark.php:28
+#: ../../mod/rbmark.php:100
+msgid "Save"
+msgstr "Enregistrer"
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
-msgstr "Éditer cette entrée du menu"
+#: ../../include/text.php:973 ../../include/text.php:978
+msgid "poke"
+msgstr "tapoter"
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
-msgstr "Nouvelle entrée de menu"
+#: ../../include/text.php:979
+msgid "ping"
+msgstr "ping"
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
-msgstr "Permissions de l'entrée de menu"
+#: ../../include/text.php:979
+msgid "pinged"
+msgstr "pingé"
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:967
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
+#: ../../include/text.php:980
+msgid "prod"
+msgstr "encourager"
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
-msgstr "Texte du lien"
+#: ../../include/text.php:980
+msgid "prodded"
+msgstr "encouragé"
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
-msgstr "URL du lien"
+#: ../../include/text.php:981
+msgid "slap"
+msgstr "giffler"
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
-msgstr "Utiliser l'authentification magique, lorsque disponible"
+#: ../../include/text.php:981
+msgid "slapped"
+msgstr "gifflé(e)"
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
-msgstr "Ouvrir le lien dans une nouvelle fenêtre"
+#: ../../include/text.php:982
+msgid "finger"
+msgstr "pointer"
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
-msgstr "Ordre dans la liste"
+#: ../../include/text.php:982
+msgid "fingered"
+msgstr "pointé"
-#: ../../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"
+#: ../../include/text.php:983
+msgid "rebuff"
+msgstr "rejetter"
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
-msgstr "Entrée de menu introuvable."
+#: ../../include/text.php:983
+msgid "rebuffed"
+msgstr "rejeté"
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
-msgstr "Entrée de menu supprimée."
+#: ../../include/text.php:995
+msgid "happy"
+msgstr "heureux"
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
-msgstr "Impossible de supprimer l'entrée de menu."
+#: ../../include/text.php:996
+msgid "sad"
+msgstr "triste"
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
-msgstr "Éditer l'entrée de menu"
+#: ../../include/text.php:997
+msgid "mellow"
+msgstr "mélancolique"
-#: ../../mod/mitem.php:186 ../../mod/menu.php:114
-msgid "Modify"
-msgstr "Modifier"
+#: ../../include/text.php:998
+msgid "tired"
+msgstr "fatigué"
-#: ../../mod/ping.php:237
-msgid "sent you a private message"
-msgstr "vous a envoyé un message privé"
+#: ../../include/text.php:999
+msgid "perky"
+msgstr "impertinent"
-#: ../../mod/ping.php:288
-msgid "added your channel"
-msgstr "a ajouté votre canal"
+#: ../../include/text.php:1000
+msgid "angry"
+msgstr "en colère"
-#: ../../mod/ping.php:329
-msgid "posted an event"
-msgstr "a publié un événement"
+#: ../../include/text.php:1001
+msgid "stupefied"
+msgstr "stupéfait"
-#: ../../mod/acl.php:239
-msgid "network"
-msgstr "réseau"
+#: ../../include/text.php:1002
+msgid "puzzled"
+msgstr "perplexe"
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Le nom est requis"
+#: ../../include/text.php:1003
+msgid "interested"
+msgstr "intéressé"
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Clef et secret sont requis"
+#: ../../include/text.php:1004
+msgid "bitter"
+msgstr "amer"
-#: ../../mod/settings.php:196
-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é."
+#: ../../include/text.php:1005
+msgid "cheerful"
+msgstr "plein d'entrain"
-#: ../../mod/settings.php:200
-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é."
+#: ../../include/text.php:1006
+msgid "alive"
+msgstr "vivant"
-#: ../../mod/settings.php:214
-msgid "Password changed."
-msgstr "Le mot de passe a été changé."
+#: ../../include/text.php:1007
+msgid "annoyed"
+msgstr "agaçé"
-#: ../../mod/settings.php:216
-msgid "Password update failed. Please try again."
-msgstr "La mise à jour du mot de passe a échoué. Merci de recommencer."
+#: ../../include/text.php:1008
+msgid "anxious"
+msgstr "anxieux"
-#: ../../mod/settings.php:230
-msgid "Not valid email."
-msgstr "Adresse de courriel non-valide."
+#: ../../include/text.php:1009
+msgid "cranky"
+msgstr "énervé"
-#: ../../mod/settings.php:233
-msgid "Protected email address. Cannot change to that email."
-msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
+#: ../../include/text.php:1010
+msgid "disturbed"
+msgstr "perturbé"
-#: ../../mod/settings.php:242
-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."
+#: ../../include/text.php:1011
+msgid "frustrated"
+msgstr "frustré"
-#: ../../mod/settings.php:445
-msgid "Settings updated."
-msgstr "Réglages sauvegardés."
+#: ../../include/text.php:1012
+msgid "depressed"
+msgstr "déprimé"
-#: ../../mod/settings.php:516 ../../mod/settings.php:542
-#: ../../mod/settings.php:578
-msgid "Add application"
-msgstr "Ajouter une application"
+#: ../../include/text.php:1013
+msgid "motivated"
+msgstr "motivé"
-#: ../../mod/settings.php:519
-msgid "Name of application"
-msgstr "Nom de l'application"
+#: ../../include/text.php:1014
+msgid "relaxed"
+msgstr "détendu"
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Key"
-msgstr "Clef de consommateur"
+#: ../../include/text.php:1015
+msgid "surprised"
+msgstr "surpris"
-#: ../../mod/settings.php:520 ../../mod/settings.php:521
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
+#: ../../include/text.php:1191
+msgid "May"
+msgstr "Mai"
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Consumer Secret"
-msgstr "Secret de consommateur"
+#: ../../include/text.php:1268 ../../include/text.php:1272
+msgid "Unknown Attachment"
+msgstr "Pièce jointe inconnue"
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Redirect"
-msgstr "Redirection"
+#: ../../include/text.php:1274
+msgid "unknown"
+msgstr "Inconnu"
-#: ../../mod/settings.php:522
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
+#: ../../include/text.php:1310
+msgid "remove category"
+msgstr "supprimer la catégorie"
-#: ../../mod/settings.php:523 ../../mod/settings.php:549
-msgid "Icon url"
-msgstr "URL de l'icône"
+#: ../../include/text.php:1387
+msgid "remove from file"
+msgstr "retirer du fichier"
-#: ../../mod/settings.php:523
-msgid "Optional"
-msgstr "Facultatif"
+#: ../../include/text.php:1529 ../../include/text.php:1540
+msgid "Click to open/close"
+msgstr "Cliquer pour ouvrir/fermer"
-#: ../../mod/settings.php:534
-msgid "You can't edit this application."
-msgstr "Vous ne pouvez pas éditer cette application."
+#: ../../include/text.php:1724 ../../mod/events.php:623
+msgid "Link to Source"
+msgstr "Lien vers la Source"
-#: ../../mod/settings.php:577
-msgid "Connected Apps"
-msgstr "Applications connectées"
+#: ../../include/text.php:1745 ../../include/text.php:1817
+msgid "default"
+msgstr "défaut"
-#: ../../mod/settings.php:581
-msgid "Client key starts with"
-msgstr "La clef partagée commence par"
+#: ../../include/text.php:1753
+msgid "Page layout"
+msgstr "Mise en page"
-#: ../../mod/settings.php:582
-msgid "No name"
-msgstr "Sans nom"
+#: ../../include/text.php:1753
+msgid "You can create your own with the layouts tool"
+msgstr "Créez les vôtres avec les outils de mise en page"
-#: ../../mod/settings.php:583
-msgid "Remove authorization"
-msgstr "Révoquer l'autorisation"
+#: ../../include/text.php:1795
+msgid "Page content type"
+msgstr "Type de contenu de la page"
-#: ../../mod/settings.php:594
-msgid "No feature settings configured"
-msgstr "Pas de fonctionnalité à configurer"
+#: ../../include/text.php:1829
+msgid "Select an alternate language"
+msgstr "Choisir une langue alternative"
-#: ../../mod/settings.php:602
-msgid "Feature Settings"
-msgstr "Extensions"
+#: ../../include/text.php:1961
+msgid "activity"
+msgstr "activité"
-#: ../../mod/settings.php:625
-msgid "Account Settings"
-msgstr "Compte"
+#: ../../include/text.php:2256
+msgid "Design Tools"
+msgstr "Outils de conception"
-#: ../../mod/settings.php:626
-msgid "Password Settings"
-msgstr "Mot de passe"
+#: ../../include/text.php:2259 ../../mod/blocks.php:147
+msgid "Blocks"
+msgstr "Blocs"
-#: ../../mod/settings.php:627
-msgid "New Password:"
-msgstr "Nouveau mot de passe&nbsp;:"
+#: ../../include/text.php:2260 ../../mod/menu.php:103
+msgid "Menus"
+msgstr "Menus"
-#: ../../mod/settings.php:628
-msgid "Confirm:"
-msgstr "Confirmation&nbsp;:"
+#: ../../include/text.php:2261 ../../mod/layouts.php:174
+msgid "Layouts"
+msgstr "Mises-en-page"
-#: ../../mod/settings.php:628
-msgid "Leave password fields blank unless changing"
-msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
+#: ../../include/text.php:2262
+msgid "Pages"
+msgstr "Pages"
-#: ../../mod/settings.php:630 ../../mod/settings.php:943
-msgid "Email Address:"
-msgstr "Adresse de courriel&nbsp;:"
+#: ../../include/items.php:423 ../../index.php:376 ../../mod/dreport.php:6
+#: ../../mod/dreport.php:45 ../../mod/group.php:68
+#: ../../mod/import_items.php:108 ../../mod/like.php:280
+#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
+msgid "Permission denied"
+msgstr "Accès refusé"
-#: ../../mod/settings.php:631 ../../mod/removeaccount.php:61
-msgid "Remove Account"
-msgstr "Supprimer le compte"
+#: ../../include/items.php:1137 ../../include/items.php:1183
+msgid "(Unknown)"
+msgstr "(Inconnu)"
-#: ../../mod/settings.php:632 ../../mod/settings.php:1006
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Attention&nbsp;: cette action est permanente et irréversible."
+#: ../../include/items.php:1380
+msgid "Visible to anybody on the internet."
+msgstr "Visible pour tout le monde sur internet."
-#: ../../mod/settings.php:648
-msgid "Off"
-msgstr "Inactif"
+#: ../../include/items.php:1382
+msgid "Visible to you only."
+msgstr "Visible pour vous seulement."
-#: ../../mod/settings.php:648
-msgid "On"
-msgstr "Actif"
+#: ../../include/items.php:1384
+msgid "Visible to anybody in this network."
+msgstr "Visible pour tout le monde sur ce réseau."
-#: ../../mod/settings.php:655
-msgid "Additional Features"
-msgstr "Fonctionnalités additionnelles"
+#: ../../include/items.php:1386
+msgid "Visible to anybody authenticated."
+msgstr "Visible aux utilisateurs authentifiés."
-#: ../../mod/settings.php:680
-msgid "Connector Settings"
-msgstr "Connecteurs"
+#: ../../include/items.php:1388
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Visible pour tous sur %s."
-#: ../../mod/settings.php:710 ../../mod/admin.php:399
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème spécifique aux périphériques mobiles"
+#: ../../include/items.php:1390
+msgid "Visible to all connections."
+msgstr "Visible pour tous les contacts."
+
+#: ../../include/items.php:1392
+msgid "Visible to approved connections."
+msgstr "Visible aux contacts approuvés."
+
+#: ../../include/items.php:1394
+msgid "Visible to specific connections."
+msgstr "Visible pour certains contacts."
+
+#: ../../include/items.php:4358 ../../mod/display.php:36
+#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
+#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
+#: ../../mod/viewsrc.php:20
+msgid "Item not found."
+msgstr "Élément introuvable"
+
+#: ../../include/items.php:4870 ../../mod/group.php:38 ../../mod/group.php:137
+msgid "Privacy group not found."
+msgstr "Groupe d'accès introuvable."
+
+#: ../../include/items.php:4886
+msgid "Privacy group is empty."
+msgstr "Groupe d'accès vide."
-#: ../../mod/settings.php:719
+#: ../../include/items.php:4893
#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Expérimental)"
+msgid "Privacy group: %s"
+msgstr "Groupe d'accès&nbsp;: %s"
-#: ../../mod/settings.php:752
-msgid "Display Settings"
-msgstr "Affichage"
+#: ../../include/items.php:4903 ../../mod/connedit.php:692
+#, php-format
+msgid "Connection: %s"
+msgstr "Contact&nbsp;: %s"
-#: ../../mod/settings.php:758
-msgid "Display Theme:"
-msgstr "Thème&nbsp;:"
+#: ../../include/items.php:4905
+msgid "Connection not found."
+msgstr "Contact non trouvé."
-#: ../../mod/settings.php:759
-msgid "Mobile Theme:"
-msgstr "Thème mobile&nbsp;:"
+#: ../../include/enotify.php:96
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
-#: ../../mod/settings.php:760
-msgid "Enable user zoom on mobile devices"
-msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu"
+#: ../../include/enotify.php:100
+#, php-format
+msgid "[Hubzilla:Notify] New mail received at %s"
+msgstr "[Hubzilla:Notify] Nouveau courriel reçu à %s"
-#: ../../mod/settings.php:761
-msgid "Update browser every xx seconds"
-msgstr "Rafraîchir le navigateur toutes les xx secondes"
+#: ../../include/enotify.php:102
+#, 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."
-#: ../../mod/settings.php:761
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 secondes, pas de maximum"
+#: ../../include/enotify.php:103
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
-#: ../../mod/settings.php:762
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:"
+#: ../../include/enotify.php:103
+msgid "a private message"
+msgstr "un message privé"
-#: ../../mod/settings.php:762
-msgid "Maximum of 100 items"
-msgstr "100 éléments au maximum"
+#: ../../include/enotify.php:104
+#, 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."
-#: ../../mod/settings.php:763
-msgid "Don't show emoticons"
-msgstr "Ne pas montrer les frimousses/émoticones"
+#: ../../include/enotify.php:160
+#, 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]"
-#: ../../mod/settings.php:764
-msgid "System Page Layout Editor - (advanced)"
-msgstr "Agencements des pages système - (avancé)"
+#: ../../include/enotify.php:168
+#, 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]"
-#: ../../mod/settings.php:800
-msgid "Nobody except yourself"
-msgstr "Personne sauf vous"
+#: ../../include/enotify.php:177
+#, 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]"
-#: ../../mod/settings.php:801
-msgid "Only those you specifically allow"
-msgstr "Seulement ceux que vous autorisez spécifiquement"
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Hubzilla:Notify] Commentaire de %2$s sur conversation #%1$d"
-#: ../../mod/settings.php:802
-msgid "Approved connections"
-msgstr "Contacts Approuvés"
+#: ../../include/enotify.php:189
+#, 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."
-#: ../../mod/settings.php:803
-msgid "Any connections"
-msgstr "Tous les contacts"
+#: ../../include/enotify.php:192 ../../include/enotify.php:207
+#: ../../include/enotify.php:233 ../../include/enotify.php:251
+#: ../../include/enotify.php:265
+#, 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."
-#: ../../mod/settings.php:804
-msgid "Anybody on this website"
-msgstr "Tous les utilisateurs du hub"
+#: ../../include/enotify.php:198
+#, php-format
+msgid "[Hubzilla:Notify] %s posted to your profile wall"
+msgstr "[Hubzilla:Notify] %s a publié sur votre profil"
-#: ../../mod/settings.php:805
-msgid "Anybody in this network"
-msgstr "Tous les utilisateurs sur ce réseau"
+#: ../../include/enotify.php:200
+#, 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"
-#: ../../mod/settings.php:806
-msgid "Anybody authenticated"
-msgstr "Tous les utilisateurs authentifiés"
+#: ../../include/enotify.php:202
+#, 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]"
-#: ../../mod/settings.php:807
-msgid "Anybody on the internet"
-msgstr "Tous les utilisateurs d'Internet"
+#: ../../include/enotify.php:226
+#, php-format
+msgid "[Hubzilla:Notify] %s tagged you"
+msgstr "[Hubzilla:Notify] %s vous a étiqueté"
-#: ../../mod/settings.php:884
-msgid "Publish your default profile in the network directory"
-msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
+#: ../../include/enotify.php:227
+#, 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"
-#: ../../mod/settings.php:884 ../../mod/settings.php:889
-#: ../../mod/settings.php:960 ../../mod/api.php:106 ../../mod/profiles.php:566
-#: ../../mod/admin.php:429
-msgid "No"
-msgstr "Non"
+#: ../../include/enotify.php:228
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%3$s]vous a étiqueté[/zrl]."
-#: ../../mod/settings.php:884 ../../mod/settings.php:889
-#: ../../mod/settings.php:960 ../../mod/api.php:105 ../../mod/profiles.php:565
-#: ../../mod/admin.php:431
-msgid "Yes"
-msgstr "Oui"
+#: ../../include/enotify.php:240
+#, php-format
+msgid "[Hubzilla:Notify] %1$s poked you"
+msgstr "[Hubzilla:Notify] %1$s vous a tapoté"
-#: ../../mod/settings.php:889
-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?"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, %2$s vous a tapoté sur %3$s"
-#: ../../mod/settings.php:893 ../../mod/profile_photo.php:365
-msgid "or"
-msgstr "ou"
+#: ../../include/enotify.php:242
+#, 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]."
-#: ../../mod/settings.php:898
-msgid "Your channel address is"
-msgstr "Voici l'adresse de votre canal"
+#: ../../include/enotify.php:258
+#, php-format
+msgid "[Hubzilla:Notify] %s tagged your post"
+msgstr "[Hubzilla:Notify] %s a étiqueté votre publication"
-#: ../../mod/settings.php:932
-msgid "Channel Settings"
-msgstr "Canal"
+#: ../../include/enotify.php:259
+#, 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"
-#: ../../mod/settings.php:941
-msgid "Basic Settings"
-msgstr "Basique"
+#: ../../include/enotify.php:260
+#, php-format
+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]"
-#: ../../mod/settings.php:944
-msgid "Your Timezone:"
-msgstr "Fureau Horaire&nbsp;:"
+#: ../../include/enotify.php:272
+msgid "[Hubzilla:Notify] Introduction received"
+msgstr "[Hubzilla:Notify] Nouvelle présentation"
-#: ../../mod/settings.php:945
-msgid "Default Post Location:"
-msgstr "Emplacement géographique par défaut&nbsp;:"
+#: ../../include/enotify.php:273
+#, 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 contact de '%2$s' sur %3$s"
-#: ../../mod/settings.php:945
-msgid "Geographical location to display on your posts"
-msgstr "Emplacement géographique à afficher sur vos publications"
+#: ../../include/enotify.php:274
+#, 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 contact[/zrl] de %3$s."
-#: ../../mod/settings.php:946
-msgid "Use Browser Location:"
-msgstr "Utiliser la géolocalisation fournie par le navigateur&nbsp;:"
+#: ../../include/enotify.php:278 ../../include/enotify.php:297
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter leur profil sur %s"
-#: ../../mod/settings.php:948
-msgid "Adult Content"
-msgstr "Contenu \"adulte\""
+#: ../../include/enotify.php:280
+#, 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 contact."
+
+#: ../../include/enotify.php:287
+msgid "[Hubzilla:Notify] Friend suggestion received"
+msgstr "[Hubzilla:Notify] Nouvel(le) ami(e) suggéré(e)"
-#: ../../mod/settings.php:948
+#: ../../include/enotify.php:288
+#, 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 d'ami(e) de '%2$s' à %3$s"
+
+#: ../../include/enotify.php:289
+#, php-format
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 l'étiquette <em>#NSFW</em> - Not Safe For Work)"
+"%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 d'ami(e)[/zrl] de %4$s."
-#: ../../mod/settings.php:950
-msgid "Security and Privacy Settings"
-msgstr "Réglages de Sécurité et vie privée"
+#: ../../include/enotify.php:295
+msgid "Name:"
+msgstr "Nom&nbsp;:"
-#: ../../mod/settings.php:952
-msgid "Hide my online presence"
-msgstr "Cacher ma présence en ligne"
+#: ../../include/enotify.php:296
+msgid "Photo:"
+msgstr "Photo&nbsp;:"
-#: ../../mod/settings.php:952
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
+#: ../../include/enotify.php:299
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion."
-#: ../../mod/settings.php:954
-msgid "Simple Privacy Settings:"
-msgstr "Réglages simples&nbsp;:"
+#: ../../include/enotify.php:514
+msgid "[Hubzilla:Notify]"
+msgstr "[Hubzilla:Notify]"
+
+#: ../../include/features.php:48
+msgid "General Features"
+msgstr "Fonctionnalités générales"
+
+#: ../../include/features.php:50
+msgid "Content Expiration"
+msgstr "Expiration du contenu"
+
+#: ../../include/features.php:50
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard"
-#: ../../mod/settings.php:955
+#: ../../include/features.php:51
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
+
+#: ../../include/features.php:51
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
+
+#: ../../include/features.php:52
+msgid "Advanced Profiles"
+msgstr "Profils Avancés"
+
+#: ../../include/features.php:52
+msgid "Additional profile sections and selections"
+msgstr "Sections et sélections supplémentaires du profil"
+
+#: ../../include/features.php:53
+msgid "Profile Import/Export"
+msgstr "Importer/Exporter le profil"
+
+#: ../../include/features.php:53
+msgid "Save and load profile details across sites/channels"
+msgstr "Sauvegarder et charger les détails d'un profil entre sites/canaux"
+
+#: ../../include/features.php:54
+msgid "Web Pages"
+msgstr "Pages web"
+
+#: ../../include/features.php:54
+msgid "Provide managed web pages on your channel"
+msgstr "Fournir des pages web, sous votre contrôle, sur votre canal"
+
+#: ../../include/features.php:55
+msgid "Hide Rating"
+msgstr "Masquer l'évaluation"
+
+#: ../../include/features.php:55
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>"
+"Hide the rating buttons on your channel and profile pages. Note: People can "
+"still rate you somewhere else."
+msgstr "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs."
-#: ../../mod/settings.php:956
+#: ../../include/features.php:56
+msgid "Private Notes"
+msgstr "Notes privées"
+
+#: ../../include/features.php:56
+msgid "Enables a tool to store notes and reminders (note: not encrypted)"
+msgstr "Active un outil pour stocker des notes et des rappels (note&nbsp;:non chiffré)"
+
+#: ../../include/features.php:57
+msgid "Navigation Channel Select"
+msgstr "Sélection du canal par la navigation"
+
+#: ../../include/features.php:57
+msgid "Change channels directly from within the navigation dropdown menu"
+msgstr "Changez de canal directement depuis le menu de navigation déroulant"
+
+#: ../../include/features.php:58
+msgid "Photo Location"
+msgstr "Site de prise de vue"
+
+#: ../../include/features.php:58
+msgid "If location data is available on uploaded photos, link this to a map."
+msgstr "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte."
+
+#: ../../include/features.php:60
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../include/features.php:60
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "Activer le mode expert pour accéder aux options avancées"
+
+#: ../../include/features.php:61
+msgid "Premium Channel"
+msgstr "Canal VIP"
+
+#: ../../include/features.php:61
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>"
+"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 contacts de votre canal"
-#: ../../mod/settings.php:957
-msgid "Private - <em>default private, never open or public</em>"
-msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
+#: ../../include/features.php:66
+msgid "Post Composition Features"
+msgstr "Fonctionnalités de composition"
-#: ../../mod/settings.php:958
-msgid "Blocked - <em>default blocked to/from everybody</em>"
-msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
+#: ../../include/features.php:68
+msgid "Use Markdown"
+msgstr "Utiliser Markdown"
-#: ../../mod/settings.php:960
-msgid "Allow others to tag your posts"
-msgstr "Autoriser les autres à \"étiqueté\" vos publications"
+#: ../../include/features.php:68
+msgid "Allow use of \"Markdown\" to format posts"
+msgstr "Autoriser l'utilisation de \"Markdown\" pour mettre en forme les messages"
-#: ../../mod/settings.php:960
+#: ../../include/features.php:69
+msgid "Large Photos"
+msgstr "Grandes photos"
+
+#: ../../include/features.php:69
msgid ""
-"Often used by the community to retro-actively flag inappropriate content"
-msgstr "Souvent utilisé par la communauté pour distinguer le contenu innaproprié"
+"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
+"(640px) photo thumbnails"
+msgstr "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)."
-#: ../../mod/settings.php:962
-msgid "Advanced Privacy Settings"
-msgstr "Réglages avancés"
+#: ../../include/features.php:70 ../../include/widgets.php:569
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Sources du canal"
-#: ../../mod/settings.php:964
-msgid "Expire other channel content after this many days"
-msgstr "Faire expirer le contenu des autres canaux après n jours"
+#: ../../include/features.php:70
+msgid "Automatically import channel content from other channels or feeds"
+msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif"
-#: ../../mod/settings.php:964
-msgid "0 or blank prevents expiration"
-msgstr "0, ou vide, pour ne pas faire expirer"
+#: ../../include/features.php:71
+msgid "Even More Encryption"
+msgstr "Encore plus de chiffrement"
-#: ../../mod/settings.php:965
-msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximum de mises en relation par jour&nbsp;:"
+#: ../../include/features.php:71
+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é"
-#: ../../mod/settings.php:965
-msgid "May reduce spam activity"
-msgstr "Contribue à réduire l'impact des indésirables"
+#: ../../include/features.php:72
+msgid "Enable Voting Tools"
+msgstr "Activer les outils de vote"
-#: ../../mod/settings.php:966
-msgid "Default Post Permissions"
-msgstr "Permissions par défaut des publications"
+#: ../../include/features.php:72
+msgid "Provide a class of post which others can vote on"
+msgstr "Fournit un type de publication sur lequel les utilisateurs peuvent voter"
-#: ../../mod/settings.php:978
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
+#: ../../include/features.php:73
+msgid "Delayed Posting"
+msgstr "Publication plus tard"
-#: ../../mod/settings.php:978
-msgid "Useful to reduce spamming"
-msgstr "Utile pour réduire les indésirables"
+#: ../../include/features.php:73
+msgid "Allow posts to be published at a later date"
+msgstr "Permettre de publier des messages à une date programmée"
-#: ../../mod/settings.php:981
-msgid "Notification Settings"
-msgstr "Notifications"
+#: ../../include/features.php:74
+msgid "Suppress Duplicate Posts/Comments"
+msgstr "Supprimer les publications/commentaires en doublon"
-#: ../../mod/settings.php:982
-msgid "By default post a status message when:"
-msgstr "Par défaut, publier un statut quand:"
+#: ../../include/features.php:74
+msgid ""
+"Prevent posts with identical content to be published with less than two "
+"minutes in between submissions."
+msgstr "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle"
-#: ../../mod/settings.php:983
-msgid "accepting a friend request"
-msgstr "vous acceptez une mise en relation"
+#: ../../include/features.php:80
+msgid "Network and Stream Filtering"
+msgstr "Filtrage du réseau et des flux"
-#: ../../mod/settings.php:984
-msgid "joining a forum/community"
-msgstr "vous joignez un forum ou à une communauté"
+#: ../../include/features.php:81
+msgid "Search by Date"
+msgstr "Chercher par date"
-#: ../../mod/settings.php:985
-msgid "making an <em>interesting</em> profile change"
-msgstr "vous faites une modification <em>intéressante</em> de votre profil"
+#: ../../include/features.php:81
+msgid "Ability to select posts by date ranges"
+msgstr "Pouvoir choisir des publications par date"
-#: ../../mod/settings.php:986
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand&nbsp;:"
+#: ../../include/features.php:82
+msgid "Enable management and selection of privacy groups"
+msgstr "Active la gestion et la sélection des groupes d'accès"
-#: ../../mod/settings.php:987
-msgid "You receive a connection request"
-msgstr "Vous recevez une demande de mise en relation"
+#: ../../include/features.php:83 ../../include/widgets.php:284
+msgid "Saved Searches"
+msgstr "Recherches sauvegardées"
-#: ../../mod/settings.php:988
-msgid "Your connections are confirmed"
-msgstr "Vous relations sont confirmées"
+#: ../../include/features.php:83
+msgid "Save search terms for re-use"
+msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure"
-#: ../../mod/settings.php:989
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un a écrit sur votre mur"
+#: ../../include/features.php:84
+msgid "Network Personal Tab"
+msgstr "Onglet \"Me concernant\""
-#: ../../mod/settings.php:990
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un a commenté sur vos publications"
+#: ../../include/features.php:84
+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"
-#: ../../mod/settings.php:991
-msgid "You receive a private message"
-msgstr "Vous recevez un message privé"
+#: ../../include/features.php:85
+msgid "Network New Tab"
+msgstr "Onglet \"nouveautés réseau\""
-#: ../../mod/settings.php:992
-msgid "You receive a friend suggestion"
-msgstr "Vous recevez une suggestion d'amitié/relation"
+#: ../../include/features.php:85
+msgid "Enable tab to display all new Network activity"
+msgstr "Activer un onglet présentant toute l'activité récente sur le réseau"
-#: ../../mod/settings.php:993
-msgid "You are tagged in a post"
-msgstr "Vous êtes étiqueté dans une publication"
+#: ../../include/features.php:86
+msgid "Affinity Tool"
+msgstr "Gérer l'affinité"
-#: ../../mod/settings.php:994
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Vous êtes cogné/encouragé/etc. dans une publication"
+#: ../../include/features.php:86
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations"
-#: ../../mod/settings.php:997
-msgid "Advanced Account/Page Type Settings"
-msgstr "Type de page/Compte (avancé)"
+#: ../../include/features.php:87
+msgid "Connection Filtering"
+msgstr "Filtrage des contacts"
-#: ../../mod/settings.php:998
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
+#: ../../include/features.php:87
+msgid "Filter incoming posts from connections based on keywords/content"
+msgstr "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs"
-#: ../../mod/settings.php:1001
-msgid ""
-"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!"
+#: ../../include/features.php:88
+msgid "Suggest Channels"
+msgstr "Suggérer des canaux"
-#: ../../mod/settings.php:1002
-msgid "Miscellaneous Settings"
-msgstr "Divers"
+#: ../../include/features.php:88
+msgid "Show channel suggestions"
+msgstr "Montrer les suggestions de canaux"
-#: ../../mod/settings.php:1004
-msgid "Personal menu to display in your channel pages"
-msgstr "Menu personnel tel qu'il apparaîtra sur les pages de votre canal"
+#: ../../include/features.php:93
+msgid "Post/Comment Tools"
+msgstr "Gérer les publications/commentaires"
-#: ../../mod/settings.php:1005
-msgid "Remove this channel"
-msgstr "Supprimer ce canal"
+#: ../../include/features.php:94
+msgid "Community Tagging"
+msgstr "Etiquetage communautaire"
-#: ../../mod/poke.php:159
-msgid "Poke/Prod"
-msgstr "Cogner/Encourager"
+#: ../../include/features.php:94
+msgid "Ability to tag existing posts"
+msgstr "Permettre de marquer les publications existantes"
-#: ../../mod/poke.php:160
-msgid "poke, prod or do other things to somebody"
-msgstr "Cogner, encourager, et autres choses à faire à quelqu'un"
+#: ../../include/features.php:95
+msgid "Post Categories"
+msgstr "Catégoriser les publications"
-#: ../../mod/poke.php:161
-msgid "Recipient"
-msgstr "Destinataire"
+#: ../../include/features.php:95
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
-#: ../../mod/poke.php:162
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisir quoi lui faire"
+#: ../../include/features.php:96
+msgid "Ability to file posts under folders"
+msgstr "Permettre de classer les publications dans des dossiers"
-#: ../../mod/poke.php:165
-msgid "Make this post private"
-msgstr "Rendre cette contribution privée"
+#: ../../include/features.php:97
+msgid "Dislike Posts"
+msgstr "\"Ne pas aimer\" les publications"
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../include/features.php:97
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires"
-#: ../../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;:"
+#: ../../include/features.php:98
+msgid "Star Posts"
+msgstr "Pouvoir mettre en avant les publications"
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../include/features.php:98
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Pouvoir marquer certaines publications d'une étoile"
-#: ../../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?"
+#: ../../include/features.php:99
+msgid "Tag Cloud"
+msgstr "Nuage de tags"
-#: ../../mod/post.php:229
+#: ../../include/features.php:99
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Afficher un nuage de vos tags sur votre canal"
+
+#: ../../include/identity.php:32
+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:66
+msgid "Empty name"
+msgstr "Nom vide"
+
+#: ../../include/identity.php:69
+msgid "Name too long"
+msgstr "Nom trop long"
+
+#: ../../include/identity.php:181
+msgid "No account identifier"
+msgstr "Pas d'identifiant de compte"
+
+#: ../../include/identity.php:193
+msgid "Nickname is required."
+msgstr "Un surnom est requis."
+
+#: ../../include/identity.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Surnom réservé. Merci d'en choisir un autre."
+
+#: ../../include/identity.php:212
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."
+"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."
-#: ../../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é."
+#: ../../include/identity.php:288
+msgid "Unable to retrieve created identity"
+msgstr "Impossible de récupérer l'identité créée"
-#: ../../mod/attach.php:9
-msgid "Item not available."
-msgstr "Élément indisponible."
+#: ../../include/identity.php:346
+msgid "Default Profile"
+msgstr "Profil par défaut"
-#: ../../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"
+#: ../../include/identity.php:772
+msgid "Requested channel is not available."
+msgstr "Canal demandé non disponible."
-#: ../../mod/block.php:27 ../../mod/page.php:35
-msgid "Invalid item."
-msgstr "Élément invalide."
+#: ../../include/identity.php:818 ../../mod/achievements.php:11
+#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
+#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
+#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
+#: ../../mod/profile.php:16 ../../mod/webpages.php:29
+msgid "Requested profile is not available."
+msgstr "Profil demandé non disponible."
-#: ../../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."
+#: ../../include/identity.php:967 ../../mod/profiles.php:782
+msgid "Change profile photo"
+msgstr "Changer la photo du profil"
-#: ../../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."
+#: ../../include/identity.php:973
+msgid "Profiles"
+msgstr "Profils"
-#: ../../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é."
+#: ../../include/identity.php:973
+msgid "Manage/edit profiles"
+msgstr "Gérer/modifier les profils"
-#: ../../mod/profile_photo.php:161
-msgid "Image resize failed."
-msgstr "Le redimensionnement de l'image a échoué."
+#: ../../include/identity.php:974 ../../mod/profiles.php:783
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
-#: ../../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."
+#: ../../include/identity.php:989 ../../mod/profiles.php:794
+msgid "Profile Image"
+msgstr "Image du profil"
-#: ../../mod/profile_photo.php:232
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "L'image dépasse la taille limite de %d"
+#: ../../include/identity.php:992
+msgid "visible to everybody"
+msgstr "visible pour tous"
-#: ../../mod/profile_photo.php:241
-msgid "Unable to process image."
-msgstr "Impossible de traîter l'image."
+#: ../../include/identity.php:993 ../../mod/profiles.php:677
+#: ../../mod/profiles.php:798
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
-#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339
-msgid "Photo not available."
-msgstr "Photo inaccessible."
+#: ../../include/identity.php:1009 ../../include/identity.php:1252
+msgid "Gender:"
+msgstr "Sexe&nbsp;:"
-#: ../../mod/profile_photo.php:358
-msgid "Upload File:"
-msgstr "Fichier&nbsp;:"
+#: ../../include/identity.php:1010 ../../include/identity.php:1296
+msgid "Status:"
+msgstr "État&nbsp;:"
-#: ../../mod/profile_photo.php:359
-msgid "Select a profile:"
-msgstr "Choisir un profil&nbsp;:"
+#: ../../include/identity.php:1011 ../../include/identity.php:1307
+msgid "Homepage:"
+msgstr "Site Internet&nbsp;:"
-#: ../../mod/profile_photo.php:360
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../include/identity.php:1012
+msgid "Online Now"
+msgstr "Connecté"
-#: ../../mod/profile_photo.php:365
-msgid "skip this step"
-msgstr "passer cette étape"
+#: ../../include/identity.php:1099 ../../include/identity.php:1177
+#: ../../mod/ping.php:318
+msgid "g A l F d"
+msgstr "g A l F d"
-#: ../../mod/profile_photo.php:365
-msgid "select a photo from your photo albums"
-msgstr "choisir une photo dans vos albums"
+#: ../../include/identity.php:1100 ../../include/identity.php:1178
+msgid "F d"
+msgstr "d F"
-#: ../../mod/profile_photo.php:379
-msgid "Crop Image"
-msgstr "Recadrer l'image"
+#: ../../include/identity.php:1145 ../../include/identity.php:1217
+#: ../../mod/ping.php:341
+msgid "[today]"
+msgstr "[aujourd'hui]"
-#: ../../mod/profile_photo.php:380
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Merci d'ajuster le cadre pour une visualisation optimale."
+#: ../../include/identity.php:1156
+msgid "Birthday Reminders"
+msgstr "Rappels d'anniversaires"
-#: ../../mod/profile_photo.php:382
-msgid "Done Editing"
-msgstr "J'ai terminé"
+#: ../../include/identity.php:1157
+msgid "Birthdays this week:"
+msgstr "Anniversaires cette semaine&nbsp;:"
-#: ../../mod/profile_photo.php:425
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../include/identity.php:1210
+msgid "[No description]"
+msgstr "[Pas de description]"
-#: ../../mod/profile_photo.php:427
-msgid "Image upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../include/identity.php:1228
+msgid "Event Reminders"
+msgstr "Rappels d'événements"
+
+#: ../../include/identity.php:1229
+msgid "Events this week:"
+msgstr "Événements cette semaine&nbsp;:"
-#: ../../mod/profile_photo.php:436
+#: ../../include/identity.php:1250 ../../mod/settings.php:1031
+msgid "Full Name:"
+msgstr "Nom complet&nbsp;:"
+
+#: ../../include/identity.php:1257
+msgid "Like this channel"
+msgstr "J'aime ce canal"
+
+#: ../../include/identity.php:1281
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/identity.php:1282
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/identity.php:1289
+msgid "Birthday:"
+msgstr "Date de naissance&nbsp;:"
+
+#: ../../include/identity.php:1293 ../../mod/directory.php:302
+msgid "Age:"
+msgstr "Age&nbsp;:"
+
+#: ../../include/identity.php:1302
#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "La réduction de taille [%s] a échoué."
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
-#: ../../mod/blocks.php:66
-msgid "Block Name"
-msgstr "Nom du Bloc"
+#: ../../include/identity.php:1305 ../../mod/profiles.php:699
+msgid "Sexual Preference:"
+msgstr "Orientation sexuelle&nbsp;:"
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:222 ../../mod/profiles.php:539
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: ../../include/identity.php:1309 ../../mod/directory.php:318
+#: ../../mod/profiles.php:701
+msgid "Hometown:"
+msgstr "Ville natale&nbsp;:"
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: ../../include/identity.php:1311
+msgid "Tags:"
+msgstr "Étiquettes&nbsp;:"
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../include/identity.php:1313 ../../mod/profiles.php:702
+msgid "Political Views:"
+msgstr "Opinions politiques&nbsp;:"
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: ../../include/identity.php:1315
+msgid "Religion:"
+msgstr "Religion&nbsp;:"
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
-msgstr "Profil impossible à cloner."
+#: ../../include/identity.php:1317 ../../mod/directory.php:320
+msgid "About:"
+msgstr "À propos&nbsp;:"
-#: ../../mod/profiles.php:136
-msgid "Profile unavailable to export."
-msgstr "Impossible d'exporter le profil."
+#: ../../include/identity.php:1319
+msgid "Hobbies/Interests:"
+msgstr "Occupations/Centres d'intérêt&nbsp;:"
-#: ../../mod/profiles.php:232
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: ../../include/identity.php:1321 ../../mod/profiles.php:705
+msgid "Likes:"
+msgstr "Aime&nbsp;:"
-#: ../../mod/profiles.php:354
-msgid "Marital Status"
-msgstr "Statut marital"
+#: ../../include/identity.php:1323 ../../mod/profiles.php:706
+msgid "Dislikes:"
+msgstr "N'aime pas&nbsp;:"
-#: ../../mod/profiles.php:358
-msgid "Romantic Partner"
-msgstr "Partenaire"
+#: ../../include/identity.php:1325
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées et réseaux sociaux&nbsp;:"
-#: ../../mod/profiles.php:362
-msgid "Likes"
-msgstr "Aime"
+#: ../../include/identity.php:1327
+msgid "My other channels:"
+msgstr "Mes autres canaux&nbsp;:"
-#: ../../mod/profiles.php:366
-msgid "Dislikes"
-msgstr "Déteste"
+#: ../../include/identity.php:1329
+msgid "Musical interests:"
+msgstr "Goûts musicaux&nbsp;:"
-#: ../../mod/profiles.php:370
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
+#: ../../include/identity.php:1331
+msgid "Books, literature:"
+msgstr "Lectures, goûts littéraires&nbsp;:"
-#: ../../mod/profiles.php:373
-msgid "Religion"
-msgstr "Religion/Croyance"
+#: ../../include/identity.php:1333
+msgid "Television:"
+msgstr "Télévision&nbsp;:"
-#: ../../mod/profiles.php:377
-msgid "Political Views"
-msgstr "Opinions politiques"
+#: ../../include/identity.php:1335
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/danse/culture/divertissement&nsbp;:"
-#: ../../mod/profiles.php:381
-msgid "Gender"
-msgstr "Sexe/Genre"
+#: ../../include/identity.php:1337
+msgid "Love/Romance:"
+msgstr "Vie sentimentale/amoureuse&nbsp;:"
-#: ../../mod/profiles.php:385
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
+#: ../../include/identity.php:1339
+msgid "Work/employment:"
+msgstr "Travail/Occupation&nbsp;"
-#: ../../mod/profiles.php:389
-msgid "Homepage"
-msgstr "Site Internet"
+#: ../../include/identity.php:1341
+msgid "School/education:"
+msgstr "Études&nbsp;"
-#: ../../mod/profiles.php:393
-msgid "Interests"
-msgstr "Centres d'intérêt"
+#: ../../include/identity.php:1361
+msgid "Like this thing"
+msgstr "J'aime ceci"
-#: ../../mod/profiles.php:397 ../../mod/admin.php:902
-msgid "Address"
-msgstr "Adresse"
+#: ../../include/identity.php:1769 ../../mod/cover_photo.php:236
+msgid "cover photo"
+msgstr "Photo principale"
-#: ../../mod/profiles.php:404 ../../mod/pubsites.php:25
-msgid "Location"
-msgstr "Emplacement"
+#: ../../include/oembed.php:267
+msgid "Embedded content"
+msgstr "Contenu imbriqué"
-#: ../../mod/profiles.php:487
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: ../../include/oembed.php:276
+msgid "Embedding disabled"
+msgstr "Imbrication désactivée"
-#: ../../mod/profiles.php:564
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?"
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
+msgstr "Peut voir les publications ordinaires sur mon canal."
-#: ../../mod/profiles.php:588
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../include/permissions.php:27
+msgid "Can view my default channel profile"
+msgstr "Peut voir le profil du canal par défaut."
-#: ../../mod/profiles.php:590
-msgid "View this profile"
-msgstr "Voir le profil"
+#: ../../include/permissions.php:28
+msgid "Can view my connections"
+msgstr "Peut voir mes contacts"
-#: ../../mod/profiles.php:592
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: ../../include/permissions.php:29
+msgid "Can view my file storage and photos"
+msgstr "Peut voir mes fichiers et photos"
-#: ../../mod/profiles.php:593
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil avec ces réglages"
+#: ../../include/permissions.php:30
+msgid "Can view my webpages"
+msgstr "Peut voir mes pages web"
-#: ../../mod/profiles.php:594
-msgid "Clone this profile"
-msgstr "Cloner le profil"
+#: ../../include/permissions.php:33
+msgid "Can send me their channel stream and posts"
+msgstr "Peuvent m'envoyer leur flux et les publications de leur canal"
-#: ../../mod/profiles.php:595
-msgid "Delete this profile"
-msgstr "Supprimer le profil"
+#: ../../include/permissions.php:34
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Peuvent poster sur la page de mon canal (\"mur\")"
-#: ../../mod/profiles.php:597
-msgid "Import profile from file"
-msgstr "Importer le profil à partir d'un fichier"
+#: ../../include/permissions.php:35
+msgid "Can comment on or like my posts"
+msgstr "Peuvent commenter et/ou aimer mes publications"
-#: ../../mod/profiles.php:598
-msgid "Export profile to file"
-msgstr "Exporter le profil vers un fichier."
+#: ../../include/permissions.php:36
+msgid "Can send me private mail messages"
+msgstr "Peuvent m'envoyer des messages privés"
-#: ../../mod/profiles.php:599
-msgid "Profile Name:"
-msgstr "Nom du profil&nbsp;:"
+#: ../../include/permissions.php:37
+msgid "Can like/dislike stuff"
+msgstr "Peuvent aimer/ne pas aimer"
-#: ../../mod/profiles.php:600
-msgid "Your Full Name:"
-msgstr "Votre nom complet&nbsp;:"
+#: ../../include/permissions.php:37
+msgid "Profiles and things other than posts/comments"
+msgstr "Profils et autres excluant les publications/commentaires."
-#: ../../mod/profiles.php:601
-msgid "Title/Description:"
-msgstr "Titre/description&nbsp;:"
+#: ../../include/permissions.php:39
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Peut faire suivre à tous les contacts de mon canal via \"@mention\""
-#: ../../mod/profiles.php:602
-msgid "Your Gender:"
-msgstr "Sexe/Genre&nbsp;:"
+#: ../../include/permissions.php:39
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Avancé - utile pour les canaux de type \"forum/groupe\""
+
+#: ../../include/permissions.php:40
+msgid "Can chat with me (when available)"
+msgstr "Peut discuter avec moi (quand disponibie)"
+
+#: ../../include/permissions.php:41
+msgid "Can write to my file storage and photos"
+msgstr "Peut charger des fichiers et des photos dans mon canal"
+
+#: ../../include/permissions.php:42
+msgid "Can edit my webpages"
+msgstr "Peut modifier mes pages web"
+
+#: ../../include/permissions.php:44
+msgid "Can source my public posts in derived channels"
+msgstr "Peut rediriger mes publications publiques vers des canaux dérivés"
+
+#: ../../include/permissions.php:44
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Plutôt avancé - très utile dans les communautés ouvertes"
+
+#: ../../include/permissions.php:46
+msgid "Can administer my channel resources"
+msgstr "Peut administrer les ressources de mon canal"
+
+#: ../../include/permissions.php:46
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes"
+
+#: ../../include/permissions.php:867
+msgid "Social Networking"
+msgstr "Réseau social"
+
+#: ../../include/permissions.php:867 ../../include/permissions.php:868
+#: ../../include/permissions.php:869
+msgid "Mostly Public"
+msgstr "Pincipalement public"
+
+#: ../../include/permissions.php:867 ../../include/permissions.php:868
+#: ../../include/permissions.php:869
+msgid "Restricted"
+msgstr "Accès restreint"
+
+#: ../../include/permissions.php:867 ../../include/permissions.php:868
+msgid "Private"
+msgstr "Privé"
+
+#: ../../include/permissions.php:868
+msgid "Community Forum"
+msgstr "Forum communautaire"
+
+#: ../../include/permissions.php:869
+msgid "Feed Republish"
+msgstr "Republication de flux"
+
+#: ../../include/permissions.php:870
+msgid "Special Purpose"
+msgstr "Utilisation spécifique"
+
+#: ../../include/permissions.php:870
+msgid "Celebrity/Soapbox"
+msgstr "Page de célébrité/tribune"
+
+#: ../../include/permissions.php:870
+msgid "Group Repository"
+msgstr "Espace de groupe"
-#: ../../mod/profiles.php:603
+#: ../../include/permissions.php:871
+msgid "Custom/Expert Mode"
+msgstr "Mode expert/spécifique"
+
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "Système"
+
+#: ../../include/widgets.php:106
+msgid "Create Personal App"
+msgstr "Créer votre application"
+
+#: ../../include/widgets.php:107
+msgid "Edit Personal App"
+msgstr "Modifier votre application"
+
+#: ../../include/widgets.php:149 ../../mod/suggest.php:54
+msgid "Ignore/Hide"
+msgstr "Ignorer/Cacher"
+
+#: ../../include/widgets.php:154
+msgid "Suggestions"
+msgstr "Suggestions"
+
+#: ../../include/widgets.php:155
+msgid "See more..."
+msgstr "Voir plus..."
+
+#: ../../include/widgets.php:176
#, php-format
-msgid "Birthday (%s):"
-msgstr "Date de naissance (%s)&nbsp;:"
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés."
-#: ../../mod/profiles.php:604
-msgid "Street Address:"
-msgstr "Adresse postale&nbsp;:"
+#: ../../include/widgets.php:182
+msgid "Add New Connection"
+msgstr "Ajouter un nouveau contact"
-#: ../../mod/profiles.php:605
-msgid "Locality/City:"
-msgstr "Ville/Localité&nbsp;:"
+#: ../../include/widgets.php:183
+msgid "Enter channel address"
+msgstr "Saisissez l'adresse du canal"
-#: ../../mod/profiles.php:606
-msgid "Postal/Zip Code:"
-msgstr "Code postal&nbsp;:"
+#: ../../include/widgets.php:184
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie"
-#: ../../mod/profiles.php:607
-msgid "Country:"
-msgstr "Pays&nbsp;:"
+#: ../../include/widgets.php:200
+msgid "Notes"
+msgstr "Notes"
-#: ../../mod/profiles.php:608
-msgid "Region/State:"
-msgstr "Région/Province/État&nbsp;:"
+#: ../../include/widgets.php:276
+msgid "Remove term"
+msgstr "Retirer le terme"
-#: ../../mod/profiles.php:609
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
+#: ../../include/widgets.php:359
+msgid "Archives"
+msgstr "Archives"
-#: ../../mod/profiles.php:610
-msgid "Who: (if applicable)"
-msgstr "Avec&nbsp;: (si pertinent)"
+#: ../../include/widgets.php:449 ../../mod/connedit.php:580
+msgid "Me"
+msgstr "Moi"
-#: ../../mod/profiles.php:611
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples&nbsp;: cathy123, Cathy Williams, cathy@exemple.com"
+#: ../../include/widgets.php:450 ../../mod/connedit.php:581
+msgid "Family"
+msgstr "Famille"
-#: ../../mod/profiles.php:612
-msgid "Since [date]:"
-msgstr "Depuis [date]&nbsp;:"
+#: ../../include/widgets.php:452 ../../mod/connedit.php:583
+msgid "Acquaintances"
+msgstr "Connaissances"
-#: ../../mod/profiles.php:614
-msgid "Homepage URL:"
-msgstr "URL de mon site Internet&nbsp;:"
+#: ../../include/widgets.php:453 ../../mod/connections.php:88
+#: ../../mod/connections.php:103 ../../mod/connedit.php:584
+msgid "All"
+msgstr "Tous"
-#: ../../mod/profiles.php:617
-msgid "Religious Views:"
-msgstr "Opinions religieuses&nbsp;:"
+#: ../../include/widgets.php:472
+msgid "Refresh"
+msgstr "Actualiser"
-#: ../../mod/profiles.php:618
-msgid "Keywords:"
-msgstr "Mots-clefs&nbsp;:"
+#: ../../include/widgets.php:506
+msgid "Account settings"
+msgstr "Paramètres du compte"
-#: ../../mod/profiles.php:621
-msgid "Example: fishing photography software"
-msgstr "Exemple&nbsp;: escrime photographie modélisme"
+#: ../../include/widgets.php:512
+msgid "Channel settings"
+msgstr "Paramètres du canal"
-#: ../../mod/profiles.php:622
-msgid "Used in directory listings"
-msgstr "Utilisé pour le référencement dans l'annuaire"
+#: ../../include/widgets.php:521
+msgid "Additional features"
+msgstr "Fonctionnalités supplémentaires"
-#: ../../mod/profiles.php:623
-msgid "Tell us about yourself..."
-msgstr "Parlez nous de vous..."
+#: ../../include/widgets.php:528
+msgid "Feature/Addon settings"
+msgstr "Paramètres des extensions/greffons"
-#: ../../mod/profiles.php:624
-msgid "Hobbies/Interests"
-msgstr "Loisirs/Centres d'intêret"
+#: ../../include/widgets.php:534
+msgid "Display settings"
+msgstr "Paramètres d'affichage"
-#: ../../mod/profiles.php:625
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées et réseaux sociaux"
+#: ../../include/widgets.php:540
+msgid "Connected apps"
+msgstr "Applications connectées"
-#: ../../mod/profiles.php:626
-msgid "My other channels"
-msgstr "Mes autres canaux"
+#: ../../include/widgets.php:546
+msgid "Export channel"
+msgstr "Exporter le canal"
-#: ../../mod/profiles.php:627
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../include/widgets.php:553 ../../mod/connedit.php:692
+msgid "Connection Default Permissions"
+msgstr "Autorisations par défaut des contacts"
-#: ../../mod/profiles.php:628
-msgid "Books, literature"
-msgstr "Littérature"
+#: ../../include/widgets.php:561
+msgid "Premium Channel Settings"
+msgstr "Paramètres de canal VIP"
-#: ../../mod/profiles.php:629
-msgid "Television"
-msgstr "Télévision"
+#: ../../include/widgets.php:591
+msgid "Private Mail Menu"
+msgstr "Menu des messages privés"
-#: ../../mod/profiles.php:630
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../include/widgets.php:593
+msgid "Combined View"
+msgstr "Vue combinée"
-#: ../../mod/profiles.php:631
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../include/widgets.php:627 ../../include/widgets.php:639
+msgid "Conversations"
+msgstr "Conversations"
-#: ../../mod/profiles.php:632
-msgid "Work/employment"
-msgstr "Travail/Occupation"
+#: ../../include/widgets.php:631
+msgid "Received Messages"
+msgstr "Messages reçus"
-#: ../../mod/profiles.php:633
-msgid "School/education"
-msgstr "Études"
+#: ../../include/widgets.php:635
+msgid "Sent Messages"
+msgstr "Messages envoyés"
-#: ../../mod/profiles.php:639
-msgid "This is your default profile."
-msgstr "Voilà votre profil par défault."
+#: ../../include/widgets.php:649
+msgid "No messages."
+msgstr "Pas de message."
-#: ../../mod/profiles.php:650 ../../mod/directory.php:143
-#: ../../mod/dirprofile.php:92
-msgid "Age: "
-msgstr "Age&nbsp;:"
+#: ../../include/widgets.php:667
+msgid "Delete conversation"
+msgstr "Supprimer la conversation"
-#: ../../mod/profiles.php:692
-msgid "Edit/Manage Profiles"
-msgstr "Éditer/gérer les profils"
+#: ../../include/widgets.php:693
+msgid "Events Menu"
+msgstr "Menu Evènements"
-#: ../../mod/profiles.php:693
-msgid "Add profile things"
-msgstr "Ajouter des choses de profil"
+#: ../../include/widgets.php:694
+msgid "Day View"
+msgstr "Vue Jour"
-#: ../../mod/profiles.php:694
-msgid "Include desirable objects in your profile"
-msgstr "Incluez des objets souhaitables dans votre profil"
+#: ../../include/widgets.php:695
+msgid "Week View"
+msgstr "Vue Semaine"
-#: ../../mod/bookmarks.php:38
-msgid "Bookmark added"
-msgstr "Favoris ajouté"
+#: ../../include/widgets.php:696
+msgid "Month View"
+msgstr "Vue Mois"
-#: ../../mod/bookmarks.php:58
-msgid "My Bookmarks"
-msgstr "Mes Favoris"
+#: ../../include/widgets.php:697 ../../mod/events.php:654
+msgid "Export"
+msgstr "Export"
-#: ../../mod/bookmarks.php:69
-msgid "My Connections Bookmarks"
-msgstr "Favoris de mes relations"
+#: ../../include/widgets.php:698 ../../mod/events.php:657
+msgid "Import"
+msgstr "Import"
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../include/widgets.php:708
+msgid "Events Tools"
+msgstr "Outils Evènements"
-#: ../../mod/profperm.php:110
-msgid "Profile Visibility Editor"
-msgstr "Éditeur de visibilité de profil"
+#: ../../include/widgets.php:709
+msgid "Export Calendar"
+msgstr "Exporter le calendrier"
-#: ../../mod/profperm.php:114
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
+#: ../../include/widgets.php:710
+msgid "Import Calendar"
+msgstr "Importer un calendrier"
-#: ../../mod/profperm.php:123
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../include/widgets.php:784
+msgid "Chat Rooms"
+msgstr "Salons de clavardage"
-#: ../../mod/profperm.php:139 ../../mod/connections.php:279
-msgid "All Connections"
-msgstr "Toutes les relations"
+#: ../../include/widgets.php:804
+msgid "Bookmarked Chatrooms"
+msgstr "Salons favoris"
-#: ../../mod/pubsites.php:16
-msgid "Public Sites"
-msgstr "Sites publics"
+#: ../../include/widgets.php:824
+msgid "Suggested Chatrooms"
+msgstr "Salons suggérés"
-#: ../../mod/pubsites.php:19
-msgid ""
-"The listed sites allow public registration into the Hubzilla. 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."
+#: ../../include/widgets.php:969 ../../include/widgets.php:1059
+msgid "photo/image"
+msgstr "photo/image"
-#: ../../mod/pubsites.php:25
-msgid "Site URL"
-msgstr "URL du site"
+#: ../../include/widgets.php:1153
+msgid "Rating Tools"
+msgstr "Outils d'évaluation"
-#: ../../mod/pubsites.php:25
-msgid "Access Type"
-msgstr "Type d'accès"
+#: ../../include/widgets.php:1157 ../../include/widgets.php:1159
+msgid "Rate Me"
+msgstr "M'évaluer"
-#: ../../mod/pubsites.php:25
-msgid "Registration Policy"
-msgstr "Politique d'inscription"
+#: ../../include/widgets.php:1162
+msgid "View Ratings"
+msgstr "Voir mes évaluations"
-#: ../../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."
+#: ../../include/widgets.php:1173
+msgid "Public Hubs"
+msgstr "Instances publiques"
-#: ../../mod/channel.php:86
-msgid "Insufficient permissions. Request redirected to profile page."
-msgstr "Permissions insuffisantes. Demande redirigée à la page du profil."
+#: ../../include/widgets.php:1221
+msgid "Forums"
+msgstr "Membres du forum"
-#: ../../mod/rbmark.php:88
-msgid "Select a bookmark folder"
-msgstr "Choisir un dossier de favoris"
+#: ../../include/widgets.php:1250
+msgid "Tasks"
+msgstr "Tâches"
-#: ../../mod/rbmark.php:93
-msgid "Save Bookmark"
-msgstr "Sauver le favoris"
+#: ../../include/widgets.php:1259
+msgid "Documentation"
+msgstr "Documentation"
-#: ../../mod/rbmark.php:94
-msgid "URL of bookmark"
-msgstr "URL du favoris"
+#: ../../include/widgets.php:1261
+msgid "Project/Site Information"
+msgstr "Information sur le site/projet"
-#: ../../mod/rbmark.php:95 ../../mod/appman.php:93
-msgid "Description"
-msgstr "Description"
+#: ../../include/widgets.php:1262
+msgid "For Members"
+msgstr "Pour les membres"
-#: ../../mod/rbmark.php:99
-msgid "Or enter new bookmark folder name"
-msgstr "Ou entrez le nom d'un nouveau dossier"
+#: ../../include/widgets.php:1263
+msgid "For Administrators"
+msgstr "Pour les administrateurs"
-#: ../../mod/chat.php:167
-msgid "Room not found"
-msgstr "Salon introuvable"
+#: ../../include/widgets.php:1264
+msgid "For Developers"
+msgstr "Pour les développeurs"
-#: ../../mod/chat.php:178
-msgid "Leave Room"
-msgstr "Quitter le salon"
+#: ../../include/widgets.php:1289 ../../mod/admin.php:456
+msgid "Site"
+msgstr "Site"
-#: ../../mod/chat.php:179
-msgid "Delete This Room"
-msgstr "Supprimer le salon"
+#: ../../include/widgets.php:1290
+msgid "Accounts"
+msgstr "Comptes"
-#: ../../mod/chat.php:180
-msgid "I am away right now"
-msgstr "Je suis momentanément absent"
+#: ../../include/widgets.php:1291 ../../mod/admin.php:1149
+msgid "Channels"
+msgstr "Canaux"
-#: ../../mod/chat.php:181
-msgid "I am online"
-msgstr "Je suis en ligne"
+#: ../../include/widgets.php:1292 ../../mod/admin.php:710
+msgid "Security"
+msgstr ""
-#: ../../mod/chat.php:183
-msgid "Bookmark this room"
-msgstr "Marquer ce salon"
+#: ../../include/widgets.php:1294 ../../mod/admin.php:1264
+#: ../../mod/admin.php:1325
+msgid "Plugins"
+msgstr "Greffons"
-#: ../../mod/chat.php:207 ../../mod/chat.php:229
-msgid "New Chatroom"
-msgstr "Nouveau salon"
+#: ../../include/widgets.php:1295 ../../mod/admin.php:1486
+#: ../../mod/admin.php:1520
+msgid "Themes"
+msgstr "Thèmes"
-#: ../../mod/chat.php:208
-msgid "Chatroom Name"
-msgstr "Nom du salon"
+#: ../../include/widgets.php:1296
+msgid "Inspect queue"
+msgstr "Analyser la file d'attente"
-#: ../../mod/chat.php:225
-#, php-format
-msgid "%1$s's Chatrooms"
-msgstr "Salons de %1$s"
+#: ../../include/widgets.php:1297
+msgid "Profile Config"
+msgstr "Configuration du profil"
-#: ../../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."
+#: ../../include/widgets.php:1298
+msgid "DB updates"
+msgstr "Mises à jour BDD"
-#: ../../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é."
+#: ../../include/widgets.php:1316 ../../include/widgets.php:1322
+#: ../../mod/admin.php:1605
+msgid "Logs"
+msgstr "Journaux"
-#: ../../mod/register.php:83
-msgid "Passwords do not match."
-msgstr "Les mots de passe ne concordent pas."
+#: ../../include/widgets.php:1321
+msgid "Plugin Features"
+msgstr "Fonctionnalités des greffons"
-#: ../../mod/register.php:116
-msgid ""
-"Registration successful. Please check your email for validation "
-"instructions."
-msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."
+#: ../../include/widgets.php:1323
+msgid "User registrations waiting for confirmation"
+msgstr "Enregistrements d'utilisateurs en attente d'approbation"
-#: ../../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."
+#: ../../include/widgets.php:1401 ../../mod/photos.php:760
+#: ../../mod/photos.php:1300
+msgid "View Photo"
+msgstr "Voir la photo"
-#: ../../mod/register.php:125
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traîtée."
+#: ../../include/widgets.php:1418 ../../mod/photos.php:791
+msgid "Edit Album"
+msgstr "Modifier l'album"
-#: ../../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."
+#: ../../include/ItemObject.php:130
+msgid "Save to Folder"
+msgstr "Enregistrer dans le dossier"
-#: ../../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>"
+#: ../../include/ItemObject.php:151
+msgid "I will attend"
+msgstr "Je participerai"
-#: ../../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."
+#: ../../include/ItemObject.php:151
+msgid "I will not attend"
+msgstr "Je ne participerai pas"
-#: ../../mod/register.php:182
-msgid "Terms of Service"
-msgstr "Règles du Service"
+#: ../../include/ItemObject.php:151
+msgid "I might attend"
+msgstr "Je participerai peut-être"
-#: ../../mod/register.php:188
+#: ../../include/ItemObject.php:161
+msgid "I agree"
+msgstr "Je suis d'accord"
+
+#: ../../include/ItemObject.php:161
+msgid "I disagree"
+msgstr "Je ne suis pas d'accord"
+
+#: ../../include/ItemObject.php:161
+msgid "I abstain"
+msgstr "Je m'abstiens"
+
+#: ../../include/ItemObject.php:212
+msgid "Add Star"
+msgstr "Mettre en avant (étoile)"
+
+#: ../../include/ItemObject.php:213
+msgid "Remove Star"
+msgstr "Ne plus mettre en avant"
+
+#: ../../include/ItemObject.php:214
+msgid "Toggle Star Status"
+msgstr "(Dés)activer l'étoile"
+
+#: ../../include/ItemObject.php:218
+msgid "starred"
+msgstr "mis en avant"
+
+#: ../../include/ItemObject.php:236
+msgid "Add Tag"
+msgstr "Ajouter une étiquette"
+
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:1037
+msgid "I like this (toggle)"
+msgstr "J'aime (oui/non)"
+
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:1038
+msgid "I don't like this (toggle)"
+msgstr "Je n'aime pas (oui/non)"
+
+#: ../../include/ItemObject.php:259
+msgid "Share This"
+msgstr "Partager"
+
+#: ../../include/ItemObject.php:259
+msgid "share"
+msgstr "partager"
+
+#: ../../include/ItemObject.php:268
+msgid "Delivery Report"
+msgstr "Rapport de distribution"
+
+#: ../../include/ItemObject.php:286
#, php-format
-msgid "I accept the %s for this website"
-msgstr "J'accepte %s de ce site"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
-#: ../../mod/register.php:190
+#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
#, php-format
-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"
+msgid "View %s's profile - %s"
+msgstr "Voir le profil de %s - %s"
-#: ../../mod/register.php:204 ../../mod/admin.php:452
-msgid "Registration"
-msgstr "Inscription"
+#: ../../include/ItemObject.php:319
+msgid "to"
+msgstr "à"
-#: ../../mod/register.php:209
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../include/ItemObject.php:320
+msgid "via"
+msgstr "via"
-#: ../../mod/register.php:210
-msgid "Please enter your invitation code"
-msgstr "Merci de saisir votre code d'invitation"
+#: ../../include/ItemObject.php:321
+msgid "Wall-to-Wall"
+msgstr "Mur-à-mur"
-#: ../../mod/register.php:213
-msgid "Your email address"
-msgstr "Votre adresse de courriel"
+#: ../../include/ItemObject.php:322
+msgid "via Wall-To-Wall:"
+msgstr "par Mur-à-mur&nbsp;:"
-#: ../../mod/register.php:214
-msgid "Choose a password"
-msgstr "Choisissez un mot de passe"
+#: ../../include/ItemObject.php:362
+msgid "Save Bookmarks"
+msgstr "Enregistrer les favoris"
-#: ../../mod/register.php:215
-msgid "Please re-enter your password"
-msgstr "Confirmez-le"
+#: ../../include/ItemObject.php:363
+msgid "Add to Calendar"
+msgstr "Ajouter au Calendrier"
-#: ../../mod/chatsvc.php:111
-msgid "Away"
-msgstr "Absent"
+#: ../../include/ItemObject.php:372
+msgid "Mark all seen"
+msgstr "Tout marquer comme vu"
-#: ../../mod/chatsvc.php:115
-msgid "Online"
-msgstr "En ligne"
+#: ../../include/ItemObject.php:378 ../../mod/photos.php:1223
+msgctxt "noun"
+msgid "Likes"
+msgstr "Aime"
-#: ../../mod/regmod.php:12
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../include/ItemObject.php:379 ../../mod/photos.php:1224
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "N'aime pas"
-#: ../../mod/cloud.php:126
-msgid "Hubzilla - Guests: Username: {your email address}, Password: +++"
-msgstr "Matrice Rouge - Pour les invités: Nom d'utilisateur = {votre courriel}, Mot de passe = +++"
+#: ../../include/ItemObject.php:700 ../../mod/photos.php:1056
+#: ../../mod/photos.php:1174
+msgid "This is you"
+msgstr "C'est vous"
-#: ../../mod/removeme.php:29
-msgid ""
-"Channel removals are not allowed within 48 hours of changing the account "
-"password."
-msgstr "Il est impossible de supprimer un canal à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte."
+#: ../../include/ItemObject.php:709
+msgid "Image"
+msgstr "Image"
-#: ../../mod/removeme.php:57
-msgid "Remove This Channel"
-msgstr "Supprimer ce Canal"
+#: ../../include/ItemObject.php:710
+msgid "Insert Link"
+msgstr "Insérer un lien"
-#: ../../mod/removeme.php:58
-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é."
+#: ../../include/ItemObject.php:711
+msgid "Video"
+msgstr "Vidéo"
-#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59
-msgid "Please enter your password for verification:"
-msgstr "Merci de re-saisir votre mot de passe pour vérification&nbsp;:"
+#: ../../index.php:245 ../../mod/help.php:217
+msgid "Not Found"
+msgstr "Introuvable"
-#: ../../mod/removeme.php:60
-msgid "Remove this channel and all its clones from the network"
-msgstr "Supprimer ce canal ainsi que tous ses clones sur la matrice"
+#: ../../index.php:248 ../../mod/block.php:75 ../../mod/display.php:110
+#: ../../mod/help.php:220 ../../mod/page.php:89
+msgid "Page not found."
+msgstr "Page introuvable."
-#: ../../mod/removeme.php:60
+#: ../../mod/achievements.php:34
+msgid "Some blurb about what to do when you're new here"
+msgstr "Quelques mots sur quoi faire quand on est nouveau ici"
+
+#: ../../mod/acl.php:222
+msgid "network"
+msgstr "réseau"
+
+#: ../../mod/acl.php:232
+msgid "RSS"
+msgstr "RSS"
+
+#: ../../mod/api.php:74 ../../mod/api.php:98
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
+
+#: ../../mod/api.php:75
+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/api.php:85
+msgid "Please login to continue."
+msgstr "Merci de vous identifier pour continuer."
+
+#: ../../mod/api.php:100
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"
+"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/removeme.php:61
-msgid "Remove Channel"
-msgstr "Enlever le canal"
+#: ../../mod/appman.php:28 ../../mod/appman.php:44
+msgid "App installed."
+msgstr "Application installée."
+
+#: ../../mod/appman.php:37
+msgid "Malformed app."
+msgstr "Erreur de l'application - Malformée."
+
+#: ../../mod/appman.php:80
+msgid "Embed code"
+msgstr "Imbriquer le code"
+
+#: ../../mod/appman.php:86
+msgid "Edit App"
+msgstr "Modifier l'application"
+
+#: ../../mod/appman.php:86
+msgid "Create App"
+msgstr "Créer une application"
+
+#: ../../mod/appman.php:91
+msgid "Name of app"
+msgstr "Nom de l'application"
+
+#: ../../mod/appman.php:92
+msgid "Location (URL) of app"
+msgstr "Emplacement (URL) de l'application"
+
+#: ../../mod/appman.php:93 ../../mod/events.php:450 ../../mod/rbmark.php:97
+msgid "Description"
+msgstr "Description"
+
+#: ../../mod/appman.php:94
+msgid "Photo icon URL"
+msgstr "URL de l'icône à utiliser pour cette photo"
+
+#: ../../mod/appman.php:94
+msgid "80 x 80 pixels - optional"
+msgstr "80 x 80 pixels - facultatif"
+
+#: ../../mod/appman.php:95
+msgid "Version ID"
+msgstr "Identifiant de version"
+
+#: ../../mod/appman.php:96
+msgid "Price of app"
+msgstr "Prix de l'application"
+
+#: ../../mod/appman.php:97
+msgid "Location (URL) to purchase app"
+msgstr "Emplacement (URL) pour l'achat de l'application"
+
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "Élément indisponible."
+
+#: ../../mod/block.php:27 ../../mod/page.php:36
+msgid "Invalid item."
+msgstr "Élément invalide."
+
+#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29
+msgid "Channel not found."
+msgstr "Canal introuvable."
+
+#: ../../mod/blocks.php:95 ../../mod/blocks.php:148
+msgid "Block Name"
+msgstr "Nom du Bloc"
+
+#: ../../mod/blocks.php:149
+msgid "Block Title"
+msgstr "Titre du bloc"
+
+#: ../../mod/bookmarks.php:40
+msgid "Bookmark added"
+msgstr "Favori ajouté"
+
+#: ../../mod/bookmarks.php:62
+msgid "My Bookmarks"
+msgstr "Mes Favoris"
+
+#: ../../mod/bookmarks.php:73
+msgid "My Connections Bookmarks"
+msgstr "Favoris de mes contacts"
+
+#: ../../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/channel.php:97
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Permissions insuffisantes. Demande redirigée vers la page du profil."
+
+#: ../../mod/channel.php:131 ../../mod/network.php:169 ../../mod/rpost.php:114
+msgid "Public"
+msgstr "Public"
+
+#: ../../mod/chat.php:174
+msgid "Room not found"
+msgstr "Salon introuvable"
+
+#: ../../mod/chat.php:185
+msgid "Leave Room"
+msgstr "Quitter le salon"
+
+#: ../../mod/chat.php:186
+msgid "Delete This Room"
+msgstr "Supprimer le salon"
+
+#: ../../mod/chat.php:187
+msgid "I am away right now"
+msgstr "Je suis absent en ce moment"
+
+#: ../../mod/chat.php:188
+msgid "I am online"
+msgstr "Je suis en ligne"
+
+#: ../../mod/chat.php:190
+msgid "Bookmark this room"
+msgstr "Marquer ce salon comme favori"
+
+#: ../../mod/chat.php:208 ../../mod/chat.php:231
+msgid "New Chatroom"
+msgstr "Nouveau salon de discussion"
+
+#: ../../mod/chat.php:209
+msgid "Chatroom Name"
+msgstr "Nom du salon de discussion"
+
+#: ../../mod/chat.php:210
+msgid "Expiration of chats (minutes)"
+msgstr "Expiration des discussions (en minutes)"
+
+#: ../../mod/chat.php:227
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Salons de %1$s"
+
+#: ../../mod/chatsvc.php:111
+msgid "Away"
+msgstr "Absent"
+
+#: ../../mod/chatsvc.php:115
+msgid "Online"
+msgstr "En ligne"
#: ../../mod/common.php:10
msgid "No channel."
@@ -4818,3061 +4449,4920 @@ msgstr "Pas de canal."
#: ../../mod/common.php:39
msgid "Common connections"
-msgstr "Relations communes"
+msgstr "Contacts en commun"
#: ../../mod/common.php:44
msgid "No connections in common."
-msgstr "Pas de relation en commun."
-
-#: ../../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/rmagic.php:38
-msgid "The error message was:"
-msgstr "Le message d'erreur était&nbsp;:"
-
-#: ../../mod/rmagic.php:42
-msgid "Authentication failed."
-msgstr "Échec de l'authentification."
+msgstr "Pas de contacts en commun."
-#: ../../mod/rmagic.php:82
-msgid "Remote Authentication"
-msgstr "Authentification distante"
-
-#: ../../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/rmagic.php:84
-msgid "Authenticate"
-msgstr "Authentifier"
-
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
+#: ../../mod/connect.php:56 ../../mod/connect.php:104
msgid "Continue"
msgstr "Continuer"
-#: ../../mod/connect.php:84
+#: ../../mod/connect.php:85
msgid "Premium Channel Setup"
msgstr "Configuration du canal VIP"
-#: ../../mod/connect.php:86
+#: ../../mod/connect.php:87
msgid "Enable premium channel connection restrictions"
msgstr "Activer les restrictions liées au canal VIP"
-#: ../../mod/connect.php:87
+#: ../../mod/connect.php:88
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/connect.php:89 ../../mod/connect.php:109
+#: ../../mod/connect.php:90 ../../mod/connect.php:110
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/connect.php:90
+#: ../../mod/connect.php:91
msgid ""
"Potential connections will then see the following text before proceeding:"
-msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer&nbsp;:"
+msgstr "Les contacts potentiels verront ce qui suit avant de pouvoir continuer&nbsp;:"
-#: ../../mod/connect.php:91 ../../mod/connect.php:112
+#: ../../mod/connect.php:92 ../../mod/connect.php:113
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"
+msgstr "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page."
-#: ../../mod/connect.php:100
+#: ../../mod/connect.php:101
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.)"
+msgstr "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)"
-#: ../../mod/connect.php:108
+#: ../../mod/connect.php:109
msgid "Restricted or Premium Channel"
msgstr "Canal VIP ou restreint"
-#: ../../mod/network.php:79
-msgid "No such group"
-msgstr "Groupe introuvable"
-
-#: ../../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/connections.php:37 ../../mod/connedit.php:64
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder aux détails du contact."
-
-#: ../../mod/connections.php:51 ../../mod/connedit.php:78
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil sélectionné."
-
-#: ../../mod/connections.php:94 ../../mod/connedit.php:132
-msgid "Connection updated."
-msgstr "Connexion mise à jour."
-
-#: ../../mod/connections.php:96 ../../mod/connedit.php:134
-msgid "Failed to update connection record."
-msgstr "Impossible de mettre à jour les détails de la relation."
-
-#: ../../mod/connections.php:191 ../../mod/connections.php:292
+#: ../../mod/connections.php:52 ../../mod/connections.php:157
+#: ../../mod/connections.php:238
msgid "Blocked"
-msgstr "Bloqué"
+msgstr "Bloqué(e)"
-#: ../../mod/connections.php:196 ../../mod/connections.php:299
+#: ../../mod/connections.php:57 ../../mod/connections.php:164
+#: ../../mod/connections.php:237
msgid "Ignored"
-msgstr "Ignoré"
+msgstr "Ignoré(e)"
-#: ../../mod/connections.php:201 ../../mod/connections.php:313
+#: ../../mod/connections.php:62 ../../mod/connections.php:178
+#: ../../mod/connections.php:236
msgid "Hidden"
msgstr "Caché"
-#: ../../mod/connections.php:206 ../../mod/connections.php:306
+#: ../../mod/connections.php:67 ../../mod/connections.php:171
+#: ../../mod/connections.php:235
msgid "Archived"
msgstr "Archivé"
-#: ../../mod/connections.php:230 ../../mod/connections.php:245
-msgid "All"
-msgstr "Tout"
-
-#: ../../mod/connections.php:270
-msgid "Suggest new connections"
-msgstr "Suggérer de nouvelles relations"
-
-#: ../../mod/connections.php:273
+#: ../../mod/connections.php:134
msgid "New Connections"
-msgstr "Nouvelles relations"
+msgstr "Nouveaux contacts"
-#: ../../mod/connections.php:276
+#: ../../mod/connections.php:137
msgid "Show pending (new) connections"
-msgstr "Voir les (nouvelles) relations en attente"
-
-#: ../../mod/connections.php:282
-msgid "Show all connections"
-msgstr "Voir toutes les relations"
+msgstr "Voir les (nouveaux) contacts en attente"
-#: ../../mod/connections.php:285
-msgid "Unblocked"
-msgstr "Non bloquées"
+#: ../../mod/connections.php:141 ../../mod/profperm.php:139
+msgid "All Connections"
+msgstr "Tous les contacts"
-#: ../../mod/connections.php:288
-msgid "Only show unblocked connections"
-msgstr "Ne montrer que les relations non-bloquées"
+#: ../../mod/connections.php:144
+msgid "Show all connections"
+msgstr "Voir tous les contacts"
-#: ../../mod/connections.php:295
+#: ../../mod/connections.php:160
msgid "Only show blocked connections"
-msgstr "Ne montrer que les relations bloquées"
+msgstr "Ne montrer que les contacts bloqués"
-#: ../../mod/connections.php:302
+#: ../../mod/connections.php:167
msgid "Only show ignored connections"
-msgstr "Ne montrer que les relations ignorées"
+msgstr "Ne montrer que les contacts ignorés"
-#: ../../mod/connections.php:309
+#: ../../mod/connections.php:174
msgid "Only show archived connections"
-msgstr "Ne montrer que les relations archivées"
+msgstr "Ne montrer que les contacts archivés"
-#: ../../mod/connections.php:316
+#: ../../mod/connections.php:181
msgid "Only show hidden connections"
-msgstr "Ne montrer que les relations cachées"
+msgstr "Ne montrer que les contacts cachés"
+
+#: ../../mod/connections.php:234
+msgid "Pending approval"
+msgstr "En attente de validation"
-#: ../../mod/connections.php:368
+#: ../../mod/connections.php:250
#, php-format
msgid "%1$s [%2$s]"
msgstr "%1$s [%2$s]"
-#: ../../mod/connections.php:369
-msgid "Edit contact"
-msgstr "Éditer contact"
+#: ../../mod/connections.php:251
+msgid "Edit connection"
+msgstr "Modifier le contact"
-#: ../../mod/connections.php:390
-msgid "Search your connections"
-msgstr "Chercher parmi vos relations"
+#: ../../mod/connections.php:252
+msgid "Delete connection"
+msgstr "Supprimer le contact"
-#: ../../mod/connections.php:391
-msgid "Finding: "
-msgstr "Recherche&nbsp;:"
+#: ../../mod/connections.php:261
+msgid "Channel address"
+msgstr "Adresse du canal"
-#: ../../mod/rpost.php:97 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr "Éditer la contribution"
+#: ../../mod/connections.php:263
+msgid "Network"
+msgstr "Réseau"
-#: ../../mod/connedit.php:181
-msgid "is now connected to"
-msgstr "est maintenant connecté avec"
+#: ../../mod/connections.php:266 ../../mod/admin.php:668
+msgid "Status"
+msgstr "État"
-#: ../../mod/connedit.php:274
-msgid "Could not access address book record."
-msgstr "Impossible d'accéder aux détails du carnet d'adresses."
+#: ../../mod/connections.php:268
+msgid "Connected"
+msgstr "Connecté"
-#: ../../mod/connedit.php:288
-msgid "Refresh failed - channel is currently unavailable."
-msgstr "Actualisation impossible - le canal est momentanément indisponible."
+#: ../../mod/connections.php:270
+msgid "Approve connection"
+msgstr "Valider le contact"
-#: ../../mod/connedit.php:295
-msgid "Channel has been unblocked"
-msgstr "Le canal n'est plus bloqué"
+#: ../../mod/connections.php:271 ../../mod/admin.php:991
+msgid "Approve"
+msgstr "Approuver"
-#: ../../mod/connedit.php:296
-msgid "Channel has been blocked"
-msgstr "Le canal est bloqué"
+#: ../../mod/connections.php:272
+msgid "Ignore connection"
+msgstr "Ignorer le contact"
-#: ../../mod/connedit.php:300 ../../mod/connedit.php:312
-#: ../../mod/connedit.php:324 ../../mod/connedit.php:336
-#: ../../mod/connedit.php:352
-msgid "Unable to set address book parameters."
-msgstr "Impossible de régler les paramètres du carnet d'adresses."
+#: ../../mod/connections.php:273 ../../mod/connedit.php:536
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorer"
-#: ../../mod/connedit.php:307
-msgid "Channel has been unignored"
-msgstr "Le canal n'est plus ignoré"
+#: ../../mod/connections.php:274
+msgid "Recent activity"
+msgstr "Activité récente"
-#: ../../mod/connedit.php:308
-msgid "Channel has been ignored"
-msgstr "Le canal est ignoré"
+#: ../../mod/connections.php:303
+msgid "Search your connections"
+msgstr "Chercher parmi vos contacts"
-#: ../../mod/connedit.php:319
-msgid "Channel has been unarchived"
-msgstr "Le canal n'est plus archivé"
+#: ../../mod/connections.php:304
+msgid "Connections search"
+msgstr "Chercher des contacts"
-#: ../../mod/connedit.php:320
-msgid "Channel has been archived"
-msgstr "Le canal est archivé"
+#: ../../mod/connedit.php:75
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder aux détails du contact."
-#: ../../mod/connedit.php:331
-msgid "Channel has been unhidden"
-msgstr "Le canal n'est plus caché"
+#: ../../mod/connedit.php:99
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil sélectionné."
+
+#: ../../mod/connedit.php:223
+msgid "Connection updated."
+msgstr "Contact mis à jour."
+
+#: ../../mod/connedit.php:225
+msgid "Failed to update connection record."
+msgstr "Impossible de mettre à jour les détails du contact."
-#: ../../mod/connedit.php:332
-msgid "Channel has been hidden"
-msgstr "Le canal est caché"
+#: ../../mod/connedit.php:272
+msgid "is now connected to"
+msgstr "est maintenant connecté avec"
+
+#: ../../mod/connedit.php:398
+msgid "Could not access address book record."
+msgstr "Impossible d'accéder aux détails du carnet d'adresses."
-#: ../../mod/connedit.php:347
-msgid "Channel has been approved"
-msgstr "Le canal est approuvé"
+#: ../../mod/connedit.php:412
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "Actualisation impossible - le canal est indisponible."
-#: ../../mod/connedit.php:348
-msgid "Channel has been unapproved"
-msgstr "Le canal n'est plus approuvé"
+#: ../../mod/connedit.php:427 ../../mod/connedit.php:436
+#: ../../mod/connedit.php:445 ../../mod/connedit.php:454
+#: ../../mod/connedit.php:467
+msgid "Unable to set address book parameters."
+msgstr "Impossible de régler les paramètres du carnet d'adresses."
-#: ../../mod/connedit.php:376
+#: ../../mod/connedit.php:491
msgid "Connection has been removed."
-msgstr "La relation a été supprimée"
+msgstr "Le contact a été supprimé."
-#: ../../mod/connedit.php:396
+#: ../../mod/connedit.php:510
#, php-format
msgid "View %s's profile"
msgstr "Voir le profil de %s"
-#: ../../mod/connedit.php:400
+#: ../../mod/connedit.php:514
msgid "Refresh Permissions"
-msgstr "Actualiser les permissions"
+msgstr "Actualiser les autorisations"
-#: ../../mod/connedit.php:403
+#: ../../mod/connedit.php:517
msgid "Fetch updated permissions"
-msgstr "Récupérer les permissions les plus récentes"
+msgstr "Récupérer les autorisations les plus récentes"
-#: ../../mod/connedit.php:407
+#: ../../mod/connedit.php:521
msgid "Recent Activity"
msgstr "Activité récente"
-#: ../../mod/connedit.php:410
+#: ../../mod/connedit.php:524
msgid "View recent posts and comments"
-msgstr "Voir les contributions et commentaires récentes"
+msgstr "Voir les publications et commentaires récents"
-#: ../../mod/connedit.php:414 ../../mod/connedit.php:557
-#: ../../mod/admin.php:769
+#: ../../mod/connedit.php:528 ../../mod/admin.php:995
msgid "Unblock"
msgstr "Débloquer"
-#: ../../mod/connedit.php:414 ../../mod/connedit.php:557
-#: ../../mod/admin.php:768
+#: ../../mod/connedit.php:528 ../../mod/admin.php:994
msgid "Block"
msgstr "Bloquer"
-#: ../../mod/connedit.php:417
-msgid "Block or Unblock this connection"
-msgstr "Bloquer ou Débloquer cette relation"
+#: ../../mod/connedit.php:531
+msgid "Block (or Unblock) all communications with this connection"
+msgstr "Bloquer ou débloquer toute communication avec ce contact"
+
+#: ../../mod/connedit.php:532
+msgid "This connection is blocked!"
+msgstr "Ce contact est bloqué&nbsp;!"
-#: ../../mod/connedit.php:421 ../../mod/connedit.php:558
+#: ../../mod/connedit.php:536
msgid "Unignore"
msgstr "Ne plus ignorer"
-#: ../../mod/connedit.php:421 ../../mod/connedit.php:558
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../mod/connedit.php:539
+msgid "Ignore (or Unignore) all inbound communications from this connection"
+msgstr "Ignorer ou ne plus ignorer toute communication venant de ce contact"
-#: ../../mod/connedit.php:424
-msgid "Ignore or Unignore this connection"
-msgstr "Ignorer ou ne plus ignorer cette relation"
+#: ../../mod/connedit.php:540
+msgid "This connection is ignored!"
+msgstr "Ce contact est ignoré&nbsp;!"
-#: ../../mod/connedit.php:427
+#: ../../mod/connedit.php:544
msgid "Unarchive"
-msgstr "Ne plus archiver"
+msgstr "Désarchiver"
-#: ../../mod/connedit.php:427
+#: ../../mod/connedit.php:544
msgid "Archive"
msgstr "Archiver"
-#: ../../mod/connedit.php:430
-msgid "Archive or Unarchive this connection"
-msgstr "Archiver ou ne plus archiver cette relation"
+#: ../../mod/connedit.php:547
+msgid ""
+"Archive (or Unarchive) this connection - mark channel dead but keep content"
+msgstr "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu"
+
+#: ../../mod/connedit.php:548
+msgid "This connection is archived!"
+msgstr "Ce contact est archivé&nbsp;!"
-#: ../../mod/connedit.php:433
+#: ../../mod/connedit.php:552
msgid "Unhide"
msgstr "Ne plus cacher"
-#: ../../mod/connedit.php:433
+#: ../../mod/connedit.php:552
msgid "Hide"
msgstr "Cacher"
-#: ../../mod/connedit.php:436
-msgid "Hide or Unhide this connection"
-msgstr "Cacher ou ne plus cacher cette relation"
+#: ../../mod/connedit.php:555
+msgid "Hide or Unhide this connection from your other connections"
+msgstr "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts"
-#: ../../mod/connedit.php:443
+#: ../../mod/connedit.php:556
+msgid "This connection is hidden!"
+msgstr "Ce contact est caché&nbsp;!"
+
+#: ../../mod/connedit.php:563
msgid "Delete this connection"
-msgstr "Supprimer cette relation"
+msgstr "Supprimer ce contact"
-#: ../../mod/connedit.php:486 ../../mod/connedit.php:515
+#: ../../mod/connedit.php:644
msgid "Approve this connection"
-msgstr "Approuver cette relation"
+msgstr "Autoriser ce contact"
-#: ../../mod/connedit.php:486
+#: ../../mod/connedit.php:644
msgid "Accept connection to allow communication"
-msgstr "Accepter la relation pour permettre la communication"
+msgstr "Accepter le contact pour permettre la communication"
-#: ../../mod/connedit.php:502
-msgid "Automatic Permissions Settings"
-msgstr "Permissions automatiques"
+#: ../../mod/connedit.php:649
+msgid "Set Affinity"
+msgstr "Définir le degré d'affinité"
-#: ../../mod/connedit.php:502
-#, php-format
-msgid "Connections: settings for %s"
-msgstr "Relations&nbsp;: réglages pour %s"
+#: ../../mod/connedit.php:652
+msgid "Set Profile"
+msgstr "Définir le profil"
+
+#: ../../mod/connedit.php:655
+msgid "Set Affinity & Profile"
+msgstr "Définir le degré d'affinité et le profil"
+
+#: ../../mod/connedit.php:688
+msgid "none"
+msgstr "Aucun"
-#: ../../mod/connedit.php:506
+#: ../../mod/connedit.php:693
+msgid "Apply these permissions automatically"
+msgstr "Appliquer ces permissions automatiquement"
+
+#: ../../mod/connedit.php:695
+msgid "This connection's primary address is"
+msgstr "L'adresse principale de ce contact est"
+
+#: ../../mod/connedit.php:696
+msgid "Available locations:"
+msgstr "Emplacements disponibles&nbsp;:"
+
+#: ../../mod/connedit.php:700
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."
+"The permissions indicated on this page will be applied to all new "
+"connections."
+msgstr "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts."
-#: ../../mod/connedit.php:508
+#: ../../mod/connedit.php:702
msgid "Slide to adjust your degree of friendship"
-msgstr "Faites glisser pour ajuster le niveau de la relation"
+msgstr "Faites glisser pour ajuster votre proximité avec le contact"
-#: ../../mod/connedit.php:514
-msgid "inherited"
-msgstr "héritée"
+#: ../../mod/connedit.php:704
+msgid "Slide to adjust your rating"
+msgstr "Faîtes glisser pour ajuster votre note"
-#: ../../mod/connedit.php:516
-msgid "Connection has no individual permissions!"
-msgstr "Cette relation n'a aucune permission spécifique!"
+#: ../../mod/connedit.php:705 ../../mod/connedit.php:710
+msgid "Optionally explain your rating"
+msgstr "Explication facultative de votre évaluation"
-#: ../../mod/connedit.php:517
+#: ../../mod/connedit.php:707
+msgid "Custom Filter"
+msgstr "Filtre personnalisé"
+
+#: ../../mod/connedit.php:708
+msgid "Only import posts with this text"
+msgstr "N'importer que les publications comprenant ce texte"
+
+#: ../../mod/connedit.php:708 ../../mod/connedit.php:709
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\"."
+"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
+"all posts"
+msgstr "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications"
+
+#: ../../mod/connedit.php:709
+msgid "Do not import posts with this text"
+msgstr "Ne pas importer les publications comprenant ce texte"
+
+#: ../../mod/connedit.php:711
+msgid "This information is public!"
+msgstr "Cette information est publique&nbsp;!"
-#: ../../mod/connedit.php:519
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../mod/connedit.php:716
+msgid "Connection Pending Approval"
+msgstr "Contact en attente d'approbation"
-#: ../../mod/connedit.php:520
+#: ../../mod/connedit.php:719
+msgid "inherited"
+msgstr "héritée"
+
+#: ../../mod/connedit.php:721
#, 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:521
-msgid "Contact Information / Notes"
-msgstr "Notes / Information de contact"
-
-#: ../../mod/connedit.php:522
-msgid "Edit contact notes"
-msgstr "Éditer les notes du contact"
-
-#: ../../mod/connedit.php:524
+#: ../../mod/connedit.php:723
msgid "Their Settings"
-msgstr "Ses réglages"
+msgstr "Leurs paramètres"
-#: ../../mod/connedit.php:525
+#: ../../mod/connedit.php:724
msgid "My Settings"
-msgstr "Mes réglages"
+msgstr "Mes paramètres"
-#: ../../mod/connedit.php:527
-msgid "Clear/Disable Automatic Permissions"
-msgstr "Effacer/Désactiver les Permissions Automatiques"
+#: ../../mod/connedit.php:726
+msgid "Individual Permissions"
+msgstr "Permissions individuelles"
-#: ../../mod/connedit.php:528
-msgid "Forum Members"
-msgstr "Membres du forum"
+#: ../../mod/connedit.php:727
+msgid ""
+"Some permissions may be inherited from your channel's <a "
+"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
+"priority than individual settings. You can <strong>not</strong> change those"
+" settings here."
+msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités."
-#: ../../mod/connedit.php:529
-msgid "Soapbox"
-msgstr "Blogue"
+#: ../../mod/connedit.php:728
+msgid ""
+"Some permissions may be inherited from your channel's <a "
+"href=\"settings\"><strong>privacy settings</strong></a>, which have higher "
+"priority than individual settings. You can change those settings here but "
+"they wont have any impact unless the inherited setting changes."
+msgstr "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités."
-#: ../../mod/connedit.php:530
-msgid "Full Sharing (typical social network permissions)"
-msgstr "Partage Complet (fonctionnement habituel des réseaux sociaux)"
+#: ../../mod/connedit.php:729
+msgid "Last update:"
+msgstr "Dernière mise à jour&nbsp;:"
-#: ../../mod/connedit.php:531
-msgid "Cautious Sharing "
-msgstr "Partage modéré"
+#: ../../mod/dav.php:121
+msgid "$Projectname channel"
+msgstr "Canal $Projectname"
-#: ../../mod/connedit.php:532
-msgid "Follow Only"
-msgstr "Suivre uniquement"
+#: ../../mod/directory.php:59 ../../mod/display.php:13
+#: ../../mod/photos.php:490 ../../mod/ratings.php:82 ../../mod/search.php:13
+#: ../../mod/viewconnections.php:17
+msgid "Public access denied."
+msgstr "Accès public refusé."
-#: ../../mod/connedit.php:533
-msgid "Individual Permissions"
-msgstr "Permissions spécifiques"
+#: ../../mod/directory.php:239
+#, php-format
+msgid "%d rating"
+msgid_plural "%d ratings"
+msgstr[0] "%d évaluation"
+msgstr[1] "%d évaluations"
-#: ../../mod/connedit.php:534
-msgid ""
-"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."
-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/directory.php:250
+msgid "Gender: "
+msgstr "Sexe/genre&nbsp;:"
-#: ../../mod/connedit.php:535
-msgid "Advanced Permissions"
-msgstr "Permissions avancées"
+#: ../../mod/directory.php:252
+msgid "Status: "
+msgstr "État&nbsp;:"
-#: ../../mod/connedit.php:536
-msgid "Simple Permissions (select one and submit)"
-msgstr "Permissions simples (en choisir une, puis valider)"
+#: ../../mod/directory.php:254
+msgid "Homepage: "
+msgstr "Site web&nbsp;:"
-#: ../../mod/connedit.php:540
+#: ../../mod/directory.php:313
+msgid "Description:"
+msgstr "Description&nbsp;:"
+
+#: ../../mod/directory.php:322
+msgid "Public Forum:"
+msgstr "Forum public&nbsp;:"
+
+#: ../../mod/directory.php:325
+msgid "Keywords: "
+msgstr "Mots-clefs&nbsp;:"
+
+#: ../../mod/directory.php:328
+msgid "Don't suggest"
+msgstr "Ne pas suggérer"
+
+#: ../../mod/directory.php:330
+msgid "Common connections:"
+msgstr "Contacts en commun&nbsp;:"
+
+#: ../../mod/directory.php:379
+msgid "Global Directory"
+msgstr "Annuaire global"
+
+#: ../../mod/directory.php:379
+msgid "Local Directory"
+msgstr "Annuaire local"
+
+#: ../../mod/directory.php:385
+msgid "Finding:"
+msgstr "Recherche&nbsp;:"
+
+#: ../../mod/directory.php:390
+msgid "next page"
+msgstr "page suivante"
+
+#: ../../mod/directory.php:390
+msgid "previous page"
+msgstr "page précédente"
+
+#: ../../mod/directory.php:391
+msgid "Sort options"
+msgstr "Options de tri"
+
+#: ../../mod/directory.php:392
+msgid "Alphabetic"
+msgstr "Alphabétique"
+
+#: ../../mod/directory.php:393
+msgid "Reverse Alphabetic"
+msgstr "Alphabétique inversé"
+
+#: ../../mod/directory.php:394
+msgid "Newest to Oldest"
+msgstr "Du plus récent au moins récent"
+
+#: ../../mod/directory.php:395
+msgid "Oldest to Newest"
+msgstr "Du moins récent du plus récent"
+
+#: ../../mod/directory.php:412
+msgid "No entries (some entries may be hidden)."
+msgstr "Pas d'entrées (certaines peuvent être cachées)."
+
+#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45
+msgid "This site is not a directory server"
+msgstr "Ce site n'est pas un serveur d'annuaire"
+
+#: ../../mod/dirsearch.php:29
+msgid "This directory server requires an access token"
+msgstr "Ce serveur d'annuaire requiert un jeton d'accès"
+
+#: ../../mod/dreport.php:23
+msgid "Invalid message"
+msgstr "Message non valide"
+
+#: ../../mod/dreport.php:55
+msgid "no results"
+msgstr "aucun résultat"
+
+#: ../../mod/dreport.php:60
#, php-format
-msgid "Visit %s's profile - %s"
-msgstr "Visiter le profil de %s - %s"
+msgid "Delivery report for %1$s"
+msgstr "Rapport de distribution pour %1$s"
-#: ../../mod/connedit.php:541
-msgid "Block/Unblock contact"
-msgstr "Bloquer/Débloquer le contact"
+#: ../../mod/dreport.php:74
+msgid "channel sync processed"
+msgstr "Synchro de canal effectuée"
-#: ../../mod/connedit.php:542
-msgid "Ignore contact"
-msgstr "Ignorer le contact"
+#: ../../mod/dreport.php:78
+msgid "queued"
+msgstr "mis dans la file d'attente"
-#: ../../mod/connedit.php:543
-msgid "Repair URL settings"
-msgstr "Réparer les réglages d'URL"
+#: ../../mod/dreport.php:82
+msgid "posted"
+msgstr "publié"
-#: ../../mod/connedit.php:544
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../mod/dreport.php:86
+msgid "accepted for delivery"
+msgstr "accepté pour la distribution"
-#: ../../mod/connedit.php:546
-msgid "Delete contact"
-msgstr "Supprimer le contact"
+#: ../../mod/dreport.php:90
+msgid "updated"
+msgstr "mis à jour"
-#: ../../mod/connedit.php:549
-msgid "Last update:"
-msgstr "Dernière mise à jour&nbsp;:"
+#: ../../mod/dreport.php:93
+msgid "update ignored"
+msgstr "mise à jour ignorée"
-#: ../../mod/connedit.php:551
-msgid "Update public posts"
-msgstr "Mettre à jour les publications"
+#: ../../mod/dreport.php:96
+msgid "permission denied"
+msgstr "permission refusée"
-#: ../../mod/connedit.php:553
-msgid "Update now"
-msgstr "Mettre à jour maintenant"
+#: ../../mod/dreport.php:100
+msgid "recipient not found"
+msgstr "destinataire introuvable"
-#: ../../mod/connedit.php:559
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../mod/dreport.php:103
+msgid "mail recalled"
+msgstr "courriel rappelé"
-#: ../../mod/connedit.php:560
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../mod/dreport.php:106
+msgid "duplicate mail received"
+msgstr "courriel reçu en double"
-#: ../../mod/connedit.php:561
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: ../../mod/dreport.php:109
+msgid "mail delivered"
+msgstr "courriel distribué"
-#: ../../mod/connedit.php:562
-msgid "Currently pending"
-msgstr "Actuellement en attente"
+#: ../../mod/editblock.php:78 ../../mod/editblock.php:94
+#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20
+#: ../../mod/editwebpage.php:77
+msgid "Item not found"
+msgstr "Élément introuvable"
-#: ../../mod/connedit.php:563
-msgid "Hide this contact from others"
-msgstr "Dissimuler ce contact aux autres"
+#: ../../mod/editblock.php:118
+msgid "Delete block?"
+msgstr "Supprimer le bloc&nbsp;?"
-#: ../../mod/connedit.php:563
-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/editblock.php:145 ../../mod/editlayout.php:143
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:185
+msgid "Insert YouTube video"
+msgstr "Insérer une vidéo YouTube"
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Aucun délégué potentiel n'a été trouvé pour cette page."
+#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144
+#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:186
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Insérer une vidéo Vorbis [.ogg]"
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Gestion des délégués de la page"
+#: ../../mod/editblock.php:147 ../../mod/editlayout.php:145
+#: ../../mod/editpost.php:123 ../../mod/editwebpage.php:187
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Insérer un son Vorbis [.ogg]"
-#: ../../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/editblock.php:180
+msgid "Edit Block"
+msgstr "Modifier le bloc"
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Actuels gestionnaires de pages"
+#: ../../mod/editlayout.php:112
+msgid "Delete layout?"
+msgstr "Supprimer la mise en page&nbsp;?"
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Actuels délégués"
+#: ../../mod/editlayout.php:159 ../../mod/layouts.php:124
+msgid "Layout Description (Optional)"
+msgstr "Description de la mise en page (facultatif)"
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Délégués potentiels"
+#: ../../mod/editlayout.php:161 ../../mod/layouts.php:121
+#: ../../mod/layouts.php:179
+msgid "Layout Name"
+msgstr "Nom de la mise en page"
-#: ../../mod/delegate.php:130 ../../mod/photos.php:912 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Retirer"
+#: ../../mod/editlayout.php:178
+msgid "Edit Layout"
+msgstr "Modifier la mise en page"
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Ajouter"
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Elément non modifiable"
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Aucune entrée."
+#: ../../mod/editpost.php:57
+msgid "Delete item?"
+msgstr "Supprimer l'élément&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/editpost.php:164 ../../mod/rpost.php:128
+msgid "Edit post"
+msgstr "Modifier la publication"
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95
-msgid "Gender: "
-msgstr "Sexe/genre&nbsp;:"
+#: ../../mod/editwebpage.php:153
+msgid "Delete webpage?"
+msgstr "Supprimer la page web&nbsp;?"
-#: ../../mod/directory.php:223
-msgid "Finding:"
-msgstr "Recherche&nbsp;:"
+#: ../../mod/editwebpage.php:172
+msgid "Page link title"
+msgstr "Titre du lien vers la page"
-#: ../../mod/directory.php:239
-msgid "No entries (some entries may be hidden)."
-msgstr "Pas d'entrées (certaines peuvent être cachées)."
+#: ../../mod/editwebpage.php:222
+msgid "Edit Webpage"
+msgstr "Modifier la page web"
-#: ../../mod/dirprofile.php:108
-msgid "Status: "
-msgstr "État&nbsp;:"
+#: ../../mod/events.php:21
+msgid "Calendar entries imported."
+msgstr "Entrées du calendrier importées."
-#: ../../mod/dirprofile.php:109
-msgid "Sexual Preference: "
-msgstr "Orientation sexuelle&nbsp;:"
+#: ../../mod/events.php:23
+msgid "No calendar entries found."
+msgstr "Aucune entrée du calendrier trouvée."
-#: ../../mod/dirprofile.php:111
-msgid "Homepage: "
-msgstr "Site web&nbsp;:"
+#: ../../mod/events.php:100
+msgid "Event can not end before it has started."
+msgstr "La fin de l'événement ne peut être antérieure à son début."
-#: ../../mod/dirprofile.php:112
-msgid "Hometown: "
-msgstr "Ville natale&nbsp;:"
+#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131
+msgid "Unable to generate preview."
+msgstr "Impossible de générer l'aperçu."
-#: ../../mod/dirprofile.php:114
-msgid "About: "
-msgstr "À propos&nbsp;:"
+#: ../../mod/events.php:109
+msgid "Event title and start time are required."
+msgstr "Un titre et une date de début sont requises pour l'événement."
-#: ../../mod/dirprofile.php:162
-msgid "Keywords: "
-msgstr "Mots-clefs&nbsp;:"
+#: ../../mod/events.php:129 ../../mod/events.php:254
+msgid "Event not found."
+msgstr "Événement introuvable."
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
-msgstr "Ce site n'est pas un serveur d'annuaire"
+#: ../../mod/events.php:437
+msgid "Edit event title"
+msgstr "Modifier le titre de l'événement"
-#: ../../mod/home.php:81
-msgid "Hubzilla - &quot;The Network&quot;"
-msgstr "La Matrice Rouge - &quot;LE Réseau&quot;"
+#: ../../mod/events.php:437
+msgid "Event title"
+msgstr "Titre de l'événement"
-#: ../../mod/home.php:94
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../mod/events.php:439
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
-#: ../../mod/setup.php:162
-msgid "Hubzilla Server - Setup"
-msgstr "Serveur de la Matrice Rouge - Configuration"
+#: ../../mod/events.php:440
+msgid "Edit Category"
+msgstr "Modifier la catégorie"
-#: ../../mod/setup.php:168
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base de données."
+#: ../../mod/events.php:440
+msgid "Category"
+msgstr "Catégorie"
-#: ../../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/events.php:443
+msgid "Edit start date and time"
+msgstr "Modifier la date et l'heure de début"
-#: ../../mod/setup.php:179
-msgid "Could not create table."
-msgstr "Impossible de créer la table."
+#: ../../mod/events.php:443
+msgid "Start date and time"
+msgstr "Date et heure de début"
-#: ../../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/events.php:444 ../../mod/events.php:447
+msgid "Finish date and time are not known or not relevant"
+msgstr "Date et heure de fin inconnues ou sans objet"
+
+#: ../../mod/events.php:446
+msgid "Edit finish date and time"
+msgstr "Modifier la date et l'heure de fin"
-#: ../../mod/setup.php:190
+#: ../../mod/events.php:446
+msgid "Finish date and time"
+msgstr "Date et heure de fin"
+
+#: ../../mod/events.php:448 ../../mod/events.php:449
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster au fuseau horaire du visiteur"
+
+#: ../../mod/events.php:448
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."
+"Important for events that happen in a particular place. Not practical for "
+"global holidays."
+msgstr "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde."
-#: ../../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/events.php:450
+msgid "Edit Description"
+msgstr "Modifier la description"
-#: ../../mod/setup.php:257
-msgid "System check"
-msgstr "Vérification du système"
+#: ../../mod/events.php:452
+msgid "Edit Location"
+msgstr "Modifier l'emplacement"
+
+#: ../../mod/events.php:455 ../../mod/events.php:457
+msgid "Share this event"
+msgstr "Partager cet événement"
+
+#: ../../mod/events.php:462
+msgid "Advanced Options"
+msgstr "Options avancées"
-#: ../../mod/setup.php:261 ../../mod/events.php:399
+#: ../../mod/events.php:574
+msgid "l, F j"
+msgstr "l, F j"
+
+#: ../../mod/events.php:596
+msgid "Edit event"
+msgstr "Modifier l'événement"
+
+#: ../../mod/events.php:598
+msgid "Delete event"
+msgstr "Supprimer l'événement"
+
+#: ../../mod/events.php:632
+msgid "calendar"
+msgstr "calendrier"
+
+#: ../../mod/events.php:651
+msgid "Edit Event"
+msgstr "Modifier l'événement"
+
+#: ../../mod/events.php:651
+msgid "Create Event"
+msgstr "Créer un événement"
+
+#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:916
+msgid "Previous"
+msgstr "Précédent"
+
+#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:925
+#: ../../mod/setup.php:288
msgid "Next"
msgstr "Suivant"
-#: ../../mod/setup.php:262
-msgid "Check again"
-msgstr "Re-vérifier"
+#: ../../mod/events.php:661
+msgid "Today"
+msgstr "Aujourd'hui"
-#: ../../mod/setup.php:284
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: ../../mod/events.php:692
+msgid "Event removed"
+msgstr "Événement supprimé"
-#: ../../mod/setup.php:285
-msgid ""
-"In order to install Hubzilla we need to know how to connect to your "
-"database."
-msgstr "Pour installer la Matrice Rouge, nous avons besoin de savoir comment contacter votre base de données."
+#: ../../mod/events.php:695
+msgid "Failed to remove event"
+msgstr "Impossible de supprimer l'événement"
-#: ../../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 administrateur système si vous avez des doutes à propos de ces paramètres."
+#: ../../mod/ffsapi.php:8
+msgid "Share content from Firefox to $Projectname"
+msgstr "Partager du contenu depuis Firefox avec $Projectname"
-#: ../../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/ffsapi.php:11
+msgid "Activate the Firefox $Projectname provider"
+msgstr "Activer le connecteur $Projectname pour Firefox"
-#: ../../mod/setup.php:291
-msgid "Database Server Name"
-msgstr "Nom du serveur de la base de données"
+#: ../../mod/filer.php:48
+msgid "- select -"
+msgstr "- choisir -"
-#: ../../mod/setup.php:291
-msgid "Default is localhost"
-msgstr "Par défaut, localhost"
+#: ../../mod/filestorage.php:82
+msgid "Permission Denied."
+msgstr "Permission refusée."
-#: ../../mod/setup.php:292
-msgid "Database Port"
-msgstr "Port du serveur"
+#: ../../mod/filestorage.php:98
+msgid "File not found."
+msgstr "Fichier introuvable."
-#: ../../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/filestorage.php:141
+msgid "Edit file permissions"
+msgstr "Modifier les autorisations d'accès au fichier"
-#: ../../mod/setup.php:293
-msgid "Database Login Name"
-msgstr "Identifiant de connexion à la Base de Données"
+#: ../../mod/filestorage.php:150
+msgid "Set/edit permissions"
+msgstr "Définir/modifier les autorisations"
-#: ../../mod/setup.php:294
-msgid "Database Login Password"
-msgstr "Mot de passe de connexion à la Base de Données"
+#: ../../mod/filestorage.php:151
+msgid "Include all files and sub folders"
+msgstr "Inclure tous fichiers et sous-répertoires"
-#: ../../mod/setup.php:295
-msgid "Database Name"
-msgstr "Nom de la Base de Données"
+#: ../../mod/filestorage.php:152
+msgid "Return to file list"
+msgstr "Retourner à la liste des fichiers"
-#: ../../mod/setup.php:297 ../../mod/setup.php:339
-msgid "Site administrator email address"
-msgstr "Adresse de courriel de l'administrateur du site"
+#: ../../mod/filestorage.php:154
+msgid "Copy/paste this code to attach file to a post"
+msgstr "Copiez/collez ce code pour joindre le fichier à une publication"
-#: ../../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/filestorage.php:155
+msgid "Copy/paste this URL to link file from a web page"
+msgstr "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web"
-#: ../../mod/setup.php:298 ../../mod/setup.php:341
-msgid "Website URL"
-msgstr "URL du site"
+#: ../../mod/filestorage.php:157
+msgid "Share this file"
+msgstr "Partager ce fichier"
-#: ../../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/filestorage.php:158
+msgid "Show URL to this file"
+msgstr "Montrer l'URL de ce fichier"
-#: ../../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/filestorage.php:159
+msgid "Notify your contacts about this file"
+msgstr "Notifier vos contacts à propos de ce fichier"
-#: ../../mod/setup.php:328
-msgid "Site settings"
-msgstr "Réglages du site"
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Canal ajouté."
-#: ../../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/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Contact introuvable."
-#: ../../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/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié envoyée."
-#: ../../mod/setup.php:392
-msgid "PHP executable path"
-msgstr "Chemin vers l'éxecutable PHP"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer des amis"
-#: ../../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/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un amis à %s"
-#: ../../mod/setup.php:397
-msgid "Command line PHP"
-msgstr "PHP en ligne de commande (CLI)"
+#: ../../mod/group.php:20
+msgid "Privacy group created."
+msgstr "Groupe d'accès créé."
-#: ../../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/group.php:26
+msgid "Could not create privacy group."
+msgstr "Impossible de créer le groupe d'accès."
-#: ../../mod/setup.php:407
-msgid "This is required for message delivery to work."
-msgstr "Elle est nécessaire pour la livraison de messages."
+#: ../../mod/group.php:54
+msgid "Privacy group updated."
+msgstr "Groupe d'accès mis à jour."
-#: ../../mod/setup.php:409
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/group.php:86
+msgid "Create a group of channels."
+msgstr "Créer un groupe de canaux."
-#: ../../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/group.php:87 ../../mod/group.php:180
+msgid "Privacy group name: "
+msgstr "Nom du groupe d'accès&nbsp;:"
-#: ../../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/group.php:89 ../../mod/group.php:183
+msgid "Members are visible to other channels"
+msgstr "Les membres sont visibles par les autres canaux"
-#: ../../mod/setup.php:433
-msgid "Generate encryption keys"
-msgstr "Générer les clefs de chiffrement"
+#: ../../mod/group.php:107
+msgid "Privacy group removed."
+msgstr "Groupe d'accès supprimé."
-#: ../../mod/setup.php:440
-msgid "libCurl PHP module"
-msgstr "module PHP libCurl"
+#: ../../mod/group.php:109
+msgid "Unable to remove privacy group."
+msgstr "Impossible de supprimer le groupe d'accès."
-#: ../../mod/setup.php:441
-msgid "GD graphics PHP module"
-msgstr "module PHP GD graphics"
+#: ../../mod/group.php:179
+msgid "Privacy group editor"
+msgstr "Editeur de groupe d'accès."
-#: ../../mod/setup.php:442
-msgid "OpenSSL PHP module"
-msgstr "module PHP OpenSSL"
+#: ../../mod/group.php:193
+msgid "Members"
+msgstr "Membres"
-#: ../../mod/setup.php:443
-msgid "mysqli PHP module"
-msgstr "module PHP mysqli"
+#: ../../mod/group.php:195
+msgid "All Connected Channels"
+msgstr "Tous les canaux connectés"
-#: ../../mod/setup.php:444
-msgid "mb_string PHP module"
-msgstr "module PHP mb_string"
+#: ../../mod/group.php:227
+msgid "Click on a channel to add or remove."
+msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer"
-#: ../../mod/setup.php:445
-msgid "mcrypt PHP module"
-msgstr "module PHP mcrypt"
+#: ../../mod/help.php:149
+msgid "Documentation Search"
+msgstr "Chercher dans la documentation"
-#: ../../mod/setup.php:450 ../../mod/setup.php:452
-msgid "Apache mod_rewrite module"
-msgstr "module Apache mod_rewrite"
+#: ../../mod/help.php:190 ../../mod/help.php:196 ../../mod/help.php:202
+msgid "Help:"
+msgstr "Aide&nbsp;:"
-#: ../../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/help.php:243
+msgid "$Projectname Documentation"
+msgstr "Documentation $Projectname"
-#: ../../mod/setup.php:456 ../../mod/setup.php:459
-msgid "proc_open"
-msgstr "proc_open"
+#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61
+msgid "$Projectname"
+msgstr "$Projectname"
-#: ../../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/home.php:75
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
-#: ../../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/id.php:11
+msgid "First Name"
+msgstr "Prénom"
-#: ../../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/id.php:12
+msgid "Last Name"
+msgstr "Nom de famille"
-#: ../../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/id.php:13
+msgid "Nickname"
+msgstr "Surnom"
-#: ../../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/id.php:14
+msgid "Full Name"
+msgstr "Nom complet"
-#: ../../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/id.php:20
+msgid "Profile Photo 16px"
+msgstr "Photo de profil 16px"
-#: ../../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/id.php:21
+msgid "Profile Photo 32px"
+msgstr "Photo de profil 32px"
-#: ../../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/id.php:22
+msgid "Profile Photo 48px"
+msgstr "Photo de profil 48px"
-#: ../../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/id.php:23
+msgid "Profile Photo 64px"
+msgstr "Photo de profil 64px"
-#: ../../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 La Matrice Rouge."
+#: ../../mod/id.php:24
+msgid "Profile Photo 80px"
+msgstr "Photo de profil 80px"
-#: ../../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/id.php:25
+msgid "Profile Photo 128px"
+msgstr "Photo de profil 128px"
-#: ../../mod/setup.php:506
-msgid ".htconfig.php is writable"
-msgstr "Le fichier .htconfig.php est accessible en écriture"
+#: ../../mod/id.php:26
+msgid "Timezone"
+msgstr "Fuseau horaire"
-#: ../../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 "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/id.php:27
+msgid "Homepage URL"
+msgstr "URL de mon site Internet&nbsp;:"
-#: ../../mod/setup.php:517
+#: ../../mod/id.php:29
+msgid "Birth Year"
+msgstr "Année de naissance"
+
+#: ../../mod/id.php:30
+msgid "Birth Month"
+msgstr "Mois de naissance"
+
+#: ../../mod/id.php:31
+msgid "Birth Day"
+msgstr "Jour de naissance"
+
+#: ../../mod/id.php:32
+msgid "Birthdate"
+msgstr "Date de naissance"
+
+#: ../../mod/id.php:33 ../../mod/profiles.php:441
+msgid "Gender"
+msgstr "Sexe"
+
+#: ../../mod/impel.php:192
#, php-format
-msgid ""
-"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."
-msgstr "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s."
+msgid "%s element installed"
+msgstr "Elément %s installé"
-#: ../../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/impel.php:195
+#, php-format
+msgid "%s element installation failed"
+msgstr "L'installation de l'élément %s a échoué"
-#: ../../mod/setup.php:519
+#: ../../mod/import.php:28
#, php-format
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"%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)."
+msgid "Your service plan only allows %d channels."
+msgstr "Votre forfait n'autorise que %d canaux."
+
+#: ../../mod/import.php:66 ../../mod/import_items.php:38
+msgid "Nothing to import."
+msgstr "Rien à importer."
-#: ../../mod/setup.php:522
+#: ../../mod/import.php:90 ../../mod/import_items.php:62
+msgid "Unable to download data from old server"
+msgstr "Impossible de récupérer les données de l'ancien serveur"
+
+#: ../../mod/import.php:96 ../../mod/import_items.php:68
+msgid "Imported file is empty."
+msgstr "Le fichier importé est vide."
+
+#: ../../mod/import.php:119 ../../mod/import_items.php:82
#, php-format
-msgid "%s is writable"
-msgstr "Permission d'écriture sur %s activée"
+msgid "Warning: Database versions differ by %1$d updates."
+msgstr "Attention&nbsp;: les versions de bases de données diffèrent de %1$d mises à jour."
-#: ../../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 votre installation de la Matrice Rouge - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
+#: ../../mod/import.php:124
+msgid "Server platform is not compatible. Operation not permitted."
+msgstr ""
-#: ../../mod/setup.php:539
-msgid "store is writable"
-msgstr "'store' est accessible en écriture"
+#: ../../mod/import.php:158
+msgid "No channel. Import failed."
+msgstr "Pas de canal. Echec de l'import."
-#: ../../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/import.php:518
+msgid "You must be logged in to use this feature."
+msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité."
-#: ../../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/import.php:523
+msgid "Import Channel"
+msgstr "Importation de canal"
-#: ../../mod/setup.php:571
+#: ../../mod/import.php:524
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."
+"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."
+msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. 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/import."
+
+#: ../../mod/import.php:525 ../../mod/import_items.php:115
+msgid "File to Upload"
+msgstr "Fichier à envoyer"
+
+#: ../../mod/import.php:526
+msgid "Or provide the old server/hub details"
+msgstr "Ou fournissez les détails de l'ancien serveur/hub"
+
+#: ../../mod/import.php:527
+msgid "Your old identity address (xyz@example.com)"
+msgstr "Votre ancienne identité (zyx@exemple.com)"
+
+#: ../../mod/import.php:528
+msgid "Your old login email address"
+msgstr "Votre ancienne adresse de courriel"
+
+#: ../../mod/import.php:529
+msgid "Your old login password"
+msgstr "Votre ancien mot de passe"
-#: ../../mod/setup.php:572
+#: ../../mod/import.php:530
msgid ""
-"If your certificate is not recognized, 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 votre certificat n'est pas reconnu, les membres des autres sites (avec certificats valides) recevront des messages d'avertissement sur leur propre sites."
+"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."
+msgstr "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."
-#: ../../mod/setup.php:573
+#: ../../mod/import.php:531
+msgid "Make this hub my primary location"
+msgstr "Faire de ce hub mon emplacement primaire"
+
+#: ../../mod/import.php:532
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."
+"Import existing posts if possible (experimental - limited by available "
+"memory"
+msgstr "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)"
-#: ../../mod/setup.php:574
+#: ../../mod/import.php:533
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."
+"This process may take several minutes to complete. Please submit the form "
+"only once and leave this page open until finished."
+msgstr "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin."
-#: ../../mod/setup.php:576
-msgid "SSL certificate validation"
-msgstr "Validation du certificat SSL/TLS"
+#: ../../mod/import_items.php:98
+msgid "Import completed"
+msgstr "L'import est terminé."
+
+#: ../../mod/import_items.php:113
+msgid "Import Items"
+msgstr "Importer"
-#: ../../mod/setup.php:582
+#: ../../mod/import_items.php:114
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."
+"Use this form to import existing posts and content from an export file."
+msgstr "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export."
-#: ../../mod/setup.php:584
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne"
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
+msgstr "Limite du nombre total d'invitation dépassée."
-#: ../../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/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s&nbsp;: adresse courriel invalide."
-#: ../../mod/setup.php:618
-msgid "Errors encountered creating database tables."
-msgstr "Erreurs rencontrées pendant la création de tables de BD."
+#: ../../mod/invite.php:59
+msgid "Please join us on $Projectname"
+msgstr "Rejoignez-nous sur $Projectname"
-#: ../../mod/setup.php:653
-msgid "<h1>What next</h1>"
-msgstr "<h1>Et maintenant</h1>"
+#: ../../mod/invite.php:70
+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/setup.php:654
+#: ../../mod/invite.php:75
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s&nbsp;: Échec de distribution du message."
+
+#: ../../mod/invite.php:79
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
+
+#: ../../mod/invite.php:98
+msgid "You have no more invitations available"
+msgstr "Vous ne disposez plus d'aucune invitation"
+
+#: ../../mod/invite.php:129
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
+
+#: ../../mod/invite.php:130
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses de courriel, une par ligne&nbsp;:"
+
+#: ../../mod/invite.php:131 ../../mod/mail.php:246
+msgid "Your message:"
+msgstr "Votre message&nbsp;:"
+
+#: ../../mod/invite.php:132
+msgid "Please join my community on $Projectname."
+msgstr "Rejoignez ma communauté sur $Projectname."
+
+#: ../../mod/invite.php:134
+msgid "You will need to supply this invitation code:"
+msgstr ""
+
+#: ../../mod/invite.php:135
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."
+"1. Register at any $Projectname location (they are all inter-connected)"
+msgstr "1. Enregistrez-vous sur n'importe quel serveur $Projectname (ils sont tous inter-connectés)"
-#: ../../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/invite.php:137
+msgid "2. Enter my $Projectname network address into the site searchbar."
+msgstr "2. Saisissez l'adresse de mon canal $Projectname dans la barre de recherche du site."
-#: ../../mod/editblock.php:77
-msgid "Edit Block"
-msgstr "Éditer bloc"
+#: ../../mod/invite.php:138
+msgid "or visit"
+msgstr ""
-#: ../../mod/editblock.php:87
-msgid "Delete block?"
-msgstr "Supprimer le bloc?"
+#: ../../mod/invite.php:140
+msgid "3. Click [Connect]"
+msgstr "3. Cliquez sur [Ajouter]"
-#: ../../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/item.php:174
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication initiale."
-#: ../../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/item.php:418
+msgid "Empty post discarded."
+msgstr "Publication vide annulée."
-#: ../../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/item.php:458
+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/editblock.php:153
-msgid "Delete Block"
-msgstr "Supprimer le bloc"
+#: ../../mod/item.php:824
+msgid "Duplicate post suppressed."
+msgstr "Publication en doublon supprimée."
-#: ../../mod/pdledit.php:13
-msgid "Layout updated."
-msgstr "Agencement pris-en-compte."
+#: ../../mod/item.php:954
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvegardée."
-#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
-msgid "Edit System Page Description"
-msgstr "Éditer la description"
+#: ../../mod/item.php:1221
+msgid "Unable to obtain post information from database."
+msgstr "Impossible d'obtenir les informations de publication depuis la base de données."
-#: ../../mod/pdledit.php:48
-msgid "Layout not found."
-msgstr "Agencement introuvable."
+#: ../../mod/item.php:1228
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racines\"."
-#: ../../mod/pdledit.php:54
-msgid "Module Name:"
-msgstr "Nom du module&nbsp;:"
+#: ../../mod/item.php:1235
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Vous avez atteint votre limite de %1$.0f pages web."
-#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59
-msgid "Layout Help"
-msgstr "Aide à la mise en page"
+#: ../../mod/layouts.php:176
+msgid "Comanche page description language help"
+msgstr "Aide sur le langage de description de page Comanche"
-#: ../../mod/editlayout.php:72
-msgid "Edit Layout"
-msgstr "Éditer mise-en-page"
+#: ../../mod/layouts.php:180
+msgid "Layout Description"
+msgstr "Description de la mise en page"
-#: ../../mod/editlayout.php:82
-msgid "Delete layout?"
-msgstr "Supprimer la mise-en-page?"
+#: ../../mod/layouts.php:185
+msgid "Download PDL file"
+msgstr "Télécharger le fichier PDL"
-#: ../../mod/editlayout.php:146
-msgid "Delete Layout"
-msgstr "Supprimer mise-en-page"
+#: ../../mod/like.php:15
+msgid "Like/Dislike"
+msgstr "Aime/n'aime pas"
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Élément non-éditable"
+#: ../../mod/like.php:20
+msgid "This action is restricted to members."
+msgstr "Cette action est réservée aux membres."
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
-msgstr "Supprimer l'élément?"
+#: ../../mod/like.php:21
+msgid ""
+"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a "
+"href=\"register\">register as a new $Projectname member</a> to continue."
+msgstr "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de $Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de $Projectname </a> pour continuer."
-#: ../../mod/editwebpage.php:106
-msgid "Edit Webpage"
-msgstr "Éditer page web"
+#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165
+msgid "Invalid request."
+msgstr "Requête invalide."
-#: ../../mod/editwebpage.php:116
-msgid "Delete webpage?"
-msgstr "Supprimer la page web?"
+#: ../../mod/like.php:142
+msgid "thing"
+msgstr "chose"
-#: ../../mod/editwebpage.php:186
-msgid "Delete Webpage"
-msgstr "Supprimer page web"
+#: ../../mod/like.php:188
+msgid "Channel unavailable."
+msgstr "Canal indisponible."
+
+#: ../../mod/like.php:236
+msgid "Previous action reversed."
+msgstr "Action précédente annulée."
-#: ../../mod/siteinfo.php:57
+#: ../../mod/like.php:414
#, php-format
-msgid "Version %s"
-msgstr "Version %s"
+msgid "%1$s agrees with %2$s's %3$s"
+msgstr "%1$s approuve %3$s de %2$s"
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/applications installées&nbsp;:"
+#: ../../mod/like.php:416
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
+msgstr "%1$s n'est pas d'accord avec %3$s de %2$s"
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
-msgstr "Aucune extension/application installée"
+#: ../../mod/like.php:418
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
+msgstr "%1$s s'abstient de toute décision sur le %3$s de %2$s"
+
+#: ../../mod/like.php:420
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s participe à %3$s de %2$s"
-#: ../../mod/siteinfo.php:97
-msgid "Red"
-msgstr "Rouge"
+#: ../../mod/like.php:422
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s ne participe pas à %3$s de %2$s"
+
+#: ../../mod/like.php:424
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s participe peut-être à %3$s de %2$s"
-#: ../../mod/siteinfo.php:98
+#: ../../mod/like.php:520
+msgid "Action completed."
+msgstr "Action terminée."
+
+#: ../../mod/like.php:521
+msgid "Thank you."
+msgstr "Merci."
+
+#: ../../mod/lockview.php:37
+msgid "Remote privacy information not available."
+msgstr "Les informations distantes de confidentialité ne sont pas disponibles."
+
+#: ../../mod/lockview.php:58
+msgid "Visible to:"
+msgstr "Visible par&nbsp;:"
+
+#: ../../mod/locs.php:21 ../../mod/locs.php:50
+msgid "Location not found."
+msgstr "Emplacement introuvable."
+
+#: ../../mod/locs.php:58
+msgid "Location lookup failed."
+msgstr "Echec de la recherche de l'emplacement."
+
+#: ../../mod/locs.php:62
msgid ""
-"This is a hub of the Hubzilla - a global cooperative network of "
-"decentralized privacy enhanced websites."
-msgstr "Ceci est un serveur de la Matrice Rouge - un réseau collaboratif de plusieurs serveurs qui assurent la protection de votre vie privée notamment par la décentralisation de votre identité."
+"Please select another location to become primary before removing the primary"
+" location."
+msgstr "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel."
-#: ../../mod/siteinfo.php:101
-msgid "Running at web location"
-msgstr "Installée sur"
+#: ../../mod/locs.php:91
+msgid "Syncing locations"
+msgstr "Synchronisation des emplacements"
+
+#: ../../mod/locs.php:101
+msgid "No locations found."
+msgstr "Emplacement(s) introuvable."
+
+#: ../../mod/locs.php:112
+msgid "Manage Channel Locations"
+msgstr "Gérer les emplacements des canaux"
+
+#: ../../mod/locs.php:113
+msgid "Location (address)"
+msgstr "Emplacement (adresse)"
+
+#: ../../mod/locs.php:114
+msgid "Primary Location"
+msgstr "Emplacement primaire"
-#: ../../mod/siteinfo.php:102
+#: ../../mod/locs.php:115
+msgid "Drop location"
+msgstr "Abandonner l'emplacement"
+
+#: ../../mod/locs.php:117
+msgid "Sync now"
+msgstr "Synchroniser maintenant"
+
+#: ../../mod/locs.php:118
+msgid "Please wait several minutes between consecutive operations."
+msgstr "Merci d'attendre plusieurs minutes entre opérations successives."
+
+#: ../../mod/locs.php:119
msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Hubzilla."
-msgstr "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Rouge."
+"When possible, drop a location by logging into that website/hub and removing"
+" your channel."
+msgstr "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal."
-#: ../../mod/siteinfo.php:103
-msgid "Bug reports and issues: please visit"
-msgstr "Pour remonter bogues et problèmes, merci de visiter"
+#: ../../mod/locs.php:120
+msgid "Use this form to drop the location if the hub is no longer operating."
+msgstr "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif."
-#: ../../mod/siteinfo.php:106
+#: ../../mod/ping.php:260
+msgid "sent you a private message"
+msgstr "vous a envoyé un message privé"
+
+#: ../../mod/ping.php:308
+msgid "added your channel"
+msgstr "a ajouté votre canal"
+
+#: ../../mod/ping.php:350
+msgid "posted an event"
+msgstr "a publié un événement"
+
+#: ../../mod/magic.php:69
+msgid "Hub not found."
+msgstr "Hub introuvable."
+
+#: ../../mod/mail.php:34
+msgid "Unable to lookup recipient."
+msgstr "Impossible de localiser le destinataire."
+
+#: ../../mod/mail.php:42
+msgid "Unable to communicate with requested channel."
+msgstr "Impossible de communiquer avec le canal demandé."
+
+#: ../../mod/mail.php:49
+msgid "Cannot verify requested channel."
+msgstr "Impossible de vérifier le canal demandé."
+
+#: ../../mod/mail.php:75
+msgid "Selected channel has private message restrictions. Send failed."
+msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."
+
+#: ../../mod/mail.php:140
+msgid "Messages"
+msgstr "Messages"
+
+#: ../../mod/mail.php:175
+msgid "Message recalled."
+msgstr "Message rappelé."
+
+#: ../../mod/mail.php:188
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
+
+#: ../../mod/mail.php:231
+msgid "Requested channel is not in this network"
+msgstr "Le canal demandé n'est pas sur ce réseau"
+
+#: ../../mod/mail.php:239
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
+
+#: ../../mod/mail.php:240 ../../mod/mail.php:370
+msgid "To:"
+msgstr "À&nbsp;:"
+
+#: ../../mod/mail.php:243 ../../mod/mail.php:372
+msgid "Subject:"
+msgstr "Objet&nbsp;:"
+
+#: ../../mod/mail.php:250
+msgid "Send"
+msgstr "Envoyer"
+
+#: ../../mod/mail.php:342
+msgid "Delete message"
+msgstr "Supprimer le message"
+
+#: ../../mod/mail.php:343
+msgid "Delivery report"
+msgstr "Rapport de distribution"
+
+#: ../../mod/mail.php:344
+msgid "Recall message"
+msgstr "Rappeler le message"
+
+#: ../../mod/mail.php:346
+msgid "Message has been recalled."
+msgstr "Le message a été rappelé."
+
+#: ../../mod/mail.php:363
+msgid "Delete Conversation"
+msgstr "Supprimer la conversation"
+
+#: ../../mod/mail.php:365
msgid ""
-"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot "
-"com"
-msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"hubzilla\" à librelist - point com"
+"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. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur."
-#: ../../mod/siteinfo.php:108
-msgid "Site Administrators"
-msgstr "Administrateurs du site"
+#: ../../mod/mail.php:369
+msgid "Send Reply"
+msgstr "Envoyer la réponse"
-#: ../../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/mail.php:374
+#, php-format
+msgid "Your message for %s (%s):"
+msgstr "Votre message pour %s (%s)&nbsp;:"
-#: ../../mod/photos.php:97
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../mod/manage.php:130
+#, 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/photos.php:119 ../../mod/photos.php:675
-msgid "Delete Album"
-msgstr "Supprimer album"
+#: ../../mod/manage.php:138
+msgid "Create a new channel"
+msgstr "Créer un nouveau canal"
-#: ../../mod/photos.php:159 ../../mod/photos.php:963
-msgid "Delete Photo"
-msgstr "Supprimer photo"
+#: ../../mod/manage.php:163
+msgid "Current Channel"
+msgstr "Canal actif"
-#: ../../mod/photos.php:453
-msgid "No photos selected"
-msgstr "Aucune photo selectionnée"
+#: ../../mod/manage.php:165
+msgid "Switch to one of your channels by selecting it."
+msgstr "Pour changer de canal, sélectionnez-en un"
-#: ../../mod/photos.php:500
-msgid "Access to this item is restricted."
-msgstr "L'accès à l'élément est restreint."
+#: ../../mod/manage.php:166
+msgid "Default Channel"
+msgstr "Canal par défaut"
+
+#: ../../mod/manage.php:167
+msgid "Make Default"
+msgstr "Définir comme défaut"
-#: ../../mod/photos.php:574
+#: ../../mod/manage.php:170
#, 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."
+msgid "%d new messages"
+msgstr "%d nouveaux messages"
-#: ../../mod/photos.php:577
+#: ../../mod/manage.php:171
#, 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."
+msgid "%d new introductions"
+msgstr "%d nouvelles présentations"
-#: ../../mod/photos.php:596
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../mod/manage.php:173
+msgid "Delegated Channels"
+msgstr "Canaux délégués"
-#: ../../mod/photos.php:600 ../../mod/photos.php:670
-msgid "New album name: "
-msgstr "Créer un album&nbsp;:"
+#: ../../mod/match.php:22
+msgid "Profile Match"
+msgstr "Profils similaires"
-#: ../../mod/photos.php:601
-msgid "or existing album name: "
-msgstr "ou choisir un album existant&nbsp;:"
+#: ../../mod/match.php:31
+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/photos.php:602
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de statut pour cet envoi"
+#: ../../mod/match.php:63
+msgid "is interested in:"
+msgstr "s'intéresse à&nbsp;:"
-#: ../../mod/photos.php:622
-msgid "Album name could not be decoded"
-msgstr "Le nom de l'Album n'a pu être décodé"
+#: ../../mod/match.php:70
+msgid "No matches"
+msgstr "Pas de correspondance"
-#: ../../mod/photos.php:659 ../../mod/photos.php:681 ../../mod/photos.php:1135
-#: ../../mod/photos.php:1150
-msgid "Contact Photos"
-msgstr "Photos de contact"
+#: ../../mod/menu.php:45
+msgid "Unable to update menu."
+msgstr "Impossible de mettre le menu à jour."
-#: ../../mod/photos.php:685
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../mod/menu.php:56
+msgid "Unable to create menu."
+msgstr "Impossible de créer le menu."
-#: ../../mod/photos.php:691
-msgid "Show Newest First"
-msgstr "Ordre anté-chronologique"
+#: ../../mod/menu.php:94 ../../mod/menu.php:106
+msgid "Menu Name"
+msgstr "Nom du menu"
-#: ../../mod/photos.php:693
-msgid "Show Oldest First"
-msgstr "Ordre chronologique"
+#: ../../mod/menu.php:94
+msgid "Unique name (not visible on webpage) - required"
+msgstr "Nom unique (non visible sur la page web) - requis"
-#: ../../mod/photos.php:736 ../../mod/photos.php:1182
-msgid "View Photo"
-msgstr "Voir la photo"
+#: ../../mod/menu.php:95 ../../mod/menu.php:107
+msgid "Menu Title"
+msgstr "Titre du menu"
-#: ../../mod/photos.php:782
-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/menu.php:95
+msgid "Visible on webpage - leave empty for no title"
+msgstr "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre"
-#: ../../mod/photos.php:784
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../mod/menu.php:96
+msgid "Allow Bookmarks"
+msgstr "Autoriser l'usage de favoris"
-#: ../../mod/photos.php:844
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo du profil"
+#: ../../mod/menu.php:96 ../../mod/menu.php:153
+msgid "Menu may be used to store saved bookmarks"
+msgstr "Le menu pourra être utilisé pour stocker des favoris"
-#: ../../mod/photos.php:868
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../mod/menu.php:97 ../../mod/menu.php:155
+msgid "Submit and proceed"
+msgstr "Valider et continuer"
-#: ../../mod/photos.php:946
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: ../../mod/menu.php:109
+msgid "Drop"
+msgstr "Supprimer"
-#: ../../mod/photos.php:948
-msgid "Rotate CW (right)"
-msgstr "Rotation horaire (droite)"
+#: ../../mod/menu.php:113
+msgid "Bookmarks allowed"
+msgstr "Favoris autorisés"
-#: ../../mod/photos.php:949
-msgid "Rotate CCW (left)"
-msgstr "Rotation anti-horaire (gauche)"
+#: ../../mod/menu.php:115
+msgid "Delete this menu"
+msgstr "Supprimer ce menu"
-#: ../../mod/photos.php:952
-msgid "New album name"
-msgstr "Nouveau nom d'album&nbsp;:"
+#: ../../mod/menu.php:116 ../../mod/menu.php:150
+msgid "Edit menu contents"
+msgstr "Modifier le contenu du menu"
-#: ../../mod/photos.php:955
-msgid "Caption"
-msgstr "Titre/légende"
+#: ../../mod/menu.php:117
+msgid "Edit this menu"
+msgstr "Modifier ce menu"
-#: ../../mod/photos.php:957
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../mod/menu.php:132
+msgid "Menu could not be deleted."
+msgstr "Impossible de supprimer le menu."
-#: ../../mod/photos.php:960
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemple&nbsp;: @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon"
+#: ../../mod/menu.php:140 ../../mod/mitem.php:24
+msgid "Menu not found."
+msgstr "Menu introuvable."
-#: ../../mod/photos.php:1113
-msgid "In This Photo:"
-msgstr "Dans cette photo&nbsp;:"
+#: ../../mod/menu.php:145
+msgid "Edit Menu"
+msgstr "Modifier le menu"
-#: ../../mod/photos.php:1188
-msgid "View Album"
-msgstr "Voir l'album"
+#: ../../mod/menu.php:149
+msgid "Add or remove entries to this menu"
+msgstr "Ajouter/supprimer des entrées à ce menu"
-#: ../../mod/photos.php:1197
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../mod/menu.php:151
+msgid "Menu name"
+msgstr "Nom du menu"
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
-msgstr "Impossible de créer la source. Aucun canal selectionné."
+#: ../../mod/menu.php:151
+msgid "Must be unique, only seen by you"
+msgstr "Doit être unique, ne sera vu que par vous"
-#: ../../mod/sources.php:45
-msgid "Source created."
-msgstr "Source créée."
+#: ../../mod/menu.php:152
+msgid "Menu title"
+msgstr "Titre du menu"
-#: ../../mod/sources.php:57
-msgid "Source updated."
-msgstr "Source mise à jour."
+#: ../../mod/menu.php:152
+msgid "Menu title as seen by others"
+msgstr "Titre du menu tel que vu par les visiteurs"
-#: ../../mod/sources.php:82
-msgid "*"
-msgstr "*"
+#: ../../mod/menu.php:153
+msgid "Allow bookmarks"
+msgstr "Autoriser l'usage de favoris"
-#: ../../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/menu.php:162 ../../mod/mitem.php:116 ../../mod/xchan.php:37
+msgid "Not found."
+msgstr "Introuvable."
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
-msgstr "Nouvelle Source"
+#: ../../mod/mitem.php:48
+msgid "Unable to create element."
+msgstr "Impossible de créer l'entrée."
-#: ../../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/mitem.php:72
+msgid "Unable to update menu element."
+msgstr "Impossible de mettre à jour l'entrée de menu."
-#: ../../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/mitem.php:88
+msgid "Unable to add menu element."
+msgstr "Impossible d'ajouter l'entrée de menu."
-#: ../../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/mitem.php:149 ../../mod/mitem.php:222
+msgid "Menu Item Permissions"
+msgstr "Permissions de l'entrée de menu"
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
-msgstr "Nom du Canal"
+#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1059
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
-msgstr "Source introuvable."
+#: ../../mod/mitem.php:152 ../../mod/mitem.php:168
+msgid "Link Name"
+msgstr "Nom du lien"
-#: ../../mod/sources.php:130
-msgid "Edit Source"
-msgstr "Éditer la source"
+#: ../../mod/mitem.php:153 ../../mod/mitem.php:227
+msgid "Link or Submenu Target"
+msgstr "Lien ou sous-menu cible"
-#: ../../mod/sources.php:131
-msgid "Delete Source"
-msgstr "Supprimer la source"
+#: ../../mod/mitem.php:153
+msgid "Enter URL of the link or select a menu name to create a submenu"
+msgstr "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu"
-#: ../../mod/sources.php:158
-msgid "Source removed"
-msgstr "Source supprimée"
+#: ../../mod/mitem.php:154 ../../mod/mitem.php:228
+msgid "Use magic-auth if available"
+msgstr "Utiliser l'authentification distante, quand disponible"
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
-msgstr "Impossible de supprimer la source."
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:229
+msgid "Open link in new window"
+msgstr "Ouvrir le lien dans une nouvelle fenêtre"
-#: ../../mod/filer.php:49
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
+msgid "Order in list"
+msgstr "Ordre dans la liste"
-#: ../../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:156 ../../mod/mitem.php:230
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Les nombres les plus élevés seront au bas de la liste"
-#: ../../mod/events.php:86
-msgid "Event not found."
-msgstr "Événement introuvable."
+#: ../../mod/mitem.php:157
+msgid "Submit and finish"
+msgstr "Vadiler et terminer"
-#: ../../mod/events.php:329
-msgid "l, F j"
-msgstr "l j F"
+#: ../../mod/mitem.php:158
+msgid "Submit and continue"
+msgstr "Valider et continuer"
-#: ../../mod/events.php:351
-msgid "Edit event"
-msgstr "Éditer l'événement"
+#: ../../mod/mitem.php:166
+msgid "Menu:"
+msgstr "Menu&nbsp;:"
-#: ../../mod/events.php:397
-msgid "Create New Event"
-msgstr "Créer événement"
+#: ../../mod/mitem.php:169
+msgid "Link Target"
+msgstr "Cible du lien"
-#: ../../mod/events.php:398
-msgid "Previous"
-msgstr "Précédent"
+#: ../../mod/mitem.php:172
+msgid "Edit menu"
+msgstr "Modifier le menu"
-#: ../../mod/events.php:469
-msgid "hour:minute"
-msgstr "heure:minute"
+#: ../../mod/mitem.php:175
+msgid "Edit element"
+msgstr "Modifier l'entrée"
-#: ../../mod/events.php:489
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../mod/mitem.php:176
+msgid "Drop element"
+msgstr "Supprimer l'entrée"
-#: ../../mod/events.php:490
-#, 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:177
+msgid "New element"
+msgstr "Nouvelle entrée"
-#: ../../mod/events.php:492
-msgid "Event Starts:"
-msgstr "L'événement débute&nbsp;:"
+#: ../../mod/mitem.php:178
+msgid "Edit this menu container"
+msgstr "Éditer ce bloc de menu"
-#: ../../mod/events.php:492 ../../mod/events.php:506 ../../mod/appman.php:91
-#: ../../mod/appman.php:92
-msgid "Required"
-msgstr "Requis"
+#: ../../mod/mitem.php:179
+msgid "Add menu element"
+msgstr "Ajouter une entrée au menu"
-#: ../../mod/events.php:495
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../mod/mitem.php:180
+msgid "Delete this menu item"
+msgstr "Supprimer cette entrée du menu"
-#: ../../mod/events.php:497
-msgid "Event Finishes:"
-msgstr "L'événement termine&nbsp;:"
+#: ../../mod/mitem.php:181
+msgid "Edit this menu item"
+msgstr "Modifier cette entrée du menu"
-#: ../../mod/events.php:500
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster au fuseau horaire du visiteur"
+#: ../../mod/mitem.php:198
+msgid "Menu item not found."
+msgstr "Entrée de menu introuvable."
-#: ../../mod/events.php:502
-msgid "Description:"
-msgstr "Description:"
+#: ../../mod/mitem.php:211
+msgid "Menu item deleted."
+msgstr "Entrée de menu supprimée."
-#: ../../mod/events.php:506
-msgid "Title:"
-msgstr "Titre:"
+#: ../../mod/mitem.php:213
+msgid "Menu item could not be deleted."
+msgstr "Impossible de supprimer l'entrée de menu."
-#: ../../mod/events.php:508
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../mod/mitem.php:220
+msgid "Edit Menu Element"
+msgstr "Modifier l'entrée de menu"
-#: ../../mod/filestorage.php:68
-msgid "Permission Denied."
-msgstr "Permission refusée."
+#: ../../mod/mitem.php:226
+msgid "Link text"
+msgstr "Texte du lien"
-#: ../../mod/filestorage.php:85
-msgid "File not found."
-msgstr "Fichier introuvable."
+#: ../../mod/mood.php:132
+msgid "Set your current mood and tell your friends"
+msgstr "Indiquez votre humeur du moment à vos amis"
-#: ../../mod/filestorage.php:122
-msgid "Edit file permissions"
-msgstr "Éditer les permissions du fichier"
+#: ../../mod/network.php:91
+msgid "No such group"
+msgstr "Groupe introuvable"
-#: ../../mod/filestorage.php:131
-msgid "Set/edit permissions"
-msgstr "Définir/Édition des authorisations"
+#: ../../mod/network.php:131
+msgid "No such channel"
+msgstr "Canal introuvable"
-#: ../../mod/filestorage.php:132
-msgid "Include all files and sub folders"
-msgstr "Inclure tous fichiers et sous-répertoires"
+#: ../../mod/network.php:136
+msgid "forum"
+msgstr "forum"
-#: ../../mod/filestorage.php:133
-msgid "Return to file list"
-msgstr "Retourner à la liste des fichiers"
+#: ../../mod/network.php:148
+msgid "Search Results For:"
+msgstr "Résultats de recherche pour&nbsp;:"
-#: ../../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/network.php:207
+msgid "Privacy group is empty"
+msgstr "Groupe d'accès vide"
-#: ../../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/network.php:216
+msgid "Privacy group: "
+msgstr "Groupe d'accès&nbsp;:"
-#: ../../mod/follow.php:25
-msgid "Channel added."
-msgstr "Canal ajouté."
+#: ../../mod/network.php:242
+msgid "Invalid connection."
+msgstr "Contact non valide."
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit %3$s de %2$s"
+#: ../../mod/new_channel.php:130
+msgid "Add a Channel"
+msgstr "Ajouter un canal"
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Contact introuvable."
+#: ../../mod/new_channel.php:131
+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 un ensemble 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 vous y autorise."
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/relation envoyée."
+#: ../../mod/new_channel.php:133 ../../mod/register.php:246
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+msgid "Channel Name"
+msgstr "Nom du canal"
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer une relation"
+#: ../../mod/new_channel.php:134
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Exemples&nbsp;: \"Bernard Martin\", \"Lisa et ses chevaux\", \"Football\", \"Groupe des amateurs de tir à l'arc\""
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer une relation à %s"
+#: ../../mod/new_channel.php:135 ../../mod/register.php:248
+msgid "Choose a short nickname"
+msgstr "Choisissez un alias"
-#: ../../mod/suggest.php:35
+#: ../../mod/new_channel.php:137 ../../mod/register.php:249
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."
+"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/group.php:20
-msgid "Collection created."
-msgstr "Collection créée."
+#: ../../mod/new_channel.php:138
+msgid "Or <a href=\"import\">import an existing channel</a> from another location"
+msgstr "Ou <a href=\"import\">importez un canal existant</a> d'un autre endroit"
-#: ../../mod/group.php:26
-msgid "Could not create collection."
-msgstr "Impossible de créer la collection."
+#: ../../mod/new_channel.php:140 ../../mod/register.php:251
+msgid ""
+"Please choose a channel type (such as social networking or community forum) "
+"and privacy requirements so we can select the best permissions for you"
+msgstr "Veuillez choisir un type de canal (par exemple \"réseau social\" ou \"forum communautaire\") et un niveau de confidentialité afin que nous puissions choisir les meilleures autorisations pour vous"
-#: ../../mod/group.php:54
-msgid "Collection updated."
-msgstr "Collection mise à jour."
+#: ../../mod/new_channel.php:141 ../../mod/register.php:252
+msgid "Channel Type"
+msgstr "Type de canal"
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
-msgstr "Créez une collection de canaux."
+#: ../../mod/new_channel.php:141 ../../mod/register.php:252
+msgid "Read more about roles"
+msgstr "En savoir plus sur les rôles"
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
-msgstr "Nom de la collection&nbsp;:"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de requête invalide."
-#: ../../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/notifications.php:35
+msgid "Discard"
+msgstr "Annuler"
-#: ../../mod/group.php:107
-msgid "Collection removed."
-msgstr "Collection supprimée."
+#: ../../mod/notifications.php:94 ../../mod/notify.php:53
+msgid "No more system notifications."
+msgstr "Pas d'autre notification du système."
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
-msgstr "Impossible de supprimer la collection."
+#: ../../mod/notifications.php:98 ../../mod/notify.php:57
+msgid "System Notifications"
+msgstr "Notifications du système"
-#: ../../mod/group.php:182
-msgid "Collection Editor"
-msgstr "Éditeur de collection"
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr "Impossible de trouver votre hub."
-#: ../../mod/group.php:196
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
+msgstr "Publication réussie."
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
-msgstr "Tous canaux connectés"
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur du protocole OpenID. Pas d'ID retourné."
-#: ../../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/page.php:126
+msgid ""
+"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
+"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,"
+" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
+"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
+"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
+"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+
+#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60
+msgid "This setting requires special processing and editing has been blocked."
+msgstr "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées."
+
+#: ../../mod/pconfig.php:49
+msgid "Configuration Editor"
+msgstr "Editeur de configuration"
+
+#: ../../mod/pconfig.php:50
+msgid ""
+"Warning: Changing some settings could render your channel inoperable. Please"
+" leave this page unless you are comfortable with and knowledgeable about how"
+" to correctly use this feature."
+msgstr "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité."
+
+#: ../../mod/pdledit.php:14
+msgid "Layout updated."
+msgstr "Mise en page mise à jour."
+
+#: ../../mod/pdledit.php:29 ../../mod/pdledit.php:54
+msgid "Edit System Page Description"
+msgstr "Modifier la description de la page du système"
-#: ../../mod/tagger.php:98
+#: ../../mod/pdledit.php:49
+msgid "Layout not found."
+msgstr "Mise en page introuvable."
+
+#: ../../mod/pdledit.php:55
+msgid "Module Name:"
+msgstr "Nom du module&nbsp;:"
+
+#: ../../mod/pdledit.php:56
+msgid "Layout Help"
+msgstr "Aide à la mise en page"
+
+#: ../../mod/photos.php:79
+msgid "Page owner information could not be retrieved."
+msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
+
+#: ../../mod/photos.php:100
+msgid "Album not found."
+msgstr "Album introuvable."
+
+#: ../../mod/photos.php:127
+msgid "Delete Album"
+msgstr "Supprimer l'album"
+
+#: ../../mod/photos.php:171 ../../mod/photos.php:1020
+msgid "Delete Photo"
+msgstr "Supprimer la photo"
+
+#: ../../mod/photos.php:501
+msgid "No photos selected"
+msgstr "Aucune photo selectionnée"
+
+#: ../../mod/photos.php:550
+msgid "Access to this item is restricted."
+msgstr "L'accès à l'élément est restreint."
+
+#: ../../mod/photos.php:589
#, 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"
+msgid "%1$.2f MB of %2$.2f MB photo storage used."
+msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
-msgstr "Aide&nbsp;:"
+#: ../../mod/photos.php:592
+#, php-format
+msgid "%1$.2f MB photo storage used."
+msgstr "%1$.2f méga-octets utilisés pour le stockage des photos."
-#: ../../mod/help.php:69 ../../index.php:233
-msgid "Not Found"
-msgstr "Introuvable"
+#: ../../mod/photos.php:628
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette retirée"
+#: ../../mod/photos.php:632
+msgid "Enter an album name"
+msgstr "Entrer un nom d'album"
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Retirer une étiquette à l'élément"
+#: ../../mod/photos.php:633
+msgid "or select an existing album (doubleclick)"
+msgstr "ou sélectionner un album existant (double-clic)"
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Étiquette à retirer&nbsp;:"
+#: ../../mod/photos.php:634
+msgid "Create a status post for this upload"
+msgstr "Créer une publication de statut pour cet envoi"
-#: ../../mod/admin.php:52
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvegardés."
+#: ../../mod/photos.php:635
+msgid "Caption (optional):"
+msgstr "Légende (facultative)"
-#: ../../mod/admin.php:97 ../../mod/admin.php:450
-msgid "Site"
-msgstr "Site"
+#: ../../mod/photos.php:636
+msgid "Description (optional):"
+msgstr "Description (facultative)"
-#: ../../mod/admin.php:98
-msgid "Accounts"
-msgstr "Comptes"
+#: ../../mod/photos.php:663
+msgid "Album name could not be decoded"
+msgstr "Le nom de l'Album n'a pu être décodé"
-#: ../../mod/admin.php:99 ../../mod/admin.php:894
-msgid "Channels"
-msgstr "Canaux"
+#: ../../mod/photos.php:711 ../../mod/photos.php:1250
+#: ../../mod/photos.php:1267
+msgid "Contact Photos"
+msgstr "Photos de contact"
-#: ../../mod/admin.php:100 ../../mod/admin.php:985 ../../mod/admin.php:1027
-msgid "Plugins"
-msgstr "Extensions"
+#: ../../mod/photos.php:734
+msgid "Show Newest First"
+msgstr "Les plus récent(e)s en premier"
-#: ../../mod/admin.php:101 ../../mod/admin.php:1190 ../../mod/admin.php:1226
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../mod/photos.php:736
+msgid "Show Oldest First"
+msgstr "Les moins récent(e)s en premier"
-#: ../../mod/admin.php:102 ../../mod/admin.php:550
-msgid "Server"
-msgstr "Serveur"
+#: ../../mod/photos.php:838
+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/admin.php:103
-msgid "Profile Config"
-msgstr "Configurations du profil"
+#: ../../mod/photos.php:840
+msgid "Photo not available"
+msgstr "Photo non disponible"
-#: ../../mod/admin.php:104
-msgid "DB updates"
-msgstr "MàJ BD"
+#: ../../mod/photos.php:898
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo du profil"
-#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1313
-msgid "Logs"
-msgstr "Journaux"
+#: ../../mod/photos.php:905
+msgid "Private Photo"
+msgstr "Photo privée"
-#: ../../mod/admin.php:124
-msgid "Plugin Features"
-msgstr "Fonctionnalités liées aux extensions"
+#: ../../mod/photos.php:920
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
-#: ../../mod/admin.php:126
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente"
+#: ../../mod/photos.php:965 ../../mod/tagrm.php:133
+msgid "Remove"
+msgstr "Retirer"
-#: ../../mod/admin.php:206
+#: ../../mod/photos.php:999
+msgid "Edit photo"
+msgstr "Modifier la photo"
+
+#: ../../mod/photos.php:1001
+msgid "Rotate CW (right)"
+msgstr "Rotation horaire (droite)"
+
+#: ../../mod/photos.php:1002
+msgid "Rotate CCW (left)"
+msgstr "Rotation anti-horaire (gauche)"
+
+#: ../../mod/photos.php:1005
+msgid "Enter a new album name"
+msgstr "Entrer un nouveau nom d'album"
+
+#: ../../mod/photos.php:1006
+msgid "or select an existing one (doubleclick)"
+msgstr "ou en sélectionner un existant (double-clic)"
+
+#: ../../mod/photos.php:1009
+msgid "Caption"
+msgstr "Titre/légende"
+
+#: ../../mod/photos.php:1011
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
+
+#: ../../mod/photos.php:1015
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+msgstr "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon"
+
+#: ../../mod/photos.php:1018
+msgid "Flag as adult in album view"
+msgstr "Marquer comme \"adulte\" dans l'affichage de l'album"
+
+#: ../../mod/photos.php:1210
+msgid "In This Photo:"
+msgstr "Dans cette photo&nbsp;:"
+
+#: ../../mod/photos.php:1215
+msgid "Map"
+msgstr "Carte"
+
+#: ../../mod/photos.php:1306
+msgid "View Album"
+msgstr "Voir l'album"
+
+#: ../../mod/photos.php:1317 ../../mod/photos.php:1330
+#: ../../mod/photos.php:1331
+msgid "Recent Photos"
+msgstr "Photos récentes"
+
+#: ../../mod/admin.php:54
+msgid "Theme settings updated."
+msgstr "Paramètres du thème mis à jour."
+
+#: ../../mod/admin.php:174
+msgid "# Accounts"
+msgstr "# Comptes"
+
+#: ../../mod/admin.php:175
+msgid "# blocked accounts"
+msgstr "# comptes bloqués"
+
+#: ../../mod/admin.php:176
+msgid "# expired accounts"
+msgstr "# comptes expirés"
+
+#: ../../mod/admin.php:177
+msgid "# expiring accounts"
+msgstr "# comptes expirant"
+
+#: ../../mod/admin.php:188
+msgid "# Channels"
+msgstr "# Canaux"
+
+#: ../../mod/admin.php:189
+msgid "# primary"
+msgstr "# primaire"
+
+#: ../../mod/admin.php:190
+msgid "# clones"
+msgstr "# clones"
+
+#: ../../mod/admin.php:196
msgid "Message queues"
msgstr "File des messages"
-#: ../../mod/admin.php:211 ../../mod/admin.php:449 ../../mod/admin.php:549
-#: ../../mod/admin.php:758 ../../mod/admin.php:893 ../../mod/admin.php:984
-#: ../../mod/admin.php:1026 ../../mod/admin.php:1189 ../../mod/admin.php:1225
-#: ../../mod/admin.php:1312
+#: ../../mod/admin.php:212 ../../mod/admin.php:455 ../../mod/admin.php:669
+#: ../../mod/admin.php:709 ../../mod/admin.php:984 ../../mod/admin.php:1148
+#: ../../mod/admin.php:1263 ../../mod/admin.php:1324 ../../mod/admin.php:1485
+#: ../../mod/admin.php:1519 ../../mod/admin.php:1604
msgid "Administration"
msgstr "Administration"
-#: ../../mod/admin.php:212
+#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Résumé"
-#: ../../mod/admin.php:214
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: ../../mod/admin.php:216
+msgid "Registered accounts"
+msgstr "Comptes enregistrés"
-#: ../../mod/admin.php:216 ../../mod/admin.php:553
+#: ../../mod/admin.php:217 ../../mod/admin.php:673
msgid "Pending registrations"
msgstr "Inscriptions en attente"
-#: ../../mod/admin.php:217
-msgid "Version"
-msgstr "Version"
+#: ../../mod/admin.php:218
+msgid "Registered channels"
+msgstr "Canaux enregistrés"
-#: ../../mod/admin.php:219 ../../mod/admin.php:554
+#: ../../mod/admin.php:219 ../../mod/admin.php:674
msgid "Active plugins"
-msgstr "Extensions actives"
+msgstr "Greffons actifs"
+
+#: ../../mod/admin.php:220
+msgid "Version"
+msgstr "Version"
-#: ../../mod/admin.php:370
+#: ../../mod/admin.php:339
msgid "Site settings updated."
-msgstr "Réglages du site sauvegardés."
+msgstr "Paramètres du site sauvegardés."
-#: ../../mod/admin.php:401
-msgid "No special theme for accessibility"
-msgstr "Pas de thème spécifique pour l'accessibilité"
+#: ../../mod/admin.php:376 ../../mod/settings.php:793
+msgid "mobile"
+msgstr "mobile"
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:378
+msgid "experimental"
+msgstr "expérimental"
+
+#: ../../mod/admin.php:380
+msgid "unsupported"
+msgstr "non maintenu"
+
+#: ../../mod/admin.php:426
msgid "Yes - with approval"
msgstr "Oui - avec approbation"
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:432
msgid "My site is not a public server"
-msgstr "Mon site n'est pas un serveur publique"
+msgstr "Mon site n'est pas un serveur public"
-#: ../../mod/admin.php:437
+#: ../../mod/admin.php:433
msgid "My site has paid access only"
-msgstr "Mon site est payant"
+msgstr "Mon site est à accès payant uniquement"
-#: ../../mod/admin.php:438
+#: ../../mod/admin.php:434
msgid "My site has free access only"
-msgstr "Mon site est gratuit"
+msgstr "Mon site est gratuit uniquement"
-#: ../../mod/admin.php:439
+#: ../../mod/admin.php:435
msgid "My site offers free accounts with optional paid upgrades"
-msgstr "Mon site offre des comptes gratuits avec des ajouts payants"
+msgstr "Mon site offre des comptes gratuits avec des améliorations payantes facultatives"
+
+#: ../../mod/admin.php:458 ../../mod/register.php:237
+msgid "Registration"
+msgstr "Inscription"
-#: ../../mod/admin.php:453
+#: ../../mod/admin.php:459
msgid "File upload"
msgstr "Envoi de fichier"
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:460
msgid "Policies"
msgstr "Stratégies"
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:465
msgid "Site name"
msgstr "Nom du site"
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:466
msgid "Banner/Logo"
msgstr "Bannière/logo"
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:467
msgid "Administrator Information"
-msgstr "Informations sur l'administrateur"
+msgstr "Informations de l'administrateur"
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:467
msgid ""
"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"
+msgstr "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:468
msgid "System language"
msgstr "Langue du système"
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:469
msgid "System theme"
msgstr "Thème du système"
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:469
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/admin.php:464
+#: ../../mod/admin.php:470
msgid "Mobile system theme"
-msgstr "Thème système pour mobile"
+msgstr "Thème par défaut pour les mobiles"
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:470
msgid "Theme for mobile devices"
-msgstr "Thème dédié aux périphériques mobiles"
+msgstr "Thème pour les mobiles"
-#: ../../mod/admin.php:465
-msgid "Accessibility system theme"
-msgstr "Thème système pour l'accessibilité"
-
-#: ../../mod/admin.php:465
-msgid "Accessibility theme"
-msgstr "Thème pour l'accessibilité"
-
-#: ../../mod/admin.php:466
-msgid "Channel to use for this website's static pages"
-msgstr "Canal à utiliser pour les pages statiques de ce site"
+#: ../../mod/admin.php:472
+msgid "Allow Feeds as Connections"
+msgstr "Autoriser les Flux (RSS) comme contacts"
-#: ../../mod/admin.php:466
-msgid "Site Channel"
-msgstr "Canal de ce HUB"
+#: ../../mod/admin.php:472
+msgid "(Heavy system resource usage)"
+msgstr "(Impact important sur les ressources)"
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:473
msgid "Maximum image size"
msgstr "Taille maximale des images"
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:473
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/admin.php:469
+#: ../../mod/admin.php:474
msgid "Does this site allow new member registration?"
-msgstr "Est-ce que l'enregistrement de nouveau membres sur ce site est autorisé?"
+msgstr "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site&nbsp;?"
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:475
+msgid "Invitation only"
+msgstr "Sur invitation seulement"
+
+#: ../../mod/admin.php:475
+msgid ""
+"Only allow new member registrations with an invitation code. Above register "
+"policy must be set to Yes."
+msgstr "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"."
+
+#: ../../mod/admin.php:476
msgid "Which best describes the types of account offered by this hub?"
-msgstr "Choisissez le type de comptes offert sur ce hub?"
+msgstr "Quelle est la meilleure description des types de comptes proposés sur ce hub&nbsp;?"
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:477
msgid "Register text"
msgstr "Texte d'inscription"
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:477
msgid "Will be displayed prominently on the registration page."
msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription."
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:478
+msgid "Site homepage to show visitors (default: login box)"
+msgstr "Page d'accueil du site à montrer aux visiteurs (par défaut&nbsp;:boîte de dialogue de connexion)"
+
+#: ../../mod/admin.php:478
+msgid ""
+"example: 'public' to show public stream, 'page/sys/home' to show a system "
+"webpage called 'home' or 'include:home.html' to include a file."
+msgstr "exemple&nbsp;:'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier."
+
+#: ../../mod/admin.php:479
+msgid "Preserve site homepage URL"
+msgstr "Préserver l'adresse d'accueil du site"
+
+#: ../../mod/admin.php:479
+msgid ""
+"Present the site homepage in a frame at the original location instead of "
+"redirecting"
+msgstr "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger"
+
+#: ../../mod/admin.php:480
msgid "Accounts abandoned after x days"
msgstr "Les comptes sont abandonnés après x jours"
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:480
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."
+msgstr "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps."
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:481
msgid "Allowed friend domains"
-msgstr "Domaines amicaux"
+msgstr "Domaines amicaux autorisés"
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:481
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."
+msgstr "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:482
msgid "Allowed email domains"
-msgstr "Domaines de courriels amicaux"
+msgstr "Domaines de courriels autorisés"
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:482
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."
+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/admin.php:475
-msgid "Block public"
-msgstr "Bloquer public"
+#: ../../mod/admin.php:483
+msgid "Not allowed email domains"
+msgstr "Domaines de courriel non autorisés"
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:483
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."
+"Comma separated list of domains which are not allowed in email addresses for"
+" registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains, unless allowed domains have been defined."
+msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis."
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:484
+msgid "Verify Email Addresses"
+msgstr "Demander vérification des adresses de courriel"
+
+#: ../../mod/admin.php:484
+msgid ""
+"Check to verify email addresses used in account registration (recommended)."
+msgstr "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)."
+
+#: ../../mod/admin.php:485
msgid "Force publish"
-msgstr "Forcer publication"
+msgstr "Publicité forcée"
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
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/admin.php:477
-msgid "Disable discovery tab"
-msgstr "Désactiver l'onglet \"À découvrir\""
+#: ../../mod/admin.php:486
+msgid "Import Public Streams"
+msgstr "Flux publics importés"
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:486
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."
+"Import and allow access to public content pulled from other sites. Warning: "
+"this content is unmoderated."
+msgstr "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention&nbsp;: ce contenu n'est pas modéré."
-#: ../../mod/admin.php:478
-msgid "No login on Homepage"
-msgstr "Pas de connexion depuis la page d'accueil"
+#: ../../mod/admin.php:487
+msgid "login on Homepage"
+msgstr "Connexion à partir de la page d'accueil"
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:487
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)."
+"Present a login box to visitors on the home page if no other content has "
+"been configured."
+msgstr "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré."
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:489
+msgid "Directory Server URL"
+msgstr "URL du serveur d'annuaire"
+
+#: ../../mod/admin.php:489
+msgid "Default directory server"
+msgstr "Serveur d'annuaire par défaut"
+
+#: ../../mod/admin.php:491
msgid "Proxy user"
-msgstr "Utilisateurs du proxy"
+msgstr "Utilisateur du proxy"
-#: ../../mod/admin.php:481
+#: ../../mod/admin.php:492
msgid "Proxy URL"
-msgstr "URL du proxy (visiter @proxy-list)"
+msgstr "URL du proxy"
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:493
msgid "Network timeout"
msgstr "Délai maximal du réseau"
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:493
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é)."
+msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)."
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:494
msgid "Delivery interval"
msgstr "Intervalle de distribution"
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:494
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/admin.php:484
+#: ../../mod/admin.php:495
+msgid "Deliveries per process"
+msgstr "Distributions par processus"
+
+#: ../../mod/admin.php:495
+msgid ""
+"Number of deliveries to attempt in a single operating system process. Adjust"
+" if necessary to tune system performance. Recommend: 1-5."
+msgstr "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé&nbsp;:1-5."
+
+#: ../../mod/admin.php:496
msgid "Poll interval"
msgstr "Intervalle de scrutation"
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:496
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/admin.php:485
+#: ../../mod/admin.php:497
msgid "Maximum Load Average"
-msgstr "Charge moyenne maximale"
+msgstr "Charge maximale moyenne"
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:497
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."
+msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50."
+
+#: ../../mod/admin.php:498
+msgid "Expiration period in days for imported (grid/network) content"
+msgstr "Délai d'expiration pour le contenu importé (réseau)"
+
+#: ../../mod/admin.php:498
+msgid "0 for no expiration of imported content"
+msgstr "0 pour ne pas expirer le contenu importé"
+
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:717
+msgid "Off"
+msgstr "Inactif"
+
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:717
+msgid "On"
+msgstr "Actif"
+
+#: ../../mod/admin.php:636
+#, php-format
+msgid "Lock feature %s"
+msgstr "Verrouiller fonctionnalité %s"
-#: ../../mod/admin.php:541
+#: ../../mod/admin.php:644
+msgid "Manage Additional Features"
+msgstr "Gérer les fonctionnalités additionnelles"
+
+#: ../../mod/admin.php:661
msgid "No server found"
msgstr "Serveur introuvable"
-#: ../../mod/admin.php:548 ../../mod/admin.php:772
+#: ../../mod/admin.php:668 ../../mod/admin.php:998
msgid "ID"
-msgstr "ID"
+msgstr "Identifiant"
-#: ../../mod/admin.php:548
+#: ../../mod/admin.php:668
msgid "for channel"
msgstr "pour le canal"
-#: ../../mod/admin.php:548
+#: ../../mod/admin.php:668
msgid "on server"
msgstr "sur le serveur"
-#: ../../mod/admin.php:548
-msgid "Status"
-msgstr "État"
+#: ../../mod/admin.php:670
+msgid "Server"
+msgstr "Serveur"
-#: ../../mod/admin.php:569
+#: ../../mod/admin.php:712
+msgid "Block public"
+msgstr "Bloquer \"public\""
+
+#: ../../mod/admin.php:712
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently authenticated."
+msgstr ""
+
+#: ../../mod/admin.php:713
+msgid "Allow communications only from these sites"
+msgstr ""
+
+#: ../../mod/admin.php:713
+msgid ""
+"One site per line. Leave empty to allow communication from anywhere by "
+"default"
+msgstr ""
+
+#: ../../mod/admin.php:714
+msgid "Block communications from these sites"
+msgstr ""
+
+#: ../../mod/admin.php:715
+msgid "Allow communications only from these channels"
+msgstr ""
+
+#: ../../mod/admin.php:715
+msgid ""
+"One channel (hash) per line. Leave empty to allow from any channel by "
+"default"
+msgstr ""
+
+#: ../../mod/admin.php:716
+msgid "Block communications from these channels"
+msgstr ""
+
+#: ../../mod/admin.php:717
+msgid "Allow embedded HTML content only from these domains"
+msgstr ""
+
+#: ../../mod/admin.php:717
+msgid "One site per line. Leave empty to allow from any site by default"
+msgstr ""
+
+#: ../../mod/admin.php:718
+msgid "Block embedded HTML from these domains"
+msgstr ""
+
+#: ../../mod/admin.php:720
+msgid "Cooperative embed security"
+msgstr ""
+
+#: ../../mod/admin.php:720
+msgid "Enable to share embed security with other compatible sites/hubs"
+msgstr ""
+
+#: ../../mod/admin.php:735
msgid "Update has been marked successful"
msgstr "La mise à jour a été marquée comme réussie"
-#: ../../mod/admin.php:579
+#: ../../mod/admin.php:745
#, 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/admin.php:582
+#: ../../mod/admin.php:748
#, php-format
msgid "Update %s was successfully applied."
msgstr "La mise à jour %s a été appliquée avec succès."
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:752
#, 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/admin.php:589
+#: ../../mod/admin.php:755
#, php-format
msgid "Update function %s could not be found."
msgstr "La fonction de mise à jour %s est introuvable."
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:771
msgid "No failed updates."
msgstr "Aucune mise à jour défaillante."
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:775
msgid "Failed Updates"
msgstr "Mises à jour défaillantes"
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:777
msgid "Mark success (if update was manually applied)"
msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:778
msgid "Attempt to execute this update step automatically"
msgstr "Tenter de réaliser cette étape de mise à jour automatiquement"
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:809
+msgid "Queue Statistics"
+msgstr "Statistiques de file d'attente"
+
+#: ../../mod/admin.php:810
+msgid "Total Entries"
+msgstr "Nombre d'entrées total"
+
+#: ../../mod/admin.php:811
+msgid "Priority"
+msgstr "Priorité"
+
+#: ../../mod/admin.php:812
+msgid "Destination URL"
+msgstr "URL de destination"
+
+#: ../../mod/admin.php:813
+msgid "Mark hub permanently offline"
+msgstr "Marquer le hub comme étant hors ligne de manière permanente"
+
+#: ../../mod/admin.php:814
+msgid "Empty queue for this hub"
+msgstr "Vider la file d'attente pour ce hub"
+
+#: ../../mod/admin.php:815
+msgid "Last known contact"
+msgstr "Dernier contact connu"
+
+#: ../../mod/admin.php:851
#, 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"
+msgid "%s account blocked/unblocked"
+msgid_plural "%s account blocked/unblocked"
+msgstr[0] "%s compte bloqué/débloqué"
+msgstr[1] "%s comptes bloqués/débloqués"
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:859
#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
+msgid "%s account deleted"
+msgid_plural "%s accounts deleted"
+msgstr[0] "%s compte supprimé"
+msgstr[1] "%s comptes supprimés"
-#: ../../mod/admin.php:675
+#: ../../mod/admin.php:895
msgid "Account not found"
msgstr "Compte introuvable"
-#: ../../mod/admin.php:686
+#: ../../mod/admin.php:907
#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+msgid "Account '%s' deleted"
+msgstr "Compte '%s' supprimé"
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:915
#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+msgid "Account '%s' blocked"
+msgstr "Compte '%s' bloqué"
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:923
#, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
+msgid "Account '%s' unblocked"
+msgstr "Compte '%s' débloqué"
-#: ../../mod/admin.php:759 ../../mod/admin.php:771
+#: ../../mod/admin.php:985 ../../mod/admin.php:997
msgid "Users"
msgstr "Utilisateurs"
-#: ../../mod/admin.php:761 ../../mod/admin.php:896
+#: ../../mod/admin.php:987 ../../mod/admin.php:1151
msgid "select all"
msgstr "tout sélectionner"
-#: ../../mod/admin.php:762
+#: ../../mod/admin.php:988
msgid "User registrations waiting for confirm"
msgstr "Inscriptions en attente d'approbation"
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:989
msgid "Request date"
msgstr "Date de la demande"
-#: ../../mod/admin.php:764
+#: ../../mod/admin.php:990
msgid "No registrations."
msgstr "Pas d'inscriptions."
-#: ../../mod/admin.php:765
-msgid "Approve"
-msgstr "Approuver"
-
-#: ../../mod/admin.php:766
+#: ../../mod/admin.php:992
msgid "Deny"
msgstr "Refuser"
-#: ../../mod/admin.php:772
+#: ../../mod/admin.php:998
msgid "Register date"
msgstr "Date d'inscription"
-#: ../../mod/admin.php:772
+#: ../../mod/admin.php:998
msgid "Last login"
msgstr "Dernière connexion"
-#: ../../mod/admin.php:772
+#: ../../mod/admin.php:998
msgid "Expires"
-msgstr "Expire"
+msgstr "Expire le"
-#: ../../mod/admin.php:772
+#: ../../mod/admin.php:998
msgid "Service Class"
msgstr "Classe de service"
-#: ../../mod/admin.php:774
+#: ../../mod/admin.php:1000
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?"
+"Selected accounts will be deleted!\\n\\nEverything these accounts had posted"
+" on this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Les comptes sélectionnés seront supprimés&nbsp;!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?"
-#: ../../mod/admin.php:775
+#: ../../mod/admin.php:1001
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?"
+"The account {0} will be deleted!\\n\\nEverything this account has posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Le compte {0} sera supprimé&nbsp;!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?"
-#: ../../mod/admin.php:808
+#: ../../mod/admin.php:1037
#, 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"
+msgid_plural "%s channels censored/uncensored"
+msgstr[0] "%s canal censuré/dé-censuré"
+msgstr[1] "%s canaux censurés/dé-censurés"
-#: ../../mod/admin.php:815
+#: ../../mod/admin.php:1046
+#, php-format
+msgid "%s channel code allowed/disallowed"
+msgid_plural "%s channels code allowed/disallowed"
+msgstr[0] "code autorisé/interdit pour %s canal"
+msgstr[1] "code autorisé/interdit pour %s canaux"
+
+#: ../../mod/admin.php:1053
#, php-format
msgid "%s channel deleted"
msgid_plural "%s channels deleted"
msgstr[0] "%s canal supprimé"
msgstr[1] "%s canaux supprimés"
-#: ../../mod/admin.php:834
+#: ../../mod/admin.php:1073
msgid "Channel not found"
msgstr "Canal introuvable"
-#: ../../mod/admin.php:845
+#: ../../mod/admin.php:1084
#, php-format
msgid "Channel '%s' deleted"
msgstr "Canal '%s' supprimé"
-#: ../../mod/admin.php:855
+#: ../../mod/admin.php:1096
+#, php-format
+msgid "Channel '%s' censored"
+msgstr "Canal '%s' censuré"
+
+#: ../../mod/admin.php:1096
#, php-format
msgid "Channel '%s' uncensored"
-msgstr "Canal '%s' non-censuré"
+msgstr "Canal '%s' non censuré"
-#: ../../mod/admin.php:855
+#: ../../mod/admin.php:1107
#, php-format
-msgid "Channel '%s' censored"
-msgstr "Canal '%s' censuré"
+msgid "Channel '%s' code allowed"
+msgstr "Code autorisé pour le canal '%s'"
+
+#: ../../mod/admin.php:1107
+#, php-format
+msgid "Channel '%s' code disallowed"
+msgstr "Code interdit pour le canal '%s'"
-#: ../../mod/admin.php:898
+#: ../../mod/admin.php:1153
msgid "Censor"
msgstr "Censurer"
-#: ../../mod/admin.php:899
+#: ../../mod/admin.php:1154
msgid "Uncensor"
msgstr "Ne plus censurer"
-#: ../../mod/admin.php:902
+#: ../../mod/admin.php:1155
+msgid "Allow Code"
+msgstr "Autoriser le code"
+
+#: ../../mod/admin.php:1156
+msgid "Disallow Code"
+msgstr "Interdire le code"
+
+#: ../../mod/admin.php:1158
msgid "UID"
msgstr "UID"
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:1158 ../../mod/profiles.php:457
+msgid "Address"
+msgstr "Adresse"
+
+#: ../../mod/admin.php:1160
msgid ""
"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?"
+msgstr "Les canaux sélectionnés seront supprimés&nbsp;!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?"
-#: ../../mod/admin.php:905
+#: ../../mod/admin.php:1161
msgid ""
"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?"
+msgstr "Le canal {0} sera supprimé&nbsp;!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé&nbsp;!\\n\\nÊtes-vous sûr(e)&nbsp;?"
-#: ../../mod/admin.php:944
+#: ../../mod/admin.php:1218
#, php-format
msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+msgstr "Greffon %s désactivé."
-#: ../../mod/admin.php:948
+#: ../../mod/admin.php:1222
#, php-format
msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
+msgstr "Greffon %s activé."
-#: ../../mod/admin.php:958 ../../mod/admin.php:1160
+#: ../../mod/admin.php:1232 ../../mod/admin.php:1458
msgid "Disable"
msgstr "Désactiver"
-#: ../../mod/admin.php:960 ../../mod/admin.php:1162
+#: ../../mod/admin.php:1235 ../../mod/admin.php:1460
msgid "Enable"
msgstr "Activer"
-#: ../../mod/admin.php:986 ../../mod/admin.php:1191
+#: ../../mod/admin.php:1265 ../../mod/admin.php:1487
msgid "Toggle"
msgstr "(Dés)activer"
-#: ../../mod/admin.php:994 ../../mod/admin.php:1201
+#: ../../mod/admin.php:1273 ../../mod/admin.php:1497
msgid "Author: "
msgstr "Auteur&nbsp;:"
-#: ../../mod/admin.php:995 ../../mod/admin.php:1202
+#: ../../mod/admin.php:1274 ../../mod/admin.php:1498
msgid "Maintainer: "
msgstr "Maintenu par&nbsp;:"
-#: ../../mod/admin.php:1124
+#: ../../mod/admin.php:1275
+msgid "Minimum project version: "
+msgstr "Version minimum du projet&nbsp;:"
+
+#: ../../mod/admin.php:1276
+msgid "Maximum project version: "
+msgstr "Version maximum du projet&nbsp;:"
+
+#: ../../mod/admin.php:1277
+msgid "Minimum PHP version: "
+msgstr "Version minimum de PHP&nbsp;:"
+
+#: ../../mod/admin.php:1279 ../../mod/admin.php:1330
+msgid "Disabled - version incompatibility"
+msgstr "Désactivé - version incompatible"
+
+#: ../../mod/admin.php:1423
msgid "No themes found."
msgstr "Aucun thème trouvé."
-#: ../../mod/admin.php:1183
+#: ../../mod/admin.php:1479
msgid "Screenshot"
-msgstr "Aperçu"
+msgstr "Capture d'écran"
-#: ../../mod/admin.php:1231
+#: ../../mod/admin.php:1525
msgid "[Experimental]"
msgstr "[Expérimental]"
-#: ../../mod/admin.php:1232
+#: ../../mod/admin.php:1526
msgid "[Unsupported]"
-msgstr "[Non-supporté]"
+msgstr "[Non maintenu]"
-#: ../../mod/admin.php:1259
+#: ../../mod/admin.php:1550
msgid "Log settings updated."
-msgstr "Réglages du journal sauvegardés."
+msgstr "Paramètres du journal mis à jour."
-#: ../../mod/admin.php:1315
+#: ../../mod/admin.php:1607
msgid "Clear"
msgstr "Vider"
-#: ../../mod/admin.php:1321
+#: ../../mod/admin.php:1613
msgid "Debugging"
msgstr "Débogage"
-#: ../../mod/admin.php:1322
+#: ../../mod/admin.php:1614
msgid "Log file"
msgstr "Fichier du journal"
-#: ../../mod/admin.php:1322
+#: ../../mod/admin.php:1614
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."
+msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de votre installation de Hubzilla."
-#: ../../mod/admin.php:1323
+#: ../../mod/admin.php:1615
msgid "Log level"
msgstr "Niveau de journalisation"
-#: ../../mod/thing.php:98
-msgid "Thing updated"
-msgstr "Chose mise à jour"
+#: ../../mod/admin.php:1661
+msgid "New Profile Field"
+msgstr "Nouveau champ de profil"
-#: ../../mod/thing.php:158
-msgid "Object store: failed"
-msgstr "Stockage de l'objet&nbsp;: échec"
+#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+msgid "Field nickname"
+msgstr "Nom court du champ"
-#: ../../mod/thing.php:162
-msgid "Thing added"
-msgstr "Chose ajoutée"
+#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+msgid "System name of field"
+msgstr "Nom système du champ"
-#: ../../mod/thing.php:182
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
-msgstr "OBJ: %1$s %2$s %3$s"
+#: ../../mod/admin.php:1663 ../../mod/admin.php:1683
+msgid "Input type"
+msgstr "Type de champ"
-#: ../../mod/thing.php:234
-msgid "Show Thing"
-msgstr "Montrer chose"
+#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+msgid "Field Name"
+msgstr "Nom du champ"
-#: ../../mod/thing.php:241
-msgid "item not found."
-msgstr "élément introuvable."
+#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+msgid "Label on profile pages"
+msgstr "Étiquette sur les pages de profil"
-#: ../../mod/thing.php:272
-msgid "Edit Thing"
-msgstr "Éditer chose"
+#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+msgid "Help text"
+msgstr "Aide à la saisie"
-#: ../../mod/thing.php:274 ../../mod/thing.php:321
-msgid "Select a profile"
-msgstr "Choisissez un profil"
+#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+msgid "Additional info (optional)"
+msgstr "Informations additionnelles (facultatif)"
-#: ../../mod/thing.php:278 ../../mod/thing.php:324
-msgid "Post an activity"
-msgstr "Publier une activité"
+#: ../../mod/admin.php:1675
+msgid "Field definition not found"
+msgstr "Définition du champ introuvable"
-#: ../../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/admin.php:1681
+msgid "Edit Profile Field"
+msgstr "Modifier le champ de 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/poke.php:165
+msgid "Poke somebody"
+msgstr ""
-#: ../../mod/thing.php:282 ../../mod/thing.php:327
-msgid "URL of thing (optional)"
-msgstr "URL de la chose (optionnel)"
+#: ../../mod/poke.php:168
+msgid "Poke/Prod"
+msgstr "Tapoter/Encourager"
-#: ../../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/poke.php:169
+msgid "Poke, prod or do other things to somebody"
+msgstr ""
-#: ../../mod/thing.php:319
-msgid "Add Thing to your Profile"
-msgstr "Ajouter la chose à votre profil"
+#: ../../mod/poke.php:176
+msgid "Recipient"
+msgstr "Destinataire"
-#: ../../mod/import.php:36
-msgid "Nothing to import."
-msgstr "Rien à importer."
+#: ../../mod/poke.php:177
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisir ce que vous voulez faire au destinataire"
-#: ../../mod/import.php:58
-msgid "Unable to download data from old server"
-msgstr "Impossible de récupérer les données de l'ancien serveur"
+#: ../../mod/poke.php:180 ../../mod/poke.php:181
+msgid "Make this post private"
+msgstr "Rendre cette publication privée"
-#: ../../mod/import.php:64
-msgid "Imported file is empty."
-msgstr "Le fichier importé est vide."
+#: ../../mod/probe.php:24 ../../mod/probe.php:30
+#, php-format
+msgid "Fetching URL returns error: %1$s"
+msgstr "Récupération d'URL échouée&nbsp;: %1$s"
+
+#: ../../mod/profile_photo.php:112 ../../mod/cover_photo.php:54
+msgid "Image uploaded but image cropping failed."
+msgstr "L'image a été téléversée, mais le recadrage a échoué."
+
+#: ../../mod/profile_photo.php:166 ../../mod/cover_photo.php:150
+msgid "Image resize failed."
+msgstr "Le redimensionnement de l'image a échoué."
-#: ../../mod/import.php:88
+#: ../../mod/profile_photo.php:212
msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "Impossible de créer un doublon d'un identifiant de canal. L'import a échoué."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."
-#: ../../mod/import.php:106
-msgid "Channel clone failed. Import failed."
-msgstr "Le clonage du canal a échoué. L'import a échoué."
+#: ../../mod/profile_photo.php:250 ../../mod/cover_photo.php:188
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
-#: ../../mod/import.php:116
-msgid "Cloned channel not found. Import failed."
-msgstr "Le canal cloné n'a pas été trouvé. L'import a échoué."
+#: ../../mod/profile_photo.php:269 ../../mod/cover_photo.php:206
+msgid "Unable to process image."
+msgstr "Impossible de traîter l'image."
-#: ../../mod/import.php:364
-msgid "Import completed."
-msgstr "L'import est terminé."
+#: ../../mod/profile_photo.php:297 ../../mod/cover_photo.php:229
+msgid "female"
+msgstr "femme"
-#: ../../mod/import.php:377
-msgid "You must be logged in to use this feature."
-msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité."
+#: ../../mod/profile_photo.php:298 ../../mod/cover_photo.php:230
+#, php-format
+msgid "%1$s updated her %2$s"
+msgstr "%1$s a mis à jour son %2$s"
-#: ../../mod/import.php:382
-msgid "Import Channel"
-msgstr "Importation de canal"
+#: ../../mod/profile_photo.php:299 ../../mod/cover_photo.php:231
+msgid "male"
+msgstr "homme"
-#: ../../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 du contenu est toujours en développement."
+#: ../../mod/profile_photo.php:300 ../../mod/cover_photo.php:232
+#, php-format
+msgid "%1$s updated his %2$s"
+msgstr "%1$s a mis à jour son %2$s"
-#: ../../mod/import.php:384
-msgid "File to Upload"
-msgstr "Fichier à envoyer"
+#: ../../mod/profile_photo.php:302 ../../mod/cover_photo.php:234
+#, php-format
+msgid "%1$s updated their %2$s"
+msgstr "%1$s a mis a jour sa %2$s"
-#: ../../mod/import.php:385
-msgid "Or provide the old server/hub details"
-msgstr "Ou fournissez les détails de l'ancien serveur"
+#: ../../mod/profile_photo.php:304
+msgid "profile photo"
+msgstr "photo de profil"
-#: ../../mod/import.php:386
-msgid "Your old identity address (xyz@example.com)"
-msgstr "Votre ancienne identité (zyx@exemple.com)"
+#: ../../mod/profile_photo.php:368 ../../mod/profile_photo.php:409
+#: ../../mod/cover_photo.php:299 ../../mod/cover_photo.php:314
+msgid "Photo not available."
+msgstr "Photo inaccessible."
-#: ../../mod/import.php:387
-msgid "Your old login email address"
-msgstr "Votre ancienne adresse de courriel"
+#: ../../mod/profile_photo.php:450 ../../mod/cover_photo.php:350
+msgid "Upload File:"
+msgstr "Téléverser fichier&nbsp;:"
-#: ../../mod/import.php:388
-msgid "Your old login password"
-msgstr "Votre ancien mot de passe"
+#: ../../mod/profile_photo.php:451 ../../mod/cover_photo.php:351
+msgid "Select a profile:"
+msgstr "Choisir un profil&nbsp;:"
+
+#: ../../mod/profile_photo.php:452
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
+
+#: ../../mod/profile_photo.php:457 ../../mod/settings.php:976
+#: ../../mod/cover_photo.php:357
+msgid "or"
+msgstr "ou"
+
+#: ../../mod/profile_photo.php:457 ../../mod/cover_photo.php:357
+msgid "skip this step"
+msgstr "passer cette étape"
+
+#: ../../mod/profile_photo.php:457 ../../mod/cover_photo.php:357
+msgid "select a photo from your photo albums"
+msgstr "choisir une photo dans vos albums"
+
+#: ../../mod/profile_photo.php:473 ../../mod/cover_photo.php:373
+msgid "Crop Image"
+msgstr "Recadrer l'image"
+
+#: ../../mod/profile_photo.php:474 ../../mod/cover_photo.php:374
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Merci d'ajuster le cadre pour une visualisation optimale."
+
+#: ../../mod/profile_photo.php:476 ../../mod/cover_photo.php:376
+msgid "Done Editing"
+msgstr "J'ai terminé"
+
+#: ../../mod/profiles.php:19 ../../mod/profiles.php:184
+#: ../../mod/profiles.php:241 ../../mod/profiles.php:608
+msgid "Profile not found."
+msgstr "Profil introuvable."
+
+#: ../../mod/profiles.php:39
+msgid "Profile deleted."
+msgstr "Profil supprimé."
+
+#: ../../mod/profiles.php:63 ../../mod/profiles.php:99
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../mod/profiles.php:84 ../../mod/profiles.php:127
+msgid "New profile created."
+msgstr "Nouveau profil créé."
+
+#: ../../mod/profiles.php:105
+msgid "Profile unavailable to clone."
+msgstr "Profil impossible à cloner."
+
+#: ../../mod/profiles.php:146
+msgid "Profile unavailable to export."
+msgstr "Impossible d'exporter le profil."
+
+#: ../../mod/profiles.php:251
+msgid "Profile Name is required."
+msgstr "Le nom du profil est obligatoire."
+
+#: ../../mod/profiles.php:414
+msgid "Marital Status"
+msgstr "Statut marital"
+
+#: ../../mod/profiles.php:418
+msgid "Romantic Partner"
+msgstr "Partenaire amoureux"
+
+#: ../../mod/profiles.php:422
+msgid "Likes"
+msgstr "Aime"
+
+#: ../../mod/profiles.php:426
+msgid "Dislikes"
+msgstr "N'aime pas"
+
+#: ../../mod/profiles.php:430
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
+
+#: ../../mod/profiles.php:433
+msgid "Religion"
+msgstr "Religion/Croyance"
+
+#: ../../mod/profiles.php:437
+msgid "Political Views"
+msgstr "Opinions politiques"
+
+#: ../../mod/profiles.php:445
+msgid "Sexual Preference"
+msgstr "Préférences sexuelle"
+
+#: ../../mod/profiles.php:449
+msgid "Homepage"
+msgstr "Site Internet"
+
+#: ../../mod/profiles.php:453
+msgid "Interests"
+msgstr "Centres d'intérêt"
+
+#: ../../mod/profiles.php:547
+msgid "Profile updated."
+msgstr "Profil mis à jour."
+
+#: ../../mod/profiles.php:634
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher vos contacts/amis aux visiteurs de ce profil&nbsp;?"
+
+#: ../../mod/profiles.php:674
+msgid "Edit Profile Details"
+msgstr "Modifier les détails du profil"
+
+#: ../../mod/profiles.php:676
+msgid "View this profile"
+msgstr "Voir ce profil"
+
+#: ../../mod/profiles.php:678
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
+
+#: ../../mod/profiles.php:679
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil avec ces paramètres"
+
+#: ../../mod/profiles.php:680
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
+
+#: ../../mod/profiles.php:681
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
+
+#: ../../mod/profiles.php:683
+msgid "Import profile from file"
+msgstr "Importer le profil à partir d'un fichier"
+
+#: ../../mod/profiles.php:684
+msgid "Export profile to file"
+msgstr "Exporter le profil vers un fichier."
+
+#: ../../mod/profiles.php:685
+msgid "Profile Name:"
+msgstr "Nom du profil&nbsp;:"
+
+#: ../../mod/profiles.php:686
+msgid "Your Full Name:"
+msgstr "Votre nom complet&nbsp;:"
+
+#: ../../mod/profiles.php:687
+msgid "Title/Description:"
+msgstr "Titre/description&nbsp;:"
+
+#: ../../mod/profiles.php:688
+msgid "Your Gender:"
+msgstr "Sexe/Genre&nbsp;:"
+
+#: ../../mod/profiles.php:689
+msgid "Birthday :"
+msgstr "Date de naissance&nbsp;:"
+
+#: ../../mod/profiles.php:690
+msgid "Street Address:"
+msgstr "Numéro et voie&nbsp;:"
+
+#: ../../mod/profiles.php:691
+msgid "Locality/City:"
+msgstr "Ville&nbsp;:"
+
+#: ../../mod/profiles.php:692
+msgid "Postal/Zip Code:"
+msgstr "Code postal&nbsp;:"
+
+#: ../../mod/profiles.php:693
+msgid "Country:"
+msgstr "Pays&nbsp;:"
+
+#: ../../mod/profiles.php:694
+msgid "Region/State:"
+msgstr "Région/Province/État&nbsp;:"
+
+#: ../../mod/profiles.php:695
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:"
+
+#: ../../mod/profiles.php:696
+msgid "Who: (if applicable)"
+msgstr "Avec&nbsp;: (si pertinent)"
+
+#: ../../mod/profiles.php:697
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples&nbsp;: marie123, Marie Deschamps, marie@exemple.com"
+
+#: ../../mod/profiles.php:698
+msgid "Since [date]:"
+msgstr "Depuis [date]&nbsp;:"
+
+#: ../../mod/profiles.php:700
+msgid "Homepage URL:"
+msgstr "URL de mon site Internet&nbsp;:"
+
+#: ../../mod/profiles.php:703
+msgid "Religious Views:"
+msgstr "Opinions religieuses&nbsp;:"
+
+#: ../../mod/profiles.php:704
+msgid "Keywords:"
+msgstr "Mots-clefs&nbsp;:"
+
+#: ../../mod/profiles.php:707
+msgid "Example: fishing photography software"
+msgstr "Exemple&nbsp;: escrime photographie modélisme"
+
+#: ../../mod/profiles.php:708
+msgid "Used in directory listings"
+msgstr "Utilisé pour le référencement dans l'annuaire"
+
+#: ../../mod/profiles.php:709
+msgid "Tell us about yourself..."
+msgstr "Parlez nous de vous..."
+
+#: ../../mod/profiles.php:710
+msgid "Hobbies/Interests"
+msgstr "Loisirs/Centres d'intêret"
+
+#: ../../mod/profiles.php:711
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées et réseaux sociaux"
+
+#: ../../mod/profiles.php:712
+msgid "My other channels"
+msgstr "Mes autres canaux"
+
+#: ../../mod/profiles.php:713
+msgid "Musical interests"
+msgstr "Goûts musicaux"
+
+#: ../../mod/profiles.php:714
+msgid "Books, literature"
+msgstr "Livres, littérature"
+
+#: ../../mod/profiles.php:715
+msgid "Television"
+msgstr "Télévision"
-#: ../../mod/import.php:389
+#: ../../mod/profiles.php:716
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
+
+#: ../../mod/profiles.php:717
+msgid "Love/romance"
+msgstr "Amour/Relation amoureuse"
+
+#: ../../mod/profiles.php:718
+msgid "Work/employment"
+msgstr "Travail/Occupation&nbsp;"
+
+#: ../../mod/profiles.php:719
+msgid "School/education"
+msgstr "Études"
+
+#: ../../mod/profiles.php:725
+msgid "This is your default profile."
+msgstr "Ceci est votre profil par défaut."
+
+#: ../../mod/profiles.php:736
+msgid "Age: "
+msgstr "Age&nbsp;:"
+
+#: ../../mod/profiles.php:779
+msgid "Edit/Manage Profiles"
+msgstr "Modifier/gérer les profils"
+
+#: ../../mod/profiles.php:780
+msgid "Add profile things"
+msgstr "Ajouter des éléments de profil"
+
+#: ../../mod/profiles.php:781
+msgid "Include desirable objects in your profile"
+msgstr "Incluez des objets souhaitables dans votre profil"
+
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
+
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
+msgstr "Éditeur de visibilité de profil"
+
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
+msgstr "Cliquer sur un contact pour l'ajouter ou le retirer."
+
+#: ../../mod/profperm.php:123
+msgid "Visible To"
+msgstr "Visible par"
+
+#: ../../mod/pubsites.php:18
+msgid "Public Sites"
+msgstr "Sites publics"
+
+#: ../../mod/pubsites.php:21
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"
-" able to post from either location, but only one can be marked as the "
-"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."
+"The listed sites allow public registration for the $Projectname network. All"
+" sites in the network are interlinked so membership on any of them conveys "
+"membership in the network 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 publique au réseau $Projectname. Tous les sites du réseau sont interconnectés, l'inscription sur l'un quelconque d'entre eux signifie donc l'inscription sur le réseau dans son ensemble. Certains sites peuvent nécessiter une souscription ou fournir des niveaux de service différenciés. Le lien du fournisseur <strong>peut</strong> fournir plus de détails."
+
+#: ../../mod/pubsites.php:27
+msgid "Rate this hub"
+msgstr "Noter ce hub"
+
+#: ../../mod/pubsites.php:28
+msgid "Site URL"
+msgstr "URL du site"
-#: ../../mod/import.php:390
-msgid "Make this hub my primary location"
-msgstr "Faire de ce hub l'adresse principale de ce canal"
+#: ../../mod/pubsites.php:28
+msgid "Access Type"
+msgstr "Type d'accès"
-#: ../../mod/invite.php:25
-msgid "Total invitation limit exceeded."
-msgstr "Limite du nombre total d'invitation dépassée."
+#: ../../mod/pubsites.php:28
+msgid "Registration Policy"
+msgstr "Politique d'inscription"
-#: ../../mod/invite.php:49
+#: ../../mod/pubsites.php:28
+msgid "Project"
+msgstr "Projet"
+
+#: ../../mod/pubsites.php:28
+msgid "View hub ratings"
+msgstr "Voir les notes de cette instance"
+
+#: ../../mod/pubsites.php:32
+msgid "Rate"
+msgstr "Evaluer"
+
+#: ../../mod/pubsites.php:33
+msgid "View ratings"
+msgstr "Voir les notes"
+
+#: ../../mod/rate.php:158
+msgid "Website:"
+msgstr "Site web&nbsp;:"
+
+#: ../../mod/rate.php:161
#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s&nbsp: adresse courriel invalide."
+msgid "Remote Channel [%s] (not yet known on this site)"
+msgstr "Canal distant [%s] (encore inconnu sur ce site)"
-#: ../../mod/invite.php:76
-msgid "Please join us on Red"
-msgstr "Rejoignez-nous sur la Matrice Rouge"
+#: ../../mod/rate.php:162
+msgid "Rating (this information is public)"
+msgstr "Evaluation (cette information est publique)"
-#: ../../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/rate.php:163
+msgid "Optionally explain your rating (this information is public)"
+msgstr "Explication facultative de votre évaluation (cette information est publique)"
+
+#: ../../mod/ratings.php:69
+msgid "No ratings"
+msgstr "Pas de note"
-#: ../../mod/invite.php:92
+#: ../../mod/ratings.php:100
+msgid "Rating: "
+msgstr "Evaluation&nbsp:"
+
+#: ../../mod/ratings.php:101
+msgid "Website: "
+msgstr "Site web&nbsp;:"
+
+#: ../../mod/ratings.php:103
+msgid "Description: "
+msgstr "Description&nbsp;:"
+
+#: ../../mod/rbmark.php:90
+msgid "Select a bookmark folder"
+msgstr "Choisir un dossier de favoris"
+
+#: ../../mod/rbmark.php:95
+msgid "Save Bookmark"
+msgstr "Enregistrer le favori"
+
+#: ../../mod/rbmark.php:96
+msgid "URL of bookmark"
+msgstr "URL du favori"
+
+#: ../../mod/rbmark.php:101
+msgid "Or enter new bookmark folder name"
+msgstr "Ou entrez un nouveau nom de dossier de favoris"
+
+#: ../../mod/register.php:45
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain."
+
+#: ../../mod/register.php:51
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
+msgstr "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué."
+
+#: ../../mod/register.php:85
+msgid "Passwords do not match."
+msgstr "Les mots de passe ne concordent pas."
+
+#: ../../mod/register.php:127
+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/register.php:133
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription est en attente d'approbation par l'administrateur."
+
+#: ../../mod/register.php:136
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traîtée."
+
+#: ../../mod/register.php:179
+msgid "Registration on this site is disabled."
+msgstr "L'enregistrement est désactivé sur ce site."
+
+#: ../../mod/register.php:188
+msgid "Registration on this site/hub is by approval only."
+msgstr "L'inscription sur ce site/hub est soumise à approbation."
+
+#: ../../mod/register.php:189
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+msgstr "<a href=\"pubsites\">S'inscrire sur un autre site/hub affilié</a>"
+
+#: ../../mod/register.php:199
+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 comptes autorisé chaque jour. Merci d'essayer à nouveau demain."
+
+#: ../../mod/register.php:210
+msgid "Terms of Service"
+msgstr "Conditions de service"
+
+#: ../../mod/register.php:216
#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s&nbsp;: Échec dans la livraison du message."
+msgid "I accept the %s for this website"
+msgstr "J'accepte les %s de ce site"
-#: ../../mod/invite.php:96
+#: ../../mod/register.php:218
#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyé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/invite.php:115
-msgid "You have no more invitations available"
-msgstr "Vous ne disposez plus d'aucune invitation"
+#: ../../mod/register.php:242
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
-#: ../../mod/invite.php:129
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../mod/register.php:243
+msgid "Please enter your invitation code"
+msgstr "Merci de saisir votre code d'invitation"
-#: ../../mod/invite.php:130
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses de courriel, une par ligne&nbsp;:"
+#: ../../mod/register.php:247
+msgid "Enter your name"
+msgstr "Saisissez votre nom"
-#: ../../mod/invite.php:131 ../../mod/mail.php:225 ../../mod/mail.php:338
-msgid "Your message:"
-msgstr "Votre message&nbsp;:"
+#: ../../mod/register.php:256
+msgid "Your email address"
+msgstr "Votre adresse de courriel"
-#: ../../mod/invite.php:132
-msgid "Please join my community on Hubzilla."
-msgstr "Veuillez me rejoindre sur la Matrice Rouge."
+#: ../../mod/register.php:257
+msgid "Choose a password"
+msgstr "Choisissez un mot de passe"
-#: ../../mod/invite.php:134
-msgid "You will need to supply this invitation code: "
-msgstr "Vous aurez besoin de fournir le code suivant:"
+#: ../../mod/register.php:258
+msgid "Please re-enter your password"
+msgstr "Merci de saisir à nouveau votre mot de passe"
-#: ../../mod/invite.php:135
-msgid "1. Register at any Hubzilla location (they are all inter-connected)"
-msgstr "1. Enregistrez-vous sur n'importe quel serveurs ( ils sont tous inter-connectés )"
+#: ../../mod/regmod.php:11
+msgid "Please login."
+msgstr "Merci de vous connecter."
-#: ../../mod/invite.php:137
-msgid "2. Enter my Hubzilla network address into the site searchbar."
-msgstr "2. Saisissez l'adresse de mon canal dans la barre de recherche du site."
+#: ../../mod/removeaccount.php:30
+msgid ""
+"Account removals are not allowed within 48 hours of changing the account "
+"password."
+msgstr "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte."
-#: ../../mod/invite.php:138
-msgid "or visit "
-msgstr "ou visitez"
+#: ../../mod/removeaccount.php:57
+msgid "Remove This Account"
+msgstr "Supprimer ce compte"
-#: ../../mod/invite.php:140
-msgid "3. Click [Connect]"
-msgstr "3. Click sur [Ajouter]"
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "WARNING: "
+msgstr "AVERTISSEMENT&nbsp;:"
-#: ../../mod/item.php:146
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication initiale."
+#: ../../mod/removeaccount.php:58
+msgid ""
+"This account and all its channels will be completely removed from the "
+"network. "
+msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau."
-#: ../../mod/item.php:379
-msgid "Empty post discarded."
-msgstr "Publication vide annulée."
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "This action is permanent and can not be undone!"
+msgstr "Cette action est permanente et irréversible&nbsp;!"
-#: ../../mod/item.php:421
-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/removeaccount.php:59 ../../mod/removeme.php:59
+msgid "Please enter your password for verification:"
+msgstr "Merci de saisir votre mot de passe pour vérification&nbsp;:"
-#: ../../mod/item.php:850
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvegardée."
+#: ../../mod/removeaccount.php:60
+msgid ""
+"Remove this account, all its channels and all its channel clones from the "
+"network"
+msgstr "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux."
+
+#: ../../mod/removeaccount.php:60
+msgid ""
+"By default only the instances of the channels located on this hub will be "
+"removed from the network"
+msgstr "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau"
+
+#: ../../mod/removeaccount.php:61 ../../mod/settings.php:700
+msgid "Remove Account"
+msgstr "Supprimer le compte"
+
+#: ../../mod/removeme.php:29
+msgid ""
+"Channel removals are not allowed within 48 hours of changing the account "
+"password."
+msgstr "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte."
+
+#: ../../mod/removeme.php:57
+msgid "Remove This Channel"
+msgstr "Supprimer ce canal"
+
+#: ../../mod/removeme.php:58
+msgid "This channel will be completely removed from the network. "
+msgstr "Ce canal sera complètement supprimé du réseau."
+
+#: ../../mod/removeme.php:60
+msgid "Remove this channel and all its clones from the network"
+msgstr "Supprimer ce canal ainsi que tous ses clones sur le réseau"
+
+#: ../../mod/removeme.php:60
+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/removeme.php:61 ../../mod/settings.php:1115
+msgid "Remove Channel"
+msgstr "Supprimer le canal"
+
+#: ../../mod/rmagic.php:40
+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 correctement saisi."
+
+#: ../../mod/rmagic.php:40
+msgid "The error message was:"
+msgstr "Le message d'erreur était&nbsp;:"
+
+#: ../../mod/rmagic.php:44
+msgid "Authentication failed."
+msgstr "Échec de l'authentification."
+
+#: ../../mod/rmagic.php:84
+msgid "Remote Authentication"
+msgstr "Authentification distante"
-#: ../../mod/item.php:1302
+#: ../../mod/rmagic.php:85
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)"
+
+#: ../../mod/rmagic.php:86
+msgid "Authenticate"
+msgstr "Authentifier"
+
+#: ../../mod/search.php:212
#, 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\"."
+msgid "Items tagged with: %s"
+msgstr "Eléments étiquetés avec&nbsp;: %s"
-#: ../../mod/item.php:1308
+#: ../../mod/search.php:214
#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Vous avez atteint votre limite de %1$.0f pages web."
+msgid "Search results for: %s"
+msgstr "Résultats de recherche pour&nbsp;: %s"
-#: ../../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/service_limits.php:19
+msgid "No service class restrictions found."
+msgstr "Aucune restriction de classe de service trouvée."
-#: ../../mod/layouts.php:62
-msgid "Help with this feature"
-msgstr "Aide avec cette fonctionnalité"
+#: ../../mod/settings.php:76
+msgid "Name is required"
+msgstr "Le nom est requis"
-#: ../../mod/layouts.php:84
-msgid "Layout Name"
-msgstr "Nom de la mise-en-page"
+#: ../../mod/settings.php:80
+msgid "Key and Secret are required"
+msgstr "Clef et secret sont requis"
-#: ../../mod/like.php:15
-msgid "Like/Dislike"
-msgstr "J'aime/Je Déteste"
+#: ../../mod/settings.php:232
+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/like.php:20
-msgid "This action is restricted to members."
-msgstr "Cette action est réservée aux membres."
+#: ../../mod/settings.php:236
+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/like.php:21
+#: ../../mod/settings.php:250
+msgid "Password changed."
+msgstr "Le mot de passe a été changé."
+
+#: ../../mod/settings.php:252
+msgid "Password update failed. Please try again."
+msgstr "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau."
+
+#: ../../mod/settings.php:266
+msgid "Not valid email."
+msgstr "Adresse de courriel non valide."
+
+#: ../../mod/settings.php:269
+msgid "Protected email address. Cannot change to that email."
+msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
+
+#: ../../mod/settings.php:278
+msgid "System failure storing new email. Please try again."
+msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau."
+
+#: ../../mod/settings.php:521
+msgid "Settings updated."
+msgstr "Paramètres mis à jour."
+
+#: ../../mod/settings.php:585 ../../mod/settings.php:611
+#: ../../mod/settings.php:647
+msgid "Add application"
+msgstr "Ajouter une application"
+
+#: ../../mod/settings.php:588
+msgid "Name of application"
+msgstr "Nom de l'application"
+
+#: ../../mod/settings.php:589 ../../mod/settings.php:615
+msgid "Consumer Key"
+msgstr "Clef client"
+
+#: ../../mod/settings.php:589 ../../mod/settings.php:590
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
+
+#: ../../mod/settings.php:590 ../../mod/settings.php:616
+msgid "Consumer Secret"
+msgstr "Secret client"
+
+#: ../../mod/settings.php:591 ../../mod/settings.php:617
+msgid "Redirect"
+msgstr "Redirection"
+
+#: ../../mod/settings.php:591
msgid ""
-"Please <a href=\"rmagic\">login with your Hubzilla 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."
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement"
-#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142
-msgid "Invalid request."
-msgstr "Requête invalide."
+#: ../../mod/settings.php:592 ../../mod/settings.php:618
+msgid "Icon url"
+msgstr "URL de l'icône"
-#: ../../mod/like.php:119
-msgid "thing"
-msgstr "chose"
+#: ../../mod/settings.php:592
+msgid "Optional"
+msgstr "Facultatif"
-#: ../../mod/like.php:165
-msgid "Channel unavailable."
-msgstr "Canal indisponible."
+#: ../../mod/settings.php:603
+msgid "Application not found."
+msgstr ""
-#: ../../mod/like.php:204
-msgid "Previous action reversed."
-msgstr "Action précédente annulée."
+#: ../../mod/settings.php:646
+msgid "Connected Apps"
+msgstr "Applications connectées"
-#: ../../mod/like.php:417
-msgid "Action completed."
-msgstr "Action complétée."
+#: ../../mod/settings.php:650
+msgid "Client key starts with"
+msgstr "La clef partagée commence par"
-#: ../../mod/like.php:418
-msgid "Thank you."
-msgstr "Merci."
+#: ../../mod/settings.php:651
+msgid "No name"
+msgstr "Sans nom"
-#: ../../mod/lockview.php:35 ../../mod/lockview.php:41
-msgid "Remote privacy information not available."
-msgstr "Les informations de vie privée à distance ne sont pas disponibles."
+#: ../../mod/settings.php:652
+msgid "Remove authorization"
+msgstr "Révoquer l'autorisation"
-#: ../../mod/lockview.php:50
-msgid "Visible to:"
-msgstr "Visible par&nbsp;:"
+#: ../../mod/settings.php:665
+msgid "No feature settings configured"
+msgstr "Aucun paramètre de fonctionnalité configuré"
-#: ../../mod/viewconnections.php:58
-msgid "No connections."
-msgstr "Pas de relation."
+#: ../../mod/settings.php:672
+msgid "Feature/Addon Settings"
+msgstr "Paramètres des extensions/greffons"
-#: ../../mod/viewconnections.php:71
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../mod/settings.php:695
+msgid "Account Settings"
+msgstr "Paramètres du compte"
-#: ../../mod/viewconnections.php:86
-msgid "View Connnections"
-msgstr "Voir les relations"
+#: ../../mod/settings.php:696
+msgid "Enter New Password:"
+msgstr "Nouveau mot de passe&nbsp;:"
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
-msgstr "Aucun compte valide trouvé."
+#: ../../mod/settings.php:697
+msgid "Confirm New Password:"
+msgstr "Confirmer le nouveau mot de passe&nbsp;:"
-#: ../../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/settings.php:697
+msgid "Leave password fields blank unless changing"
+msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
-msgstr "Membre du site (%s)"
+#: ../../mod/settings.php:699 ../../mod/settings.php:1032
+msgid "Email Address:"
+msgstr "Adresse de courriel&nbsp;:"
-#: ../../mod/lostpass.php:40
+#: ../../mod/settings.php:701
+msgid "Remove this account including all its channels"
+msgstr "Supprimer ce compte et tous ses canaux"
+
+#: ../../mod/settings.php:724
+msgid "Additional Features"
+msgstr "Fonctionnalités additionnelles"
+
+#: ../../mod/settings.php:748
+msgid "Connector Settings"
+msgstr "Paramètres du connecteur"
+
+#: ../../mod/settings.php:787
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème spécifique aux mobiles"
+
+#: ../../mod/settings.php:790
#, php-format
-msgid "Password reset requested at %s"
-msgstr "Demande de réinitialisation du mot de passe sur %s"
+msgid "%s - (Experimental)"
+msgstr "%s - (Expérimental)"
-#: ../../mod/lostpass.php:63
+#: ../../mod/settings.php:829
+msgid "Display Settings"
+msgstr "Afficher les paramètres"
+
+#: ../../mod/settings.php:830
+msgid "Theme Settings"
+msgstr "Paramètres du thème"
+
+#: ../../mod/settings.php:831
+msgid "Custom Theme Settings"
+msgstr "Paramètres personnels du thème"
+
+#: ../../mod/settings.php:832
+msgid "Content Settings"
+msgstr "Paramètres liés au contenu"
+
+#: ../../mod/settings.php:838
+msgid "Display Theme:"
+msgstr "Afficher le thème&nbsp;:"
+
+#: ../../mod/settings.php:839
+msgid "Mobile Theme:"
+msgstr "Thème mobile&nbsp;:"
+
+#: ../../mod/settings.php:840
+msgid "Enable user zoom on mobile devices"
+msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu"
+
+#: ../../mod/settings.php:841
+msgid "Update browser every xx seconds"
+msgstr "Mettre à jour le navigateur toutes les xx secondes"
+
+#: ../../mod/settings.php:841
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 secondes, pas de maximum"
+
+#: ../../mod/settings.php:842
+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/settings.php:842
+msgid "Maximum of 100 items"
+msgstr "100 éléments au maximum"
+
+#: ../../mod/settings.php:843
+msgid "Show emoticons (smilies) as images"
+msgstr "Remplacer les émoticônes (smileys) par des images"
+
+#: ../../mod/settings.php:844
+msgid "Link post titles to source"
+msgstr "Lier les titres des publications à leur source"
+
+#: ../../mod/settings.php:845
+msgid "System Page Layout Editor - (advanced)"
+msgstr "Editeur de mise en page des pages systèmes - (avancé)"
+
+#: ../../mod/settings.php:848
+msgid "Use blog/list mode on channel page"
+msgstr "Utiliser le mode blog/liste sur la page du canal"
+
+#: ../../mod/settings.php:848 ../../mod/settings.php:849
+msgid "(comments displayed separately)"
+msgstr "(commentaires affichés séparément)"
+
+#: ../../mod/settings.php:849
+msgid "Use blog/list mode on grid page"
+msgstr "Utiliser le mode blog/liste sur la page du réseau"
+
+#: ../../mod/settings.php:850
+msgid "Channel page max height of content (in pixels)"
+msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)"
+
+#: ../../mod/settings.php:850 ../../mod/settings.php:851
+msgid "click to expand content exceeding this height"
+msgstr "cliquer pour dérouler le contenu dépassant cette limite"
+
+#: ../../mod/settings.php:851
+msgid "Grid page max height of content (in pixels)"
+msgstr "Hauteur maximale du contenu sur la page du réseau (en pixels)"
+
+#: ../../mod/settings.php:885
+msgid "Nobody except yourself"
+msgstr "Personne sauf vous"
+
+#: ../../mod/settings.php:886
+msgid "Only those you specifically allow"
+msgstr "Seulement ceux que vous autorisez spécifiquement"
+
+#: ../../mod/settings.php:887
+msgid "Approved connections"
+msgstr "Contacts approuvés"
+
+#: ../../mod/settings.php:888
+msgid "Any connections"
+msgstr "Tous les contacts"
+
+#: ../../mod/settings.php:889
+msgid "Anybody on this website"
+msgstr "Tous les utilisateurs du hub"
+
+#: ../../mod/settings.php:890
+msgid "Anybody in this network"
+msgstr "Tous les utilisateurs sur ce réseau"
+
+#: ../../mod/settings.php:891
+msgid "Anybody authenticated"
+msgstr "Tous les utilisateurs authentifiés"
+
+#: ../../mod/settings.php:892
+msgid "Anybody on the internet"
+msgstr "Tous les utilisateurs d'Internet"
+
+#: ../../mod/settings.php:967
+msgid "Publish your default profile in the network directory"
+msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
+
+#: ../../mod/settings.php:972
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?"
+
+#: ../../mod/settings.php:981
+msgid "Your channel address is"
+msgstr "L'adresse de votre canal est"
+
+#: ../../mod/settings.php:1023
+msgid "Channel Settings"
+msgstr "Paramètres du canal"
+
+#: ../../mod/settings.php:1030
+msgid "Basic Settings"
+msgstr "Paramètres standard"
+
+#: ../../mod/settings.php:1033
+msgid "Your Timezone:"
+msgstr "Votre fureau horaire&nbsp;:"
+
+#: ../../mod/settings.php:1034
+msgid "Default Post Location:"
+msgstr "Emplacement de publication par défaut&nbsp;:"
+
+#: ../../mod/settings.php:1034
+msgid "Geographical location to display on your posts"
+msgstr "Emplacement géographique à afficher sur vos publications"
+
+#: ../../mod/settings.php:1035
+msgid "Use Browser Location:"
+msgstr "Utiliser la géolocalisation du navigateur&nbsp;:"
+
+#: ../../mod/settings.php:1037
+msgid "Adult Content"
+msgstr "Contenu \"adulte\""
+
+#: ../../mod/settings.php:1037
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é."
+"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/lostpass.php:85 ../../boot.php:1508
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../mod/settings.php:1039
+msgid "Security and Privacy Settings"
+msgstr "Paramètres de sécurité et de confidentialité"
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../mod/settings.php:1042
+msgid "Your permissions are already configured. Click to view/adjust"
+msgstr "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster"
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est"
+#: ../../mod/settings.php:1044
+msgid "Hide my online presence"
+msgstr "Cacher ma présence en ligne"
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez-le ou copiez-le, puis"
+#: ../../mod/settings.php:1044
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../mod/settings.php:1046
+msgid "Simple Privacy Settings:"
+msgstr "Paramètres de confidentialité simplifiés&nbsp;:"
-#: ../../mod/lostpass.php:90
+#: ../../mod/settings.php:1047
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é."
+"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/settings.php:1048
+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 aux permissions type réseau social, avec une confidentialité améliorée)</em>"
+
+#: ../../mod/settings.php:1049
+msgid "Private - <em>default private, never open or public</em>"
+msgstr "Privé - <em>privé par défaut, jamais ouvert ni public</em>"
-#: ../../mod/lostpass.php:107
+#: ../../mod/settings.php:1050
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>"
+
+#: ../../mod/settings.php:1052
+msgid "Allow others to tag your posts"
+msgstr "Autoriser les autres à \"étiqueter\" vos publications"
+
+#: ../../mod/settings.php:1052
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori "
+
+#: ../../mod/settings.php:1054
+msgid "Advanced Privacy Settings"
+msgstr "Paramètres de confidentialité avancés"
+
+#: ../../mod/settings.php:1056
+msgid "Expire other channel content after this many days"
+msgstr "Faire expirer le contenu des autres canaux après n jours"
+
+#: ../../mod/settings.php:1056
#, php-format
-msgid "Your password has changed at %s"
-msgstr "Votre mot de passe de %s a été changé"
+msgid ""
+"0 or blank to use the website limit. The website expires after %d days."
+msgstr "0 ou vide pour utiliser la limite du site. Le délai du site est de %d jours."
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/settings.php:1057
+msgid "Maximum Friend Requests/Day:"
+msgstr "Nombre maximum de demandes de contact par jour&nbsp;:"
-#: ../../mod/lostpass.php:123
+#: ../../mod/settings.php:1057
+msgid "May reduce spam activity"
+msgstr "Contribue à réduire l'impact des indésirables"
+
+#: ../../mod/settings.php:1058
+msgid "Default Post Permissions"
+msgstr "Permissions par défaut des publications"
+
+#: ../../mod/settings.php:1063
+msgid "Channel permissions category:"
+msgstr "Catégorie de permissions du canal&nbsp;:"
+
+#: ../../mod/settings.php:1069
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:"
+
+#: ../../mod/settings.php:1069
+msgid "Useful to reduce spamming"
+msgstr "Utile pour réduire les indésirables"
+
+#: ../../mod/settings.php:1072
+msgid "Notification Settings"
+msgstr "Paramètres de notification"
+
+#: ../../mod/settings.php:1073
+msgid "By default post a status message when:"
+msgstr "Par défaut, publier un statut quand&nbsp;:"
+
+#: ../../mod/settings.php:1074
+msgid "accepting a friend request"
+msgstr "vous acceptez une demande de contact"
+
+#: ../../mod/settings.php:1075
+msgid "joining a forum/community"
+msgstr "vous rejoignez un forum ou une communauté"
+
+#: ../../mod/settings.php:1076
+msgid "making an <em>interesting</em> profile change"
+msgstr "vous faîtes une modification <em>intéressante</em> de votre profil"
+
+#: ../../mod/settings.php:1077
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand&nbsp;:"
+
+#: ../../mod/settings.php:1078
+msgid "You receive a connection request"
+msgstr "Vous recevez une demande de contact"
+
+#: ../../mod/settings.php:1079
+msgid "Your connections are confirmed"
+msgstr "Vos contacts sont confirmés"
+
+#: ../../mod/settings.php:1080
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un a écrit sur votre mur"
+
+#: ../../mod/settings.php:1081
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un a commenté vos publications"
+
+#: ../../mod/settings.php:1082
+msgid "You receive a private message"
+msgstr "Vous recevez un message privé"
+
+#: ../../mod/settings.php:1083
+msgid "You receive a friend suggestion"
+msgstr "Vous recevez une suggestion d'amitié/contact"
+
+#: ../../mod/settings.php:1084
+msgid "You are tagged in a post"
+msgstr "Vous êtes étiqueté dans une publication"
+
+#: ../../mod/settings.php:1085
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous êtes tapoté/encouragé/etc. dans une publication"
+
+#: ../../mod/settings.php:1088
+msgid "Show visual notifications including:"
+msgstr "Afficher des notifications visuelles y compris&nbsp;:"
+
+#: ../../mod/settings.php:1090
+msgid "Unseen grid activity"
+msgstr "Activité du réseau pas encore consultée"
+
+#: ../../mod/settings.php:1091
+msgid "Unseen channel activity"
+msgstr "Activité non vue sur le canal"
+
+#: ../../mod/settings.php:1092
+msgid "Unseen private messages"
+msgstr "Messages privés non lus"
+
+#: ../../mod/settings.php:1092 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1098 ../../mod/settings.php:1099
+msgid "Recommended"
+msgstr "Recommandé"
+
+#: ../../mod/settings.php:1093
+msgid "Upcoming events"
+msgstr "Événements à venir"
+
+#: ../../mod/settings.php:1094
+msgid "Events today"
+msgstr "Événements aujourd'hui"
+
+#: ../../mod/settings.php:1095
+msgid "Upcoming birthdays"
+msgstr "Anniversaires à venir"
+
+#: ../../mod/settings.php:1095
+msgid "Not available in all themes"
+msgstr "Pas disponible dans tous les thèmes"
+
+#: ../../mod/settings.php:1096
+msgid "System (personal) notifications"
+msgstr "Notifications système (personnelles)"
+
+#: ../../mod/settings.php:1097
+msgid "System info messages"
+msgstr "Messages d'info système"
+
+#: ../../mod/settings.php:1098
+msgid "System critical alerts"
+msgstr "Alertes critiques système"
+
+#: ../../mod/settings.php:1099
+msgid "New connections"
+msgstr "Nouveaux contacts"
+
+#: ../../mod/settings.php:1100
+msgid "System Registrations"
+msgstr "Inscriptions système"
+
+#: ../../mod/settings.php:1101
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."
+"Also show new wall posts, private messages and connections under Notices"
+msgstr "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications"
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
-msgstr "Adresse de courriel"
+#: ../../mod/settings.php:1103
+msgid "Notify me of events this many days in advance"
+msgstr "Me prévenir d’événements à venir tant de jours en avance"
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../mod/settings.php:1103
+msgid "Must be greater than 0"
+msgstr "Doit être supérieur à 0"
-#: ../../mod/magic.php:70
-msgid "Hub not found."
-msgstr "Hub introuvable."
+#: ../../mod/settings.php:1105
+msgid "Advanced Account/Page Type Settings"
+msgstr "Paramètres avancés de compte/type de page"
-#: ../../mod/vote.php:97
-msgid "Total votes"
-msgstr "Total des votes"
+#: ../../mod/settings.php:1106
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifie le comportement de ce compte pour des situations particulières"
-#: ../../mod/vote.php:98
-msgid "Average Rating"
-msgstr "Évaluation moyenne"
+#: ../../mod/settings.php:1109
+msgid ""
+"Please enable expert mode (in <a href=\"settings/features\">Settings > "
+"Additional features</a>) to adjust!"
+msgstr "Mode expert requis (<a href=\"settings/features\">Paramètres > Fonctions supplémentaires</a>) pour ajuster&nbsp;!"
-#: ../../mod/mail.php:33
-msgid "Unable to lookup recipient."
-msgstr "Impossible de localiser le destinataire."
+#: ../../mod/settings.php:1110
+msgid "Miscellaneous Settings"
+msgstr "Paramètres divers"
-#: ../../mod/mail.php:41
-msgid "Unable to communicate with requested channel."
-msgstr "Impossible de communiquer avec le canal demandé."
+#: ../../mod/settings.php:1111
+msgid "Default photo upload folder"
+msgstr "Répertoire par défaut pour les photos téléversées"
-#: ../../mod/mail.php:48
-msgid "Cannot verify requested channel."
-msgstr "Impossible de vérifier le canal demandé."
+#: ../../mod/settings.php:1111 ../../mod/settings.php:1112
+msgid "%Y - current year, %m - current month"
+msgstr "%Y - année en cours, %m - mois en cours"
-#: ../../mod/mail.php:74
-msgid "Selected channel has private message restrictions. Send failed."
-msgstr "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué."
+#: ../../mod/settings.php:1112
+msgid "Default file upload folder"
+msgstr "Répertoire par défaut pour les fichiers téléversés"
-#: ../../mod/mail.php:121 ../../mod/message.php:31
-msgid "Messages"
-msgstr "Messages"
+#: ../../mod/settings.php:1114
+msgid "Personal menu to display in your channel pages"
+msgstr "Menu personnel à afficher sur les pages de votre canal"
-#: ../../mod/mail.php:132
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: ../../mod/settings.php:1116
+msgid "Remove this channel."
+msgstr "Supprimer ce canal"
-#: ../../mod/mail.php:149
-msgid "Message recalled."
-msgstr "Message annulé/rappelé."
+#: ../../mod/settings.php:1117
+msgid "Firefox Share $Projectname provider"
+msgstr "Connecteur $Projectname pour Firefox Share"
-#: ../../mod/mail.php:215
-msgid "Send Private Message"
-msgstr "Envoyer un Message Privé"
+#: ../../mod/settings.php:1118
+msgid "Start calendar week on monday"
+msgstr "Commencer la semaine du calendrier le lundi"
-#: ../../mod/mail.php:216 ../../mod/mail.php:333
-msgid "To:"
-msgstr "À&nbsp;:"
+#: ../../mod/setup.php:194
+msgid "$Projectname Server - Setup"
+msgstr "Serveur $Projectname - configuration"
-#: ../../mod/mail.php:221 ../../mod/mail.php:335
-msgid "Subject:"
-msgstr "Sujet&nbsp;:"
+#: ../../mod/setup.php:198
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base de données."
-#: ../../mod/mail.php:232
-msgid "Send"
-msgstr "Envoyer"
+#: ../../mod/setup.php:202
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."
-#: ../../mod/mail.php:259
-msgid "Message not found."
-msgstr "Message introuvable."
+#: ../../mod/setup.php:209
+msgid "Could not create table."
+msgstr "Impossible de créer la table."
-#: ../../mod/mail.php:302 ../../mod/message.php:72
-msgid "Delete message"
-msgstr "Supprimer message"
+#: ../../mod/setup.php:214
+msgid "Your site database has been installed."
+msgstr "La base de données de votre site a été installée."
-#: ../../mod/mail.php:303
-msgid "Recall message"
-msgstr "Rappeler/annuler le message"
+#: ../../mod/setup.php:218
+msgid ""
+"You may need to import the file \"install/schema_xxx.sql\" manually using a "
+"database client."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)."
-#: ../../mod/mail.php:305
-msgid "Message has been recalled."
-msgstr "Le message a été rappelé."
+#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"."
+
+#: ../../mod/setup.php:284
+msgid "System check"
+msgstr "Vérification du système"
-#: ../../mod/mail.php:322
-msgid "Private Conversation"
-msgstr "Conversation privée"
+#: ../../mod/setup.php:289
+msgid "Check again"
+msgstr "Re-vérifier"
-#: ../../mod/mail.php:326
-msgid "Delete conversation"
-msgstr "Supprimer conversation"
+#: ../../mod/setup.php:311
+msgid "Database connection"
+msgstr "Connexion à la base de données"
-#: ../../mod/mail.php:328
+#: ../../mod/setup.php:312
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. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur."
+"In order to install $Projectname we need to know how to connect to your "
+"database."
+msgstr "Pour installer $Projectname, nous avons besoin de savoir comment se connecter à votre base de données."
-#: ../../mod/mail.php:332
-msgid "Send Reply"
-msgstr "Envoyer une réponse"
+#: ../../mod/setup.php:313
+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 administrateur de site si vous avez des questions à propos de ces paramètres."
+
+#: ../../mod/setup.php:314
+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:318
+msgid "Database Server Name"
+msgstr "Nom du serveur de base de données"
+
+#: ../../mod/setup.php:318
+msgid "Default is 127.0.0.1"
+msgstr "Par défaut 127.0.0.1"
+
+#: ../../mod/setup.php:319
+msgid "Database Port"
+msgstr "Port de la base de données"
+
+#: ../../mod/setup.php:319
+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:320
+msgid "Database Login Name"
+msgstr "Identifiant de connexion à la Base de Données"
+
+#: ../../mod/setup.php:321
+msgid "Database Login Password"
+msgstr "Mot de passe de connexion à la Base de Données"
-#: ../../mod/manage.php:136
+#: ../../mod/setup.php:322
+msgid "Database Name"
+msgstr "Nom de la Base de Données"
+
+#: ../../mod/setup.php:323
+msgid "Database Type"
+msgstr "Type de base de données"
+
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
+msgid "Site administrator email address"
+msgstr "Adresse de courriel de l'administrateur du site"
+
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
+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:326 ../../mod/setup.php:367
+msgid "Website URL"
+msgstr "URL du site web"
+
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
+msgid "Please use SSL (https) URL if available."
+msgstr "Veuillez utiliser SSL/TLS (https) si disponible."
+
+#: ../../mod/setup.php:327 ../../mod/setup.php:370
+msgid "Please select a default timezone for your website"
+msgstr "Veuillez choisir un fuseau horaire par défaut pour votre site"
+
+#: ../../mod/setup.php:354
+msgid "Site settings"
+msgstr "Paramètres du site"
+
+#: ../../mod/setup.php:368
+msgid "Enable $Projectname <strong>advanced</strong> features?"
+msgstr ""
+
+#: ../../mod/setup.php:368
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
+msgstr ""
+
+#: ../../mod/setup.php:420
+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:421
+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 synchronisation en arrière-plan via cron."
+
+#: ../../mod/setup.php:425
+msgid "PHP executable path"
+msgstr "Chemin vers l'éxecutable PHP"
+
+#: ../../mod/setup.php:425
+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:430
+msgid "Command line PHP"
+msgstr "PHP en ligne de commande (CLI)"
+
+#: ../../mod/setup.php:439
+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:440
+msgid "This is required for message delivery to work."
+msgstr "Elle est nécessaire pour la distribution des messages."
+
+#: ../../mod/setup.php:443
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: ../../mod/setup.php:461
#, 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 ""
+"Your max allowed total upload size is set to %s. Maximum size of one file to"
+" upload is set to %s. You are allowed to upload up to %d files at once."
+msgstr "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois."
-#: ../../mod/manage.php:144
-msgid "Create a new channel"
-msgstr "Créer un nouveau canal"
+#: ../../mod/setup.php:466
+msgid "You can adjust these settings in the servers php.ini."
+msgstr "Vous pouvez ajuster ces paramètres dans le php.ini du serveur."
-#: ../../mod/manage.php:148
-msgid "Channel Manager"
-msgstr "Gestionnaire du canal"
+#: ../../mod/setup.php:468
+msgid "PHP upload limits"
+msgstr "Limites de téléversement de PHP"
-#: ../../mod/manage.php:149
-msgid "Current Channel"
-msgstr "Canal actif"
+#: ../../mod/setup.php:491
+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/manage.php:151
-msgid "Attach to one of your channels by selecting it."
-msgstr "Branchez-vous à l'un de vos canaux en le selectionnant."
+#: ../../mod/setup.php:492
+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/manage.php:152
-msgid "Default Channel"
-msgstr "Canal par défaut"
+#: ../../mod/setup.php:495
+msgid "Generate encryption keys"
+msgstr "Générer les clefs de chiffrement"
-#: ../../mod/manage.php:153
-msgid "Make Default"
-msgstr "Définir comme défaut"
+#: ../../mod/setup.php:507
+msgid "libCurl PHP module"
+msgstr "module PHP libCurl"
-#: ../../mod/wall_upload.php:34
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../mod/setup.php:508
+msgid "GD graphics PHP module"
+msgstr "module PHP GD graphics"
-#: ../../mod/match.php:16
-msgid "Profile Match"
-msgstr "Profils similaires"
+#: ../../mod/setup.php:509
+msgid "OpenSSL PHP module"
+msgstr "module PHP OpenSSL"
-#: ../../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/setup.php:510
+msgid "mysqli or postgres PHP module"
+msgstr "module PHP postgres ou mysqli"
-#: ../../mod/match.php:61
-msgid "is interested in:"
-msgstr "s'intéresse à&nbsp;:"
+#: ../../mod/setup.php:511
+msgid "mb_string PHP module"
+msgstr "module PHP mb_string"
-#: ../../mod/match.php:69
-msgid "No matches"
-msgstr "Pas de correspondance"
+#: ../../mod/setup.php:512
+msgid "mcrypt PHP module"
+msgstr "module PHP mcrypt"
-#: ../../mod/menu.php:21
-msgid "Menu updated."
-msgstr "Menu mis à jour."
+#: ../../mod/setup.php:513
+msgid "xml PHP module"
+msgstr "module PHP xml"
-#: ../../mod/menu.php:25
-msgid "Unable to update menu."
-msgstr "Impossible de mettre le menu à jour."
+#: ../../mod/setup.php:517 ../../mod/setup.php:519
+msgid "Apache mod_rewrite module"
+msgstr "module Apache mod_rewrite"
-#: ../../mod/menu.php:30
-msgid "Menu created."
-msgstr "Menu créé."
+#: ../../mod/setup.php:517
+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/menu.php:34
-msgid "Unable to create menu."
-msgstr "Impossible de créer le menu."
+#: ../../mod/setup.php:523 ../../mod/setup.php:526
+msgid "proc_open"
+msgstr "proc_open"
-#: ../../mod/menu.php:57
-msgid "Manage Menus"
-msgstr "Gérer les menus"
+#: ../../mod/setup.php:523
+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/menu.php:60
-msgid "Drop"
-msgstr "Supprimer"
+#: ../../mod/setup.php:531
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé."
-#: ../../mod/menu.php:62
-msgid "Create a new menu"
-msgstr "Créer un nouveau menu"
+#: ../../mod/setup.php:535
+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/menu.php:63
-msgid "Delete this menu"
-msgstr "Supprimer ce menu"
+#: ../../mod/setup.php:539
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé."
-#: ../../mod/menu.php:64 ../../mod/menu.php:109
-msgid "Edit menu contents"
-msgstr "Éditer le contenu du menu"
+#: ../../mod/setup.php:543
+msgid ""
+"Error: mysqli or postgres PHP module required but neither are installed."
+msgstr "Erreur&nbsp;: un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé."
-#: ../../mod/menu.php:65
-msgid "Edit this menu"
-msgstr "Éditer le menu"
+#: ../../mod/setup.php:547
+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/menu.php:80
-msgid "New Menu"
-msgstr "Nouveau menu"
+#: ../../mod/setup.php:551
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé."
-#: ../../mod/menu.php:81 ../../mod/menu.php:110
-msgid "Menu name"
-msgstr "Nom du menu"
+#: ../../mod/setup.php:555
+msgid "Error: xml PHP module required for DAV but not installed."
+msgstr "Erreur&nbsp;: le module xml de PHP est requis pour le DAV, mais pas installé."
-#: ../../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/setup.php:573
+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/menu.php:82 ../../mod/menu.php:111
-msgid "Menu title"
-msgstr "Titre du menu"
+#: ../../mod/setup.php:574
+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/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/setup.php:575
+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 $Projectname."
-#: ../../mod/menu.php:83 ../../mod/menu.php:112
-msgid "Allow bookmarks"
-msgstr "Autoriser l'usage de favoris"
+#: ../../mod/setup.php:576
+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/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/setup.php:579
+msgid ".htconfig.php is writable"
+msgstr "Le fichier .htconfig.php est accessible en écriture"
-#: ../../mod/menu.php:98
-msgid "Menu deleted."
-msgstr "Menu supprimé."
+#: ../../mod/setup.php:593
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "$Projectname utilise le moteur de gabarits Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu."
-#: ../../mod/menu.php:100
-msgid "Menu could not be deleted."
-msgstr "Impossible de supprimer le menu."
+#: ../../mod/setup.php:594
+#, php-format
+msgid ""
+"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."
+msgstr "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s à la racine du site $Projectname."
-#: ../../mod/menu.php:106
-msgid "Edit Menu"
-msgstr "Éditer le menu"
+#: ../../mod/setup.php:595 ../../mod/setup.php:616
+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/menu.php:108
-msgid "Add or remove entries to this menu"
-msgstr "Ajouter/supprimer des entrées à ce menu"
+#: ../../mod/setup.php:596
+#, php-format
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"%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 au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient."
-#: ../../mod/message.php:41
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: ../../mod/setup.php:599
+#, php-format
+msgid "%s is writable"
+msgstr "Permission d'écriture sur %s activée"
-#: ../../mod/message.php:56
-msgid "No messages."
-msgstr "Pas de message."
+#: ../../mod/setup.php:615
+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 "$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de $Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire."
-#: ../../mod/message.php:74
-msgid "D, d M Y - g:i A"
-msgstr "D d Y - H:i"
+#: ../../mod/setup.php:619
+msgid "store is writable"
+msgstr "'store' est accessible en écriture"
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
-msgstr "Ajouter un canal"
+#: ../../mod/setup.php:652
+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 (non recommandé)."
-#: ../../mod/new_channel.php:108
+#: ../../mod/setup.php:653
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."
+"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 accepte les connexions https ou s'il permet les connexions 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é&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/setup.php:654
+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 par exemple à des images sur votre propre hub."
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
-msgstr "Choisissez un alias"
+#: ../../mod/setup.php:655
+msgid ""
+"If your certificate is not recognized, 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 votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité."
-#: ../../mod/new_channel.php:113
+#: ../../mod/setup.php:656
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."
+"This can cause usability issues elsewhere (not just on your own site) so we "
+"must insist on this requirement."
+msgstr "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis."
-#: ../../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/setup.php:657
+msgid ""
+"Providers are available that issue free certificates which are browser-"
+"valid."
+msgstr "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide."
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de requête invalide."
+#: ../../mod/setup.php:659
+msgid "SSL certificate validation"
+msgstr "Validation du certificat SSL/TLS"
-#: ../../mod/notifications.php:35
-msgid "Discard"
-msgstr "Annuler"
+#: ../../mod/setup.php:665
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server "
+"configuration.Test: "
+msgstr "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test&nbsp;:"
-#: ../../mod/notifications.php:94 ../../mod/notify.php:53
-msgid "No more system notifications."
-msgstr "Pas d'autre notification du système."
+#: ../../mod/setup.php:668
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne"
-#: ../../mod/notifications.php:98 ../../mod/notify.php:57
-msgid "System Notifications"
-msgstr "Notifications du système"
+#: ../../mod/setup.php:677
+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/oexchange.php:23
-msgid "Unable to find your hub."
-msgstr "Impossible de trouver votre hub."
+#: ../../mod/setup.php:701
+msgid "Errors encountered creating database tables."
+msgstr "Erreurs rencontrées pendant la création de tables de BDD."
-#: ../../mod/oexchange.php:37
-msgid "Post successful."
-msgstr "Contribution effectuée."
+#: ../../mod/setup.php:735
+msgid "<h1>What next</h1>"
+msgstr "<h1>Et maintenant</h1>"
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
-msgstr "signature de la cible invalide"
+#: ../../mod/setup.php:736
+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 du réseau."
-#: ../../mod/openid.php:26
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur du protocole OpenID. Pas d'ID retourné."
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Aucun compte valide trouvé."
-#: ../../mod/appman.php:28 ../../mod/appman.php:44
-msgid "App installed."
-msgstr "Application installée."
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels."
-#: ../../mod/appman.php:37
-msgid "Malformed app."
-msgstr "Erreur de l'application - Malformée."
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membre du site (%s)"
-#: ../../mod/appman.php:80
-msgid "Embed code"
-msgstr "Code intégré"
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Demande de réinitialisation du mot de passe sur %s"
-#: ../../mod/appman.php:86
-msgid "Edit App"
-msgstr "Edition de l'Application"
+#: ../../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/appman.php:86
-msgid "Create App"
-msgstr "Création d'une Application"
+#: ../../mod/lostpass.php:86 ../../boot.php:1526
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
-#: ../../mod/appman.php:91
-msgid "Name of app"
-msgstr "Nom de l'application"
+#: ../../mod/lostpass.php:87
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
-#: ../../mod/appman.php:92
-msgid "Location (URL) of app"
-msgstr "Emplacement (Lien) vers l'application"
+#: ../../mod/lostpass.php:88
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est"
-#: ../../mod/appman.php:94
-msgid "Photo icon URL"
-msgstr "Lien (URL) de l'icône à utiliser pour cette photo"
+#: ../../mod/lostpass.php:89
+msgid "Save or copy your new password - and then"
+msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis"
-#: ../../mod/appman.php:94
-msgid "80 x 80 pixels - optional"
-msgstr "80 x 80 pixels - optionel"
+#: ../../mod/lostpass.php:90
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
-#: ../../mod/appman.php:95
-msgid "Version ID"
-msgstr "Version"
+#: ../../mod/lostpass.php:91
+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>Paramètres</em> une fois connecté."
-#: ../../mod/appman.php:96
-msgid "Price of app"
-msgstr "Prix de l'application"
+#: ../../mod/lostpass.php:108
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Votre mot de passe de %s a été changé"
-#: ../../mod/appman.php:97
-msgid "Location (URL) to purchase app"
-msgstr "Emplacement (LIEN) pour l'achat de l'application"
+#: ../../mod/lostpass.php:123
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié&nbsp;?"
+
+#: ../../mod/lostpass.php:124
+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 aux lettres pour la suite des instructions."
+
+#: ../../mod/lostpass.php:125
+msgid "Email Address"
+msgstr "Adresse de courriel"
-#: ../../mod/poll.php:64
-msgid "Poll"
-msgstr "Sondage"
+#: ../../mod/lostpass.php:126
+msgid "Reset"
+msgstr "Réinitialiser"
-#: ../../mod/poll.php:69
-msgid "View Results"
-msgstr "Voir les Résultats"
+#: ../../mod/sharedwithme.php:94
+msgid "Files: shared with me"
+msgstr "Fichiers&nbsp;: partagés avec moi"
-#: ../../mod/frphotos.php:79
-msgid "Friendica Photo Album Import"
-msgstr "Importer votre Album Photo Friendica"
+#: ../../mod/sharedwithme.php:96
+msgid "NEW"
+msgstr "NOUVEAU"
-#: ../../mod/frphotos.php:80
-msgid "This will import all your Friendica photo albums to this Red channel."
-msgstr "Cette fonction va importer tous vos albums photos Friendica dans ce canal de la Matrice Rouge."
+#: ../../mod/sharedwithme.php:99
+msgid "Remove all files"
+msgstr "Supprimer tous les fichiers"
-#: ../../mod/frphotos.php:81
-msgid "Friendica Server base URL"
-msgstr "URL vers le serveur Friendica"
+#: ../../mod/sharedwithme.php:100
+msgid "Remove this file"
+msgstr "Supprimer ce fichier"
-#: ../../mod/frphotos.php:82
-msgid "Friendica Login Username"
-msgstr "Nom d'utilisateur Friendica"
+#: ../../mod/siteinfo.php:15
+#, php-format
+msgid "Version %s"
+msgstr "Version %s"
-#: ../../mod/frphotos.php:83
-msgid "Friendica Login Password"
-msgstr "Mot de passe Friendica"
+#: ../../mod/siteinfo.php:36
+msgid "Installed plugins/addons/apps:"
+msgstr "Greffons/extensions/applications installés&nbsp;:"
-#: ../../mod/removeaccount.php:30
+#: ../../mod/siteinfo.php:49
+msgid "No installed plugins/addons/apps"
+msgstr "Aucun greffon/extension/application installé"
+
+#: ../../mod/siteinfo.php:62
msgid ""
-"Account removals are not allowed within 48 hours of changing the account "
-"password."
-msgstr "Il est impossible de supprimer un compte à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte."
+"This is a hub of $Projectname - a global cooperative network of "
+"decentralized privacy enhanced websites."
+msgstr "Ceci est un serveur $Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée."
-#: ../../mod/removeaccount.php:57
-msgid "Remove This Account"
-msgstr "Supprimer ce Compte"
+#: ../../mod/siteinfo.php:64
+msgid "Tag: "
+msgstr "Étiquette&nbsp;:"
-#: ../../mod/removeaccount.php:58
+#: ../../mod/siteinfo.php:66
+msgid "Last background fetch: "
+msgstr "Dernière récupération en tâche de fond&nbsp;:"
+
+#: ../../mod/siteinfo.php:68
+msgid "Current load average: "
+msgstr "Charge moyenne actuelle&nbsp;:"
+
+#: ../../mod/siteinfo.php:71
+msgid "Running at web location"
+msgstr "Tourne à l'adresse internet"
+
+#: ../../mod/siteinfo.php:72
msgid ""
-"This will completely remove this account including all its channels from the"
-" network. Once this has been done it is not recoverable."
-msgstr "Cette fonction va complètement supprimer le compte incluant tous ses canaux sur la matrice. Attention, cette action est irréversible."
+"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
+"about $Projectname."
+msgstr "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur $Projectname."
-#: ../../mod/removeaccount.php:60
+#: ../../mod/siteinfo.php:73
+msgid "Bug reports and issues: please visit"
+msgstr "Pour remonter bogues et problèmes, merci de visiter"
+
+#: ../../mod/siteinfo.php:75
+msgid "$projectname issues"
+msgstr "Problèmes $projectname"
+
+#: ../../mod/siteinfo.php:76
msgid ""
-"Remove this account, all its channels and all its channel clones from the "
-"network"
-msgstr "Supprimer ce compte, tous ses canaux et tous les clones sur la matrice."
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
-#: ../../mod/removeaccount.php:60
+#: ../../mod/siteinfo.php:78
+msgid "Site Administrators"
+msgstr "Administrateurs du site"
+
+#: ../../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 de contenu pour 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 ""
-"By default only the instances of the channels located on this hub will be "
-"removed from the network"
-msgstr "Par défault, seuls les instances de canaux situés sur ce hub seront supprimer de la matrice."
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal."
-#: ../../view/theme/apw/php/config.php:202
-#: ../../view/theme/apw/php/config.php:236
-msgid "Schema Default"
-msgstr "Par défault"
+#: ../../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'il contient ces mots (un par ligne)"
-#: ../../view/theme/apw/php/config.php:203
-msgid "Sans-Serif"
-msgstr "Sans-Serif"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Laissez vide pour importer tout le contenu public"
-#: ../../view/theme/apw/php/config.php:204
-msgid "Monospace"
-msgstr "Monospace"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "Source introuvable."
-#: ../../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/sources.php:130
+msgid "Edit Source"
+msgstr "Modifier la source"
-#: ../../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/sources.php:131
+msgid "Delete Source"
+msgstr "Supprimer la source"
-#: ../../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/sources.php:158
+msgid "Source removed"
+msgstr "Source supprimée"
-#: ../../view/theme/apw/php/config.php:262
-msgid "Set font face"
-msgstr "Définir la fonte"
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Impossible de supprimer la source."
-#: ../../view/theme/apw/php/config.php:263
-msgid "Set iconset"
-msgstr "Définir le jeu d'icônes"
+#: ../../mod/subthread.php:114
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit %3$s de %2$s"
-#: ../../view/theme/apw/php/config.php:264
-msgid "Set big shadow size, default 15px 15px 15px"
-msgstr "Définir la taille des grandes ombres, par défaut 15px 15px 15px"
+#: ../../mod/subthread.php:116
+#, php-format
+msgid "%1$s stopped following %2$s's %3$s"
+msgstr "%1$s ne suit plus %3$s de %2$s"
-#: ../../view/theme/apw/php/config.php:265
-msgid "Set small shadow size, default 5px 5px 5px"
-msgstr "Définir la taille des petites ombres, par défaut 5px 5px 5px"
+#: ../../mod/suggest.php:35
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures."
-#: ../../view/theme/apw/php/config.php:266
-msgid "Set shadow color, default #000"
-msgstr "Définir la couleur des ombres, par défaut #000"
+#: ../../mod/tagger.php:96
+#, 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 avec %4$s"
-#: ../../view/theme/apw/php/config.php:267
-msgid "Set radius size, default 5px"
-msgstr "Définir le rayon des arrondis, par défaut 5px"
+#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
+msgid "Tag removed"
+msgstr "Étiquette retirée"
-#: ../../view/theme/apw/php/config.php:268
-msgid "Set line-height for posts and comments"
-msgstr "Définir line-height pour contributions et commentaires"
+#: ../../mod/tagrm.php:119
+msgid "Remove Item Tag"
+msgstr "Retirer une étiquette à l'élément"
-#: ../../view/theme/apw/php/config.php:269
-msgid "Set background image"
-msgstr "Définir l'image d'arrière-plan"
+#: ../../mod/tagrm.php:121
+msgid "Select a tag to remove: "
+msgstr "Étiquette à retirer&nbsp;:"
-#: ../../view/theme/apw/php/config.php:270
-msgid "Set background attachment"
-msgstr "Image de fond - fichier"
+#: ../../mod/thing.php:110
+msgid "Thing updated"
+msgstr "Elément mis à jour"
-#: ../../view/theme/apw/php/config.php:271
-msgid "Set background color"
-msgstr "Définir la couleur d'arrière-plan"
+#: ../../mod/thing.php:162
+msgid "Object store: failed"
+msgstr "Stockage de l'objet&nbsp;: échec"
-#: ../../view/theme/apw/php/config.php:272
-msgid "Set section background image"
-msgstr "Définir l'image d'arrière-plan des sections"
+#: ../../mod/thing.php:166
+msgid "Thing added"
+msgstr "Elément ajouté"
-#: ../../view/theme/apw/php/config.php:273
-msgid "Set section background color"
-msgstr "Définir la couleur d'arrière-plan des sections"
+#: ../../mod/thing.php:192
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../view/theme/apw/php/config.php:274
-msgid "Set color of items - use hex"
-msgstr "Définir la couleur des éléments - en héxadécimal"
+#: ../../mod/thing.php:255
+msgid "Show Thing"
+msgstr "Montrer élément"
-#: ../../view/theme/apw/php/config.php:275
-msgid "Set color of links - use hex"
-msgstr "Définir la couleur des liens - en héxadécimal"
+#: ../../mod/thing.php:262
+msgid "item not found."
+msgstr "élément introuvable."
-#: ../../view/theme/apw/php/config.php:276
-msgid "Set max-width for items. Default 400px"
-msgstr "Définir la largeur maximal des éléments. Par défaut, 400px"
+#: ../../mod/thing.php:295
+msgid "Edit Thing"
+msgstr "Modifier élément"
-#: ../../view/theme/apw/php/config.php:277
-msgid "Set min-width for items. Default 240px"
-msgstr "Définir la largeur minimale des éléments. Par défaut, 240px"
+#: ../../mod/thing.php:297 ../../mod/thing.php:347
+msgid "Select a profile"
+msgstr "Choisissez un profil"
-#: ../../view/theme/apw/php/config.php:278
-msgid "Set the generic content wrapper width. Default 48%"
-msgstr "Définir la largeur du contenu. Par défaut, 48%"
+#: ../../mod/thing.php:301 ../../mod/thing.php:350
+msgid "Post an activity"
+msgstr "Publier une activité"
-#: ../../view/theme/apw/php/config.php:279
-msgid "Set color of fonts - use hex"
-msgstr "Définir la couleur des fontes - en héxadécimal"
+#: ../../mod/thing.php:301 ../../mod/thing.php:350
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Envoie exclusivement aux visiteurs du profil concerné"
-#: ../../view/theme/apw/php/config.php:280
-msgid "Set background-size element"
-msgstr "Définir background-size pour les éléments"
+#: ../../mod/thing.php:303 ../../mod/thing.php:352
+msgid "Name of thing e.g. something"
+msgstr "Nom de l'élément, p.ex. quelque-chose"
-#: ../../view/theme/apw/php/config.php:281
-msgid "Item opacity"
-msgstr "Opacité des éléments"
+#: ../../mod/thing.php:305 ../../mod/thing.php:353
+msgid "URL of thing (optional)"
+msgstr "URL de l'élément (facultatif)"
-#: ../../view/theme/apw/php/config.php:282
-msgid "Display post previews only"
-msgstr "Afficher seulement l'aperçu des contributions"
+#: ../../mod/thing.php:307 ../../mod/thing.php:354
+msgid "URL for photo of thing (optional)"
+msgstr "URL d'une photo de l'élément (facultatif)"
-#: ../../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/thing.php:345
+msgid "Add Thing to your Profile"
+msgstr "Ajouter l'élément à votre profil"
-#: ../../view/theme/apw/php/config.php:284
-msgid "Colour of the navigation bar"
-msgstr "Couleur de la barre de navigation"
+#: ../../mod/uexport.php:51 ../../mod/uexport.php:52
+msgid "Export Channel"
+msgstr "Exporter le canal"
-#: ../../view/theme/apw/php/config.php:285
-msgid "Item float"
-msgstr "Alignement de l'élément"
+#: ../../mod/uexport.php:53
+msgid ""
+"Export your basic channel information to a file. This acts as a backup of "
+"your connections, permissions, profile and basic data, which can be used to "
+"import your data to a new server hub, but does not contain your content."
+msgstr "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus."
+
+#: ../../mod/uexport.php:54
+msgid "Export Content"
+msgstr "Exporter le contenu"
-#: ../../view/theme/apw/php/config.php:286
-msgid "Left offset of the section element"
-msgstr "Décalage gauche de l'élément section"
+#: ../../mod/uexport.php:55
+msgid ""
+"Export your channel information and recent content to a JSON backup that can"
+" be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for"
+" this download to begin."
+msgstr "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence."
+
+#: ../../mod/uexport.php:56
+msgid "Export your posts from a given year."
+msgstr "Exporter vos publications d'une année en particulier"
+
+#: ../../mod/uexport.php:58
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit."
-#: ../../view/theme/apw/php/config.php:287
-msgid "Right offset of the section element"
-msgstr "Décalage droit de l'élément section"
+#: ../../mod/uexport.php:59
+#, php-format
+msgid ""
+"To select all posts for a given year, such as this year, visit <a "
+"href=\"%1$s\">%2$s</a>"
+msgstr "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1$s\">%2$s</a>"
-#: ../../view/theme/apw/php/config.php:288
-msgid "Section width"
-msgstr "Largeur de la section"
+#: ../../mod/uexport.php:60
+#, php-format
+msgid ""
+"To select all posts for a given month, such as January of this year, visit "
+"<a href=\"%1$s\">%2$s</a>"
+msgstr "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1$s\">%2$s</a>"
-#: ../../view/theme/apw/php/config.php:289
-msgid "Left offset of the aside"
-msgstr "Décalage gauche du panneau latéral"
+#: ../../mod/uexport.php:61
+#, php-format
+msgid ""
+"These content files may be imported or restored by visiting <a "
+"href=\"%1$s\">%2$s</a> on any site containing your channel. For best results"
+" please import or restore these in date order (oldest first)."
+msgstr "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1$s\">%2$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord)."
-#: ../../view/theme/apw/php/config.php:290
-msgid "Right offset of the aside element"
-msgstr "Décalage droit du panneau latéral"
+#: ../../mod/viewconnections.php:59
+msgid "No connections."
+msgstr "Aucun contact."
-#: ../../view/theme/blogga/php/config.php:47
-#: ../../view/theme/blogga/view/theme/blog/config.php:47
-msgid "None"
-msgstr "Aucun"
+#: ../../mod/viewconnections.php:72
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
+
+#: ../../mod/viewconnections.php:101
+msgid "View Connections"
+msgstr "Voir les contacts"
+
+#: ../../mod/viewsrc.php:40
+msgid "Source of Item"
+msgstr "Source de l'élément"
+
+#: ../../mod/webpages.php:191
+msgid "Page Title"
+msgstr "Titre de la page"
+
+#: ../../mod/xchan.php:6
+msgid "Xchan Lookup"
+msgstr "Recherche xchan"
+
+#: ../../mod/xchan.php:9
+msgid "Lookup xchan beginning with (or webbie): "
+msgstr "Recherche xchan commençant par (ou adresse \"webbie\")&nbsp;:"
+
+#: ../../mod/cover_photo.php:130 ../../mod/cover_photo.php:177
+msgid "Cover Photos"
+msgstr "Photos de couverture"
+
+#: ../../mod/cover_photo.php:352
+msgid "Upload Cover Photo"
+msgstr "Téléverser une photo de couverture"
-#: ../../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"
+#: ../../view/theme/redbasic/php/config.php:82
+msgid "Focus (Hubzilla default)"
+msgstr "Focus (par défaut pour Hubzilla)"
-#: ../../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 tel qu'elle est affichée sur la page du profil"
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Theme settings"
+msgstr "Paramètres du thème"
-#: ../../view/theme/redbasic/php/config.php:84
-msgid "Light (Hubzilla default)"
-msgstr "Blanc (valeur par défaut)"
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Select scheme"
+msgstr "Définir la palette de couleurs"
#: ../../view/theme/redbasic/php/config.php:104
msgid "Narrow navbar"
@@ -7884,19 +9374,19 @@ msgstr "Couleur de fond de la barre de navigation"
#: ../../view/theme/redbasic/php/config.php:106
msgid "Navigation bar gradient top color"
-msgstr "Gradient de la barre de navigation HAUT"
+msgstr "Dégradé de la barre de navigation - couleur du haut"
#: ../../view/theme/redbasic/php/config.php:107
msgid "Navigation bar gradient bottom color"
-msgstr "Gradient de la barre de navigation BAS"
+msgstr "Dégradé de la barre de navigation - couleur du bas"
#: ../../view/theme/redbasic/php/config.php:108
msgid "Navigation active button gradient top color"
-msgstr "Gradient du bouton de navigation HAUT"
+msgstr "Dégradé du bouton de navigation actif - couleur du haut"
#: ../../view/theme/redbasic/php/config.php:109
msgid "Navigation active button gradient bottom color"
-msgstr "Gradient du bouton de navigation BAS"
+msgstr "Dégradé du bouton de navigation actif - couleur du bas"
#: ../../view/theme/redbasic/php/config.php:110
msgid "Navigation bar border color "
@@ -7904,7 +9394,7 @@ msgstr "Couleur de la bordure de la barre de navigation"
#: ../../view/theme/redbasic/php/config.php:111
msgid "Navigation bar icon color "
-msgstr "Couleur de l'icône de la barre de navigation"
+msgstr "Couleur des icônes de la barre de navigation"
#: ../../view/theme/redbasic/php/config.php:112
msgid "Navigation bar active icon color "
@@ -7954,9 +9444,17 @@ msgstr "Définir la couleur de survol des icônes des éléments"
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:123
+msgid "Example: 14px"
+msgstr "Exemple : 14px"
+
+#: ../../view/theme/redbasic/php/config.php:124
+msgid "Set font-size for posts and comments"
+msgstr "Définir la taille de police pour les contributions et commentaires"
+
#: ../../view/theme/redbasic/php/config.php:125
msgid "Set font-color for posts and comments"
-msgstr "Définir font-colour pour les contributions et commentaires"
+msgstr "Définir la couleur de police pour les contributions et commentaires"
#: ../../view/theme/redbasic/php/config.php:126
msgid "Set radius of corners"
@@ -7967,12 +9465,16 @@ msgid "Set shadow depth of photos"
msgstr "Définir la profondeur de l'ombre des photos"
#: ../../view/theme/redbasic/php/config.php:128
-msgid "Set maximum width of conversation regions"
-msgstr "Définir la largeur maximale des conversations"
+msgid "Set maximum width of content region in pixel"
+msgstr "Définir la largeur maximale de la zone des contenus"
+
+#: ../../view/theme/redbasic/php/config.php:128
+msgid "Leave empty for default width"
+msgstr "Laissez vide pour avoir la largeur par défaut"
#: ../../view/theme/redbasic/php/config.php:129
-msgid "Center conversation regions"
-msgstr "Emplacement de la conversation - Centrer"
+msgid "Left align page content"
+msgstr "Aligner à gauche le contenu de la page"
#: ../../view/theme/redbasic/php/config.php:130
msgid "Set minimum opacity of nav bar - to hide it"
@@ -7986,49 +9488,51 @@ msgstr "Définir la taille de la photo de l'auteur d'une conversation"
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:133
-msgid "Sloppy photo albums"
-msgstr "Albums photo \"en biais\""
-
-#: ../../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\"?"
-
-#: ../../boot.php:1296
+#: ../../boot.php:1329
#, php-format
msgid "Update %s failed. See error logs."
-msgstr "La mise à jour %s a échoué. Merci de consulter les journaux d'erreur."
+msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."
-#: ../../boot.php:1299
+#: ../../boot.php:1332
#, php-format
msgid "Update Error at %s"
msgstr "Erreur de mise à jour sur %s"
-#: ../../boot.php:1473
+#: ../../boot.php:1499
msgid ""
"Create an account to access services and applications within the Hubzilla"
-msgstr "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red"
+msgstr "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla"
-#: ../../boot.php:1501
+#: ../../boot.php:1521
msgid "Password"
msgstr "Mot de passe"
-#: ../../boot.php:1502
+#: ../../boot.php:1522
msgid "Remember me"
msgstr "Se souvenir de moi"
-#: ../../boot.php:1507
+#: ../../boot.php:1525
msgid "Forgot your password?"
-msgstr "Mot de passe oublié?"
-
-#: ../../boot.php:1572
-msgid "permission denied"
-msgstr "permission refusée"
-
-#: ../../boot.php:1573
-msgid "Got Zot?"
-msgstr "Authentification magique a échouée. Êtes-vous toujours connecté à votre HUB?"
+msgstr "Mot de passe oublié&nbsp;?"
-#: ../../boot.php:2003
+#: ../../boot.php:2155
msgid "toggle mobile"
msgstr "(dés)activer mobile"
+
+#: ../../boot.php:2308
+msgid "Website SSL certificate is not valid. Please correct."
+msgstr "Le certificat SSL n'est pas valide. Corrigez le."
+
+#: ../../boot.php:2311
+#, php-format
+msgid "[hubzilla] Website SSL error for %s"
+msgstr "[hubzilla] Erreur SSL pour %s"
+
+#: ../../boot.php:2348
+msgid "Cron/Scheduled tasks not running."
+msgstr "Les taches planifiées ne tournent pas."
+
+#: ../../boot.php:2352
+#, php-format
+msgid "[hubzilla] Cron tasks not running on %s"
+msgstr "[hubzilla] Les tâches planifiées ne tournent pas sur %s"
diff --git a/view/fr/hstrings.php b/view/fr/hstrings.php
index f73230b1d..a7f20adc2 100644
--- a/view/fr/hstrings.php
+++ b/view/fr/hstrings.php
@@ -5,26 +5,76 @@ function string_plural_select_fr($n){
return ($n > 1);;
}}
;
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de base de données '%s'";
-$a->strings["Profile Photos"] = "Photos du profil";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s et %2\$s sont maintenant amis.";
-$a->strings["Sharing notification from Diaspora network"] = "Partage de vos notifications du réseau Diaspora";
-$a->strings["photo"] = "photo";
-$a->strings["status"] = "le statut";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
-$a->strings["Attachments:"] = "Pièces jointes:";
-$a->strings["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["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer.";
+$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné.";
+$a->strings["Connect"] = "Ajouter/Suivre";
+$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["User '%s' deleted"] = "Utilisateur '%s' supprimé";
+$a->strings["No username found in import file."] = "Aucun nom d'utilisateur dans le fichier d'import.";
+$a->strings["Unable to create a unique channel address. Import failed."] = "Impossible de créer une adresse de canal unique. Echec de l'import.";
+$a->strings["Import completed."] = "L'import est terminé.";
+$a->strings["parent"] = "retour";
+$a->strings["Collection"] = "Groupe de contacts";
+$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["Files"] = "Fichiers";
+$a->strings["Total"] = "Total";
+$a->strings["Shared"] = "Partagé";
+$a->strings["Create"] = "Créer";
+$a->strings["Upload"] = "Envoyer";
+$a->strings["Name"] = "Nom";
+$a->strings["Type"] = "Type";
+$a->strings["Size"] = "Taille";
+$a->strings["Last Modified"] = "Modifié le";
+$a->strings["Edit"] = "Modifier";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["You are using %1\$s of your available file storage."] = "Vous utilisez %1\$s de votre espace de stockage.";
+$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Vous utilisez %1\$s sur %2\$s d'espace disponible. (%3\$s&#37;)";
+$a->strings["WARNING:"] = "AVERTISSEMENT&nbsp;:";
+$a->strings["Create new folder"] = "Nouveau dossier";
+$a->strings["Upload file"] = "Téléverser un fichier";
+$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'inscription 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 pour %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["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 disponible avec votre forfait.";
+$a->strings["Visible to your default audience"] = "Visible pour vos contacts seulement";
+$a->strings["Show"] = "Montrer";
+$a->strings["Don't show"] = "Cacher";
+$a->strings["Other networks and post services"] = "Autres réseaux et services de messagerie";
+$a->strings["Permissions"] = "Autorisations";
+$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 %2\$s de %1\$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["Site Admin"] = "Administrateur";
$a->strings["Bookmarks"] = "Favoris";
$a->strings["Address Book"] = "Carnet d'adresses";
$a->strings["Login"] = "Connexion";
-$a->strings["Channel Select"] = "Changer de canal";
-$a->strings["Matrix"] = "Matrice";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Files"] = "Fichiers";
+$a->strings["Channel Manager"] = "Gérer les canaux";
+$a->strings["Grid"] = "Réseau";
+$a->strings["Settings"] = "Paramètres";
$a->strings["Webpages"] = "Pages web";
$a->strings["Channel Home"] = "Mon canal";
$a->strings["Profile"] = "Profil";
@@ -34,7 +84,7 @@ $a->strings["Directory"] = "Annuaire";
$a->strings["Help"] = "Aide";
$a->strings["Mail"] = "Messages";
$a->strings["Mood"] = "Humeur";
-$a->strings["Poke"] = "Cogner";
+$a->strings["Poke"] = "Tapoter";
$a->strings["Chat"] = "Clavardage";
$a->strings["Search"] = "Recherche";
$a->strings["Probe"] = "Sonder";
@@ -44,241 +94,55 @@ $a->strings["Invite"] = "Invitation";
$a->strings["Features"] = "Fonctionalités";
$a->strings["Language"] = "Langue";
$a->strings["Post"] = "Envoyer";
-$a->strings["Profile Photo"] = "Photo du profil";
+$a->strings["Profile Photo"] = "Photo du Profil";
$a->strings["Update"] = "Mise à jour";
$a->strings["Install"] = "Installer";
$a->strings["Purchase"] = "Acheter";
-$a->strings["Edit"] = "Éditer";
-$a->strings["Delete"] = "Supprimer";
-$a->strings["Unknown"] = "Inconnu";
-$a->strings["prev"] = "préc.";
-$a->strings["first"] = "premier";
-$a->strings["last"] = "dernier";
-$a->strings["next"] = "suiv.";
-$a->strings["older"] = "plus ancien";
-$a->strings["newer"] = "plus récent";
-$a->strings["No connections"] = "Sans relations";
-$a->strings["%d Connection"] = array(
- 0 => "%d relation",
- 1 => "%d relations",
-);
-$a->strings["View Connections"] = "Voir les relations";
-$a->strings["Save"] = "Sauver";
-$a->strings["poke"] = "cogner";
-$a->strings["poked"] = "a cogné";
-$a->strings["ping"] = "solliciter";
-$a->strings["pinged"] = "a sollicité";
-$a->strings["prod"] = "encourager";
-$a->strings["prodded"] = "a encouragé";
-$a->strings["slap"] = "gifler";
-$a->strings["slapped"] = "a giflé";
-$a->strings["finger"] = "pointer";
-$a->strings["fingered"] = "a pointé";
-$a->strings["rebuff"] = "rejeter";
-$a->strings["rebuffed"] = "a rejeté";
-$a->strings["happy"] = "heureux";
-$a->strings["sad"] = "triste";
-$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"] = "joyeux";
-$a->strings["alive"] = "énergique";
-$a->strings["annoyed"] = "agacé";
-$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";
-$a->strings["Thursday"] = "Jeudi";
-$a->strings["Friday"] = "Vendredi";
-$a->strings["Saturday"] = "Samedi";
-$a->strings["Sunday"] = "Dimanche";
-$a->strings["January"] = "Janvier";
-$a->strings["February"] = "Février";
-$a->strings["March"] = "Mars";
-$a->strings["April"] = "Avril";
-$a->strings["May"] = "Mai";
-$a->strings["June"] = "Juin";
-$a->strings["July"] = "Juillet";
-$a->strings["August"] = "Août";
-$a->strings["September"] = "Septembre";
-$a->strings["October"] = "Octobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Décembre";
-$a->strings["unknown.???"] = "inconnu.???";
-$a->strings["bytes"] = "octets";
-$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 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;:";
-$a->strings["Select an alternate language"] = "Choisir une langue alternative";
-$a->strings["event"] = "événement";
-$a->strings["comment"] = "commentaire";
-$a->strings["activity"] = "activité";
-$a->strings["Design"] = "Conception";
-$a->strings["Blocks"] = "Blocs";
-$a->strings["Menus"] = "Menus";
-$a->strings["Layouts"] = "Mises-en-page";
-$a->strings["Pages"] = "Pages";
-$a->strings["New Page"] = "Nouvelle page";
-$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 your default audience"] = "Visible pour vos contacts seulement.";
-$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 sur %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["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["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi.";
$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["database storage failed."] = "l'écriture dans la base de données a échoué.";
+$a->strings["Empty path"] = "Chemin vide";
+$a->strings["Logged out."] = "Deconnecté.";
+$a->strings["Failed authentication"] = "Échec de l'authentification";
+$a->strings["Login failed."] = "Échec de la connexion.";
+$a->strings["Attachments:"] = "Pièces jointes&nbsp;:";
$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
+$a->strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname&nbsp;:";
$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["Edit Profile"] = "Éditer le profil";
-$a->strings["Edit your profile"] = "Éditer votre profil";
-$a->strings["Your photos"] = "Vos photos";
-$a->strings["Your files"] = "Vos fichiers";
-$a->strings["Your chatrooms"] = "Vos salons";
-$a->strings["Your bookmarks"] = "Vos favoris";
-$a->strings["Your webpages"] = "Vos pages web";
-$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 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["Channel Locator"] = "Localisation de canaux";
-$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["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["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["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["Manage Your Channels"] = "Gérer vos canaux";
-$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["Image/photo"] = "Image/photo";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["Install %s element: "] = "Installer %s élément";
+$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site.";
+$a->strings["webpage"] = "pages web";
+$a->strings["layout"] = "mise en page";
+$a->strings["block"] = "bloquer";
+$a->strings["menu"] = "menu";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
+$a->strings["post"] = "publication";
+$a->strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs";
+$a->strings["$1 spoiler"] = "dévoile&nbsp;: $1";
+$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
$a->strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
-$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["Missing room name"] = "Il manque le nom du salon";
+$a->strings["Duplicate room name"] = "Un salon avec 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["Default"] = "Défaut";
-$a->strings["Frequently"] = "Constamment";
-$a->strings["Hourly"] = "Chaque heure";
-$a->strings["Twice daily"] = "Deux fois par jour";
-$a->strings["Daily"] = "Chaque jour";
-$a->strings["Weekly"] = "Chaque semaine";
-$a->strings["Monthly"] = "Chaque mois";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "Courriel";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "Linkedin";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
$a->strings["%d invitation available"] = array(
0 => "%d invitation disponible",
1 => "%d invitations disponibles",
@@ -287,123 +151,48 @@ $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["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, 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["Advanced example: name=fred and country=iceland"] = "Exemple avancé&nbsp;: name=fred and country=iceland";
$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",
+ 0 => "%d contact en commun",
+ 1 => "%d contacts 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";
-$a->strings["day"] = "jour";
-$a->strings["never"] = "jamais";
-$a->strings["less than a second ago"] = "à l'instant";
-$a->strings["years"] = "années";
-$a->strings["months"] = "mois";
-$a->strings["week"] = "semaine";
-$a->strings["weeks"] = "semaines";
-$a->strings["days"] = "jours";
-$a->strings["hour"] = "heure";
-$a->strings["hours"] = "heures";
-$a->strings["minute"] = "minute";
-$a->strings["minutes"] = "minutes";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings["%1\$d %2\$s ago"] = "il y a %1\$d %2\$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["Hubzilla Notification"] = "Notification Matrice Rouge";
-$a->strings["hubzilla"] = "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"] = "[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 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, %2\$s vous a cogné 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"] = "[Red: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"] = "[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["[Red:Notify]"] = "[Red:Notification]";
-$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["%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["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["photo"] = "photo";
+$a->strings["event"] = "événement";
$a->strings["channel"] = "canal";
-$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 ajoute %2\$s à ses relations";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s a cogné %2\$s";
+$a->strings["status"] = "état";
+$a->strings["comment"] = "commentaire";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
+$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s";
+$a->strings["poked"] = "a tapoté";
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s";
+$a->strings["__ctx:title__ Likes"] = "Aime";
+$a->strings["__ctx:title__ Dislikes"] = "N'aime pas";
+$a->strings["__ctx:title__ Agree"] = "D'accord";
+$a->strings["__ctx:title__ Disagree"] = "Pas d'accord";
+$a->strings["__ctx:title__ Abstain"] = "Abstention";
+$a->strings["__ctx:title__ Attending"] = "Participations";
+$a->strings["__ctx:title__ Not attending"] = "Non-participations";
+$a->strings["__ctx:title__ Might attend"] = "Participation possible";
$a->strings["Select"] = "Sélectionner";
$a->strings["Private Message"] = "Message Privé";
-$a->strings["Message is verified"] = "Message vérifié";
+$a->strings["Message signature validated"] = "Signature du message validée";
+$a->strings["Message signature incorrect"] = "Signature du message incorrecte";
$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
$a->strings["Categories:"] = "Catégories&nbsp;:";
$a->strings["Filed under:"] = "Classé sous&nbsp;:";
-$a->strings[" from %s"] = "de %s";
-$a->strings["last edited: %s"] = "dernière édition&nbsp;: %s";
+$a->strings["from %s"] = "de %s";
+$a->strings["last edited: %s"] = "dernière modification&nbsp;: %s";
$a->strings["Expires: %s"] = "Expire&nbsp;: %s";
$a->strings["View in context"] = "Voir en contexte";
$a->strings["Please wait"] = "Merci de patienter";
@@ -411,44 +200,51 @@ $a->strings["remove"] = "supprimer";
$a->strings["Loading..."] = "Chargement...";
$a->strings["Delete Selected Items"] = "Supprimer les éléments selectionnés";
$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é sur la matrice";
-$a->strings["Edit Contact"] = "Éditer contact";
-$a->strings["Send PM"] = "Envoyer un Message Privé";
+$a->strings["Follow Thread"] = "Suivre la discussion";
+$a->strings["Unfollow Thread"] = "Ne plus suivre la discussion";
+$a->strings["View Profile"] = "Voir le profil";
+$a->strings["Activity/Posts"] = "Activité/Publications";
+$a->strings["Edit Connection"] = "Modifier le contact";
+$a->strings["Message"] = "Message";
+$a->strings["Ratings"] = "Evaluations";
$a->strings["%s likes this."] = "%s aime ça.";
-$a->strings["%s doesn't like this."] = "%s déteste ça.";
+$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
- 0 => "",
- 1 => "<span %1\$s>%2\$d personne(s)</span> aime(nt) ça.",
+ 0 => "<span %1\$s>%2\$d personne</span> aime ceci.",
+ 1 => "<span %1\$s>%2\$d personnes</span> aiment ceci.",
);
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
- 0 => "",
- 1 => "<span %1\$s>%2\$d personne(s)</span> déteste(nt) ça.",
+ 0 => "<span %1\$s>%2\$d personne</span> n'aime pas ça.",
+ 1 => "<span %1\$s>%2\$d personnes</span> n'aiment pas ça.",
);
$a->strings["and"] = "et";
$a->strings[", and %d other people"] = array(
- 0 => "",
- 1 => ", et %d autre(s) personne(s)",
+ 0 => ", et %d autre personne",
+ 1 => ", et %d autres personnes",
);
$a->strings["%s like this."] = "%s aime ça.";
-$a->strings["%s don't like this."] = "%s déteste ça.";
+$a->strings["%s don't like this."] = "%s n'aime pas ça.";
$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
$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&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 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["Where are you right now?"] = "Où êtes-vous en ce moment&nbsp;?";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM";
+$a->strings["Preview"] = "Aperçu";
$a->strings["Share"] = "Partager";
-$a->strings["Page link title"] = "Titre du lien vers la page";
+$a->strings["Page link name"] = "Nom du lien vers la page";
$a->strings["Post as"] = "Publier en tant que";
+$a->strings["Bold"] = "Gras";
+$a->strings["Italic"] = "Italique";
+$a->strings["Underline"] = "Souligné";
+$a->strings["Quote"] = "Citation";
+$a->strings["Code"] = "Code";
$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["Attach file"] = "Joindre un fichier";
+$a->strings["attach file"] = "joindre 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";
@@ -457,29 +253,31 @@ $a->strings["Insert audio link"] = "Insérer un lien audio";
$a->strings["audio link"] = "lien audio";
$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";
-$a->strings["permissions"] = "permissions";
+$a->strings["Toggle voting"] = "(Dés)activer le vote";
+$a->strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur";
+$a->strings["clear location"] = "supprimer l'emplacement géographique";
+$a->strings["Title (optional)"] = "Titre (facultatif)";
+$a->strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)";
+$a->strings["Permission settings"] = "Gérer les autorisations";
+$a->strings["permissions"] = "autorisations";
$a->strings["Public post"] = "Contenu public";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: robert@exemple.com, marie@exemple.com";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: julien@exemple.com, marie@exemple.com";
$a->strings["Set expiration date"] = "Définir la date d'expiration";
+$a->strings["Set publish date"] = "Définir la date de publication";
$a->strings["Encrypt text"] = "Chiffrer le texte";
-$a->strings["OK"] = "Ok";
+$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annuler";
$a->strings["Discover"] = "À découvrir";
$a->strings["Imported public streams"] = "Flux publics importés";
-$a->strings["Commented Order"] = "Commentaires Récents";
+$a->strings["Commented Order"] = "Par date de commentaire";
$a->strings["Sort by Comment Date"] = "Trier par date de dernier commentaire";
-$a->strings["Posted Order"] = "Publications Récentes";
+$a->strings["Posted Order"] = "Par date de publication";
$a->strings["Sort by Post Date"] = "Trier par date de publication";
-$a->strings["Personal"] = "Personnel";
+$a->strings["Personal"] = "Me concernant";
$a->strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre";
$a->strings["New"] = "Nouveautés";
$a->strings["Activity Stream - by date"] = "Flux d'activité - par date";
-$a->strings["Starred"] = "Mis en avant";
+$a->strings["Starred"] = "Mis en avant (étoiles)";
$a->strings["Favourite Posts"] = "Publications préférées";
$a->strings["Spam"] = "Indésirable";
$a->strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables";
@@ -487,128 +285,546 @@ $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 de clavardage";
$a->strings["Saved Bookmarks"] = "Favoris sauvegardés";
$a->strings["Manage Webpages"] = "Gérer les pages web";
+$a->strings["View all"] = "Voir tout";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "Aime",
+ 1 => "Aime",
+);
+$a->strings["__ctx:noun__ Dislike"] = array(
+ 0 => "N'aime pas",
+ 1 => "N'aime pas",
+);
+$a->strings["__ctx:noun__ Attending"] = array(
+ 0 => "Participe",
+ 1 => "Participent",
+);
+$a->strings["__ctx:noun__ Not Attending"] = array(
+ 0 => "Ne participe pas",
+ 1 => "Ne participent pas",
+);
+$a->strings["__ctx:noun__ Undecided"] = array(
+ 0 => "Indécis(e)",
+ 1 => "Indécis(es)",
+);
+$a->strings["__ctx:noun__ Agree"] = array(
+ 0 => "D'accord",
+ 1 => "D'accord",
+);
+$a->strings["__ctx:noun__ Disagree"] = array(
+ 0 => "Pas d'accord",
+ 1 => "Pas d'accord",
+);
+$a->strings["__ctx:noun__ Abstain"] = array(
+ 0 => "S'abstient",
+ 1 => "S'abstiennent",
+);
+$a->strings["Miscellaneous"] = "Divers";
+$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ";
+$a->strings["Required"] = "Requis";
+$a->strings["never"] = "jamais";
+$a->strings["less than a second ago"] = "à l'instant";
+$a->strings["year"] = "année";
+$a->strings["years"] = "années";
+$a->strings["month"] = "mois";
+$a->strings["months"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["weeks"] = "semaines";
+$a->strings["day"] = "jour";
+$a->strings["days"] = "jours";
+$a->strings["hour"] = "heure";
+$a->strings["hours"] = "heures";
+$a->strings["minute"] = "minute";
+$a->strings["minutes"] = "minutes";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s";
+$a->strings["%1\$s's birthday"] = "Anniversaire de %1\$s";
+$a->strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'";
+$a->strings["Directory Options"] = "Options d'annuaire";
+$a->strings["Safe Mode"] = "Mode sûr";
+$a->strings["No"] = "Non";
+$a->strings["Yes"] = "Oui";
+$a->strings["Public Forums Only"] = "Les forums publics uniquement";
+$a->strings["This Website Only"] = "Ce site uniquement";
+$a->strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier.";
+$a->strings["Not specified"] = "Non spécifié";
+$a->strings["Needs Action"] = "Besoin d'une action";
+$a->strings["Completed"] = "Terminé";
+$a->strings["In Process"] = "En cours";
+$a->strings["Cancelled"] = "Annulé";
+$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["Protocol disabled."] = "Protocole désactivé.";
+$a->strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué.";
+$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 créer un autre groupe avec un nom différent.";
+$a->strings["Add new connections to this privacy group"] = "Ajouter de nouveaux contacts à ce groupe d'accès";
+$a->strings["All Channels"] = "Tous les canaux";
+$a->strings["edit"] = "modifier";
+$a->strings["Privacy Groups"] = "Groupes d'accès";
+$a->strings["Edit group"] = "Modifier le groupe";
+$a->strings["Add privacy group"] = "Ajouter un groupe d'accès";
+$a->strings["Channels not in any privacy group"] = "Canaux n'étant dans aucun groupe d'accès";
+$a->strings["add"] = "ajouter";
+$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom";
+$a->strings["Channel clone failed. Import failed."] = "Echec du clonage du canal. Echec de l'impot.";
+$a->strings["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import.";
+$a->strings["Delete this item?"] = "Supprimer cet élément?";
+$a->strings["Comment"] = "Commenter";
+$a->strings["[+] show all"] = "[+] voir tous";
+$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["Nothing new here"] = "Aucun nouveau contenu trouvé";
+$a->strings["Rate This Channel (this is public)"] = "Evaluer ce canal (publiquement)";
+$a->strings["Rating"] = "Evaluation";
+$a->strings["Describe (optional)"] = "Description (facultative)";
+$a->strings["Submit"] = "Envoyer";
+$a->strings["Please enter a link URL"] = "Merci d'insérer une URL";
+$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Changements en attente. Voulez-vous vraiment quitter cette page?";
+$a->strings["Location"] = "Emplacement";
+$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["January"] = "Janvier";
+$a->strings["February"] = "Février";
+$a->strings["March"] = "Mars";
+$a->strings["April"] = "Avril";
+$a->strings["__ctx:long__ May"] = "Mai";
+$a->strings["June"] = "Juin";
+$a->strings["July"] = "Juillet";
+$a->strings["August"] = "Août";
+$a->strings["September"] = "Septembre";
+$a->strings["October"] = "Octobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Décembre";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Fev";
+$a->strings["Mar"] = "Mar";
+$a->strings["Apr"] = "Avr";
+$a->strings["__ctx:short__ May"] = "Mai";
+$a->strings["Jun"] = "Jun";
+$a->strings["Jul"] = "Jul";
+$a->strings["Aug"] = "Aou";
+$a->strings["Sep"] = "Sep";
+$a->strings["Oct"] = "Oct";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dec";
+$a->strings["Sunday"] = "Dimanche";
+$a->strings["Monday"] = "Lundi";
+$a->strings["Tuesday"] = "Mardi";
+$a->strings["Wednesday"] = "Mercredi";
+$a->strings["Thursday"] = "Jeudi";
+$a->strings["Friday"] = "Vendredi";
+$a->strings["Saturday"] = "Samedi";
+$a->strings["Sun"] = "Dim";
+$a->strings["Mon"] = "Lun";
+$a->strings["Tue"] = "Mar";
+$a->strings["Wed"] = "Mer";
+$a->strings["Thu"] = "Jeu";
+$a->strings["Fri"] = "Ven";
+$a->strings["Sat"] = "Sam";
+$a->strings["__ctx:calendar__ today"] = "aujourd'hui";
+$a->strings["__ctx:calendar__ month"] = "mois";
+$a->strings["__ctx:calendar__ week"] = "semaine";
+$a->strings["__ctx:calendar__ day"] = "jour";
+$a->strings["__ctx:calendar__ All day"] = "Toute la journée";
+$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["Logout"] = "Déconnexion";
+$a->strings["End this session"] = "Mettre fin à la session";
+$a->strings["Home"] = "Mon canal";
+$a->strings["Your posts and conversations"] = "Vos publications et conversations";
+$a->strings["Your profile page"] = "Votre profil";
+$a->strings["Edit Profiles"] = "Modifier les profils";
+$a->strings["Manage/Edit profiles"] = "Gérer/modifier les profils";
+$a->strings["Edit Profile"] = "Éditeur de profil";
+$a->strings["Edit your profile"] = "Modifier votre profil";
+$a->strings["Your photos"] = "Vos photos";
+$a->strings["Your files"] = "Vos fichiers";
+$a->strings["Your chatrooms"] = "Vos salons";
+$a->strings["Your bookmarks"] = "Vos favoris";
+$a->strings["Your webpages"] = "Vos pages web";
+$a->strings["Sign in"] = "Connexion";
+$a->strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter";
+$a->strings["Remote authentication"] = "Authentification distante";
+$a->strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal";
+$a->strings["Home Page"] = "Page d'accueil";
+$a->strings["Register"] = "S'inscrire";
+$a->strings["Create an account"] = "Créer un compte";
+$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 @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu";
+$a->strings["Channel Directory"] = "Annuaire des canaux";
+$a->strings["Your grid"] = "Votre réseau";
+$a->strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues";
+$a->strings["Channel home"] = "Mon canal";
+$a->strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues";
+$a->strings["Connections"] = "Contacts";
+$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["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["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["Manage Your Channels"] = "Gérer vos canaux";
+$a->strings["Account/Channel Settings"] = "Paramètres du Compte/Canal";
+$a->strings["Admin"] = "Administrateur";
+$a->strings["Site Setup and Configuration"] = "Configuration du site";
+$a->strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu";
+$a->strings["Please wait..."] = "Merci de patienter...";
+$a->strings["view full size"] = "voir en taille réelle";
+$a->strings["\$Projectname Notification"] = "Notification \$Projectname";
+$a->strings["\$projectname"] = "\$projectname";
+$a->strings["Thank You,"] = "Merci,";
+$a->strings["%s Administrator"] = "l'administrateur de %s";
+$a->strings["No Subject"] = "Pas d'objet";
+$a->strings["created a new post"] = "a publié un nouveau message";
+$a->strings["commented on %s's post"] = "a commenté la publication de %s";
+$a->strings["New Page"] = "Nouvelle page";
+$a->strings["View"] = "Voir";
+$a->strings["Actions"] = "Actions";
+$a->strings["Page Link"] = "Lien vers la page";
+$a->strings["Title"] = "Titre";
+$a->strings["Created"] = "Créé(e)";
+$a->strings["Edited"] = "Modifié(e)";
+$a->strings["Profile Photos"] = "Photos du profil";
+$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["a new photo"] = "une nouvelle photo";
+$a->strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s";
+$a->strings["Upload New Photos"] = "Ajouter des photos";
+$a->strings["Male"] = "Homme";
+$a->strings["Female"] = "Femme";
+$a->strings["Currently Male"] = "Actuellement homme";
+$a->strings["Currently Female"] = "Actuellement femme";
+$a->strings["Mostly Male"] = "Surtout homme";
+$a->strings["Mostly Female"] = "Surtout femme";
+$a->strings["Transgender"] = "Transgenre";
+$a->strings["Intersex"] = "Intersexuel";
+$a->strings["Transsexual"] = "Transsexuel";
+$a->strings["Hermaphrodite"] = "Hermaphrodite";
+$a->strings["Neuter"] = "Neutre";
+$a->strings["Non-specific"] = "Non spécifique";
+$a->strings["Other"] = "Autre";
+$a->strings["Undecided"] = "Indécis";
+$a->strings["Males"] = "Hommes";
+$a->strings["Females"] = "Femmes";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbienne";
+$a->strings["No Preference"] = "Sans préférence";
+$a->strings["Bisexual"] = "Bisexuel";
+$a->strings["Autosexual"] = "Autosexuel";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Vierge";
+$a->strings["Deviant"] = "Déviant";
+$a->strings["Fetish"] = "Fétichiste";
+$a->strings["Oodles"] = "Une floppée";
+$a->strings["Nonsexual"] = "Non-sexuel";
+$a->strings["Single"] = "Célibataire";
+$a->strings["Lonely"] = "Solitaire";
+$a->strings["Available"] = "Disponible";
+$a->strings["Unavailable"] = "Indisponible";
+$a->strings["Has crush"] = "A un béguin";
+$a->strings["Infatuated"] = "Amoureux transi";
+$a->strings["Dating"] = "Sort avec quelqu'un";
+$a->strings["Unfaithful"] = "Infidèle";
+$a->strings["Sex Addict"] = "Accro au sexe";
+$a->strings["Friends"] = "Amis";
+$a->strings["Friends/Benefits"] = "Amis avec bénéfices";
+$a->strings["Casual"] = "Sans engagement";
+$a->strings["Engaged"] = "Fiancé(e)";
+$a->strings["Married"] = "Marié(e)";
+$a->strings["Imaginarily married"] = "Marié(e) dans ses rêves";
+$a->strings["Partners"] = "Partenaires";
+$a->strings["Cohabiting"] = "En cohabitation";
+$a->strings["Common law"] = "Conjoints de fait";
+$a->strings["Happy"] = "Heureux";
+$a->strings["Not looking"] = "Pas en recherche";
+$a->strings["Swinger"] = "Echangiste";
+$a->strings["Betrayed"] = "Trahi(e)";
+$a->strings["Separated"] = "Séparé(e)";
+$a->strings["Unstable"] = "Instable";
+$a->strings["Divorced"] = "Divorcé(e)";
+$a->strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves";
+$a->strings["Widowed"] = "Veuf/veuve";
+$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["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["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"] = "aiment";
+$a->strings["likes"] = "aime";
+$a->strings["dislike"] = "n'aiment pas";
+$a->strings["dislikes"] = "n'aime pas";
+$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["invalid target signature"] = "signature de la cible invalide";
+$a->strings["Frequently"] = "Fréquemment";
+$a->strings["Hourly"] = "Toutes les heures";
+$a->strings["Twice daily"] = "Deux fois par jour";
+$a->strings["Daily"] = "Chaque jour";
+$a->strings["Weekly"] = "Chaque semaine";
+$a->strings["Monthly"] = "Chaque mois";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "Courriel";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot"] = "Zot";
+$a->strings["LinkedIn"] = "Linkedin";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["prev"] = "préc.";
+$a->strings["first"] = "premier";
+$a->strings["last"] = "dernier";
+$a->strings["next"] = "Suivant";
+$a->strings["older"] = "plus ancien";
+$a->strings["newer"] = "plus récent";
+$a->strings["No connections"] = "Pas de relations.";
+$a->strings["View all %s connections"] = "Voir les %s contacts";
+$a->strings["Save"] = "Enregistrer";
+$a->strings["poke"] = "tapoter";
+$a->strings["ping"] = "ping";
+$a->strings["pinged"] = "pingé";
+$a->strings["prod"] = "encourager";
+$a->strings["prodded"] = "encouragé";
+$a->strings["slap"] = "giffler";
+$a->strings["slapped"] = "gifflé(e)";
+$a->strings["finger"] = "pointer";
+$a->strings["fingered"] = "pointé";
+$a->strings["rebuff"] = "rejetter";
+$a->strings["rebuffed"] = "rejeté";
+$a->strings["happy"] = "heureux";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "mélancolique";
+$a->strings["tired"] = "fatigué";
+$a->strings["perky"] = "impertinent";
+$a->strings["angry"] = "en colère";
+$a->strings["stupefied"] = "stupéfait";
+$a->strings["puzzled"] = "perplexe";
+$a->strings["interested"] = "intéressé";
+$a->strings["bitter"] = "amer";
+$a->strings["cheerful"] = "plein d'entrain";
+$a->strings["alive"] = "vivant";
+$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["May"] = "Mai";
+$a->strings["Unknown Attachment"] = "Pièce jointe inconnue";
+$a->strings["unknown"] = "Inconnu";
+$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 la Source";
+$a->strings["default"] = "défaut";
+$a->strings["Page layout"] = "Mise en page";
+$a->strings["You can create your own with the layouts tool"] = "Créez les vôtres avec les outils de mise en page";
+$a->strings["Page content type"] = "Type de contenu de la page";
+$a->strings["Select an alternate language"] = "Choisir une langue alternative";
+$a->strings["activity"] = "activité";
+$a->strings["Design Tools"] = "Outils de conception";
+$a->strings["Blocks"] = "Blocs";
+$a->strings["Menus"] = "Menus";
+$a->strings["Layouts"] = "Mises-en-page";
+$a->strings["Pages"] = "Pages";
+$a->strings["Permission denied"] = "Accès refusé";
+$a->strings["(Unknown)"] = "(Inconnu)";
+$a->strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet.";
+$a->strings["Visible to you only."] = "Visible pour vous seulement.";
+$a->strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau.";
+$a->strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés.";
+$a->strings["Visible to anybody on %s."] = "Visible pour tous sur %s.";
+$a->strings["Visible to all connections."] = "Visible pour tous les contacts.";
+$a->strings["Visible to approved connections."] = "Visible aux contacts approuvés.";
+$a->strings["Visible to specific connections."] = "Visible pour certains contacts.";
+$a->strings["Item not found."] = "Élément introuvable";
+$a->strings["Privacy group not found."] = "Groupe d'accès introuvable.";
+$a->strings["Privacy group is empty."] = "Groupe d'accès vide.";
+$a->strings["Privacy group: %s"] = "Groupe d'accès&nbsp;: %s";
+$a->strings["Connection: %s"] = "Contact&nbsp;: %s";
+$a->strings["Connection not found."] = "Contact non trouvé.";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Nouveau courriel reçu à %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["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] 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["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %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["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %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["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s vous a tapoté";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s vous a tapoté 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["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %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["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Nouvelle présentation";
+$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 contact 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 contact[/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 contact.";
+$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Nouvel(le) ami(e) suggéré(e)";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion d'ami(e) 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 d'ami(e)[/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["[Hubzilla:Notify]"] = "[Hubzilla:Notify]";
$a->strings["General Features"] = "Fonctionnalités générales";
-$a->strings["Content Expiration"] = "Expiration de contenu";
+$a->strings["Content Expiration"] = "Expiration du 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["Advanced Profiles"] = "Profils Avancés";
-$a->strings["Additional profile sections and selections"] = "Sections additionnelles du profil";
+$a->strings["Additional profile sections and selections"] = "Sections et sélections supplémentaires du profil";
$a->strings["Profile Import/Export"] = "Importer/Exporter le profil";
-$a->strings["Save and load profile details across sites/channels"] = "Distribuer les détails du profil sur la matrice.";
+$a->strings["Save and load profile details across sites/channels"] = "Sauvegarder et charger les détails d'un profil entre sites/canaux";
$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["Hide Rating"] = "Masquer l'évaluation";
+$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs.";
$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["Enables a tool to store notes and reminders (note: not encrypted)"] = "Active un outil pour stocker des notes et des rappels (note&nbsp;:non chiffré)";
+$a->strings["Navigation Channel Select"] = "Sélection du canal par la navigation";
+$a->strings["Change channels directly from within the navigation dropdown menu"] = "Changez de canal directement depuis le menu de navigation déroulant";
+$a->strings["Photo Location"] = "Site de prise de vue";
+$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte.";
$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["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux contacts 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["Allow use of \"Markdown\" to format posts"] = "Autoriser l'utilisation de \"Markdown\" pour mettre en forme les messages";
+$a->strings["Large Photos"] = "Grandes photos";
+$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px).";
+$a->strings["Channel Sources"] = "Sources du canal";
+$a->strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif";
$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["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["Enable Voting Tools"] = "Activer les outils de vote";
+$a->strings["Provide a class of post which others can vote on"] = "Fournit un type de publication sur lequel les utilisateurs peuvent voter";
+$a->strings["Delayed Posting"] = "Publication plus tard";
+$a->strings["Allow posts to be published at a later date"] = "Permettre de publier des messages à une date programmée";
+$a->strings["Suppress Duplicate Posts/Comments"] = "Supprimer les publications/commentaires en doublon";
+$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle";
$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 management and selection of privacy groups"] = "Active la gestion et la sélection des groupes d'accès";
+$a->strings["Saved Searches"] = "Recherches sauvegardées";
+$a->strings["Save search terms for re-use"] = "Sauvegarder des termes de recherche pour utilisation ultérieure";
+$a->strings["Network Personal Tab"] = "Onglet \"Me concernant\"";
$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["Enable tab to display all new Network activity"] = "Activer un onglet présentant toute l'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["Connection Filtering"] = "Filtrage des contacts";
+$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs";
$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["Community Tagging"] = "Etiquetage communautaire";
$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["Dislike Posts"] = "\"Ne pas aimer\" les publications";
+$a->strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires";
+$a->strings["Star Posts"] = "Pouvoir 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["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["Permission denied"] = "Accès refusé";
-$a->strings["(Unknown)"] = "(Inconnu)";
-$a->strings["Visible to anybody on the internet."] = "Visible à tout le monde sur internet.";
-$a->strings["Visible to you only."] = "Visible pour vous seulement.";
-$a->strings["Visible to anybody in this network."] = "Visible sur toute la Matrice.";
-$a->strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés.";
-$a->strings["Visible to anybody on %s."] = "Visible pour tous sur %s.";
-$a->strings["Visible to all connections."] = "Visible pour tous les contacts.";
-$a->strings["Visible to approved connections."] = "Visible aux contacts approuvés.";
-$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["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["Reserved nickname. Please choose another."] = "Surnom 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["Requested profile is not available."] = "Profil demandé inaccessible.";
-$a->strings["Connect"] = "Ajouter";
+$a->strings["Requested channel is not available."] = "Canal demandé non disponible.";
+$a->strings["Requested profile is not available."] = "Profil demandé non disponible.";
$a->strings["Change profile photo"] = "Changer la photo du profil";
$a->strings["Profiles"] = "Profils";
-$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
+$a->strings["Manage/edit profiles"] = "Gérer/modifier les profils";
$a->strings["Create New Profile"] = "Créer un nouveau profil";
$a->strings["Profile Image"] = "Image du profil";
$a->strings["visible to everybody"] = "visible pour tous";
-$a->strings["Edit visibility"] = "Éditer la visibilité";
+$a->strings["Edit visibility"] = "Changer la visibilité";
$a->strings["Gender:"] = "Sexe&nbsp;:";
$a->strings["Status:"] = "État&nbsp;:";
-$a->strings["Homepage:"] = "Site web&nbsp;:";
+$a->strings["Homepage:"] = "Site Internet&nbsp;:";
$a->strings["Online Now"] = "Connecté";
-$a->strings["g A l F d"] = "H:i l d F";
+$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[aujourd'hui]";
$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
@@ -618,7 +834,7 @@ $a->strings["Event Reminders"] = "Rappels d'événements";
$a->strings["Events this week:"] = "Événements cette semaine&nbsp;:";
$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, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Date de naissance&nbsp;:";
$a->strings["Age:"] = "Age&nbsp;:";
@@ -637,428 +853,950 @@ $a->strings["My other channels:"] = "Mes autres canaux&nbsp;:";
$a->strings["Musical interests:"] = "Goûts musicaux&nbsp;:";
$a->strings["Books, literature:"] = "Lectures, goûts littéraires&nbsp;:";
$a->strings["Television:"] = "Télévision&nbsp;:";
-$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nbsp;:";
+$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:";
$a->strings["Love/Romance:"] = "Vie sentimentale/amoureuse&nbsp;:";
-$a->strings["Work/employment:"] = "Travail&nbsp;:";
-$a->strings["School/education:"] = "Cursus&nbsp;:";
+$a->strings["Work/employment:"] = "Travail/Occupation&nbsp;";
+$a->strings["School/education:"] = "Études&nbsp;";
$a->strings["Like this thing"] = "J'aime ceci";
-$a->strings["view full size"] = "pleine taille";
-$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["cover photo"] = "Photo principale";
+$a->strings["Embedded content"] = "Contenu imbriqué";
+$a->strings["Embedding disabled"] = "Imbrication désactivée";
+$a->strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal.";
+$a->strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut.";
+$a->strings["Can view my connections"] = "Peut voir mes contacts";
+$a->strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos";
+$a->strings["Can view my webpages"] = "Peut voir mes pages web";
+$a->strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal";
+$a->strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")";
+$a->strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications";
+$a->strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés";
+$a->strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer";
+$a->strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires.";
+$a->strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\"";
+$a->strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\"";
+$a->strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)";
+$a->strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal";
+$a->strings["Can edit my webpages"] = "Peut modifier mes pages web";
+$a->strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des 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 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 ce que vous faîtes";
+$a->strings["Social Networking"] = "Réseau social";
+$a->strings["Mostly Public"] = "Pincipalement public";
+$a->strings["Restricted"] = "Accès restreint";
+$a->strings["Private"] = "Privé";
+$a->strings["Community Forum"] = "Forum communautaire";
+$a->strings["Feed Republish"] = "Republication de flux";
+$a->strings["Special Purpose"] = "Utilisation spécifique";
+$a->strings["Celebrity/Soapbox"] = "Page de célébrité/tribune";
+$a->strings["Group Repository"] = "Espace de groupe";
+$a->strings["Custom/Expert Mode"] = "Mode expert/spécifique";
$a->strings["System"] = "Système";
-$a->strings["Create Personal App"] = "Créer Votre Application";
-$a->strings["Edit Personal App"] = "Éditer Votre Application";
+$a->strings["Create Personal App"] = "Créer votre application";
+$a->strings["Edit Personal App"] = "Modifier votre application";
$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
-$a->strings["Suggestions"] = "Suggestion";
+$a->strings["Suggestions"] = "Suggestions";
$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["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés.";
+$a->strings["Add New Connection"] = "Ajouter un nouveau contact";
+$a->strings["Enter channel address"] = "Saisissez l'adresse du canal";
+$a->strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie";
$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["Family"] = "Famille";
+$a->strings["Acquaintances"] = "Connaissances";
+$a->strings["All"] = "Tous";
+$a->strings["Refresh"] = "Actualiser";
+$a->strings["Account settings"] = "Paramètres du compte";
+$a->strings["Channel settings"] = "Paramètres du canal";
+$a->strings["Additional features"] = "Fonctionnalités supplémentaires";
+$a->strings["Feature/Addon settings"] = "Paramètres des extensions/greffons";
+$a->strings["Display settings"] = "Paramètres 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["Connection Default Permissions"] = "Autorisations par défaut des contacts";
+$a->strings["Premium Channel Settings"] = "Paramètres de canal VIP";
+$a->strings["Private Mail Menu"] = "Menu des messages privés";
+$a->strings["Combined View"] = "Vue combinée";
+$a->strings["Conversations"] = "Conversations";
+$a->strings["Received Messages"] = "Messages reçus";
+$a->strings["Sent Messages"] = "Messages envoyés";
+$a->strings["No messages."] = "Pas de message.";
+$a->strings["Delete conversation"] = "Supprimer la conversation";
+$a->strings["Events Menu"] = "Menu Evènements";
+$a->strings["Day View"] = "Vue Jour";
+$a->strings["Week View"] = "Vue Semaine";
+$a->strings["Month View"] = "Vue Mois";
+$a->strings["Export"] = "Export";
+$a->strings["Import"] = "Import";
+$a->strings["Events Tools"] = "Outils Evènements";
+$a->strings["Export Calendar"] = "Exporter le calendrier";
+$a->strings["Import Calendar"] = "Importer un calendrier";
$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["photo/image"] = "photo/image";
+$a->strings["Rating Tools"] = "Outils d'évaluation";
+$a->strings["Rate Me"] = "M'évaluer";
+$a->strings["View Ratings"] = "Voir mes évaluations";
+$a->strings["Public Hubs"] = "Instances publiques";
+$a->strings["Forums"] = "Membres du forum";
+$a->strings["Tasks"] = "Tâches";
+$a->strings["Documentation"] = "Documentation";
+$a->strings["Project/Site Information"] = "Information sur le site/projet";
+$a->strings["For Members"] = "Pour les membres";
+$a->strings["For Administrators"] = "Pour les administrateurs";
+$a->strings["For Developers"] = "Pour les développeurs";
+$a->strings["Site"] = "Site";
+$a->strings["Accounts"] = "Comptes";
+$a->strings["Channels"] = "Canaux";
+$a->strings["Security"] = "";
+$a->strings["Plugins"] = "Greffons";
+$a->strings["Themes"] = "Thèmes";
+$a->strings["Inspect queue"] = "Analyser la file d'attente";
+$a->strings["Profile Config"] = "Configuration du profil";
+$a->strings["DB updates"] = "Mises à jour BDD";
+$a->strings["Logs"] = "Journaux";
+$a->strings["Plugin Features"] = "Fonctionnalités des greffons";
+$a->strings["User registrations waiting for confirmation"] = "Enregistrements d'utilisateurs en attente d'approbation";
+$a->strings["View Photo"] = "Voir la photo";
+$a->strings["Edit Album"] = "Modifier l'album";
+$a->strings["Save to Folder"] = "Enregistrer dans le dossier";
+$a->strings["I will attend"] = "Je participerai";
+$a->strings["I will not attend"] = "Je ne participerai pas";
+$a->strings["I might attend"] = "Je participerai peut-être";
+$a->strings["I agree"] = "Je suis d'accord";
+$a->strings["I disagree"] = "Je ne suis pas d'accord";
+$a->strings["I abstain"] = "Je m'abstiens";
+$a->strings["Add Star"] = "Mettre en avant (étoile)";
+$a->strings["Remove Star"] = "Ne plus mettre en avant";
+$a->strings["Toggle Star Status"] = "(Dés)activer l'étoile";
$a->strings["starred"] = "mis en avant";
-$a->strings["Add Tag"] = "Ajouter une balise";
+$a->strings["Add Tag"] = "Ajouter une étiquette";
$a->strings["I like this (toggle)"] = "J'aime (oui/non)";
-$a->strings["I don't like this (toggle)"] = "Je déteste (oui/non)";
+$a->strings["I don't like this (toggle)"] = "Je n'aime pas (oui/non)";
$a->strings["Share This"] = "Partager";
$a->strings["share"] = "partager";
+$a->strings["Delivery Report"] = "Rapport de distribution";
+$a->strings["%d comment"] = array(
+ 0 => "%d commentaire",
+ 1 => "%d commentaires",
+);
$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["Wall-to-Wall"] = "Mur-à-mur";
+$a->strings["via Wall-To-Wall:"] = "par Mur-à-mur&nbsp;:";
$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["Mark all seen"] = "Tout marquer comme vu";
+$a->strings["__ctx:noun__ Likes"] = "Aime";
+$a->strings["__ctx:noun__ Dislikes"] = "N'aime pas";
$a->strings["This is you"] = "C'est vous";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Submit"] = "Envoyer";
-$a->strings["Bold"] = "Gras";
-$a->strings["Italic"] = "Italique";
-$a->strings["Underline"] = "Souligné";
-$a->strings["Quote"] = "Citation";
-$a->strings["Code"] = "Code";
$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Lien/URL";
+$a->strings["Insert Link"] = "Insérer un lien";
$a->strings["Video"] = "Vidéo";
-$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é, mais n'ont pas encore été soumises.";
-$a->strings["close all"] = "fermer tout";
-$a->strings["timeago.prefixAgo"] = "Il y a";
-$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
-$a->strings["ago"] = " ";
-$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";
-$a->strings["Currently Female"] = "Actuellement féminin";
-$a->strings["Mostly Male"] = "Surtout masculin";
-$a->strings["Mostly Female"] = "Surtout féminin";
-$a->strings["Transgender"] = "Transgenre";
-$a->strings["Intersex"] = "Intersexuel";
-$a->strings["Transsexual"] = "Transsexuel";
-$a->strings["Hermaphrodite"] = "Hermaphrodite";
-$a->strings["Neuter"] = "Neutre";
-$a->strings["Non-specific"] = "Rien de spécifique";
-$a->strings["Other"] = "Autre";
-$a->strings["Undecided"] = "Indécis";
-$a->strings["Males"] = "Hommes";
-$a->strings["Females"] = "Femmes";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbienne";
-$a->strings["No Preference"] = "Sans préférence";
-$a->strings["Bisexual"] = "Bisexuel";
-$a->strings["Autosexual"] = "Autosexuel";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Vierge";
-$a->strings["Deviant"] = "Déviant";
-$a->strings["Fetish"] = "Fétichiste";
-$a->strings["Oodles"] = "Une floppée";
-$a->strings["Nonsexual"] = "Nonsexuel";
-$a->strings["Single"] = "Célibataire";
-$a->strings["Lonely"] = "Solitaire";
-$a->strings["Available"] = "Disponible";
-$a->strings["Unavailable"] = "Indisponible";
-$a->strings["Has crush"] = "A un béguin";
-$a->strings["Infatuated"] = "Amoureux transi";
-$a->strings["Dating"] = "Sort avec quelqu'un";
-$a->strings["Unfaithful"] = "Infidèle";
-$a->strings["Sex Addict"] = "Accro au sexe";
-$a->strings["Friends/Benefits"] = "Amis avec bénéfices";
-$a->strings["Casual"] = "Sans engagement";
-$a->strings["Engaged"] = "Fiancé(e)";
-$a->strings["Married"] = "Marié(e)";
-$a->strings["Imaginarily married"] = "Marié(e) dans ses rêves";
-$a->strings["Partners"] = "Partenaires";
-$a->strings["Cohabiting"] = "En cohabitation";
-$a->strings["Common law"] = "Conjoints de fait";
-$a->strings["Happy"] = "Heureux";
-$a->strings["Not looking"] = "Pas en recherche";
-$a->strings["Swinger"] = "Infidèle";
-$a->strings["Betrayed"] = "Trahi(e)";
-$a->strings["Separated"] = "Séparé(e)";
-$a->strings["Unstable"] = "Instable";
-$a->strings["Divorced"] = "Divorcé(e)";
-$a->strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves";
-$a->strings["Widowed"] = "Veuf/veuve";
-$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["Logged out."] = "Deconnecté.";
-$a->strings["Failed authentication"] = "Échec de l'authentification";
-$a->strings["Login failed."] = "Échec de la connexion.";
-$a->strings["Can view my normal stream and posts"] = "Peut voir les publications sur mon canal et ses partages.";
-$a->strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut.";
-$a->strings["Can view my photo albums"] = "Peut voir mon album photos";
-$a->strings["Can view my connections"] = "Peut voir mes connections";
-$a->strings["Can view my file storage"] = "Peut voir mes fichiers en partage";
-$a->strings["Can view my webpages"] = "Peut voir mes sites-web";
-$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 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["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires.";
-$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é)";
-$a->strings["Can write to my file storage"] = "Peut écrire dans mon partage de fichiers";
-$a->strings["Can edit my webpages"] = "Peut modifier mes sites-web";
-$a->strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques dans des 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 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["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
+$a->strings["Not Found"] = "Introuvable";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["Some blurb about what to do when you're new here"] = "Quelques mots sur quoi faire quand on est nouveau ici";
+$a->strings["network"] = "réseau";
+$a->strings["RSS"] = "RSS";
+$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 identifier 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["App installed."] = "Application installée.";
+$a->strings["Malformed app."] = "Erreur de l'application - Malformée.";
+$a->strings["Embed code"] = "Imbriquer le code";
+$a->strings["Edit App"] = "Modifier l'application";
+$a->strings["Create App"] = "Créer une application";
+$a->strings["Name of app"] = "Nom de l'application";
+$a->strings["Location (URL) of app"] = "Emplacement (URL) de l'application";
+$a->strings["Description"] = "Description";
+$a->strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo";
+$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif";
+$a->strings["Version ID"] = "Identifiant de version";
+$a->strings["Price of app"] = "Prix de l'application";
+$a->strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application";
+$a->strings["Item not available."] = "Élément indisponible.";
+$a->strings["Invalid item."] = "Élément invalide.";
+$a->strings["Channel not found."] = "Canal introuvable.";
+$a->strings["Block Name"] = "Nom du Bloc";
+$a->strings["Block Title"] = "Titre du bloc";
+$a->strings["Bookmark added"] = "Favori ajouté";
+$a->strings["My Bookmarks"] = "Mes Favoris";
+$a->strings["My Connections Bookmarks"] = "Favoris de mes contacts";
+$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 vers la page du profil.";
+$a->strings["Public"] = "Public";
+$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 absent en ce moment";
+$a->strings["I am online"] = "Je suis en ligne";
+$a->strings["Bookmark this room"] = "Marquer ce salon comme favori";
+$a->strings["New Chatroom"] = "Nouveau salon de discussion";
+$a->strings["Chatroom Name"] = "Nom du salon de discussion";
+$a->strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)";
+$a->strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
+$a->strings["Away"] = "Absent";
+$a->strings["Online"] = "En ligne";
+$a->strings["No channel."] = "Pas de canal.";
+$a->strings["Common connections"] = "Contacts en commun";
+$a->strings["No connections in common."] = "Pas de contacts en commun.";
+$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 contacts potentiels 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 conformé à 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é fournie par le propriétaire du canal.)";
+$a->strings["Restricted or Premium Channel"] = "Canal VIP ou restreint";
+$a->strings["Blocked"] = "Bloqué(e)";
+$a->strings["Ignored"] = "Ignoré(e)";
+$a->strings["Hidden"] = "Caché";
+$a->strings["Archived"] = "Archivé";
+$a->strings["New Connections"] = "Nouveaux contacts";
+$a->strings["Show pending (new) connections"] = "Voir les (nouveaux) contacts en attente";
+$a->strings["All Connections"] = "Tous les contacts";
+$a->strings["Show all connections"] = "Voir tous les contacts";
+$a->strings["Only show blocked connections"] = "Ne montrer que les contacts bloqués";
+$a->strings["Only show ignored connections"] = "Ne montrer que les contacts ignorés";
+$a->strings["Only show archived connections"] = "Ne montrer que les contacts archivés";
+$a->strings["Only show hidden connections"] = "Ne montrer que les contacts cachés";
+$a->strings["Pending approval"] = "En attente de validation";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
+$a->strings["Edit connection"] = "Modifier le contact";
+$a->strings["Delete connection"] = "Supprimer le contact";
+$a->strings["Channel address"] = "Adresse du canal";
+$a->strings["Network"] = "Réseau";
+$a->strings["Status"] = "État";
+$a->strings["Connected"] = "Connecté";
+$a->strings["Approve connection"] = "Valider le contact";
+$a->strings["Approve"] = "Approuver";
+$a->strings["Ignore connection"] = "Ignorer le contact";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["Recent activity"] = "Activité récente";
+$a->strings["Search your connections"] = "Chercher parmi vos contacts";
+$a->strings["Connections search"] = "Chercher des contacts";
+$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."] = "Contact mis à jour.";
+$a->strings["Failed to update connection record."] = "Impossible de mettre à jour les détails du contact.";
+$a->strings["is now connected to"] = "est maintenant connecté avec";
+$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 indisponible.";
+$a->strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses.";
+$a->strings["Connection has been removed."] = "Le contact a été supprimé.";
+$a->strings["View %s's profile"] = "Voir le profil de %s";
+$a->strings["Refresh Permissions"] = "Actualiser les autorisations";
+$a->strings["Fetch updated permissions"] = "Récupérer les autorisations les plus récentes";
+$a->strings["Recent Activity"] = "Activité récente";
+$a->strings["View recent posts and comments"] = "Voir les publications et commentaires récents";
+$a->strings["Unblock"] = "Débloquer";
+$a->strings["Block"] = "Bloquer";
+$a->strings["Block (or Unblock) all communications with this connection"] = "Bloquer ou débloquer toute communication avec ce contact";
+$a->strings["This connection is blocked!"] = "Ce contact est bloqué&nbsp;!";
+$a->strings["Unignore"] = "Ne plus ignorer";
+$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer ou ne plus ignorer toute communication venant de ce contact";
+$a->strings["This connection is ignored!"] = "Ce contact est ignoré&nbsp;!";
+$a->strings["Unarchive"] = "Désarchiver";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu";
+$a->strings["This connection is archived!"] = "Ce contact est archivé&nbsp;!";
+$a->strings["Unhide"] = "Ne plus cacher";
+$a->strings["Hide"] = "Cacher";
+$a->strings["Hide or Unhide this connection from your other connections"] = "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts";
+$a->strings["This connection is hidden!"] = "Ce contact est caché&nbsp;!";
+$a->strings["Delete this connection"] = "Supprimer ce contact";
+$a->strings["Approve this connection"] = "Autoriser ce contact";
+$a->strings["Accept connection to allow communication"] = "Accepter le contact pour permettre la communication";
+$a->strings["Set Affinity"] = "Définir le degré d'affinité";
+$a->strings["Set Profile"] = "Définir le profil";
+$a->strings["Set Affinity & Profile"] = "Définir le degré d'affinité et le profil";
+$a->strings["none"] = "Aucun";
+$a->strings["Apply these permissions automatically"] = "Appliquer ces permissions automatiquement";
+$a->strings["This connection's primary address is"] = "L'adresse principale de ce contact est";
+$a->strings["Available locations:"] = "Emplacements disponibles&nbsp;:";
+$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts.";
+$a->strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster votre proximité avec le contact";
+$a->strings["Slide to adjust your rating"] = "Faîtes glisser pour ajuster votre note";
+$a->strings["Optionally explain your rating"] = "Explication facultative de votre évaluation";
+$a->strings["Custom Filter"] = "Filtre personnalisé";
+$a->strings["Only import posts with this text"] = "N'importer que les publications comprenant ce texte";
+$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications";
+$a->strings["Do not import posts with this text"] = "Ne pas importer les publications comprenant ce texte";
+$a->strings["This information is public!"] = "Cette information est publique&nbsp;!";
+$a->strings["Connection Pending Approval"] = "Contact en attente d'approbation";
+$a->strings["inherited"] = "héritée";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée.";
+$a->strings["Their Settings"] = "Leurs paramètres";
+$a->strings["My Settings"] = "Mes paramètres";
+$a->strings["Individual Permissions"] = "Permissions individuelles";
+$a->strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités.";
+$a->strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités.";
+$a->strings["Last update:"] = "Dernière mise à jour&nbsp;:";
+$a->strings["\$Projectname channel"] = "Canal \$Projectname";
+$a->strings["Public access denied."] = "Accès public refusé.";
+$a->strings["%d rating"] = array(
+ 0 => "%d évaluation",
+ 1 => "%d évaluations",
+);
+$a->strings["Gender: "] = "Sexe/genre&nbsp;:";
+$a->strings["Status: "] = "État&nbsp;:";
+$a->strings["Homepage: "] = "Site web&nbsp;:";
+$a->strings["Description:"] = "Description&nbsp;:";
+$a->strings["Public Forum:"] = "Forum public&nbsp;:";
+$a->strings["Keywords: "] = "Mots-clefs&nbsp;:";
+$a->strings["Don't suggest"] = "Ne pas suggérer";
+$a->strings["Common connections:"] = "Contacts en commun&nbsp;:";
+$a->strings["Global Directory"] = "Annuaire global";
+$a->strings["Local Directory"] = "Annuaire local";
+$a->strings["Finding:"] = "Recherche&nbsp;:";
+$a->strings["next page"] = "page suivante";
+$a->strings["previous page"] = "page précédente";
+$a->strings["Sort options"] = "Options de tri";
+$a->strings["Alphabetic"] = "Alphabétique";
+$a->strings["Reverse Alphabetic"] = "Alphabétique inversé";
+$a->strings["Newest to Oldest"] = "Du plus récent au moins récent";
+$a->strings["Oldest to Newest"] = "Du moins récent du plus récent";
+$a->strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
+$a->strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire";
+$a->strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès";
+$a->strings["Invalid message"] = "Message non valide";
+$a->strings["no results"] = "aucun résultat";
+$a->strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s";
+$a->strings["channel sync processed"] = "Synchro de canal effectuée";
+$a->strings["queued"] = "mis dans la file d'attente";
+$a->strings["posted"] = "publié";
+$a->strings["accepted for delivery"] = "accepté pour la distribution";
+$a->strings["updated"] = "mis à jour";
+$a->strings["update ignored"] = "mise à jour ignorée";
+$a->strings["permission denied"] = "permission refusée";
+$a->strings["recipient not found"] = "destinataire introuvable";
+$a->strings["mail recalled"] = "courriel rappelé";
+$a->strings["duplicate mail received"] = "courriel reçu en double";
+$a->strings["mail delivered"] = "courriel distribué";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Delete block?"] = "Supprimer le bloc&nbsp;?";
+$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["Edit Block"] = "Modifier le bloc";
+$a->strings["Delete layout?"] = "Supprimer la mise en page&nbsp;?";
+$a->strings["Layout Description (Optional)"] = "Description de la mise en page (facultatif)";
+$a->strings["Layout Name"] = "Nom de la mise en page";
+$a->strings["Edit Layout"] = "Modifier la mise en page";
+$a->strings["Item is not editable"] = "Elément non modifiable";
+$a->strings["Delete item?"] = "Supprimer l'élément&nbsp;?";
+$a->strings["Edit post"] = "Modifier la publication";
+$a->strings["Delete webpage?"] = "Supprimer la page web&nbsp;?";
+$a->strings["Page link title"] = "Titre du lien vers la page";
+$a->strings["Edit Webpage"] = "Modifier la page web";
+$a->strings["Calendar entries imported."] = "Entrées du calendrier importées.";
+$a->strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée.";
+$a->strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début.";
+$a->strings["Unable to generate preview."] = "Impossible de générer l'aperçu.";
+$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["Edit event title"] = "Modifier le titre de l'événement";
+$a->strings["Event title"] = "Titre de l'événement";
+$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
+$a->strings["Edit Category"] = "Modifier la catégorie";
+$a->strings["Category"] = "Catégorie";
+$a->strings["Edit start date and time"] = "Modifier la date et l'heure de début";
+$a->strings["Start date and time"] = "Date et heure de début";
+$a->strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet";
+$a->strings["Edit finish date and time"] = "Modifier la date et l'heure de fin";
+$a->strings["Finish date and time"] = "Date et heure de fin";
+$a->strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
+$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde.";
+$a->strings["Edit Description"] = "Modifier la description";
+$a->strings["Edit Location"] = "Modifier l'emplacement";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["Advanced Options"] = "Options avancées";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Modifier l'événement";
+$a->strings["Delete event"] = "Supprimer l'événement";
+$a->strings["calendar"] = "calendrier";
+$a->strings["Edit Event"] = "Modifier l'événement";
+$a->strings["Create Event"] = "Créer un événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["Next"] = "Suivant";
+$a->strings["Today"] = "Aujourd'hui";
+$a->strings["Event removed"] = "Événement supprimé";
+$a->strings["Failed to remove event"] = "Impossible de supprimer l'événement";
+$a->strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname";
+$a->strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["Permission Denied."] = "Permission refusée.";
+$a->strings["File not found."] = "Fichier introuvable.";
+$a->strings["Edit file permissions"] = "Modifier les autorisations d'accès au fichier";
+$a->strings["Set/edit permissions"] = "Définir/modifier les autorisations";
+$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 pointer vers ce fichier depuis une page web";
+$a->strings["Share this file"] = "Partager ce fichier";
+$a->strings["Show URL to this file"] = "Montrer l'URL de ce fichier";
+$a->strings["Notify your contacts about this file"] = "Notifier vos contacts à propos de ce fichier";
+$a->strings["Channel added."] = "Canal ajouté.";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer des amis";
+$a->strings["Suggest a friend for %s"] = "Suggérer un amis à %s";
+$a->strings["Privacy group created."] = "Groupe d'accès créé.";
+$a->strings["Could not create privacy group."] = "Impossible de créer le groupe d'accès.";
+$a->strings["Privacy group updated."] = "Groupe d'accès mis à jour.";
+$a->strings["Create a group of channels."] = "Créer un groupe de canaux.";
+$a->strings["Privacy group name: "] = "Nom du groupe d'accès&nbsp;:";
+$a->strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux";
+$a->strings["Privacy group removed."] = "Groupe d'accès supprimé.";
+$a->strings["Unable to remove privacy group."] = "Impossible de supprimer le groupe d'accès.";
+$a->strings["Privacy group editor"] = "Editeur de groupe d'accès.";
+$a->strings["Members"] = "Membres";
+$a->strings["All Connected Channels"] = "Tous les 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["Documentation Search"] = "Chercher dans la documentation";
+$a->strings["Help:"] = "Aide&nbsp;:";
+$a->strings["\$Projectname Documentation"] = "Documentation \$Projectname";
+$a->strings["\$Projectname"] = "\$Projectname";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["First Name"] = "Prénom";
+$a->strings["Last Name"] = "Nom de famille";
+$a->strings["Nickname"] = "Surnom";
+$a->strings["Full Name"] = "Nom complet";
+$a->strings["Profile Photo 16px"] = "Photo de profil 16px";
+$a->strings["Profile Photo 32px"] = "Photo de profil 32px";
+$a->strings["Profile Photo 48px"] = "Photo de profil 48px";
+$a->strings["Profile Photo 64px"] = "Photo de profil 64px";
+$a->strings["Profile Photo 80px"] = "Photo de profil 80px";
+$a->strings["Profile Photo 128px"] = "Photo de profil 128px";
+$a->strings["Timezone"] = "Fuseau horaire";
+$a->strings["Homepage URL"] = "URL de mon site Internet&nbsp;:";
+$a->strings["Birth Year"] = "Année de naissance";
+$a->strings["Birth Month"] = "Mois de naissance";
+$a->strings["Birth Day"] = "Jour de naissance";
+$a->strings["Birthdate"] = "Date de naissance";
+$a->strings["Gender"] = "Sexe";
+$a->strings["%s element installed"] = "Elément %s installé";
+$a->strings["%s element installation failed"] = "L'installation de l'élément %s a échoué";
+$a->strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux.";
+$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.";
+$a->strings["Warning: Database versions differ by %1\$d updates."] = "Attention&nbsp;: les versions de bases de données diffèrent de %1\$d mises à jour.";
+$a->strings["Server platform is not compatible. Operation not permitted."] = "";
+$a->strings["No channel. Import failed."] = "Pas de canal. Echec de l'import.";
+$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."] = "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. 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/import.";
+$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/hub";
+$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 ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement 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 ce hub mon emplacement primaire";
+$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)";
+$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin.";
+$a->strings["Import completed"] = "L'import est terminé.";
+$a->strings["Import Items"] = "Importer";
+$a->strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export.";
+$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 \$Projectname"] = "Rejoignez-nous sur \$Projectname";
+$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 de distribution 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["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname.";
+$a->strings["You will need to supply this invitation code:"] = "";
+$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)";
+$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site.";
+$a->strings["or visit"] = "";
+$a->strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]";
+$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["Duplicate post suppressed."] = "Publication en doublon supprimée.";
+$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée.";
+$a->strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données.";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\".";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web.";
+$a->strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche";
+$a->strings["Layout Description"] = "Description de la mise en page";
+$a->strings["Download PDL file"] = "Télécharger le fichier PDL";
+$a->strings["Like/Dislike"] = "Aime/n'aime pas";
+$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 \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de \$Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de \$Projectname </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["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s approuve %3\$s de %2\$s";
+$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s n'est pas d'accord avec %3\$s de %2\$s";
+$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstient de toute décision sur le %3\$s de %2\$s";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
+$a->strings["Action completed."] = "Action terminée.";
+$a->strings["Thank you."] = "Merci.";
+$a->strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles.";
+$a->strings["Visible to:"] = "Visible par&nbsp;:";
+$a->strings["Location not found."] = "Emplacement introuvable.";
+$a->strings["Location lookup failed."] = "Echec de la recherche de l'emplacement.";
+$a->strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel.";
+$a->strings["Syncing locations"] = "Synchronisation des emplacements";
+$a->strings["No locations found."] = "Emplacement(s) introuvable.";
+$a->strings["Manage Channel Locations"] = "Gérer les emplacements des canaux";
+$a->strings["Location (address)"] = "Emplacement (adresse)";
+$a->strings["Primary Location"] = "Emplacement primaire";
+$a->strings["Drop location"] = "Abandonner l'emplacement";
+$a->strings["Sync now"] = "Synchroniser maintenant";
+$a->strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives.";
+$a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal.";
+$a->strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif.";
+$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["Hub not found."] = "Hub introuvable.";
+$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é.";
+$a->strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué.";
+$a->strings["Messages"] = "Messages";
+$a->strings["Message recalled."] = "Message rappelé.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau";
+$a->strings["Send Private Message"] = "Envoyer un message privé";
+$a->strings["To:"] = "À&nbsp;:";
+$a->strings["Subject:"] = "Objet&nbsp;:";
+$a->strings["Send"] = "Envoyer";
+$a->strings["Delete message"] = "Supprimer le message";
+$a->strings["Delivery report"] = "Rapport de distribution";
+$a->strings["Recall message"] = "Rappeler le message";
+$a->strings["Message has been recalled."] = "Le message a été rappelé.";
+$a->strings["Delete Conversation"] = "Supprimer la 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. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur.";
+$a->strings["Send Reply"] = "Envoyer la réponse";
+$a->strings["Your message for %s (%s):"] = "Votre message pour %s (%s)&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["Current Channel"] = "Canal actif";
+$a->strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un";
+$a->strings["Default Channel"] = "Canal par défaut";
+$a->strings["Make Default"] = "Définir comme défaut";
+$a->strings["%d new messages"] = "%d nouveaux messages";
+$a->strings["%d new introductions"] = "%d nouvelles présentations";
+$a->strings["Delegated Channels"] = "Canaux délégués";
+$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["Unable to update menu."] = "Impossible de mettre le menu à jour.";
+$a->strings["Unable to create menu."] = "Impossible de créer le menu.";
+$a->strings["Menu Name"] = "Nom du menu";
+$a->strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis";
+$a->strings["Menu Title"] = "Titre du menu";
+$a->strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre";
+$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["Submit and proceed"] = "Valider et continuer";
+$a->strings["Drop"] = "Supprimer";
+$a->strings["Bookmarks allowed"] = "Favoris autorisés";
+$a->strings["Delete this menu"] = "Supprimer ce menu";
+$a->strings["Edit menu contents"] = "Modifier le contenu du menu";
+$a->strings["Edit this menu"] = "Modifier ce menu";
+$a->strings["Menu could not be deleted."] = "Impossible de supprimer le menu.";
$a->strings["Menu not found."] = "Menu introuvable.";
-$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["Edit Menu"] = "Modifier le menu";
+$a->strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce 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["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";
-$a->strings["Drop element"] = "Supprimer l'entrée";
-$a->strings["New element"] = "Nouvelle entrée";
-$a->strings["Edit this menu container"] = "Éditer ce bloc de menu";
-$a->strings["Add menu element"] = "Ajouter une entrée au menu";
-$a->strings["Delete this menu item"] = "Supprimer cet entrée du menu";
-$a->strings["Edit this menu item"] = "Éditer cette entrée du menu";
-$a->strings["New Menu Element"] = "Nouvelle entrée de menu";
+$a->strings["Unable to create element."] = "Impossible de créer l'entrée.";
+$a->strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu.";
+$a->strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu.";
$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 magique, lorsque disponible";
+$a->strings["Link Name"] = "Nom du lien";
+$a->strings["Link or Submenu Target"] = "Lien ou sous-menu cible";
+$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu";
+$a->strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand 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";
+$a->strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste";
+$a->strings["Submit and finish"] = "Vadiler et terminer";
+$a->strings["Submit and continue"] = "Valider et continuer";
+$a->strings["Menu:"] = "Menu&nbsp;:";
+$a->strings["Link Target"] = "Cible du lien";
+$a->strings["Edit menu"] = "Modifier le menu";
+$a->strings["Edit element"] = "Modifier l'entrée";
+$a->strings["Drop element"] = "Supprimer l'entrée";
+$a->strings["New element"] = "Nouvelle entrée";
+$a->strings["Edit this menu container"] = "Éditer ce bloc de menu";
+$a->strings["Add menu element"] = "Ajouter une entrée au menu";
+$a->strings["Delete this menu item"] = "Supprimer cette entrée du menu";
+$a->strings["Edit this menu item"] = "Modifier cette entrée du menu";
$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["Edit Menu Element"] = "Modifier l'entrée de menu";
+$a->strings["Link text"] = "Texte du lien";
+$a->strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
+$a->strings["No such group"] = "Groupe introuvable";
+$a->strings["No such channel"] = "Canal introuvable";
+$a->strings["forum"] = "forum";
+$a->strings["Search Results For:"] = "Résultats de recherche pour&nbsp;:";
+$a->strings["Privacy group is empty"] = "Groupe d'accès vide";
+$a->strings["Privacy group: "] = "Groupe d'accès&nbsp;:";
+$a->strings["Invalid connection."] = "Contact non valide.";
+$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 un ensemble 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 vous y autorise.";
+$a->strings["Channel Name"] = "Nom du canal";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples&nbsp;: \"Bernard Martin\", \"Lisa et ses chevaux\", \"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> d'un autre endroit";
+$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Veuillez choisir un type de canal (par exemple \"réseau social\" ou \"forum communautaire\") et un niveau de confidentialité afin que nous puissions choisir les meilleures autorisations pour vous";
+$a->strings["Channel Type"] = "Type de canal";
+$a->strings["Read more about roles"] = "En savoir plus sur les rôles";
+$a->strings["Invalid request identifier."] = "Identifiant de requête invalide.";
+$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["Unable to find your hub."] = "Impossible de trouver votre hub.";
+$a->strings["Post successful."] = "Publication réussie.";
+$a->strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné.";
+$a->strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
+$a->strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées.";
+$a->strings["Configuration Editor"] = "Editeur de configuration";
+$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité.";
+$a->strings["Layout updated."] = "Mise en page mise à jour.";
+$a->strings["Edit System Page Description"] = "Modifier la description de la page du système";
+$a->strings["Layout not found."] = "Mise en page introuvable.";
+$a->strings["Module Name:"] = "Nom du module&nbsp;:";
+$a->strings["Layout Help"] = "Aide à la mise en page";
+$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 l'album";
+$a->strings["Delete Photo"] = "Supprimer la 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["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
+$a->strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos.";
+$a->strings["Upload Photos"] = "Téléverser des photos";
+$a->strings["Enter an album name"] = "Entrer un nom d'album";
+$a->strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)";
+$a->strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi";
+$a->strings["Caption (optional):"] = "Légende (facultative)";
+$a->strings["Description (optional):"] = "Description (facultative)";
+$a->strings["Album name could not be decoded"] = "Le nom de l'Album n'a pu être décodé";
+$a->strings["Contact Photos"] = "Photos de contact";
+$a->strings["Show Newest First"] = "Les plus récent(e)s en premier";
+$a->strings["Show Oldest First"] = "Les moins récent(e)s en premier";
+$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 non disponible";
+$a->strings["Use as profile photo"] = "Utiliser comme photo du profil";
+$a->strings["Private Photo"] = "Photo privée";
+$a->strings["View Full Size"] = "Voir en taille réelle";
+$a->strings["Remove"] = "Retirer";
+$a->strings["Edit photo"] = "Modifier la photo";
+$a->strings["Rotate CW (right)"] = "Rotation horaire (droite)";
+$a->strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
+$a->strings["Enter a new album name"] = "Entrer un nouveau nom d'album";
+$a->strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)";
+$a->strings["Caption"] = "Titre/légende";
+$a->strings["Add a Tag"] = "Ajouter une étiquette";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon";
+$a->strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album";
+$a->strings["In This Photo:"] = "Dans cette photo&nbsp;:";
+$a->strings["Map"] = "Carte";
+$a->strings["View Album"] = "Voir l'album";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Theme settings updated."] = "Paramètres du thème mis à jour.";
+$a->strings["# Accounts"] = "# Comptes";
+$a->strings["# blocked accounts"] = "# comptes bloqués";
+$a->strings["# expired accounts"] = "# comptes expirés";
+$a->strings["# expiring accounts"] = "# comptes expirant";
+$a->strings["# Channels"] = "# Canaux";
+$a->strings["# primary"] = "# primaire";
+$a->strings["# clones"] = "# clones";
+$a->strings["Message queues"] = "File des messages";
+$a->strings["Administration"] = "Administration";
+$a->strings["Summary"] = "Résumé";
+$a->strings["Registered accounts"] = "Comptes enregistrés";
+$a->strings["Pending registrations"] = "Inscriptions en attente";
+$a->strings["Registered channels"] = "Canaux enregistrés";
+$a->strings["Active plugins"] = "Greffons actifs";
+$a->strings["Version"] = "Version";
+$a->strings["Site settings updated."] = "Paramètres du site sauvegardés.";
+$a->strings["mobile"] = "mobile";
+$a->strings["experimental"] = "expérimental";
+$a->strings["unsupported"] = "non maintenu";
+$a->strings["Yes - with approval"] = "Oui - avec approbation";
+$a->strings["My site is not a public server"] = "Mon site n'est pas un serveur public";
+$a->strings["My site has paid access only"] = "Mon site est à accès payant uniquement";
+$a->strings["My site has free access only"] = "Mon site est gratuit uniquement";
+$a->strings["My site offers free accounts with optional paid upgrades"] = "Mon site offre des comptes gratuits avec des améliorations payantes facultatives";
+$a->strings["Registration"] = "Inscription";
+$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 de 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ées 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 par défaut pour les mobiles";
+$a->strings["Theme for mobile devices"] = "Thème pour les mobiles";
+$a->strings["Allow Feeds as Connections"] = "Autoriser les Flux (RSS) comme contacts";
+$a->strings["(Heavy system resource usage)"] = "(Impact important sur les ressources)";
+$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 nouveaux membres est autorisé sur ce site&nbsp;?";
+$a->strings["Invitation only"] = "Sur invitation seulement";
+$a->strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\".";
+$a->strings["Which best describes the types of account offered by this hub?"] = "Quelle est la meilleure description des types de comptes proposés sur ce hub&nbsp;?";
+$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["Site homepage to show visitors (default: login box)"] = "Page d'accueil du site à montrer aux visiteurs (par défaut&nbsp;:boîte de dialogue de connexion)";
+$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "exemple&nbsp;:'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier.";
+$a->strings["Preserve site homepage URL"] = "Préserver l'adresse d'accueil du site";
+$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger";
+$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."] = "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps.";
+$a->strings["Allowed friend domains"] = "Domaines amicaux autorisés";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
+$a->strings["Allowed email domains"] = "Domaines de courriels autorisés";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de 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["Not allowed email domains"] = "Domaines de courriel non autorisés";
+$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis.";
+$a->strings["Verify Email Addresses"] = "Demander vérification des adresses de courriel";
+$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé).";
+$a->strings["Force publish"] = "Publicité forcée";
+$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["Import Public Streams"] = "Flux publics importés";
+$a->strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention&nbsp;: ce contenu n'est pas modéré.";
+$a->strings["login on Homepage"] = "Connexion à partir de la page d'accueil";
+$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré.";
+$a->strings["Directory Server URL"] = "URL du serveur d'annuaire";
+$a->strings["Default directory server"] = "Serveur d'annuaire par défaut";
+$a->strings["Proxy user"] = "Utilisateur 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 (non 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["Deliveries per process"] = "Distributions par processus";
+$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé&nbsp;:1-5.";
+$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 maximale moyenne";
+$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 reportées - par défaut 50.";
+$a->strings["Expiration period in days for imported (grid/network) content"] = "Délai d'expiration pour le contenu importé (réseau)";
+$a->strings["0 for no expiration of imported content"] = "0 pour ne pas expirer le contenu importé";
$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["Enable user zoom on mobile devices"] = "Permettre à l'utilisateur d'un mobile d'agrandir le contenu";
-$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:"] = "Fuseau 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 à \"étiqueter\" 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é/encouragé/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/Encourager";
-$a->strings["poke, prod or do other things to somebody"] = "Cogner, encourager, et autres choses à faire à quelqu'un";
+$a->strings["Lock feature %s"] = "Verrouiller fonctionnalité %s";
+$a->strings["Manage Additional Features"] = "Gérer les fonctionnalités additionnelles";
+$a->strings["No server found"] = "Serveur introuvable";
+$a->strings["ID"] = "Identifiant";
+$a->strings["for channel"] = "pour le canal";
+$a->strings["on server"] = "sur le serveur";
+$a->strings["Server"] = "Serveur";
+$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 authenticated."] = "";
+$a->strings["Allow communications only from these sites"] = "";
+$a->strings["One site per line. Leave empty to allow communication from anywhere by default"] = "";
+$a->strings["Block communications from these sites"] = "";
+$a->strings["Allow communications only from these channels"] = "";
+$a->strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "";
+$a->strings["Block communications from these channels"] = "";
+$a->strings["Allow embedded HTML content only from these domains"] = "";
+$a->strings["One site per line. Leave empty to allow from any site by default"] = "";
+$a->strings["Block embedded HTML from these domains"] = "";
+$a->strings["Cooperative embed security"] = "";
+$a->strings["Enable to share embed security with other compatible sites/hubs"] = "";
+$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["Queue Statistics"] = "Statistiques de file d'attente";
+$a->strings["Total Entries"] = "Nombre d'entrées total";
+$a->strings["Priority"] = "Priorité";
+$a->strings["Destination URL"] = "URL de destination";
+$a->strings["Mark hub permanently offline"] = "Marquer le hub comme étant hors ligne de manière permanente";
+$a->strings["Empty queue for this hub"] = "Vider la file d'attente pour ce hub";
+$a->strings["Last known contact"] = "Dernier contact connu";
+$a->strings["%s account blocked/unblocked"] = array(
+ 0 => "%s compte bloqué/débloqué",
+ 1 => "%s comptes bloqués/débloqués",
+);
+$a->strings["%s account deleted"] = array(
+ 0 => "%s compte supprimé",
+ 1 => "%s comptes supprimés",
+);
+$a->strings["Account not found"] = "Compte introuvable";
+$a->strings["Account '%s' deleted"] = "Compte '%s' supprimé";
+$a->strings["Account '%s' blocked"] = "Compte '%s' bloqué";
+$a->strings["Account '%s' unblocked"] = "Compte '%s' dé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["Deny"] = "Refuser";
+$a->strings["Register date"] = "Date d'inscription";
+$a->strings["Last login"] = "Dernière connexion";
+$a->strings["Expires"] = "Expire le";
+$a->strings["Service Class"] = "Classe de service";
+$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les comptes sélectionnés seront supprimés&nbsp;!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?";
+$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le compte {0} sera supprimé&nbsp;!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?";
+$a->strings["%s channel censored/uncensored"] = array(
+ 0 => "%s canal censuré/dé-censuré",
+ 1 => "%s canaux censurés/dé-censurés",
+);
+$a->strings["%s channel code allowed/disallowed"] = array(
+ 0 => "code autorisé/interdit pour %s canal",
+ 1 => "code autorisé/interdit pour %s canaux",
+);
+$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' censored"] = "Canal '%s' censuré";
+$a->strings["Channel '%s' uncensored"] = "Canal '%s' non censuré";
+$a->strings["Channel '%s' code allowed"] = "Code autorisé pour le canal '%s'";
+$a->strings["Channel '%s' code disallowed"] = "Code interdit pour le canal '%s'";
+$a->strings["Censor"] = "Censurer";
+$a->strings["Uncensor"] = "Ne plus censurer";
+$a->strings["Allow Code"] = "Autoriser le code";
+$a->strings["Disallow Code"] = "Interdire le code";
+$a->strings["UID"] = "UID";
+$a->strings["Address"] = "Adresse";
+$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&nbsp;!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?";
+$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é&nbsp;!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé&nbsp;!\\n\\nÊtes-vous sûr(e)&nbsp;?";
+$a->strings["Plugin %s disabled."] = "Greffon %s désactivé.";
+$a->strings["Plugin %s enabled."] = "Greffon %s activé.";
+$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["Minimum project version: "] = "Version minimum du projet&nbsp;:";
+$a->strings["Maximum project version: "] = "Version maximum du projet&nbsp;:";
+$a->strings["Minimum PHP version: "] = "Version minimum de PHP&nbsp;:";
+$a->strings["Disabled - version incompatibility"] = "Désactivé - version incompatible";
+$a->strings["No themes found."] = "Aucun thème trouvé.";
+$a->strings["Screenshot"] = "Capture d'écran";
+$a->strings["[Experimental]"] = "[Expérimental]";
+$a->strings["[Unsupported]"] = "[Non maintenu]";
+$a->strings["Log settings updated."] = "Paramètres du journal mis à jour.";
+$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 Hubzilla.";
+$a->strings["Log level"] = "Niveau de journalisation";
+$a->strings["New Profile Field"] = "Nouveau champ de profil";
+$a->strings["Field nickname"] = "Nom court du champ";
+$a->strings["System name of field"] = "Nom système du champ";
+$a->strings["Input type"] = "Type de champ";
+$a->strings["Field Name"] = "Nom du champ";
+$a->strings["Label on profile pages"] = "Étiquette sur les pages de profil";
+$a->strings["Help text"] = "Aide à la saisie";
+$a->strings["Additional info (optional)"] = "Informations additionnelles (facultatif)";
+$a->strings["Field definition not found"] = "Définition du champ introuvable";
+$a->strings["Edit Profile Field"] = "Modifier le champ de profil";
+$a->strings["Poke somebody"] = "";
+$a->strings["Poke/Prod"] = "Tapoter/Encourager";
+$a->strings["Poke, prod or do other things to somebody"] = "";
$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["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire";
+$a->strings["Make this post private"] = "Rendre cette publication privée";
$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["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
+$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
$a->strings["Unable to process image."] = "Impossible de traîter l'image.";
+$a->strings["female"] = "femme";
+$a->strings["%1\$s updated her %2\$s"] = "%1\$s a mis à jour son %2\$s";
+$a->strings["male"] = "homme";
+$a->strings["%1\$s updated his %2\$s"] = "%1\$s a mis à jour son %2\$s";
+$a->strings["%1\$s updated their %2\$s"] = "%1\$s a mis a jour sa %2\$s";
+$a->strings["profile photo"] = "photo de profil";
$a->strings["Photo not available."] = "Photo inaccessible.";
-$a->strings["Upload File:"] = "Fichier&nbsp;:";
+$a->strings["Upload File:"] = "Téléverser 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["or"] = "ou";
$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 unavailable to export."] = "Impossible d'exporter le profil.";
-$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
+$a->strings["Profile Name is required."] = "Le nom du profil est obligatoire.";
$a->strings["Marital Status"] = "Statut marital";
-$a->strings["Romantic Partner"] = "Partenaire";
+$a->strings["Romantic Partner"] = "Partenaire amoureux";
$a->strings["Likes"] = "Aime";
-$a->strings["Dislikes"] = "Déteste";
+$a->strings["Dislikes"] = "N'aime pas";
$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["Sexual Preference"] = "Préférences 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["Hide your contact/friend list from viewers of this profile?"] = "Cacher vos contacts/amis aux visiteurs de ce profil&nbsp;?";
+$a->strings["Edit Profile Details"] = "Modifier les détails du profil";
+$a->strings["View this profile"] = "Voir ce 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["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres";
+$a->strings["Clone this profile"] = "Cloner ce profil";
+$a->strings["Delete this profile"] = "Supprimer ce profil";
$a->strings["Import profile from file"] = "Importer le profil à partir d'un fichier";
$a->strings["Export profile to file"] = "Exporter le profil vers un fichier.";
$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["Birthday :"] = "Date de naissance&nbsp;:";
+$a->strings["Street Address:"] = "Numéro et voie&nbsp;:";
+$a->strings["Locality/City:"] = "Ville&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["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: marie123, Marie Deschamps, marie@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;:";
@@ -1070,801 +1808,407 @@ $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["Books, literature"] = "Livres, 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["Love/romance"] = "Amour/Relation amoureuse";
+$a->strings["Work/employment"] = "Travail/Occupation&nbsp;";
$a->strings["School/education"] = "Études";
-$a->strings["This is your default profile."] = "Voilà votre profil par défault.";
+$a->strings["This is your default profile."] = "Ceci est votre profil par défaut.";
$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["Edit/Manage Profiles"] = "Modifier/gérer les profils";
+$a->strings["Add profile things"] = "Ajouter des éléments 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["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer.";
$a->strings["Visible To"] = "Visible par";
-$a->strings["All Connections"] = "Toutes les relations";
$a->strings["Public Sites"] = "Sites publics";
-$a->strings["The listed sites allow public registration into the Hubzilla. 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["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network 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 publique au réseau \$Projectname. Tous les sites du réseau sont interconnectés, l'inscription sur l'un quelconque d'entre eux signifie donc l'inscription sur le réseau dans son ensemble. Certains sites peuvent nécessiter une souscription ou fournir des niveaux de service différenciés. Le lien du fournisseur <strong>peut</strong> fournir plus de détails.";
+$a->strings["Rate this hub"] = "Noter ce hub";
$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["Project"] = "Projet";
+$a->strings["View hub ratings"] = "Voir les notes de cette instance";
+$a->strings["Rate"] = "Evaluer";
+$a->strings["View ratings"] = "Voir les notes";
+$a->strings["Website:"] = "Site web&nbsp;:";
+$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)";
+$a->strings["Rating (this information is public)"] = "Evaluation (cette information est publique)";
+$a->strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)";
+$a->strings["No ratings"] = "Pas de note";
+$a->strings["Rating: "] = "Evaluation&nbsp:";
+$a->strings["Website: "] = "Site web&nbsp;:";
+$a->strings["Description: "] = "Description&nbsp;:";
$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["Save Bookmark"] = "Enregistrer le favori";
+$a->strings["URL of bookmark"] = "URL du favori";
+$a->strings["Or enter new bookmark folder name"] = "Ou entrez un nouveau nom de dossier de favoris";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain.";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux conditions de 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 is pending approval by the site owner."] = "Votre inscription est en attente d'approbation par l'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 soumise à 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["Registration on this site is disabled."] = "L'enregistrement est désactivé sur ce site.";
+$a->strings["Registration on this site/hub is by approval only."] = "L'inscription sur ce site/hub est soumise à approbation.";
+$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">S'inscrire sur un autre 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 comptes autorisé chaque jour. Merci d'essayer à nouveau demain.";
+$a->strings["Terms of Service"] = "Conditions de service";
+$a->strings["I accept the %s for this website"] = "J'accepte les %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["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["Enter your name"] = "Saisissez votre nom";
$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 re-enter your password"] = "Merci de saisir à nouveau votre mot de passe";
$a->strings["Please login."] = "Merci de vous connecter.";
-$a->strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Matrice Rouge - Pour les invités: Nom d'utilisateur = {votre courriel}, Mot de passe = +++";
-$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un canal à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte.";
-$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["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte.";
+$a->strings["Remove This Account"] = "Supprimer ce compte";
+$a->strings["WARNING: "] = "AVERTISSEMENT&nbsp;:";
+$a->strings["This account and all its channels will be completely removed from the network. "] = "Ce compte et tous ses canaux seront entièrement supprimés du réseau.";
+$a->strings["This action is permanent and can not be undone!"] = "Cette action est permanente et irréversible&nbsp;!";
+$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification&nbsp;:";
+$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux.";
+$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau";
+$a->strings["Remove Account"] = "Supprimer le compte";
+$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte.";
+$a->strings["Remove This Channel"] = "Supprimer ce canal";
+$a->strings["This channel will be completely removed from the network. "] = "Ce canal sera complètement supprimé du réseau.";
+$a->strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur 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["No channel."] = "Pas de canal.";
-$a->strings["Common connections"] = "Relations communes";
-$a->strings["No connections in common."] = "Pas de relation 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["Remove Channel"] = "Supprimer le canal";
+$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 correctement 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["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par 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["is now connected to"] = "est maintenant connecté avec";
-$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é";
-$a->strings["Channel has been blocked"] = "Le canal est bloqué";
-$a->strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses.";
-$a->strings["Channel has been unignored"] = "Le canal n'est plus ignoré";
-$a->strings["Channel has been ignored"] = "Le canal est ignoré";
-$a->strings["Channel has been unarchived"] = "Le canal n'est plus archivé";
-$a->strings["Channel has been archived"] = "Le canal est archivé";
-$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["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";
-$a->strings["Ignore or Unignore this connection"] = "Ignorer ou ne plus ignorer cette relation";
-$a->strings["Unarchive"] = "Ne plus archiver";
-$a->strings["Archive"] = "Archiver";
-$a->strings["Archive or Unarchive this connection"] = "Archiver ou ne plus archiver cette relation";
-$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["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"] = "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";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée.";
-$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["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"] = "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";
-$a->strings["Simple Permissions (select one and submit)"] = "Permissions simples (en choisir une, puis valider)";
-$a->strings["Visit %s's profile - %s"] = "Visiter le profil de %s - %s";
-$a->strings["Block/Unblock contact"] = "Bloquer/Débloquer le contact";
-$a->strings["Ignore contact"] = "Ignorer le contact";
-$a->strings["Repair URL settings"] = "Réparer les réglages d'URL";
-$a->strings["View conversations"] = "Voir les conversations";
-$a->strings["Delete contact"] = "Supprimer le contact";
-$a->strings["Last update:"] = "Dernière mise à jour&nbsp;:";
-$a->strings["Update public posts"] = "Mettre à jour les publications";
-$a->strings["Update now"] = "Mettre à jour maintenant";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$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["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["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["Hubzilla - &quot;The Network&quot;"] = "La Matrice Rouge - &quot;LE Réseau&quot;";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Hubzilla Server - Setup"] = "Serveur de la Matrice Rouge - Configuration";
+$a->strings["Items tagged with: %s"] = "Eléments étiquetés avec&nbsp;: %s";
+$a->strings["Search results for: %s"] = "Résultats de recherche pour&nbsp;: %s";
+$a->strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée.";
+$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 d'essayer à nouveau.";
+$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 d'essayer à nouveau.";
+$a->strings["Settings updated."] = "Paramètres mis à jour.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Name of application"] = "Nom de l'application";
+$a->strings["Consumer Key"] = "Clef client";
+$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 client";
+$a->strings["Redirect"] = "Redirection";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["Optional"] = "Facultatif";
+$a->strings["Application not found."] = "";
+$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"] = "Aucun paramètre de fonctionnalité configuré";
+$a->strings["Feature/Addon Settings"] = "Paramètres des extensions/greffons";
+$a->strings["Account Settings"] = "Paramètres du compte";
+$a->strings["Enter New Password:"] = "Nouveau mot de passe&nbsp;:";
+$a->strings["Confirm New Password:"] = "Confirmer le nouveau mot de passe&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 this account including all its channels"] = "Supprimer ce compte et tous ses canaux";
+$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
+$a->strings["Connector Settings"] = "Paramètres du connecteur";
+$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux mobiles";
+$a->strings["%s - (Experimental)"] = "%s - (Expérimental)";
+$a->strings["Display Settings"] = "Afficher les paramètres";
+$a->strings["Theme Settings"] = "Paramètres du thème";
+$a->strings["Custom Theme Settings"] = "Paramètres personnels du thème";
+$a->strings["Content Settings"] = "Paramètres liés au contenu";
+$a->strings["Display Theme:"] = "Afficher le thème&nbsp;:";
+$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
+$a->strings["Enable user zoom on mobile devices"] = "Permettre à l'utilisateur d'un mobile d'agrandir le contenu";
+$a->strings["Update browser every xx seconds"] = "Mettre à jour 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["Show emoticons (smilies) as images"] = "Remplacer les émoticônes (smileys) par des images";
+$a->strings["Link post titles to source"] = "Lier les titres des publications à leur source";
+$a->strings["System Page Layout Editor - (advanced)"] = "Editeur de mise en page des pages systèmes - (avancé)";
+$a->strings["Use blog/list mode on channel page"] = "Utiliser le mode blog/liste sur la page du canal";
+$a->strings["(comments displayed separately)"] = "(commentaires affichés séparément)";
+$a->strings["Use blog/list mode on grid page"] = "Utiliser le mode blog/liste sur la page du réseau";
+$a->strings["Channel page max height of content (in pixels)"] = "Hauteur maximale du contenu pour la page du canal (en pixels)";
+$a->strings["click to expand content exceeding this height"] = "cliquer pour dérouler le contenu dépassant cette limite";
+$a->strings["Grid page max height of content (in pixels)"] = "Hauteur maximale du contenu sur la page du réseau (en pixels)";
+$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["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?";
+$a->strings["Your channel address is"] = "L'adresse de votre canal est";
+$a->strings["Channel Settings"] = "Paramètres du canal";
+$a->strings["Basic Settings"] = "Paramètres standard";
+$a->strings["Your Timezone:"] = "Votre fureau horaire&nbsp;:";
+$a->strings["Default Post Location:"] = "Emplacement de publication 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 du 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"] = "Paramètres de sécurité et de confidentialité";
+$a->strings["Your permissions are already configured. Click to view/adjust"] = "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster";
+$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:"] = "Paramètres de confidentialité simplifiés&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 aux permissions type réseau social, avec une confidentialité améliorée)</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 à \"étiqueter\" vos publications";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori ";
+$a->strings["Advanced Privacy Settings"] = "Paramètres de confidentialité 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 to use the website limit. The website expires after %d days."] = "0 ou vide pour utiliser la limite du site. Le délai du site est de %d jours.";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de demandes de contact 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["Channel permissions category:"] = "Catégorie de permissions du canal&nbsp;:";
+$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"] = "Paramètres de notification";
+$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand&nbsp;:";
+$a->strings["accepting a friend request"] = "vous acceptez une demande de contact";
+$a->strings["joining a forum/community"] = "vous rejoignez un forum ou une communauté";
+$a->strings["making an <em>interesting</em> profile change"] = "vous faîtes 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 contact";
+$a->strings["Your connections are confirmed"] = "Vos contacts sont confirmés";
+$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é 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é/contact";
+$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é/encouragé/etc. dans une publication";
+$a->strings["Show visual notifications including:"] = "Afficher des notifications visuelles y compris&nbsp;:";
+$a->strings["Unseen grid activity"] = "Activité du réseau pas encore consultée";
+$a->strings["Unseen channel activity"] = "Activité non vue sur le canal";
+$a->strings["Unseen private messages"] = "Messages privés non lus";
+$a->strings["Recommended"] = "Recommandé";
+$a->strings["Upcoming events"] = "Événements à venir";
+$a->strings["Events today"] = "Événements aujourd'hui";
+$a->strings["Upcoming birthdays"] = "Anniversaires à venir";
+$a->strings["Not available in all themes"] = "Pas disponible dans tous les thèmes";
+$a->strings["System (personal) notifications"] = "Notifications système (personnelles)";
+$a->strings["System info messages"] = "Messages d'info système";
+$a->strings["System critical alerts"] = "Alertes critiques système";
+$a->strings["New connections"] = "Nouveaux contacts";
+$a->strings["System Registrations"] = "Inscriptions système";
+$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications";
+$a->strings["Notify me of events this many days in advance"] = "Me prévenir d’événements à venir tant de jours en avance";
+$a->strings["Must be greater than 0"] = "Doit être supérieur à 0";
+$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/type de page";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour des situations particulières";
+$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Mode expert requis (<a href=\"settings/features\">Paramètres > Fonctions supplémentaires</a>) pour ajuster&nbsp;!";
+$a->strings["Miscellaneous Settings"] = "Paramètres divers";
+$a->strings["Default photo upload folder"] = "Répertoire par défaut pour les photos téléversées";
+$a->strings["%Y - current year, %m - current month"] = "%Y - année en cours, %m - mois en cours";
+$a->strings["Default file upload folder"] = "Répertoire par défaut pour les fichiers téléversés";
+$a->strings["Personal menu to display in your channel pages"] = "Menu personnel à afficher sur les pages de votre canal";
+$a->strings["Remove this channel."] = "Supprimer ce canal";
+$a->strings["Firefox Share \$Projectname provider"] = "Connecteur \$Projectname pour Firefox Share";
+$a->strings["Start calendar week on monday"] = "Commencer la semaine du calendrier le lundi";
+$a->strings["\$Projectname Server - Setup"] = "Serveur \$Projectname - 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 connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter à 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.";
$a->strings["Your site database has been installed."] = "La base de données de votre site a été installée.";
-$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["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin).";
$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 Hubzilla 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["In order to install \$Projectname we need to know how to connect to your database."] = "Pour installer \$Projectname, nous avons besoin de savoir comment se connecter à 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 de site si vous avez des questions à 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 la base de données";
-$a->strings["Default is localhost"] = "Par défaut, localhost";
-$a->strings["Database Port"] = "Port du serveur";
+$a->strings["Database Server Name"] = "Nom du serveur de base de données";
+$a->strings["Default is 127.0.0.1"] = "Par défaut 127.0.0.1";
+$a->strings["Database Port"] = "Port de la base de données";
$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 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["Database Type"] = "Type de 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";
-$a->strings["Please use SSL (https) URL if available."] = "Merci d'utiliser SSL/TLS (https) autant que possible.";
-$a->strings["Please select a default timezone for your website"] = "Merci de choisir une zone de temps (fuseau horaire) pour votre site";
-$a->strings["Site settings"] = "Réglages du site";
+$a->strings["Website URL"] = "URL du site web";
+$a->strings["Please use SSL (https) URL if available."] = "Veuillez utiliser SSL/TLS (https) si disponible.";
+$a->strings["Please select a default timezone for your website"] = "Veuillez choisir un fuseau horaire par défaut pour votre site";
+$a->strings["Site settings"] = "Paramètres du site";
+$a->strings["Enable \$Projectname <strong>advanced</strong> features?"] = "";
+$a->strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver une version CLI de PHP dans le PATH du serveur web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "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.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron.";
$a->strings["PHP executable path"] = "Chemin vers l'éxecutable PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans.";
$a->strings["Command line PHP"] = "PHP en ligne de commande (CLI)";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée.";
-$a->strings["This is required for message delivery to work."] = "Elle est nécessaire pour la livraison de messages.";
+$a->strings["This is required for message delivery to work."] = "Elle est nécessaire pour la distribution des messages.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois.";
+$a->strings["You can adjust these settings in the servers php.ini."] = "Vous pouvez ajuster ces paramètres dans le php.ini du serveur.";
+$a->strings["PHP upload limits"] = "Limites de téléversement de PHP";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Générer les clefs de chiffrement";
$a->strings["libCurl PHP module"] = "module PHP libCurl";
$a->strings["GD graphics PHP module"] = "module PHP GD graphics";
$a->strings["OpenSSL PHP module"] = "module PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "module PHP mysqli";
+$a->strings["mysqli or postgres PHP module"] = "module PHP postgres ou mysqli";
$a->strings["mb_string PHP module"] = "module PHP mb_string";
$a->strings["mcrypt PHP module"] = "module PHP mcrypt";
+$a->strings["xml PHP module"] = "module PHP xml";
$a->strings["Apache mod_rewrite module"] = "module Apache mod_rewrite";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé.";
$a->strings["proc_open"] = "proc_open";
$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini";
$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur&nbsp;: le module GD de PHP (avec support JPEG) est requis, mais pas installé.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur&nbsp;: le module GD de PHP avec support JPEG est requis, mais pas installé.";
$a->strings["Error: openssl PHP module required but not installed."] = "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur&nbsp;: le module mysqli de PHP est requis, mais pas installé.";
+$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Erreur&nbsp;: un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé.";
$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["Error: xml PHP module required for DAV but not installed."] = "Erreur&nbsp;: le module xml de PHP est requis pour le DAV, 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 La Matrice Rouge.";
+$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 \$Projectname.";
$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."] = "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["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname utilise le moteur de gabarits 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 à la racine du site \$Projectname.";
$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 %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["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 au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient.";
$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["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"] = "\$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de \$Projectname - 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 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 recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si votre certificat n'est pas reconnu, les membres des autres sites (avec certificats valides) recevront des messages d'avertissement sur leur propre sites.";
-$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 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 (non recommandé).";
+$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 accepte les connexions https ou s'il permet les connexions 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é&nbsp;!";
+$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 par exemple à des images sur votre propre hub.";
+$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité.";
+$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis.";
+$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe des 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 in .htaccess is not working. Check your server configuration.Test: "] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test&nbsp;:";
$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["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BDD.";
$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["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 du réseau.";
+$a->strings["No valid account found."] = "Aucun compte valide trouvé.";
+$a->strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyé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"] = "Enregistrez ou copiez votre nouveau mot de passe, puis";
+$a->strings["click here to login"] = "cliquez ici pour vous connecter";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page des <em>Paramètres</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é&nbsp;?";
+$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 aux lettres pour la suite des instructions.";
+$a->strings["Email Address"] = "Adresse de courriel";
+$a->strings["Reset"] = "Réinitialiser";
+$a->strings["Files: shared with me"] = "Fichiers&nbsp;: partagés avec moi";
+$a->strings["NEW"] = "NOUVEAU";
+$a->strings["Remove all files"] = "Supprimer tous les fichiers";
+$a->strings["Remove this file"] = "Supprimer ce fichier";
$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["Red"] = "Rouge";
-$a->strings["This is a hub of the Hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur de la Matrice Rouge - un réseau collaboratif de plusieurs serveurs qui assurent la protection de votre vie privée notamment par la décentralisation de votre identité.";
-$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 Hubzilla."] = "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Rouge.";
+$a->strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés&nbsp;:";
+$a->strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé";
+$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée.";
+$a->strings["Tag: "] = "Étiquette&nbsp;:";
+$a->strings["Last background fetch: "] = "Dernière récupération en tâche de fond&nbsp;:";
+$a->strings["Current load average: "] = "Charge moyenne actuelle&nbsp;:";
+$a->strings["Running at web location"] = "Tourne à l'adresse internet";
+$a->strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur \$Projectname.";
$a->strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
-$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"hubzilla\" à librelist - point com";
+$a->strings["\$projectname issues"] = "Problèmes \$projectname";
+$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["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["Album name could not be decoded"] = "Le nom de l'Album n'a pu être décodé";
-$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["Manage remote sources of content for your channel."] = "Gérer les sources distantes de contenu pour 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 le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal.";
+$a->strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'il contient ces mots (un par ligne)";
+$a->strings["Leave blank to import all public content"] = "Laissez vide pour importer tout le contenu public";
$a->strings["Source not found."] = "Source introuvable.";
-$a->strings["Edit Source"] = "Éditer la source";
+$a->strings["Edit Source"] = "Modifier 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["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ne suit plus %3\$s de %2\$s";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures.";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s avec %4\$s";
$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["Profile Config"] = "Configurations du profil";
-$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 public";
-$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["Thing updated"] = "Elément mis à jour";
$a->strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
-$a->strings["Thing added"] = "Chose ajoutée";
+$a->strings["Thing added"] = "Elément ajouté";
$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-$a->strings["Show Thing"] = "Montrer chose";
+$a->strings["Show Thing"] = "Montrer élément";
$a->strings["item not found."] = "élément introuvable.";
-$a->strings["Edit Thing"] = "Éditer chose";
+$a->strings["Edit Thing"] = "Modifier élément";
$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.";
-$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Impossible de créer un doublon d'un identifiant de canal. L'import a échoué.";
-$a->strings["Channel clone failed. Import failed."] = "Le clonage du canal a échoué. L'import a échoué.";
-$a->strings["Cloned channel not found. Import failed."] = "Le canal cloné n'a pas été trouvé. L'import a échoué.";
-$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 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 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["Please join my community on Hubzilla."] = "Veuillez me rejoindre sur la Matrice Rouge.";
-$a->strings["You will need to supply this invitation code: "] = "Vous aurez besoin de fournir le code suivant:";
-$a->strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveurs ( ils sont tous inter-connectés )";
-$a->strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal dans la barre de recherche du site.";
-$a->strings["or visit "] = "ou visitez";
-$a->strings["3. Click [Connect]"] = "3. Click sur [Ajouter]";
-$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 Hubzilla 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 relation.";
+$a->strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné";
+$a->strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose";
+$a->strings["URL of thing (optional)"] = "URL de l'élément (facultatif)";
+$a->strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)";
+$a->strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil";
+$a->strings["Export Channel"] = "Exporter le canal";
+$a->strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus.";
+$a->strings["Export Content"] = "Exporter le contenu";
+$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence.";
+$a->strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier";
+$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit.";
+$a->strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1\$s\">%2\$s</a>";
+$a->strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1\$s\">%2\$s</a>";
+$a->strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1\$s\">%2\$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord).";
+$a->strings["No connections."] = "Aucun contact.";
$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 moyenne";
-$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é.";
-$a->strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué.";
-$a->strings["Messages"] = "Messages";
-$a->strings["Message deleted."] = "Message supprimé.";
-$a->strings["Message recalled."] = "Message annulé/rappelé.";
-$a->strings["Send Private Message"] = "Envoyer un Message Privé";
-$a->strings["To:"] = "À&nbsp;:";
-$a->strings["Subject:"] = "Sujet&nbsp;:";
-$a->strings["Send"] = "Envoyer";
-$a->strings["Message not found."] = "Message introuvable.";
-$a->strings["Delete message"] = "Supprimer message";
-$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. 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["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"] = "Annuler";
-$a->strings["No more system notifications."] = "Pas d'autre notification du système.";
-$a->strings["System Notifications"] = "Notifications du système";
-$a->strings["Unable to find your hub."] = "Impossible de trouver votre hub.";
-$a->strings["Post successful."] = "Contribution effectuée.";
-$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"] = "Voir les Résultats";
-$a->strings["Friendica Photo Album Import"] = "Importer votre Album Photo Friendica";
-$a->strings["This will import all your Friendica photo albums to this Red channel."] = "Cette fonction va importer tous vos albums photos Friendica dans ce canal de la Matrice Rouge.";
-$a->strings["Friendica Server base URL"] = "URL vers le serveur Friendica";
-$a->strings["Friendica Login Username"] = "Nom d'utilisateur Friendica";
-$a->strings["Friendica Login Password"] = "Mot de passe Friendica";
-$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte.";
-$a->strings["Remove This Account"] = "Supprimer ce Compte";
-$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Cette fonction va complètement supprimer le compte incluant tous ses canaux sur la matrice. Attention, cette action est irréversible.";
-$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Supprimer ce compte, tous ses canaux et tous les clones sur la matrice.";
-$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Par défault, seuls les instances de canaux situés sur ce hub seront supprimer de la matrice.";
-$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["Set font-size for posts and comments"] = "Définir font-size pour contribution et commentaires";
-$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 color, 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 attachment"] = "Image de fond - fichier";
-$a->strings["Set background color"] = "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 color"] = "Définir la couleur d'arrière-plan des sections";
-$a->strings["Set color of items - use hex"] = "Définir la couleur des éléments - en héxadécimal";
-$a->strings["Set color 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 color 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";
-$a->strings["Header image"] = "Image de l'entête";
-$a->strings["Header image only on profile pages"] = "Image de l'entête tel qu'elle est affichée sur la page du profil";
-$a->strings["Light (Hubzilla default)"] = "Blanc (valeur par défaut)";
+$a->strings["View Connections"] = "Voir les contacts";
+$a->strings["Source of Item"] = "Source de l'élément";
+$a->strings["Page Title"] = "Titre de la page";
+$a->strings["Xchan Lookup"] = "Recherche xchan";
+$a->strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\")&nbsp;:";
+$a->strings["Cover Photos"] = "Photos de couverture";
+$a->strings["Upload Cover Photo"] = "Téléverser une photo de couverture";
+$a->strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)";
+$a->strings["Theme settings"] = "Paramètres du thème";
+$a->strings["Select scheme"] = "Définir la palette de couleurs";
$a->strings["Narrow navbar"] = "Barre de navigation fine";
$a->strings["Navigation bar background color"] = "Couleur de fond de la barre de navigation";
-$a->strings["Navigation bar gradient top color"] = "Gradient de la barre de navigation HAUT";
-$a->strings["Navigation bar gradient bottom color"] = "Gradient de la barre de navigation BAS";
-$a->strings["Navigation active button gradient top color"] = "Gradient du bouton de navigation HAUT";
-$a->strings["Navigation active button gradient bottom color"] = "Gradient du bouton de navigation BAS";
+$a->strings["Navigation bar gradient top color"] = "Dégradé de la barre de navigation - couleur du haut";
+$a->strings["Navigation bar gradient bottom color"] = "Dégradé de la barre de navigation - couleur du bas";
+$a->strings["Navigation active button gradient top color"] = "Dégradé du bouton de navigation actif - couleur du haut";
+$a->strings["Navigation active button gradient bottom color"] = "Dégradé du bouton de navigation actif - couleur du bas";
$a->strings["Navigation bar border color "] = "Couleur de la bordure de la barre de navigation";
-$a->strings["Navigation bar icon color "] = "Couleur de l'icône de la barre de navigation";
+$a->strings["Navigation bar icon color "] = "Couleur des icônes de la barre de navigation";
$a->strings["Navigation bar active icon color "] = "Couleur de l'icône active de la barre de navigation";
$a->strings["link color"] = "couleur des liens";
$a->strings["Set font-color for banner"] = "Définir la couleur du texte de la bannière";
@@ -1877,22 +2221,25 @@ $a->strings["Set the indent for comments"] = "Indentation des commentaires";
$a->strings["Set the basic color for item icons"] = "Définir la couleur de base pour les icônes des éléments";
$a->strings["Set the hover color 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-color for posts and comments"] = "Définir font-colour pour les contributions et commentaires";
+$a->strings["Example: 14px"] = "Exemple : 14px";
+$a->strings["Set font-size for posts and comments"] = "Définir la taille de police pour les contributions et commentaires";
+$a->strings["Set font-color for posts and comments"] = "Définir la couleur de police 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 maximum width of content region in pixel"] = "Définir la largeur maximale de la zone des contenus";
+$a->strings["Leave empty for default width"] = "Laissez vide pour avoir la largeur par défaut";
+$a->strings["Left align page content"] = "Aligner à gauche le contenu de la page";
$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["Update %s failed. See error logs."] = "La mise à jour %s a échoué. Merci de consulter les journaux d'erreur.";
+$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 Hubzilla"] = "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red";
+$a->strings["Create an account to access services and applications within the Hubzilla"] = "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla";
$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?"] = "Authentification magique a échouée. Êtes-vous toujours connecté à votre HUB?";
+$a->strings["Forgot your password?"] = "Mot de passe oublié&nbsp;?";
$a->strings["toggle mobile"] = "(dés)activer mobile";
+$a->strings["Website SSL certificate is not valid. Please correct."] = "Le certificat SSL n'est pas valide. Corrigez le.";
+$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Erreur SSL pour %s";
+$a->strings["Cron/Scheduled tasks not running."] = "Les taches planifiées ne tournent pas.";
+$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Les tâches planifiées ne tournent pas sur %s";
diff --git a/view/it/hmessages.po b/view/it/hmessages.po
index 1a3118f7d..af3f7f89c 100644
--- a/view/it/hmessages.po
+++ b/view/it/hmessages.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-29 00:03-0800\n"
-"PO-Revision-Date: 2016-02-02 15:36+0000\n"
+"POT-Creation-Date: 2016-02-12 00:03-0800\n"
+"PO-Revision-Date: 2016-02-18 13:55+0000\n"
"Last-Translator: Paolo Wave <pynolo@tarine.net>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -33,8 +33,8 @@ msgid "Welcome %s. Remote authentication successful."
msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."
#: ../../include/Contact.php:101 ../../include/conversation.php:961
-#: ../../include/identity.php:953 ../../include/widgets.php:137
-#: ../../include/widgets.php:175 ../../mod/directory.php:321
+#: ../../include/identity.php:954 ../../include/widgets.php:147
+#: ../../include/widgets.php:185 ../../mod/directory.php:321
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
msgstr "Aggiungi"
@@ -60,324 +60,16 @@ msgstr "Impossibile trovare il nome utente nel file da importare."
msgid "Unable to create a unique channel address. Import failed."
msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
msgid "Import completed."
msgstr "L'importazione è terminata con successo."
-#: ../../include/ItemObject.php:89 ../../include/conversation.php:664
-msgid "Private Message"
-msgstr "Messaggio privato"
-
-#: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240
-#: ../../include/apps.php:259 ../../include/menu.php:108
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../mod/blocks.php:153 ../../mod/connections.php:286
-#: ../../mod/connections.php:306 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
-#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
-#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
-#: ../../mod/webpages.php:181
-msgid "Edit"
-msgstr "Modifica"
-
-#: ../../include/ItemObject.php:120 ../../include/RedDAV/RedBrowser.php:241
-#: ../../include/apps.php:260 ../../include/conversation.php:657
-#: ../../mod/admin.php:895 ../../mod/admin.php:1054 ../../mod/blocks.php:155
-#: ../../mod/connections.php:259 ../../mod/connedit.php:560
-#: ../../mod/editblock.php:181 ../../mod/editlayout.php:179
-#: ../../mod/editwebpage.php:223 ../../mod/group.php:173
-#: ../../mod/photos.php:1126 ../../mod/settings.php:649
-#: ../../mod/thing.php:257 ../../mod/webpages.php:183
-msgid "Delete"
-msgstr "Elimina"
-
-#: ../../include/ItemObject.php:126 ../../include/conversation.php:656
-msgid "Select"
-msgstr "Scegli"
-
-#: ../../include/ItemObject.php:130
-msgid "Save to Folder"
-msgstr "Salva nella cartella"
-
-#: ../../include/ItemObject.php:151
-msgid "I will attend"
-msgstr "Parteciperò"
-
-#: ../../include/ItemObject.php:151
-msgid "I will not attend"
-msgstr "Non parteciperò"
-
-#: ../../include/ItemObject.php:151
-msgid "I might attend"
-msgstr "Forse parteciperò"
-
-#: ../../include/ItemObject.php:161
-msgid "I agree"
-msgstr "Sono d'accordo"
-
-#: ../../include/ItemObject.php:161
-msgid "I disagree"
-msgstr "Non sono d'accordo"
-
-#: ../../include/ItemObject.php:161
-msgid "I abstain"
-msgstr "Mi astengo"
-
-#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187
-#: ../../include/conversation.php:1707 ../../mod/photos.php:1079
-#: ../../mod/photos.php:1091
-msgid "View all"
-msgstr "Vedi tutto"
-
-#: ../../include/ItemObject.php:179 ../../include/conversation.php:1731
-#: ../../include/taxonomy.php:414 ../../include/identity.php:1266
-#: ../../mod/photos.php:1083 ../../mod/zcard.php:56
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Mi piace"
-msgstr[1] "Mi piace"
-
-#: ../../include/ItemObject.php:184 ../../include/conversation.php:1734
-#: ../../mod/photos.php:1088
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Non mi piace"
-msgstr[1] "Non mi piace"
-
-#: ../../include/ItemObject.php:212
-msgid "Add Star"
-msgstr "Aggiungi ai preferiti"
-
-#: ../../include/ItemObject.php:213
-msgid "Remove Star"
-msgstr "Rimuovi dai preferiti"
-
-#: ../../include/ItemObject.php:214
-msgid "Toggle Star Status"
-msgstr "Attiva/disattiva preferito"
-
-#: ../../include/ItemObject.php:218
-msgid "starred"
-msgstr "preferito"
-
-#: ../../include/ItemObject.php:227 ../../include/conversation.php:671
-msgid "Message signature validated"
-msgstr "Messaggio con firma verificata"
-
-#: ../../include/ItemObject.php:228 ../../include/conversation.php:672
-msgid "Message signature incorrect"
-msgstr "Massaggio con firma non corretta"
-
-#: ../../include/ItemObject.php:236
-msgid "Add Tag"
-msgstr "Aggiungi un tag"
-
-#: ../../include/ItemObject.php:254 ../../mod/photos.php:1023
-msgid "I like this (toggle)"
-msgstr "Attiva/disattiva Mi piace"
-
-#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328
-msgid "like"
-msgstr "mi piace"
-
-#: ../../include/ItemObject.php:255 ../../mod/photos.php:1024
-msgid "I don't like this (toggle)"
-msgstr "Attiva/disattiva Non mi piace"
-
-#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329
-msgid "dislike"
-msgstr "non mi piace"
-
-#: ../../include/ItemObject.php:259
-msgid "Share This"
-msgstr "Condividi"
-
-#: ../../include/ItemObject.php:259
-msgid "share"
-msgstr "condividi"
-
-#: ../../include/ItemObject.php:268
-msgid "Delivery Report"
-msgstr "Rapporto di trasmissione"
-
-#: ../../include/ItemObject.php:286
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commento"
-msgstr[1] "%d commenti"
-
-#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Guarda il profilo di %s - %s"
-
-#: ../../include/ItemObject.php:319
-msgid "to"
-msgstr "a"
-
-#: ../../include/ItemObject.php:320
-msgid "via"
-msgstr "via"
-
-#: ../../include/ItemObject.php:321
-msgid "Wall-to-Wall"
-msgstr "Da bacheca a bacheca"
-
-#: ../../include/ItemObject.php:322
-msgid "via Wall-To-Wall:"
-msgstr "da bacheca a bacheca:"
-
-#: ../../include/ItemObject.php:334 ../../include/conversation.php:719
-#, php-format
-msgid "from %s"
-msgstr "da %s"
-
-#: ../../include/ItemObject.php:337 ../../include/conversation.php:722
-#, php-format
-msgid "last edited: %s"
-msgstr "ultima modifica: %s"
-
-#: ../../include/ItemObject.php:338 ../../include/conversation.php:723
-#, php-format
-msgid "Expires: %s"
-msgstr "Scadenza: %s"
-
-#: ../../include/ItemObject.php:362
-msgid "Save Bookmarks"
-msgstr "Salva segnalibro"
-
-#: ../../include/ItemObject.php:363
-msgid "Add to Calendar"
-msgstr "Aggiungi al calendario"
-
-#: ../../include/ItemObject.php:372
-msgid "Mark all seen"
-msgstr "Marca tutto come letto"
-
-#: ../../include/ItemObject.php:378 ../../mod/photos.php:1209
-msgctxt "noun"
-msgid "Likes"
-msgstr "Mi piace"
-
-#: ../../include/ItemObject.php:379 ../../mod/photos.php:1210
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "Non mi piace"
-
-#: ../../include/ItemObject.php:384 ../../include/acl_selectors.php:252
-#: ../../mod/photos.php:1215
-msgid "Close"
-msgstr "Chiudi"
-
-#: ../../include/ItemObject.php:389 ../../include/conversation.php:740
-#: ../../include/conversation.php:1237 ../../mod/editblock.php:150
-#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
-#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1026
-msgid "Please wait"
-msgstr "Attendere"
-
-#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] mostra tutto"
-
-#: ../../include/ItemObject.php:694 ../../mod/photos.php:1042
-#: ../../mod/photos.php:1160
-msgid "This is you"
-msgstr "Questo sei tu"
-
-#: ../../include/ItemObject.php:696 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1044 ../../mod/photos.php:1162
-msgid "Comment"
-msgstr "Commento"
-
-#: ../../include/ItemObject.php:697 ../../include/js_strings.php:22
-#: ../../include/widgets.php:679 ../../include/widgets.php:691
-#: ../../mod/admin.php:453 ../../mod/admin.php:596 ../../mod/admin.php:888
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1228 ../../mod/admin.php:1423
-#: ../../mod/admin.php:1508 ../../mod/appman.php:99 ../../mod/chat.php:184
-#: ../../mod/chat.php:213 ../../mod/connect.php:93 ../../mod/connedit.php:720
-#: ../../mod/events.php:461 ../../mod/events.php:658
-#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/group.php:81 ../../mod/import.php:527
-#: ../../mod/import_items.php:116 ../../mod/invite.php:142
-#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
-#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
-#: ../../mod/photos.php:637 ../../mod/photos.php:1005
-#: ../../mod/photos.php:1045 ../../mod/photos.php:1163 ../../mod/poke.php:171
-#: ../../mod/profiles.php:675 ../../mod/rate.php:168
-#: ../../mod/settings.php:586 ../../mod/settings.php:698
-#: ../../mod/settings.php:726 ../../mod/settings.php:749
-#: ../../mod/settings.php:834 ../../mod/settings.php:1024
-#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/sources.php:104
-#: ../../mod/sources.php:138 ../../mod/thing.php:312 ../../mod/thing.php:358
-#: ../../mod/xchan.php:11 ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Salva"
-
-#: ../../include/ItemObject.php:698 ../../include/conversation.php:1209
-#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
-#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
-msgid "Bold"
-msgstr "Grassetto"
-
-#: ../../include/ItemObject.php:699 ../../include/conversation.php:1210
-#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
-#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
-msgid "Italic"
-msgstr "Corsivo"
-
-#: ../../include/ItemObject.php:700 ../../include/conversation.php:1211
-#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
-#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
-msgid "Underline"
-msgstr "Sottolineato"
-
-#: ../../include/ItemObject.php:701 ../../include/conversation.php:1212
-#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
-#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
-msgid "Quote"
-msgstr "Citazione"
-
-#: ../../include/ItemObject.php:702 ../../include/conversation.php:1213
-#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
-#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
-msgid "Code"
-msgstr "Codice"
-
-#: ../../include/ItemObject.php:703
-msgid "Image"
-msgstr "Immagine"
-
-#: ../../include/ItemObject.php:704
-msgid "Insert Link"
-msgstr "Collegamento"
-
-#: ../../include/ItemObject.php:705
-msgid "Video"
-msgstr "Video"
-
-#: ../../include/ItemObject.php:706 ../../include/conversation.php:1179
-#: ../../include/page_widgets.php:40 ../../mod/editblock.php:171
-#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
-#: ../../mod/events.php:458 ../../mod/photos.php:1046
-#: ../../mod/webpages.php:188
-msgid "Preview"
-msgstr "Anteprima"
-
-#: ../../include/ItemObject.php:709 ../../include/conversation.php:1267
-#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
-msgid "Encrypt text"
-msgstr "Cifratura del messaggio"
-
#: ../../include/RedDAV/RedBrowser.php:107
#: ../../include/RedDAV/RedBrowser.php:239
msgid "parent"
msgstr "cartella superiore"
-#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2606
+#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2614
msgid "Collection"
msgstr "Cartella"
@@ -403,8 +95,8 @@ msgstr "Appuntamenti inviati"
#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360
#: ../../include/apps.php:415 ../../include/conversation.php:1037
-#: ../../include/widgets.php:1386 ../../mod/photos.php:754
-#: ../../mod/photos.php:1195
+#: ../../include/widgets.php:1407 ../../mod/photos.php:766
+#: ../../mod/photos.php:1209
msgid "Unknown"
msgstr "Sconosciuto"
@@ -431,13 +123,13 @@ msgid "Create"
msgstr "Crea"
#: ../../include/RedDAV/RedBrowser.php:231
-#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1399
-#: ../../mod/photos.php:781 ../../mod/photos.php:1316
+#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1420
+#: ../../mod/photos.php:793 ../../mod/photos.php:1333
#: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353
msgid "Upload"
msgstr "Carica"
-#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:1060
+#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:1158
#: ../../mod/settings.php:588 ../../mod/settings.php:614
#: ../../mod/sharedwithme.php:95
msgid "Name"
@@ -447,7 +139,7 @@ msgstr "Nome"
msgid "Type"
msgstr "Tipo"
-#: ../../include/RedDAV/RedBrowser.php:237 ../../include/text.php:1266
+#: ../../include/RedDAV/RedBrowser.php:237 ../../include/text.php:1274
#: ../../mod/sharedwithme.php:97
msgid "Size"
msgstr "Dimensione"
@@ -456,6 +148,29 @@ msgstr "Dimensione"
msgid "Last Modified"
msgstr "Ultima modifica"
+#: ../../include/RedDAV/RedBrowser.php:240 ../../include/apps.php:259
+#: ../../include/menu.php:108 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/ItemObject.php:100
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
+#: ../../mod/webpages.php:181
+msgid "Edit"
+msgstr "Modifica"
+
+#: ../../include/RedDAV/RedBrowser.php:241 ../../include/apps.php:260
+#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
+#: ../../mod/blocks.php:155 ../../mod/connections.php:259
+#: ../../mod/connedit.php:560 ../../mod/editblock.php:181
+#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
+#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
+#: ../../mod/admin.php:1152 ../../mod/settings.php:649 ../../mod/thing.php:257
+#: ../../mod/webpages.php:183
+msgid "Delete"
+msgstr "Elimina"
+
#: ../../include/RedDAV/RedBrowser.php:282
#, php-format
msgid "You are using %1$s of your available file storage."
@@ -572,11 +287,16 @@ msgid "Other networks and post services"
msgstr "Invio ad altre reti o a siti esterni"
#: ../../include/acl_selectors.php:251 ../../mod/chat.php:211
-#: ../../mod/filestorage.php:147 ../../mod/photos.php:631
-#: ../../mod/photos.php:998 ../../mod/thing.php:309 ../../mod/thing.php:355
+#: ../../mod/filestorage.php:147 ../../mod/photos.php:639
+#: ../../mod/photos.php:1012 ../../mod/thing.php:309 ../../mod/thing.php:355
msgid "Permissions"
msgstr "Permessi"
+#: ../../include/acl_selectors.php:252 ../../include/ItemObject.php:384
+#: ../../mod/photos.php:1229
+msgid "Close"
+msgstr "Chiudi"
+
#: ../../include/activities.php:42
msgid " and "
msgstr "e"
@@ -609,7 +329,7 @@ msgid "Site Admin"
msgstr "Amministrazione sito"
#: ../../include/apps.php:129 ../../include/conversation.php:1665
-#: ../../include/nav.php:103
+#: ../../include/nav.php:104
msgid "Bookmarks"
msgstr "Segnalibri"
@@ -617,36 +337,36 @@ msgstr "Segnalibri"
msgid "Address Book"
msgstr "Rubrica"
-#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1518
+#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1518
msgid "Login"
msgstr "Accedi"
-#: ../../include/apps.php:132 ../../include/nav.php:200
+#: ../../include/apps.php:132 ../../include/nav.php:203
#: ../../mod/manage.php:162
msgid "Channel Manager"
msgstr "Gestione canali"
-#: ../../include/apps.php:133 ../../include/nav.php:174
+#: ../../include/apps.php:133 ../../include/nav.php:176
msgid "Grid"
msgstr "Rete"
-#: ../../include/apps.php:134 ../../include/nav.php:202
-#: ../../include/widgets.php:557 ../../mod/admin.php:1168
-#: ../../mod/admin.php:1390
+#: ../../include/apps.php:134 ../../include/nav.php:205
+#: ../../include/widgets.php:577 ../../mod/admin.php:1266
+#: ../../mod/admin.php:1488
msgid "Settings"
msgstr "Impostazioni"
#: ../../include/apps.php:136 ../../include/conversation.php:1675
-#: ../../include/nav.php:107 ../../mod/webpages.php:178
+#: ../../include/nav.php:108 ../../mod/webpages.php:178
msgid "Webpages"
msgstr "Pagine web"
-#: ../../include/apps.php:137 ../../include/nav.php:177
+#: ../../include/apps.php:137 ../../include/nav.php:179
msgid "Channel Home"
msgstr "Bacheca del canale"
-#: ../../include/apps.php:138 ../../include/identity.php:1240
-#: ../../include/identity.php:1357 ../../mod/profperm.php:112
+#: ../../include/apps.php:138 ../../include/identity.php:1242
+#: ../../include/identity.php:1359 ../../mod/profperm.php:112
msgid "Profile"
msgstr "Profilo"
@@ -655,20 +375,20 @@ msgstr "Profilo"
msgid "Photos"
msgstr "Foto"
-#: ../../include/apps.php:140 ../../include/nav.php:196
+#: ../../include/apps.php:140 ../../include/nav.php:198
msgid "Events"
msgstr "Eventi"
-#: ../../include/apps.php:141 ../../include/nav.php:162
+#: ../../include/apps.php:141 ../../include/nav.php:164
msgid "Directory"
msgstr "Elenchi pubblici dei canali"
-#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:204
-#: ../../mod/help.php:209 ../../mod/layouts.php:176
+#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:208
+#: ../../mod/help.php:213 ../../mod/layouts.php:176
msgid "Help"
msgstr "Guida"
-#: ../../include/apps.php:143 ../../include/nav.php:188
+#: ../../include/apps.php:143 ../../include/nav.php:190
msgid "Mail"
msgstr "Messaggi"
@@ -677,14 +397,15 @@ msgid "Mood"
msgstr "Umore"
#: ../../include/apps.php:145 ../../include/conversation.php:965
+#: ../../mod/poke.php:164
msgid "Poke"
msgstr "Poke"
-#: ../../include/apps.php:146 ../../include/nav.php:97
+#: ../../include/apps.php:146 ../../include/nav.php:98
msgid "Chat"
msgstr "Chat"
-#: ../../include/apps.php:147 ../../include/nav.php:159
+#: ../../include/apps.php:147 ../../include/nav.php:161
#: ../../include/text.php:885 ../../include/text.php:897
#: ../../mod/connections.php:302 ../../mod/search.php:40
msgid "Search"
@@ -706,7 +427,7 @@ msgstr "Canale casuale"
msgid "Invite"
msgstr "Invita"
-#: ../../include/apps.php:152 ../../include/widgets.php:1272
+#: ../../include/apps.php:152 ../../include/widgets.php:1293
msgid "Features"
msgstr "Funzionalità"
@@ -743,12 +464,12 @@ msgstr "Acquista"
#: ../../include/attach.php:436 ../../include/attach.php:888
#: ../../include/attach.php:959 ../../include/attach.php:1111
#: ../../include/chat.php:133 ../../include/photos.php:29
-#: ../../include/items.php:4429 ../../index.php:186 ../../index.php:371
+#: ../../include/items.php:4437 ../../index.php:189 ../../index.php:377
#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22
#: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76
#: ../../mod/bookmarks.php:48 ../../mod/channel.php:100
-#: ../../mod/channel.php:215 ../../mod/channel.php:255 ../../mod/chat.php:94
+#: ../../mod/channel.php:217 ../../mod/channel.php:257 ../../mod/chat.php:94
#: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29
#: ../../mod/connedit.php:355 ../../mod/editblock.php:65
#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
@@ -772,7 +493,7 @@ msgstr "Acquista"
#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
#: ../../mod/service_limits.php:7 ../../mod/settings.php:568
-#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7
+#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
@@ -860,7 +581,7 @@ msgid "Attachments:"
msgstr "Allegati:"
#: ../../include/bb2diaspora.php:465 ../../include/event.php:22
-#: ../../include/text.php:1410
+#: ../../include/text.php:1418
msgid "l F d, Y \\@ g:i A"
msgstr "l d F Y \\@ G:i"
@@ -869,17 +590,17 @@ msgid "$Projectname event notification:"
msgstr "Notifica evento $Projectname:"
#: ../../include/bb2diaspora.php:471 ../../include/event.php:30
-#: ../../include/text.php:1414
+#: ../../include/text.php:1422
msgid "Starts:"
msgstr "Inizio:"
#: ../../include/bb2diaspora.php:479 ../../include/event.php:40
-#: ../../include/text.php:1418
+#: ../../include/text.php:1426
msgid "Finishes:"
msgstr "Fine:"
#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
-#: ../../include/identity.php:1004 ../../include/text.php:1425
+#: ../../include/text.php:1433 ../../include/identity.php:1005
#: ../../mod/directory.php:307
msgid "Location:"
msgstr "Luogo:"
@@ -972,7 +693,7 @@ msgstr "Chat non trovata."
msgid "Room is full"
msgstr "La chat è al completo"
-#: ../../include/comanche.php:34 ../../mod/admin.php:362
+#: ../../include/comanche.php:34 ../../mod/admin.php:366
msgid "Default"
msgstr "Predefinito"
@@ -983,7 +704,7 @@ msgid_plural "%d invitations available"
msgstr[0] "%d invito disponibile"
msgstr[1] "%d inviti disponibili"
-#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:461
msgid "Advanced"
msgstr "Avanzate"
@@ -1025,18 +746,18 @@ msgstr "Invita amici"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Per esempio: name=mario e country=italy"
-#: ../../include/contact_widgets.php:57 ../../include/widgets.php:304
-#: ../../include/features.php:93
+#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Cartelle salvate"
#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98
-#: ../../include/widgets.php:307
+#: ../../include/widgets.php:317
msgid "Everything"
msgstr "Tutto"
#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:282
-#: ../../include/widgets.php:36
+#: ../../include/widgets.php:46
msgid "Categories"
msgstr "Categorie"
@@ -1051,13 +772,13 @@ msgstr[1] "%d contatti in comune"
msgid "show more"
msgstr "mostra tutto"
-#: ../../include/conversation.php:120 ../../include/text.php:1940
+#: ../../include/conversation.php:120 ../../include/text.php:1948
#: ../../mod/like.php:361 ../../mod/subthread.php:83 ../../mod/tagger.php:43
msgid "photo"
msgstr "la foto"
#: ../../include/conversation.php:123 ../../include/event.php:904
-#: ../../include/text.php:1943 ../../mod/events.php:249 ../../mod/like.php:363
+#: ../../include/text.php:1951 ../../mod/events.php:249 ../../mod/like.php:363
#: ../../mod/tagger.php:47
msgid "event"
msgstr "l'evento"
@@ -1066,12 +787,12 @@ msgstr "l'evento"
msgid "channel"
msgstr "il canale"
-#: ../../include/conversation.php:148 ../../include/text.php:1946
+#: ../../include/conversation.php:148 ../../include/text.php:1954
#: ../../mod/like.php:361 ../../mod/subthread.php:83
msgid "status"
msgstr "il messaggio di stato"
-#: ../../include/conversation.php:150 ../../include/text.php:1948
+#: ../../include/conversation.php:150 ../../include/text.php:1956
#: ../../mod/tagger.php:53
msgid "comment"
msgstr "il commento"
@@ -1096,7 +817,8 @@ msgstr "%1$s adesso è connesso con %2$s"
msgid "%1$s poked %2$s"
msgstr "%1$s ha mandato un poke a %2$s"
-#: ../../include/conversation.php:243 ../../include/text.php:972
+#: ../../include/conversation.php:243 ../../include/text.php:973
+#: ../../include/text.php:978
msgid "poked"
msgstr "ha ricevuto un poke"
@@ -1106,46 +828,62 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s è %2$s"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1060
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Likes"
msgstr "Mi piace"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1060
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Dislikes"
msgstr "Non mi piace"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Agree"
msgstr "D'accordo"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Disagree"
msgstr "Non d'accordo"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Abstain"
msgstr "Astenuti"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Attending"
msgstr "Partecipano"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Not attending"
msgstr "Non partecipano"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Might attend"
msgstr "Forse partecipano"
+#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
+msgid "Select"
+msgstr "Scegli"
+
+#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
+msgid "Private Message"
+msgstr "Messaggio privato"
+
+#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
+msgid "Message signature validated"
+msgstr "Messaggio con firma verificata"
+
+#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
+msgid "Message signature incorrect"
+msgstr "Massaggio con firma non corretta"
+
#: ../../include/conversation.php:691
#, php-format
msgid "View %s's profile @ %s"
@@ -1159,15 +897,37 @@ msgstr "Categorie:"
msgid "Filed under:"
msgstr "Classificato come:"
+#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
+#, php-format
+msgid "from %s"
+msgstr "da %s"
+
+#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
+#, php-format
+msgid "last edited: %s"
+msgstr "ultima modifica: %s"
+
+#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
+#, php-format
+msgid "Expires: %s"
+msgstr "Scadenza: %s"
+
#: ../../include/conversation.php:738
msgid "View in context"
msgstr "Vedi nel contesto"
+#: ../../include/conversation.php:740 ../../include/conversation.php:1237
+#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
+msgid "Please wait"
+msgstr "Attendere"
+
#: ../../include/conversation.php:850
msgid "remove"
msgstr "rimuovi"
-#: ../../include/conversation.php:854 ../../include/nav.php:241
+#: ../../include/conversation.php:854 ../../include/nav.php:244
msgid "Loading..."
msgstr "Caricamento in corso..."
@@ -1287,8 +1047,16 @@ msgstr "Dove sei ora?"
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Scade il YYYY-MM-DD HH:MM"
+#: ../../include/conversation.php:1179 ../../include/page_widgets.php:40
+#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:458 ../../mod/photos.php:1060
+#: ../../mod/webpages.php:188
+msgid "Preview"
+msgstr "Anteprima"
+
#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
-#: ../../mod/layouts.php:184 ../../mod/photos.php:1025
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
#: ../../mod/webpages.php:182
msgid "Share"
msgstr "Condividi"
@@ -1301,6 +1069,36 @@ msgstr "Nome del link alla pagina"
msgid "Post as"
msgstr "Pubblica come "
+#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
+msgid "Bold"
+msgstr "Grassetto"
+
+#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
+msgid "Italic"
+msgstr "Corsivo"
+
+#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
+msgid "Underline"
+msgstr "Sottolineato"
+
+#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
+msgid "Quote"
+msgstr "Citazione"
+
+#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
+msgid "Code"
+msgstr "Codice"
+
#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
#: ../../mod/editwebpage.php:182
@@ -1414,6 +1212,11 @@ msgstr "Data di scadenza"
msgid "Set publish date"
msgstr "Data di uscita programmata"
+#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
+#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
+msgid "Encrypt text"
+msgstr "Cifratura del messaggio"
+
#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
msgid "OK"
msgstr "OK"
@@ -1449,7 +1252,7 @@ msgstr "Post recenti"
msgid "Sort by Post Date"
msgstr "Per data di creazione"
-#: ../../include/conversation.php:1536 ../../include/widgets.php:95
+#: ../../include/conversation.php:1536 ../../include/widgets.php:105
msgid "Personal"
msgstr "Personali"
@@ -1482,7 +1285,7 @@ msgstr "Spam"
msgid "Posts flagged as SPAM"
msgstr "Post marcati come spam"
-#: ../../include/conversation.php:1611 ../../mod/admin.php:1059
+#: ../../include/conversation.php:1611 ../../mod/admin.php:1157
msgid "Channel"
msgstr "Canale"
@@ -1518,6 +1321,29 @@ msgstr "Segnalibri salvati"
msgid "Manage Webpages"
msgstr "Gestisci le pagine web"
+#: ../../include/conversation.php:1707 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
+#: ../../mod/photos.php:1105
+msgid "View all"
+msgstr "Vedi tutto"
+
+#: ../../include/conversation.php:1731 ../../include/taxonomy.php:415
+#: ../../include/identity.php:1268 ../../include/ItemObject.php:179
+#: ../../mod/photos.php:1097
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Mi piace"
+msgstr[1] "Mi piace"
+
+#: ../../include/conversation.php:1734 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1102
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Non mi piace"
+msgstr[1] "Non mi piace"
+
#: ../../include/conversation.php:1737
msgctxt "noun"
msgid "Attending"
@@ -1573,7 +1399,7 @@ msgstr "AAAA-MM-GG oppure MM-GG"
msgid "Required"
msgstr "Obbligatorio"
-#: ../../include/datetime.php:263 ../../boot.php:2348
+#: ../../include/datetime.php:263 ../../boot.php:2349
msgid "never"
msgstr "mai"
@@ -1667,25 +1493,25 @@ msgid "Safe Mode"
msgstr "Modalità SafeSearch"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
-#: ../../include/dir_fns.php:143 ../../mod/admin.php:421 ../../mod/api.php:102
+#: ../../include/dir_fns.php:143 ../../mod/api.php:102
#: ../../mod/connedit.php:644 ../../mod/connedit.php:693
#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../mod/photos.php:626 ../../mod/removeme.php:60
+#: ../../mod/photos.php:634 ../../mod/admin.php:425 ../../mod/removeme.php:60
#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
msgid "No"
msgstr "No"
#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
-#: ../../include/dir_fns.php:143 ../../mod/admin.php:423 ../../mod/api.php:101
+#: ../../include/dir_fns.php:143 ../../mod/api.php:101
#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../mod/photos.php:626 ../../mod/removeme.php:60
+#: ../../mod/photos.php:634 ../../mod/admin.php:427 ../../mod/removeme.php:60
#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
msgid "Yes"
@@ -1760,13 +1586,13 @@ 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 "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti <strong>potrebbero</strong> rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."
+msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."
#: ../../include/group.php:232
msgid "Add new connections to this privacy group"
msgstr "Aggiungi nuovi contatti a questo gruppo di canali"
-#: ../../include/group.php:251 ../../mod/admin.php:900
+#: ../../include/group.php:251 ../../mod/admin.php:998
msgid "All Channels"
msgstr "Tutti i canali"
@@ -1774,7 +1600,7 @@ msgstr "Tutti i canali"
msgid "edit"
msgstr "modifica"
-#: ../../include/group.php:295 ../../include/features.php:79
+#: ../../include/group.php:295 ../../include/features.php:82
msgid "Privacy Groups"
msgstr "Gruppi di canali"
@@ -1790,7 +1616,7 @@ msgstr "Crea un gruppo di canali"
msgid "Channels not in any privacy group"
msgstr "Canali che non sono in nessun gruppo"
-#: ../../include/group.php:300 ../../include/widgets.php:275
+#: ../../include/group.php:300 ../../include/widgets.php:285
msgid "add"
msgstr "aggiungi"
@@ -1803,7 +1629,7 @@ msgstr "Non posso creare un canale con un identificativo che già esiste su ques
msgid "Channel clone failed. Import failed."
msgstr "Impossibile clonare il canale. L'importazione è fallita."
-#: ../../include/import.php:80 ../../mod/import.php:139
+#: ../../include/import.php:80 ../../mod/import.php:148
msgid "Cloned channel not found. Import failed."
msgstr "Impossibile trovare il canale clonato. L'importazione è fallita."
@@ -1811,6 +1637,15 @@ msgstr "Impossibile trovare il canale clonato. L'importazione è fallita."
msgid "Delete this item?"
msgstr "Eliminare questo elemento?"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:702
+#: ../../mod/photos.php:1058 ../../mod/photos.php:1176
+msgid "Comment"
+msgstr "Commento"
+
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:413
+msgid "[+] show all"
+msgstr "[+] mostra tutto"
+
#: ../../include/js_strings.php:8
msgid "[-] show less"
msgstr "[-] riduci"
@@ -1868,6 +1703,31 @@ msgstr "Valutazioni"
msgid "Describe (optional)"
msgstr "Descrizione (facoltativa)"
+#: ../../include/js_strings.php:22 ../../include/widgets.php:699
+#: ../../include/widgets.php:711 ../../include/ItemObject.php:703
+#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
+#: ../../mod/connect.php:93 ../../mod/connedit.php:720
+#: ../../mod/events.php:461 ../../mod/events.php:658
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/import_items.php:116 ../../mod/invite.php:142
+#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
+#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
+#: ../../mod/photos.php:645 ../../mod/photos.php:1019
+#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
+#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
+#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
+#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
+#: ../../mod/rate.php:168 ../../mod/settings.php:586
+#: ../../mod/settings.php:698 ../../mod/settings.php:726
+#: ../../mod/settings.php:749 ../../mod/settings.php:834
+#: ../../mod/settings.php:1025 ../../mod/setup.php:333 ../../mod/setup.php:374
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
+#: ../../mod/thing.php:358 ../../mod/xchan.php:11
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Salva"
+
#: ../../include/js_strings.php:23
msgid "Please enter a link URL"
msgstr "Inserisci l'URL di un link"
@@ -1954,19 +1814,19 @@ msgstr " "
msgid "timeago.numbers"
msgstr "timeago.numbers"
-#: ../../include/js_strings.php:45 ../../include/text.php:1183
+#: ../../include/js_strings.php:45 ../../include/text.php:1191
msgid "January"
msgstr "gennaio"
-#: ../../include/js_strings.php:46 ../../include/text.php:1183
+#: ../../include/js_strings.php:46 ../../include/text.php:1191
msgid "February"
msgstr "febbraio"
-#: ../../include/js_strings.php:47 ../../include/text.php:1183
+#: ../../include/js_strings.php:47 ../../include/text.php:1191
msgid "March"
msgstr "marzo"
-#: ../../include/js_strings.php:48 ../../include/text.php:1183
+#: ../../include/js_strings.php:48 ../../include/text.php:1191
msgid "April"
msgstr "aprile"
@@ -1975,31 +1835,31 @@ msgctxt "long"
msgid "May"
msgstr "maggio"
-#: ../../include/js_strings.php:50 ../../include/text.php:1183
+#: ../../include/js_strings.php:50 ../../include/text.php:1191
msgid "June"
msgstr "giugno"
-#: ../../include/js_strings.php:51 ../../include/text.php:1183
+#: ../../include/js_strings.php:51 ../../include/text.php:1191
msgid "July"
msgstr "luglio"
-#: ../../include/js_strings.php:52 ../../include/text.php:1183
+#: ../../include/js_strings.php:52 ../../include/text.php:1191
msgid "August"
msgstr "agosto"
-#: ../../include/js_strings.php:53 ../../include/text.php:1183
+#: ../../include/js_strings.php:53 ../../include/text.php:1191
msgid "September"
msgstr "settembre"
-#: ../../include/js_strings.php:54 ../../include/text.php:1183
+#: ../../include/js_strings.php:54 ../../include/text.php:1191
msgid "October"
msgstr "ottobre"
-#: ../../include/js_strings.php:55 ../../include/text.php:1183
+#: ../../include/js_strings.php:55 ../../include/text.php:1191
msgid "November"
msgstr "novembre"
-#: ../../include/js_strings.php:56 ../../include/text.php:1183
+#: ../../include/js_strings.php:56 ../../include/text.php:1191
msgid "December"
msgstr "dicembre"
@@ -2052,31 +1912,31 @@ msgstr "Nov"
msgid "Dec"
msgstr "Dic"
-#: ../../include/js_strings.php:69 ../../include/text.php:1179
+#: ../../include/js_strings.php:69 ../../include/text.php:1187
msgid "Sunday"
msgstr "domenica"
-#: ../../include/js_strings.php:70 ../../include/text.php:1179
+#: ../../include/js_strings.php:70 ../../include/text.php:1187
msgid "Monday"
msgstr "lunedì"
-#: ../../include/js_strings.php:71 ../../include/text.php:1179
+#: ../../include/js_strings.php:71 ../../include/text.php:1187
msgid "Tuesday"
msgstr "martedì"
-#: ../../include/js_strings.php:72 ../../include/text.php:1179
+#: ../../include/js_strings.php:72 ../../include/text.php:1187
msgid "Wednesday"
msgstr "mercoledì"
-#: ../../include/js_strings.php:73 ../../include/text.php:1179
+#: ../../include/js_strings.php:73 ../../include/text.php:1187
msgid "Thursday"
msgstr "giovedì"
-#: ../../include/js_strings.php:74 ../../include/text.php:1179
+#: ../../include/js_strings.php:74 ../../include/text.php:1187
msgid "Friday"
msgstr "venerdì"
-#: ../../include/js_strings.php:75 ../../include/text.php:1179
+#: ../../include/js_strings.php:75 ../../include/text.php:1187
msgid "Saturday"
msgstr "sabato"
@@ -2149,15 +2009,15 @@ msgstr "Impossibile determinare il mittente."
msgid "Stored post could not be verified."
msgstr "Non è stato possibile verificare il post."
-#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1517
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1517
msgid "Logout"
msgstr "Esci"
-#: ../../include/nav.php:82 ../../include/nav.php:114
+#: ../../include/nav.php:82 ../../include/nav.php:115
msgid "End this session"
msgstr "Chiudi questa sessione"
-#: ../../include/nav.php:85 ../../include/nav.php:145
+#: ../../include/nav.php:85 ../../include/nav.php:146
msgid "Home"
msgstr "Bacheca"
@@ -2177,7 +2037,7 @@ msgstr "Modifica i tuoi profili"
msgid "Manage/Edit profiles"
msgstr "Gestisci i tuoi profili"
-#: ../../include/nav.php:90 ../../include/identity.php:976
+#: ../../include/nav.php:90 ../../include/identity.php:977
msgid "Edit Profile"
msgstr "Modifica il profilo"
@@ -2193,162 +2053,162 @@ msgstr "Le tue foto"
msgid "Your files"
msgstr "I tuoi file"
-#: ../../include/nav.php:97
+#: ../../include/nav.php:98
msgid "Your chatrooms"
msgstr "Le tue chat"
-#: ../../include/nav.php:103
+#: ../../include/nav.php:104
msgid "Your bookmarks"
msgstr "I tuoi segnalibri"
-#: ../../include/nav.php:107
+#: ../../include/nav.php:108
msgid "Your webpages"
msgstr "Le tue pagine web"
-#: ../../include/nav.php:111
+#: ../../include/nav.php:112
msgid "Sign in"
msgstr "Accedi"
-#: ../../include/nav.php:128
+#: ../../include/nav.php:129
#, php-format
msgid "%s - click to logout"
msgstr "%s - clicca per uscire"
-#: ../../include/nav.php:131
+#: ../../include/nav.php:132
msgid "Remote authentication"
msgstr "Accedi dal tuo hub"
-#: ../../include/nav.php:131
+#: ../../include/nav.php:132
msgid "Click to authenticate to your home hub"
msgstr "Clicca per farti riconoscere dal tuo hub principale"
-#: ../../include/nav.php:145
+#: ../../include/nav.php:146
msgid "Home Page"
msgstr "Bacheca"
-#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1500
+#: ../../include/nav.php:150 ../../mod/register.php:264 ../../boot.php:1500
msgid "Register"
msgstr "Registrati"
-#: ../../include/nav.php:149
+#: ../../include/nav.php:150
msgid "Create an account"
msgstr "Crea un account"
-#: ../../include/nav.php:154
+#: ../../include/nav.php:155
msgid "Help and documentation"
msgstr "Guida e documentazione"
-#: ../../include/nav.php:157 ../../include/widgets.php:92
+#: ../../include/nav.php:159 ../../include/widgets.php:102
#: ../../mod/apps.php:36
msgid "Apps"
msgstr "App"
-#: ../../include/nav.php:157
+#: ../../include/nav.php:159
msgid "Applications, utilities, links, games"
msgstr "Applicazioni, utilità, link, giochi"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:161
msgid "Search site @name, #tag, ?docs, content"
msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto"
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
msgid "Channel Directory"
msgstr "Elenchi pubblici dei canali"
-#: ../../include/nav.php:174
+#: ../../include/nav.php:176
msgid "Your grid"
msgstr "La tua rete"
-#: ../../include/nav.php:175
+#: ../../include/nav.php:177
msgid "Mark all grid notifications seen"
msgstr "Segna come lette le notifiche della tua rete"
-#: ../../include/nav.php:177
+#: ../../include/nav.php:179
msgid "Channel home"
msgstr "Bacheca del canale"
-#: ../../include/nav.php:178
+#: ../../include/nav.php:180
msgid "Mark all channel notifications seen"
msgstr "Segna come lette le notifiche del canale"
-#: ../../include/nav.php:181 ../../include/text.php:815
+#: ../../include/nav.php:183 ../../include/text.php:815
#: ../../mod/connections.php:298
msgid "Connections"
msgstr "Contatti"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:186
msgid "Notices"
msgstr "Avvisi"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:186
msgid "Notifications"
msgstr "Notifiche"
-#: ../../include/nav.php:185
+#: ../../include/nav.php:187
msgid "See all notifications"
msgstr "Vedi tutte le notifiche"
-#: ../../include/nav.php:186 ../../mod/notifications.php:99
+#: ../../include/nav.php:188 ../../mod/notifications.php:99
msgid "Mark all system notifications seen"
msgstr "Segna come lette le notifiche di sistema"
-#: ../../include/nav.php:188
+#: ../../include/nav.php:190
msgid "Private mail"
msgstr "Messaggi privati"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "See all private messages"
msgstr "Guarda tutti i messaggi privati"
-#: ../../include/nav.php:190
+#: ../../include/nav.php:192
msgid "Mark all private messages seen"
msgstr "Segna come letti tutti i messaggi privati"
-#: ../../include/nav.php:191 ../../include/widgets.php:578
+#: ../../include/nav.php:193 ../../include/widgets.php:598
msgid "Inbox"
msgstr "In arrivo"
-#: ../../include/nav.php:192 ../../include/widgets.php:583
+#: ../../include/nav.php:194 ../../include/widgets.php:603
msgid "Outbox"
msgstr "Inviati"
-#: ../../include/nav.php:193 ../../include/widgets.php:588
+#: ../../include/nav.php:195 ../../include/widgets.php:608
msgid "New Message"
msgstr "Nuovo messaggio"
-#: ../../include/nav.php:196
+#: ../../include/nav.php:198
msgid "Event Calendar"
msgstr "Calendario"
-#: ../../include/nav.php:197
+#: ../../include/nav.php:199
msgid "See all events"
msgstr "Guarda tutti gli eventi"
-#: ../../include/nav.php:198
+#: ../../include/nav.php:200
msgid "Mark all events seen"
msgstr "Marca come letti tutti gli eventi"
-#: ../../include/nav.php:200
+#: ../../include/nav.php:203
msgid "Manage Your Channels"
msgstr "Gestisci i tuoi canali"
-#: ../../include/nav.php:202
+#: ../../include/nav.php:205
msgid "Account/Channel Settings"
msgstr "Impostazioni dell'account e del canale"
-#: ../../include/nav.php:210 ../../include/widgets.php:1299
+#: ../../include/nav.php:213 ../../include/widgets.php:1320
msgid "Admin"
msgstr "Amministrazione"
-#: ../../include/nav.php:210
+#: ../../include/nav.php:213
msgid "Site Setup and Configuration"
msgstr "Installazione e configurazione del sito"
-#: ../../include/nav.php:246
+#: ../../include/nav.php:249
msgid "@name, #tag, ?doc, content"
msgstr "@nome, #tag, ?guida, contenuto"
-#: ../../include/nav.php:247
+#: ../../include/nav.php:250
msgid "Please wait..."
msgstr "Attendere..."
@@ -2386,14 +2246,6 @@ msgstr "Ha creato un nuovo post"
msgid "commented on %s's post"
msgstr "ha commentato il post di %s"
-#: ../../include/oembed.php:213
-msgid "Embedded content"
-msgstr "Contenuti incorporati"
-
-#: ../../include/oembed.php:222
-msgid "Embedding disabled"
-msgstr "Disabilita la creazione di contenuti incorporati"
-
#: ../../include/page_widgets.php:6
msgid "New Page"
msgstr "Nuova pagina web"
@@ -2425,138 +2277,8 @@ msgstr "Creato"
msgid "Edited"
msgstr "Modificato"
-#: ../../include/permissions.php:26
-msgid "Can view my normal stream and posts"
-msgstr "Può vedere i miei contenuti e i post normali"
-
-#: ../../include/permissions.php:27
-msgid "Can view my default channel profile"
-msgstr "Può vedere il profilo predefinito del canale"
-
-#: ../../include/permissions.php:28
-msgid "Can view my connections"
-msgstr "Può vedere i miei contatti"
-
-#: ../../include/permissions.php:29
-msgid "Can view my file storage and photos"
-msgstr "Può vedere il mio archivio file e foto"
-
-#: ../../include/permissions.php:30
-msgid "Can view my webpages"
-msgstr "Può vedere le mie pagine web"
-
-#: ../../include/permissions.php:33
-msgid "Can send me their channel stream and posts"
-msgstr "È tra i canali che seguo"
-
-#: ../../include/permissions.php:34
-msgid "Can post on my channel page (\"wall\")"
-msgstr "Può scrivere sulla bacheca del mio canale"
-
-#: ../../include/permissions.php:35
-msgid "Can comment on or like my posts"
-msgstr "Può commentare o aggiungere \"mi piace\" ai miei post"
-
-#: ../../include/permissions.php:36
-msgid "Can send me private mail messages"
-msgstr "Può inviarmi messaggi privati"
-
-#: ../../include/permissions.php:37
-msgid "Can like/dislike stuff"
-msgstr "Può aggiungere \"mi piace\" a tutto il resto"
-
-#: ../../include/permissions.php:37
-msgid "Profiles and things other than posts/comments"
-msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"
-
-#: ../../include/permissions.php:39
-msgid "Can forward to all my channel contacts via post @mentions"
-msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione"
-
-#: ../../include/permissions.php:39
-msgid "Advanced - useful for creating group forum channels"
-msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione"
-
-#: ../../include/permissions.php:40
-msgid "Can chat with me (when available)"
-msgstr "Può aprire una chat con me (se disponibile)"
-
-#: ../../include/permissions.php:41
-msgid "Can write to my file storage and photos"
-msgstr "Può modificare il mio archivio file e foto"
-
-#: ../../include/permissions.php:42
-msgid "Can edit my webpages"
-msgstr "Può modificare le mie pagine web"
-
-#: ../../include/permissions.php:44
-msgid "Can source my public posts in derived channels"
-msgstr "Può usare i miei post pubblici per creare canali derivati"
-
-#: ../../include/permissions.php:44
-msgid "Somewhat advanced - very useful in open communities"
-msgstr "Piuttosto avanzato - molto utile nelle comunità aperte"
-
-#: ../../include/permissions.php:46
-msgid "Can administer my channel resources"
-msgstr "Può amministrare i contenuti del mio canale"
-
-#: ../../include/permissions.php:46
-msgid ""
-"Extremely advanced. Leave this alone unless you know what you are doing"
-msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
-
-#: ../../include/permissions.php:867
-msgid "Social Networking"
-msgstr "Social network"
-
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-#: ../../include/permissions.php:869
-msgid "Mostly Public"
-msgstr "Prevalentemente pubblico"
-
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-#: ../../include/permissions.php:869
-msgid "Restricted"
-msgstr "Con restrizioni"
-
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-msgid "Private"
-msgstr "Privato"
-
-#: ../../include/permissions.php:868
-msgid "Community Forum"
-msgstr "Forum di discussione"
-
-#: ../../include/permissions.php:869
-msgid "Feed Republish"
-msgstr "Aggregatore di feed esterni"
-
-#: ../../include/permissions.php:870
-msgid "Special Purpose"
-msgstr "Per finalità speciali"
-
-#: ../../include/permissions.php:870
-msgid "Celebrity/Soapbox"
-msgstr "Pagina per fan"
-
-#: ../../include/permissions.php:870
-msgid "Group Repository"
-msgstr "Repository di gruppo"
-
-#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
-#: ../../include/profile_selectors.php:61
-#: ../../include/profile_selectors.php:97
-msgid "Other"
-msgstr "Altro"
-
-#: ../../include/permissions.php:871
-msgid "Custom/Expert Mode"
-msgstr "Personalizzazione per esperti"
-
#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94
-#: ../../mod/photos.php:699 ../../mod/profile_photo.php:147
+#: ../../mod/photos.php:711 ../../mod/profile_photo.php:147
#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379
msgid "Profile Photos"
msgstr "Foto del profilo"
@@ -2644,6 +2366,13 @@ msgid "Non-specific"
msgstr "Non specificato"
#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:61
+#: ../../include/profile_selectors.php:97 ../../include/permissions.php:871
+msgid "Other"
+msgstr "Altro"
+
+#: ../../include/profile_selectors.php:6
msgid "Undecided"
msgstr "Indeciso"
@@ -2741,7 +2470,7 @@ msgstr "Sesso-dipendente"
#: ../../include/profile_selectors.php:80 ../../include/identity.php:390
#: ../../include/identity.php:391 ../../include/identity.php:398
-#: ../../include/widgets.php:430 ../../mod/connedit.php:582
+#: ../../include/widgets.php:451 ../../mod/connedit.php:582
#: ../../mod/settings.php:338 ../../mod/settings.php:342
#: ../../mod/settings.php:343 ../../mod/settings.php:346
#: ../../mod/settings.php:357
@@ -2868,10 +2597,18 @@ msgstr "voglio"
msgid "wants"
msgstr "vuole"
+#: ../../include/taxonomy.php:328 ../../include/ItemObject.php:254
+msgid "like"
+msgstr "mi piace"
+
#: ../../include/taxonomy.php:328
msgid "likes"
msgstr "gli piace"
+#: ../../include/taxonomy.php:329 ../../include/ItemObject.php:255
+msgid "dislike"
+msgstr "non mi piace"
+
#: ../../include/taxonomy.php:329
msgid "dislikes"
msgstr "non gli piace"
@@ -2889,7 +2626,7 @@ msgstr "Impossibile verificare la firma elettronica del canale"
msgid "Unable to verify site signature for %s"
msgstr "Impossibile verificare la firma elettronica del sito %s"
-#: ../../include/zot.php:3585
+#: ../../include/zot.php:3591
msgid "invalid target signature"
msgstr "la firma ricevuta non è valida"
@@ -2929,8 +2666,8 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
-#: ../../include/contact_selectors.php:79 ../../mod/admin.php:891
-#: ../../mod/admin.php:900 ../../mod/id.php:15 ../../mod/id.php:16
+#: ../../include/contact_selectors.php:79 ../../mod/id.php:15
+#: ../../mod/id.php:16 ../../mod/admin.php:989 ../../mod/admin.php:998
#: ../../boot.php:1520
msgid "Email"
msgstr "Email"
@@ -2959,244 +2696,6 @@ msgstr "XMPP/IM"
msgid "MySpace"
msgstr "MySpace"
-#: ../../include/identity.php:32
-msgid "Unable to obtain identity information from database"
-msgstr "Impossibile ottenere le informazioni di identificazione dal database"
-
-#: ../../include/identity.php:66
-msgid "Empty name"
-msgstr "Nome vuoto"
-
-#: ../../include/identity.php:69
-msgid "Name too long"
-msgstr "Nome troppo lungo"
-
-#: ../../include/identity.php:181
-msgid "No account identifier"
-msgstr "Account senza identificativo"
-
-#: ../../include/identity.php:193
-msgid "Nickname is required."
-msgstr "Il nome dell'account è obbligatorio."
-
-#: ../../include/identity.php:207
-msgid "Reserved nickname. Please choose another."
-msgstr "Nome utente riservato. Per favore scegline un altro."
-
-#: ../../include/identity.php:212
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."
-
-#: ../../include/identity.php:288
-msgid "Unable to retrieve created identity"
-msgstr "Impossibile caricare l'identità creata"
-
-#: ../../include/identity.php:346
-msgid "Default Profile"
-msgstr "Profilo predefinito"
-
-#: ../../include/identity.php:772
-msgid "Requested channel is not available."
-msgstr "Il canale che cerchi non è disponibile."
-
-#: ../../include/identity.php:818 ../../mod/achievements.php:11
-#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
-#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
-#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
-#: ../../mod/profile.php:16 ../../mod/webpages.php:29
-msgid "Requested profile is not available."
-msgstr "Il profilo richiesto non è disponibile."
-
-#: ../../include/identity.php:966 ../../mod/profiles.php:782
-msgid "Change profile photo"
-msgstr "Cambia la foto del profilo"
-
-#: ../../include/identity.php:972
-msgid "Profiles"
-msgstr "Profili"
-
-#: ../../include/identity.php:972
-msgid "Manage/edit profiles"
-msgstr "Gestisci/modifica i profili"
-
-#: ../../include/identity.php:973 ../../mod/profiles.php:783
-msgid "Create New Profile"
-msgstr "Crea un nuovo profilo"
-
-#: ../../include/identity.php:988 ../../mod/profiles.php:794
-msgid "Profile Image"
-msgstr "Immagine del profilo"
-
-#: ../../include/identity.php:991
-msgid "visible to everybody"
-msgstr "visibile a tutti"
-
-#: ../../include/identity.php:992 ../../mod/profiles.php:677
-#: ../../mod/profiles.php:798
-msgid "Edit visibility"
-msgstr "Cambia la visibilità"
-
-#: ../../include/identity.php:1008 ../../include/identity.php:1250
-msgid "Gender:"
-msgstr "Sesso:"
-
-#: ../../include/identity.php:1009 ../../include/identity.php:1294
-msgid "Status:"
-msgstr "Stato:"
-
-#: ../../include/identity.php:1010 ../../include/identity.php:1305
-msgid "Homepage:"
-msgstr "Home page:"
-
-#: ../../include/identity.php:1011
-msgid "Online Now"
-msgstr "Online adesso"
-
-#: ../../include/identity.php:1097 ../../include/identity.php:1175
-#: ../../mod/ping.php:318
-msgid "g A l F d"
-msgstr "g A l d F"
-
-#: ../../include/identity.php:1098 ../../include/identity.php:1176
-msgid "F d"
-msgstr "d F"
-
-#: ../../include/identity.php:1143 ../../include/identity.php:1215
-#: ../../mod/ping.php:341
-msgid "[today]"
-msgstr "[oggi]"
-
-#: ../../include/identity.php:1154
-msgid "Birthday Reminders"
-msgstr "Promemoria compleanni"
-
-#: ../../include/identity.php:1155
-msgid "Birthdays this week:"
-msgstr "Compleanni questa settimana:"
-
-#: ../../include/identity.php:1208
-msgid "[No description]"
-msgstr "[Nessuna descrizione]"
-
-#: ../../include/identity.php:1226
-msgid "Event Reminders"
-msgstr "Promemoria"
-
-#: ../../include/identity.php:1227
-msgid "Events this week:"
-msgstr "Eventi della settimana:"
-
-#: ../../include/identity.php:1248 ../../mod/settings.php:1030
-msgid "Full Name:"
-msgstr "Nome completo:"
-
-#: ../../include/identity.php:1255
-msgid "Like this channel"
-msgstr "Mi piace questo canale"
-
-#: ../../include/identity.php:1279
-msgid "j F, Y"
-msgstr "j F Y"
-
-#: ../../include/identity.php:1280
-msgid "j F"
-msgstr "j F"
-
-#: ../../include/identity.php:1287
-msgid "Birthday:"
-msgstr "Compleanno:"
-
-#: ../../include/identity.php:1291 ../../mod/directory.php:302
-msgid "Age:"
-msgstr "Età:"
-
-#: ../../include/identity.php:1300
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "per %1$d %2$s"
-
-#: ../../include/identity.php:1303 ../../mod/profiles.php:699
-msgid "Sexual Preference:"
-msgstr "Preferenze sessuali:"
-
-#: ../../include/identity.php:1307 ../../mod/directory.php:318
-#: ../../mod/profiles.php:701
-msgid "Hometown:"
-msgstr "Città dove vivo:"
-
-#: ../../include/identity.php:1309
-msgid "Tags:"
-msgstr "Tag:"
-
-#: ../../include/identity.php:1311 ../../mod/profiles.php:702
-msgid "Political Views:"
-msgstr "Orientamento politico:"
-
-#: ../../include/identity.php:1313
-msgid "Religion:"
-msgstr "Religione:"
-
-#: ../../include/identity.php:1315 ../../mod/directory.php:320
-msgid "About:"
-msgstr "Informazioni:"
-
-#: ../../include/identity.php:1317
-msgid "Hobbies/Interests:"
-msgstr "Interessi e hobby:"
-
-#: ../../include/identity.php:1319 ../../mod/profiles.php:705
-msgid "Likes:"
-msgstr "Mi piace:"
-
-#: ../../include/identity.php:1321 ../../mod/profiles.php:706
-msgid "Dislikes:"
-msgstr "Non mi piace:"
-
-#: ../../include/identity.php:1323
-msgid "Contact information and Social Networks:"
-msgstr "Contatti e social network:"
-
-#: ../../include/identity.php:1325
-msgid "My other channels:"
-msgstr "I miei altri canali:"
-
-#: ../../include/identity.php:1327
-msgid "Musical interests:"
-msgstr "Gusti musicali:"
-
-#: ../../include/identity.php:1329
-msgid "Books, literature:"
-msgstr "Libri, letteratura:"
-
-#: ../../include/identity.php:1331
-msgid "Television:"
-msgstr "Televisione:"
-
-#: ../../include/identity.php:1333
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film, danza, cultura, intrattenimento:"
-
-#: ../../include/identity.php:1335
-msgid "Love/Romance:"
-msgstr "Amore:"
-
-#: ../../include/identity.php:1337
-msgid "Work/employment:"
-msgstr "Lavoro:"
-
-#: ../../include/identity.php:1339
-msgid "School/education:"
-msgstr "Scuola:"
-
-#: ../../include/identity.php:1359
-msgid "Like this thing"
-msgstr "Mi piace"
-
-#: ../../include/identity.php:1767 ../../mod/cover_photo.php:236
-msgid "cover photo"
-msgstr "Copertina del canale"
-
#: ../../include/text.php:394
msgid "prev"
msgstr "prec"
@@ -3231,282 +2730,282 @@ msgid "View all %s connections"
msgstr "Mostra tutti i %s contatti"
#: ../../include/text.php:886 ../../include/text.php:898
-#: ../../include/widgets.php:192 ../../mod/admin.php:1568
-#: ../../mod/admin.php:1588 ../../mod/filer.php:49 ../../mod/rbmark.php:28
+#: ../../include/widgets.php:202 ../../mod/filer.php:49
+#: ../../mod/admin.php:1666 ../../mod/admin.php:1686 ../../mod/rbmark.php:28
#: ../../mod/rbmark.php:100
msgid "Save"
msgstr "Salva"
-#: ../../include/text.php:972
+#: ../../include/text.php:973 ../../include/text.php:978
msgid "poke"
msgstr "poke"
-#: ../../include/text.php:973
+#: ../../include/text.php:979
msgid "ping"
msgstr "ping"
-#: ../../include/text.php:973
+#: ../../include/text.php:979
msgid "pinged"
msgstr "ha ricevuto un ping"
-#: ../../include/text.php:974
+#: ../../include/text.php:980
msgid "prod"
msgstr "spintone"
-#: ../../include/text.php:974
+#: ../../include/text.php:980
msgid "prodded"
msgstr "ha ricevuto uno spintone"
-#: ../../include/text.php:975
+#: ../../include/text.php:981
msgid "slap"
msgstr "schiaffo"
-#: ../../include/text.php:975
+#: ../../include/text.php:981
msgid "slapped"
msgstr "ha ricevuto uno schiaffo"
-#: ../../include/text.php:976
+#: ../../include/text.php:982
msgid "finger"
msgstr "finger"
-#: ../../include/text.php:976
+#: ../../include/text.php:982
msgid "fingered"
msgstr "ha ricevuto un finger"
-#: ../../include/text.php:977
+#: ../../include/text.php:983
msgid "rebuff"
msgstr "rifiuto"
-#: ../../include/text.php:977
+#: ../../include/text.php:983
msgid "rebuffed"
msgstr "ha ricevuto un rifiuto"
-#: ../../include/text.php:987
+#: ../../include/text.php:995
msgid "happy"
msgstr "felice"
-#: ../../include/text.php:988
+#: ../../include/text.php:996
msgid "sad"
msgstr "triste"
-#: ../../include/text.php:989
+#: ../../include/text.php:997
msgid "mellow"
msgstr "calmo"
-#: ../../include/text.php:990
+#: ../../include/text.php:998
msgid "tired"
msgstr "stanco"
-#: ../../include/text.php:991
+#: ../../include/text.php:999
msgid "perky"
msgstr "vivace"
-#: ../../include/text.php:992
+#: ../../include/text.php:1000
msgid "angry"
msgstr "arrabbiato"
-#: ../../include/text.php:993
+#: ../../include/text.php:1001
msgid "stupefied"
msgstr "stupito"
-#: ../../include/text.php:994
+#: ../../include/text.php:1002
msgid "puzzled"
msgstr "confuso"
-#: ../../include/text.php:995
+#: ../../include/text.php:1003
msgid "interested"
msgstr "attento"
-#: ../../include/text.php:996
+#: ../../include/text.php:1004
msgid "bitter"
msgstr "amaro"
-#: ../../include/text.php:997
+#: ../../include/text.php:1005
msgid "cheerful"
msgstr "allegro"
-#: ../../include/text.php:998
+#: ../../include/text.php:1006
msgid "alive"
msgstr "vivace"
-#: ../../include/text.php:999
+#: ../../include/text.php:1007
msgid "annoyed"
msgstr "seccato"
-#: ../../include/text.php:1000
+#: ../../include/text.php:1008
msgid "anxious"
msgstr "ansioso"
-#: ../../include/text.php:1001
+#: ../../include/text.php:1009
msgid "cranky"
msgstr "irritabile"
-#: ../../include/text.php:1002
+#: ../../include/text.php:1010
msgid "disturbed"
msgstr "turbato"
-#: ../../include/text.php:1003
+#: ../../include/text.php:1011
msgid "frustrated"
msgstr "frustrato"
-#: ../../include/text.php:1004
+#: ../../include/text.php:1012
msgid "depressed"
msgstr "in depressione"
-#: ../../include/text.php:1005
+#: ../../include/text.php:1013
msgid "motivated"
msgstr "motivato"
-#: ../../include/text.php:1006
+#: ../../include/text.php:1014
msgid "relaxed"
msgstr "rilassato"
-#: ../../include/text.php:1007
+#: ../../include/text.php:1015
msgid "surprised"
msgstr "sorpreso"
-#: ../../include/text.php:1183
+#: ../../include/text.php:1191
msgid "May"
msgstr "Mag"
-#: ../../include/text.php:1260 ../../include/text.php:1264
+#: ../../include/text.php:1268 ../../include/text.php:1272
msgid "Unknown Attachment"
msgstr "Allegato non riconoscuto"
-#: ../../include/text.php:1266
+#: ../../include/text.php:1274
msgid "unknown"
msgstr "sconosciuta"
-#: ../../include/text.php:1302
+#: ../../include/text.php:1310
msgid "remove category"
msgstr "rimuovi la categoria"
-#: ../../include/text.php:1379
+#: ../../include/text.php:1387
msgid "remove from file"
msgstr "rimuovi dal file"
-#: ../../include/text.php:1521 ../../include/text.php:1532
+#: ../../include/text.php:1529 ../../include/text.php:1540
msgid "Click to open/close"
msgstr "Clicca per aprire/chiudere"
-#: ../../include/text.php:1716 ../../mod/events.php:623
+#: ../../include/text.php:1724 ../../mod/events.php:623
msgid "Link to Source"
msgstr "Link al sito d'origine"
-#: ../../include/text.php:1737 ../../include/text.php:1809
+#: ../../include/text.php:1745 ../../include/text.php:1817
msgid "default"
msgstr "predefinito"
-#: ../../include/text.php:1745
+#: ../../include/text.php:1753
msgid "Page layout"
msgstr "Layout della pagina"
-#: ../../include/text.php:1745
+#: ../../include/text.php:1753
msgid "You can create your own with the layouts tool"
msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web"
-#: ../../include/text.php:1787
+#: ../../include/text.php:1795
msgid "Page content type"
msgstr "Tipo di contenuto della pagina"
-#: ../../include/text.php:1821
+#: ../../include/text.php:1829
msgid "Select an alternate language"
msgstr "Seleziona una lingua diversa"
-#: ../../include/text.php:1953
+#: ../../include/text.php:1961
msgid "activity"
msgstr "l'attività"
-#: ../../include/text.php:2248
+#: ../../include/text.php:2256
msgid "Design Tools"
msgstr "Strumenti di design"
-#: ../../include/text.php:2251 ../../mod/blocks.php:147
+#: ../../include/text.php:2259 ../../mod/blocks.php:147
msgid "Blocks"
msgstr "Block"
-#: ../../include/text.php:2252 ../../mod/menu.php:103
+#: ../../include/text.php:2260 ../../mod/menu.php:103
msgid "Menus"
msgstr "Menù"
-#: ../../include/text.php:2253 ../../mod/layouts.php:174
+#: ../../include/text.php:2261 ../../mod/layouts.php:174
msgid "Layouts"
msgstr "Layout"
-#: ../../include/text.php:2254
+#: ../../include/text.php:2262
msgid "Pages"
msgstr "Pagine"
-#: ../../include/items.php:423 ../../index.php:370 ../../mod/dreport.php:6
+#: ../../include/items.php:423 ../../index.php:376 ../../mod/dreport.php:6
#: ../../mod/dreport.php:45 ../../mod/group.php:68
#: ../../mod/import_items.php:108 ../../mod/like.php:280
#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
msgid "Permission denied"
msgstr "Permesso negato"
-#: ../../include/items.php:1130 ../../include/items.php:1176
+#: ../../include/items.php:1137 ../../include/items.php:1183
msgid "(Unknown)"
msgstr "(Sconosciuto)"
-#: ../../include/items.php:1373
+#: ../../include/items.php:1380
msgid "Visible to anybody on the internet."
msgstr "Visibile a chiunque su internet."
-#: ../../include/items.php:1375
+#: ../../include/items.php:1382
msgid "Visible to you only."
msgstr "Visibile solo a te."
-#: ../../include/items.php:1377
+#: ../../include/items.php:1384
msgid "Visible to anybody in this network."
msgstr "Visibile a tutti su questa rete."
-#: ../../include/items.php:1379
+#: ../../include/items.php:1386
msgid "Visible to anybody authenticated."
msgstr "Visibile a chiunque sia autenticato."
-#: ../../include/items.php:1381
+#: ../../include/items.php:1388
#, php-format
msgid "Visible to anybody on %s."
msgstr "Visibile a tutti su %s."
-#: ../../include/items.php:1383
+#: ../../include/items.php:1390
msgid "Visible to all connections."
msgstr "Visibile a tutti coloro che ti seguono."
-#: ../../include/items.php:1385
+#: ../../include/items.php:1392
msgid "Visible to approved connections."
msgstr "Visibile ai contatti approvati."
-#: ../../include/items.php:1387
+#: ../../include/items.php:1394
msgid "Visible to specific connections."
msgstr "Visibile ad alcuni contatti scelti."
-#: ../../include/items.php:4350 ../../mod/admin.php:135
-#: ../../mod/admin.php:1091 ../../mod/admin.php:1336 ../../mod/display.php:36
-#: ../../mod/filestorage.php:27 ../../mod/thing.php:85
+#: ../../include/items.php:4358 ../../mod/display.php:36
+#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
+#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
#: ../../mod/viewsrc.php:20
msgid "Item not found."
msgstr "Elemento non trovato."
-#: ../../include/items.php:4862 ../../mod/group.php:38 ../../mod/group.php:137
+#: ../../include/items.php:4870 ../../mod/group.php:38 ../../mod/group.php:137
msgid "Privacy group not found."
msgstr "Gruppo di canali non trovato."
-#: ../../include/items.php:4878
+#: ../../include/items.php:4886
msgid "Privacy group is empty."
msgstr "Gruppo di canali vuoto."
-#: ../../include/items.php:4885
+#: ../../include/items.php:4893
#, php-format
msgid "Privacy group: %s"
msgstr "Gruppo di canali: %s"
-#: ../../include/items.php:4895 ../../mod/connedit.php:692
+#: ../../include/items.php:4903 ../../mod/connedit.php:692
#, php-format
msgid "Connection: %s"
msgstr "Contatto: %s"
-#: ../../include/items.php:4897
+#: ../../include/items.php:4905
msgid "Connection not found."
msgstr "Contatto non trovato."
@@ -3689,1391 +3188,1098 @@ msgstr "Visita %s per approvare o rifiutare il suggerimento."
msgid "[Hubzilla:Notify]"
msgstr "[Hubzilla]"
-#: ../../include/widgets.php:93
-msgid "System"
-msgstr "Sistema"
-
-#: ../../include/widgets.php:96
-msgid "Create Personal App"
-msgstr "Crea app personale"
-
-#: ../../include/widgets.php:97
-msgid "Edit Personal App"
-msgstr "Modifica app personale"
-
-#: ../../include/widgets.php:139 ../../mod/suggest.php:54
-msgid "Ignore/Hide"
-msgstr "Ignora/nascondi"
-
-#: ../../include/widgets.php:144
-msgid "Suggestions"
-msgstr "Suggerimenti"
-
-#: ../../include/widgets.php:145
-msgid "See more..."
-msgstr "Altro..."
-
-#: ../../include/widgets.php:166
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse."
-
-#: ../../include/widgets.php:172
-msgid "Add New Connection"
-msgstr "Aggiungi un contatto"
-
-#: ../../include/widgets.php:173
-msgid "Enter channel address"
-msgstr "Indirizzo del canale"
-
-#: ../../include/widgets.php:174
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Per esempio: bob@example.com, https://example.com/barbara"
-
-#: ../../include/widgets.php:190
-msgid "Notes"
-msgstr "Note"
-
-#: ../../include/widgets.php:266
-msgid "Remove term"
-msgstr "Rimuovi termine"
-
-#: ../../include/widgets.php:274 ../../include/features.php:80
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
-
-#: ../../include/widgets.php:349
-msgid "Archives"
-msgstr "Archivi"
-
-#: ../../include/widgets.php:428 ../../mod/connedit.php:580
-msgid "Me"
-msgstr "Me"
-
-#: ../../include/widgets.php:429 ../../mod/connedit.php:581
-msgid "Family"
-msgstr "Famiglia"
-
-#: ../../include/widgets.php:431 ../../mod/connedit.php:583
-msgid "Acquaintances"
-msgstr "Conoscenti"
-
-#: ../../include/widgets.php:432 ../../mod/connections.php:88
-#: ../../mod/connections.php:103 ../../mod/connedit.php:584
-msgid "All"
-msgstr "Tutti"
-
-#: ../../include/widgets.php:451
-msgid "Refresh"
-msgstr "Aggiorna"
-
-#: ../../include/widgets.php:485
-msgid "Account settings"
-msgstr "Il tuo account"
-
-#: ../../include/widgets.php:491
-msgid "Channel settings"
-msgstr "Impostazioni del canale"
-
-#: ../../include/widgets.php:500
-msgid "Additional features"
-msgstr "Funzionalità opzionali"
-
-#: ../../include/widgets.php:507
-msgid "Feature/Addon settings"
-msgstr "Componenti aggiuntivi"
-
-#: ../../include/widgets.php:513
-msgid "Display settings"
-msgstr "Aspetto"
-
-#: ../../include/widgets.php:519
-msgid "Connected apps"
-msgstr "App connesse"
-
-#: ../../include/widgets.php:525
-msgid "Export channel"
-msgstr "Esporta il canale"
-
-#: ../../include/widgets.php:533 ../../mod/connedit.php:692
-msgid "Connection Default Permissions"
-msgstr "Permessi predefiniti dei nuovi contatti"
-
-#: ../../include/widgets.php:541
-msgid "Premium Channel Settings"
-msgstr "Canale premium - impostazioni"
-
-#: ../../include/widgets.php:549 ../../include/features.php:67
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Sorgenti del canale"
-
-#: ../../include/widgets.php:571
-msgid "Private Mail Menu"
-msgstr "Menu messaggi privati"
-
-#: ../../include/widgets.php:573
-msgid "Combined View"
-msgstr "Vista combinata"
-
-#: ../../include/widgets.php:607 ../../include/widgets.php:619
-msgid "Conversations"
-msgstr "Conversazioni"
-
-#: ../../include/widgets.php:611
-msgid "Received Messages"
-msgstr "Ricevuti"
-
-#: ../../include/widgets.php:615
-msgid "Sent Messages"
-msgstr "Inviati"
-
-#: ../../include/widgets.php:629
-msgid "No messages."
-msgstr "Nessun messaggio."
-
-#: ../../include/widgets.php:647
-msgid "Delete conversation"
-msgstr "Elimina la conversazione"
-
-#: ../../include/widgets.php:673
-msgid "Events Menu"
-msgstr "Menu eventi"
-
-#: ../../include/widgets.php:674
-msgid "Day View"
-msgstr "Eventi del giorno"
-
-#: ../../include/widgets.php:675
-msgid "Week View"
-msgstr "Eventi della settimana"
-
-#: ../../include/widgets.php:676
-msgid "Month View"
-msgstr "Eventi del mese"
-
-#: ../../include/widgets.php:677 ../../mod/events.php:654
-msgid "Export"
-msgstr "Esporta"
-
-#: ../../include/widgets.php:678 ../../mod/events.php:657
-msgid "Import"
-msgstr "Importa"
-
-#: ../../include/widgets.php:688
-msgid "Events Tools"
-msgstr "Gestione eventi"
-
-#: ../../include/widgets.php:689
-msgid "Export Calendar"
-msgstr "Esporta calendario"
-
-#: ../../include/widgets.php:690
-msgid "Import Calendar"
-msgstr "Importa calendario"
-
-#: ../../include/widgets.php:764
-msgid "Chat Rooms"
-msgstr "Chat"
-
-#: ../../include/widgets.php:784
-msgid "Bookmarked Chatrooms"
-msgstr "Chat nei segnalibri"
-
-#: ../../include/widgets.php:804
-msgid "Suggested Chatrooms"
-msgstr "Chat suggerite"
-
-#: ../../include/widgets.php:949 ../../include/widgets.php:1039
-msgid "photo/image"
-msgstr "foto/immagine"
-
-#: ../../include/widgets.php:1133
-msgid "Rating Tools"
-msgstr "Valutazione"
-
-#: ../../include/widgets.php:1137 ../../include/widgets.php:1139
-msgid "Rate Me"
-msgstr "Valutami"
-
-#: ../../include/widgets.php:1142
-msgid "View Ratings"
-msgstr "Vedi le valutazioni ricevute"
-
-#: ../../include/widgets.php:1153
-msgid "Public Hubs"
-msgstr "Hub pubblici"
-
-#: ../../include/widgets.php:1201
-msgid "Forums"
-msgstr "Forum"
-
-#: ../../include/widgets.php:1230
-msgid "Tasks"
-msgstr "Attività"
-
-#: ../../include/widgets.php:1239
-msgid "Documentation"
-msgstr "Guida"
-
-#: ../../include/widgets.php:1241
-msgid "Project/Site Information"
-msgstr "Informazioni sul sito/progetto"
-
-#: ../../include/widgets.php:1242
-msgid "For Members"
-msgstr "Per gli utenti"
-
-#: ../../include/widgets.php:1243
-msgid "For Administrators"
-msgstr "Per gli amministratori"
-
-#: ../../include/widgets.php:1244
-msgid "For Developers"
-msgstr "Per sviluppatori"
-
-#: ../../include/widgets.php:1269 ../../mod/admin.php:452
-msgid "Site"
-msgstr "Sito"
-
-#: ../../include/widgets.php:1270
-msgid "Accounts"
-msgstr "Account"
-
-#: ../../include/widgets.php:1271 ../../mod/admin.php:1051
-msgid "Channels"
-msgstr "Canali"
-
-#: ../../include/widgets.php:1273 ../../mod/admin.php:1166
-#: ../../mod/admin.php:1227
-msgid "Plugins"
-msgstr "Plugin"
-
-#: ../../include/widgets.php:1274 ../../mod/admin.php:1388
-#: ../../mod/admin.php:1422
-msgid "Themes"
-msgstr "Temi"
-
-#: ../../include/widgets.php:1275
-msgid "Inspect queue"
-msgstr "Coda di attesa"
-
-#: ../../include/widgets.php:1276
-msgid "Profile Config"
-msgstr "Configurazione del profilo"
-
-#: ../../include/widgets.php:1277
-msgid "DB updates"
-msgstr "Aggiornamenti al DB"
-
-#: ../../include/widgets.php:1295 ../../include/widgets.php:1301
-#: ../../mod/admin.php:1507
-msgid "Logs"
-msgstr "Log"
-
-#: ../../include/widgets.php:1300
-msgid "Plugin Features"
-msgstr "Plugin"
-
-#: ../../include/widgets.php:1302
-msgid "User registrations waiting for confirmation"
-msgstr "Registrazioni in attesa"
-
-#: ../../include/widgets.php:1380 ../../mod/photos.php:748
-#: ../../mod/photos.php:1283
-msgid "View Photo"
-msgstr "Guarda la foto"
-
-#: ../../include/widgets.php:1397 ../../mod/photos.php:779
-msgid "Edit Album"
-msgstr "Modifica album"
-
-#: ../../include/features.php:45
+#: ../../include/features.php:48
msgid "General Features"
msgstr "Funzionalità di base"
-#: ../../include/features.php:47
+#: ../../include/features.php:50
msgid "Content Expiration"
msgstr "Scadenza"
-#: ../../include/features.php:47
+#: ../../include/features.php:50
msgid "Remove posts/comments and/or private messages at a future time"
msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"
-#: ../../include/features.php:48
+#: ../../include/features.php:51
msgid "Multiple Profiles"
msgstr "Profili multipli"
-#: ../../include/features.php:48
+#: ../../include/features.php:51
msgid "Ability to create multiple profiles"
msgstr "Abilitazione a creare profili multipli"
-#: ../../include/features.php:49
+#: ../../include/features.php:52
msgid "Advanced Profiles"
msgstr "Profili avanzati"
-#: ../../include/features.php:49
+#: ../../include/features.php:52
msgid "Additional profile sections and selections"
msgstr "Informazioni aggiuntive del profilo"
-#: ../../include/features.php:50
+#: ../../include/features.php:53
msgid "Profile Import/Export"
msgstr "Importa/esporta il profilo"
-#: ../../include/features.php:50
+#: ../../include/features.php:53
msgid "Save and load profile details across sites/channels"
msgstr "Salva o ripristina le informazioni del profilo su siti diversi"
-#: ../../include/features.php:51
+#: ../../include/features.php:54
msgid "Web Pages"
msgstr "Pagine web"
-#: ../../include/features.php:51
+#: ../../include/features.php:54
msgid "Provide managed web pages on your channel"
msgstr "Attiva la creazione di pagine web sul tuo canale"
-#: ../../include/features.php:52
+#: ../../include/features.php:55
msgid "Hide Rating"
msgstr "Nascondi le valutazioni"
-#: ../../include/features.php:52
+#: ../../include/features.php:55
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove."
-#: ../../include/features.php:53
+#: ../../include/features.php:56
msgid "Private Notes"
msgstr "Note private"
-#: ../../include/features.php:53
+#: ../../include/features.php:56
msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)"
-#: ../../include/features.php:54
+#: ../../include/features.php:57
msgid "Navigation Channel Select"
msgstr "Scegli il canale attivo dal menu"
-#: ../../include/features.php:54
+#: ../../include/features.php:57
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Scegli il canale attivo direttamente dal menu di navigazione"
-#: ../../include/features.php:55
+#: ../../include/features.php:58
msgid "Photo Location"
msgstr "Posizione geografica"
-#: ../../include/features.php:55
+#: ../../include/features.php:58
msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche."
-#: ../../include/features.php:57
+#: ../../include/features.php:60
msgid "Expert Mode"
msgstr "Modalità esperto"
-#: ../../include/features.php:57
+#: ../../include/features.php:60
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"
-#: ../../include/features.php:58
+#: ../../include/features.php:61
msgid "Premium Channel"
msgstr "Canale premium"
-#: ../../include/features.php:58
+#: ../../include/features.php:61
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale"
-#: ../../include/features.php:63
+#: ../../include/features.php:66
msgid "Post Composition Features"
msgstr "Modalità di scrittura post"
-#: ../../include/features.php:65
+#: ../../include/features.php:68
msgid "Use Markdown"
msgstr "Usa il markdown"
-#: ../../include/features.php:65
+#: ../../include/features.php:68
msgid "Allow use of \"Markdown\" to format posts"
msgstr "Consenti l'uso del markdown per formattare i post"
-#: ../../include/features.php:66
+#: ../../include/features.php:69
msgid "Large Photos"
msgstr "Foto grandi"
-#: ../../include/features.php:66
+#: ../../include/features.php:69
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"
-#: ../../include/features.php:67
+#: ../../include/features.php:70 ../../include/widgets.php:569
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Sorgenti del canale"
+
+#: ../../include/features.php:70
msgid "Automatically import channel content from other channels or feeds"
msgstr "Importa automaticamente il contenuto del canale da altri canali o feed"
-#: ../../include/features.php:68
+#: ../../include/features.php:71
msgid "Even More Encryption"
msgstr "Cifratura addizionale"
-#: ../../include/features.php:68
+#: ../../include/features.php:71
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"
-#: ../../include/features.php:69
+#: ../../include/features.php:72
msgid "Enable Voting Tools"
msgstr "Permetti i post con votazione"
-#: ../../include/features.php:69
+#: ../../include/features.php:72
msgid "Provide a class of post which others can vote on"
msgstr "Rende possibile la creazione di post in cui sarà possibile votare"
-#: ../../include/features.php:70
+#: ../../include/features.php:73
msgid "Delayed Posting"
msgstr "Pubblicazione ritardata"
-#: ../../include/features.php:70
+#: ../../include/features.php:73
msgid "Allow posts to be published at a later date"
msgstr "Per scegliere una data e un'ora a cui far uscire i post"
-#: ../../include/features.php:71
+#: ../../include/features.php:74
msgid "Suppress Duplicate Posts/Comments"
msgstr "Impedisci post e commenti duplicati"
-#: ../../include/features.php:71
+#: ../../include/features.php:74
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."
-#: ../../include/features.php:77
+#: ../../include/features.php:80
msgid "Network and Stream Filtering"
msgstr "Filtraggio dei contenuti"
-#: ../../include/features.php:78
+#: ../../include/features.php:81
msgid "Search by Date"
msgstr "Ricerca per data"
-#: ../../include/features.php:78
+#: ../../include/features.php:81
msgid "Ability to select posts by date ranges"
msgstr "Per selezionare i post in un intervallo tra date"
-#: ../../include/features.php:79
+#: ../../include/features.php:82
msgid "Enable management and selection of privacy groups"
msgstr "Abilita i gruppi di canali"
-#: ../../include/features.php:80
+#: ../../include/features.php:83 ../../include/widgets.php:284
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
+
+#: ../../include/features.php:83
msgid "Save search terms for re-use"
msgstr "Salva i termini delle ricerche per poterle ripetere"
-#: ../../include/features.php:81
+#: ../../include/features.php:84
msgid "Network Personal Tab"
msgstr "Attività personale"
-#: ../../include/features.php:81
+#: ../../include/features.php:84
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito"
-#: ../../include/features.php:82
+#: ../../include/features.php:85
msgid "Network New Tab"
msgstr "Contenuti nuovi"
-#: ../../include/features.php:82
+#: ../../include/features.php:85
msgid "Enable tab to display all new Network activity"
msgstr "Abilita il link per visualizzare solo i nuovi contenuti"
-#: ../../include/features.php:83
+#: ../../include/features.php:86
msgid "Affinity Tool"
msgstr "Filtro per affinità"
-#: ../../include/features.php:83
+#: ../../include/features.php:86
msgid "Filter stream activity by depth of relationships"
msgstr "Permette di selezionare i contenuti in base al livello di amicizia"
-#: ../../include/features.php:84
+#: ../../include/features.php:87
msgid "Connection Filtering"
msgstr "Filtro sui contatti"
-#: ../../include/features.php:84
+#: ../../include/features.php:87
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filtra i post che ricevi con parole chiave"
-#: ../../include/features.php:85
+#: ../../include/features.php:88
msgid "Suggest Channels"
msgstr "Suggerisci canali"
-#: ../../include/features.php:85
+#: ../../include/features.php:88
msgid "Show channel suggestions"
msgstr "Mostra alcuni canali che potrebbero interessarti"
-#: ../../include/features.php:90
+#: ../../include/features.php:93
msgid "Post/Comment Tools"
msgstr "Gestione post e commenti"
-#: ../../include/features.php:91
+#: ../../include/features.php:94
msgid "Community Tagging"
msgstr "Tag della comunità"
-#: ../../include/features.php:91
+#: ../../include/features.php:94
msgid "Ability to tag existing posts"
msgstr "Permetti l'aggiunta di tag su post già esistenti"
-#: ../../include/features.php:92
+#: ../../include/features.php:95
msgid "Post Categories"
msgstr "Categorie dei post"
-#: ../../include/features.php:92
+#: ../../include/features.php:95
msgid "Add categories to your posts"
msgstr "Abilita le categorie per i tuoi post"
-#: ../../include/features.php:93
+#: ../../include/features.php:96
msgid "Ability to file posts under folders"
msgstr "Abilita la raccolta dei tuoi articoli in cartelle"
-#: ../../include/features.php:94
+#: ../../include/features.php:97
msgid "Dislike Posts"
msgstr "Non mi piace"
-#: ../../include/features.php:94
+#: ../../include/features.php:97
msgid "Ability to dislike posts/comments"
msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post"
-#: ../../include/features.php:95
+#: ../../include/features.php:98
msgid "Star Posts"
msgstr "Post con stella"
-#: ../../include/features.php:95
+#: ../../include/features.php:98
msgid "Ability to mark special posts with a star indicator"
msgstr "Mostra la stella per segnare i post preferiti"
-#: ../../include/features.php:96
+#: ../../include/features.php:99
msgid "Tag Cloud"
msgstr "Nuvola di tag"
-#: ../../include/features.php:96
+#: ../../include/features.php:99
msgid "Provide a personal tag cloud on your channel page"
msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"
-#: ../../index.php:242 ../../mod/help.php:213
-msgid "Not Found"
-msgstr "Non disponibile"
+#: ../../include/identity.php:32
+msgid "Unable to obtain identity information from database"
+msgstr "Impossibile ottenere le informazioni di identificazione dal database"
-#: ../../index.php:245 ../../mod/block.php:75 ../../mod/display.php:110
-#: ../../mod/help.php:216 ../../mod/page.php:89
-msgid "Page not found."
-msgstr "Pagina non trovata."
+#: ../../include/identity.php:66
+msgid "Empty name"
+msgstr "Nome vuoto"
-#: ../../mod/achievements.php:34
-msgid "Some blurb about what to do when you're new here"
-msgstr "Qualche suggerimento per i nuovi utenti su cosa fare"
+#: ../../include/identity.php:69
+msgid "Name too long"
+msgstr "Nome troppo lungo"
-#: ../../mod/acl.php:222
-msgid "network"
-msgstr "rete"
+#: ../../include/identity.php:181
+msgid "No account identifier"
+msgstr "Account senza identificativo"
-#: ../../mod/acl.php:232
-msgid "RSS"
-msgstr "RSS"
+#: ../../include/identity.php:193
+msgid "Nickname is required."
+msgstr "Il nome dell'account è obbligatorio."
-#: ../../mod/admin.php:54
-msgid "Theme settings updated."
-msgstr "Le impostazioni del tema sono state aggiornate."
+#: ../../include/identity.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Nome utente riservato. Per favore scegline un altro."
-#: ../../mod/admin.php:168
-msgid "# Accounts"
-msgstr "# account"
+#: ../../include/identity.php:212
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."
-#: ../../mod/admin.php:169
-msgid "# blocked accounts"
-msgstr "# account bloccati"
+#: ../../include/identity.php:288
+msgid "Unable to retrieve created identity"
+msgstr "Impossibile caricare l'identità creata"
-#: ../../mod/admin.php:170
-msgid "# expired accounts"
-msgstr "# account scaduti"
+#: ../../include/identity.php:346
+msgid "Default Profile"
+msgstr "Profilo predefinito"
-#: ../../mod/admin.php:171
-msgid "# expiring accounts"
-msgstr "# account in scadenza"
+#: ../../include/identity.php:772
+msgid "Requested channel is not available."
+msgstr "Il canale che cerchi non è disponibile."
-#: ../../mod/admin.php:182
-msgid "# Channels"
-msgstr "# canali"
+#: ../../include/identity.php:818 ../../mod/achievements.php:11
+#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
+#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
+#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
+#: ../../mod/profile.php:16 ../../mod/webpages.php:29
+msgid "Requested profile is not available."
+msgstr "Il profilo richiesto non è disponibile."
-#: ../../mod/admin.php:183
-msgid "# primary"
-msgstr "# primari"
+#: ../../include/identity.php:967 ../../mod/profiles.php:782
+msgid "Change profile photo"
+msgstr "Cambia la foto del profilo"
-#: ../../mod/admin.php:184
-msgid "# clones"
-msgstr "# cloni"
+#: ../../include/identity.php:973
+msgid "Profiles"
+msgstr "Profili"
-#: ../../mod/admin.php:190
-msgid "Message queues"
-msgstr "Coda messaggi in uscita"
+#: ../../include/identity.php:973
+msgid "Manage/edit profiles"
+msgstr "Gestisci/modifica i profili"
-#: ../../mod/admin.php:206 ../../mod/admin.php:451 ../../mod/admin.php:619
-#: ../../mod/admin.php:886 ../../mod/admin.php:1050 ../../mod/admin.php:1165
-#: ../../mod/admin.php:1226 ../../mod/admin.php:1387 ../../mod/admin.php:1421
-#: ../../mod/admin.php:1506
-msgid "Administration"
-msgstr "Amministrazione"
+#: ../../include/identity.php:974 ../../mod/profiles.php:783
+msgid "Create New Profile"
+msgstr "Crea un nuovo profilo"
-#: ../../mod/admin.php:207
-msgid "Summary"
-msgstr "Riepilogo"
+#: ../../include/identity.php:989 ../../mod/profiles.php:794
+msgid "Profile Image"
+msgstr "Immagine del profilo"
-#: ../../mod/admin.php:210
-msgid "Registered accounts"
-msgstr "Account creati"
+#: ../../include/identity.php:992
+msgid "visible to everybody"
+msgstr "visibile a tutti"
-#: ../../mod/admin.php:211 ../../mod/admin.php:623
-msgid "Pending registrations"
-msgstr "Registrazioni da approvare"
+#: ../../include/identity.php:993 ../../mod/profiles.php:677
+#: ../../mod/profiles.php:798
+msgid "Edit visibility"
+msgstr "Cambia la visibilità"
-#: ../../mod/admin.php:212
-msgid "Registered channels"
-msgstr "Canali creati"
+#: ../../include/identity.php:1009 ../../include/identity.php:1252
+msgid "Gender:"
+msgstr "Sesso:"
-#: ../../mod/admin.php:213 ../../mod/admin.php:624
-msgid "Active plugins"
-msgstr "Plugin attivi"
+#: ../../include/identity.php:1010 ../../include/identity.php:1296
+msgid "Status:"
+msgstr "Stato:"
-#: ../../mod/admin.php:214
-msgid "Version"
-msgstr "Versione"
+#: ../../include/identity.php:1011 ../../include/identity.php:1307
+msgid "Homepage:"
+msgstr "Home page:"
-#: ../../mod/admin.php:335
-msgid "Site settings updated."
-msgstr "Impostazioni del sito salvate correttamente."
+#: ../../include/identity.php:1012
+msgid "Online Now"
+msgstr "Online adesso"
-#: ../../mod/admin.php:372 ../../mod/settings.php:793
-msgid "mobile"
-msgstr "mobile"
+#: ../../include/identity.php:1099 ../../include/identity.php:1177
+#: ../../mod/ping.php:318
+msgid "g A l F d"
+msgstr "g A l d F"
-#: ../../mod/admin.php:374
-msgid "experimental"
-msgstr "sperimentale"
+#: ../../include/identity.php:1100 ../../include/identity.php:1178
+msgid "F d"
+msgstr "d F"
-#: ../../mod/admin.php:376
-msgid "unsupported"
-msgstr "non supportato"
+#: ../../include/identity.php:1145 ../../include/identity.php:1217
+#: ../../mod/ping.php:341
+msgid "[today]"
+msgstr "[oggi]"
-#: ../../mod/admin.php:422
-msgid "Yes - with approval"
-msgstr "Sì - con approvazione"
+#: ../../include/identity.php:1156
+msgid "Birthday Reminders"
+msgstr "Promemoria compleanni"
-#: ../../mod/admin.php:428
-msgid "My site is not a public server"
-msgstr "Non è un server pubblico"
+#: ../../include/identity.php:1157
+msgid "Birthdays this week:"
+msgstr "Compleanni questa settimana:"
-#: ../../mod/admin.php:429
-msgid "My site has paid access only"
-msgstr "È un servizio a pagamento"
+#: ../../include/identity.php:1210
+msgid "[No description]"
+msgstr "[Nessuna descrizione]"
-#: ../../mod/admin.php:430
-msgid "My site has free access only"
-msgstr "È un servizio gratuito"
+#: ../../include/identity.php:1228
+msgid "Event Reminders"
+msgstr "Promemoria"
-#: ../../mod/admin.php:431
-msgid "My site offers free accounts with optional paid upgrades"
-msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento"
+#: ../../include/identity.php:1229
+msgid "Events this week:"
+msgstr "Eventi della settimana:"
-#: ../../mod/admin.php:454 ../../mod/register.php:237
-msgid "Registration"
-msgstr "Registrazione"
+#: ../../include/identity.php:1250 ../../mod/settings.php:1031
+msgid "Full Name:"
+msgstr "Nome completo:"
-#: ../../mod/admin.php:455
-msgid "File upload"
-msgstr "Caricamento file"
+#: ../../include/identity.php:1257
+msgid "Like this channel"
+msgstr "Mi piace questo canale"
-#: ../../mod/admin.php:456
-msgid "Policies"
-msgstr "Politiche"
+#: ../../include/identity.php:1281
+msgid "j F, Y"
+msgstr "j F Y"
-#: ../../mod/admin.php:461
-msgid "Site name"
-msgstr "Nome del sito"
+#: ../../include/identity.php:1282
+msgid "j F"
+msgstr "j F"
-#: ../../mod/admin.php:462
-msgid "Banner/Logo"
-msgstr "Banner o logo"
+#: ../../include/identity.php:1289
+msgid "Birthday:"
+msgstr "Compleanno:"
-#: ../../mod/admin.php:463
-msgid "Administrator Information"
-msgstr "Informazioni sull'amministratore"
+#: ../../include/identity.php:1293 ../../mod/directory.php:302
+msgid "Age:"
+msgstr "Età:"
-#: ../../mod/admin.php:463
-msgid ""
-"Contact information for site administrators. Displayed on siteinfo page. "
-"BBCode can be used here"
-msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"
+#: ../../include/identity.php:1302
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "per %1$d %2$s"
-#: ../../mod/admin.php:464
-msgid "System language"
-msgstr "Lingua di sistema"
+#: ../../include/identity.php:1305 ../../mod/profiles.php:699
+msgid "Sexual Preference:"
+msgstr "Preferenze sessuali:"
-#: ../../mod/admin.php:465
-msgid "System theme"
-msgstr "Tema di sistema"
+#: ../../include/identity.php:1309 ../../mod/directory.php:318
+#: ../../mod/profiles.php:701
+msgid "Hometown:"
+msgstr "Città dove vivo:"
-#: ../../mod/admin.php:465
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>"
+#: ../../include/identity.php:1311
+msgid "Tags:"
+msgstr "Tag:"
-#: ../../mod/admin.php:466
-msgid "Mobile system theme"
-msgstr "Tema di sistema per dispositivi mobili"
+#: ../../include/identity.php:1313 ../../mod/profiles.php:702
+msgid "Political Views:"
+msgstr "Orientamento politico:"
-#: ../../mod/admin.php:466
-msgid "Theme for mobile devices"
-msgstr "Tema per i dispositivi mobili"
+#: ../../include/identity.php:1315
+msgid "Religion:"
+msgstr "Religione:"
-#: ../../mod/admin.php:468
-msgid "Allow Feeds as Connections"
-msgstr "Permetti di aggiungere i feed come contatti"
+#: ../../include/identity.php:1317 ../../mod/directory.php:320
+msgid "About:"
+msgstr "Informazioni:"
-#: ../../mod/admin.php:468
-msgid "(Heavy system resource usage)"
-msgstr "(Uso intenso delle risorse di sistema!)"
+#: ../../include/identity.php:1319
+msgid "Hobbies/Interests:"
+msgstr "Interessi e hobby:"
-#: ../../mod/admin.php:469
-msgid "Maximum image size"
-msgstr "Dimensione massima immagini"
+#: ../../include/identity.php:1321 ../../mod/profiles.php:705
+msgid "Likes:"
+msgstr "Mi piace:"
-#: ../../mod/admin.php:469
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
+#: ../../include/identity.php:1323 ../../mod/profiles.php:706
+msgid "Dislikes:"
+msgstr "Non mi piace:"
-#: ../../mod/admin.php:470
-msgid "Does this site allow new member registration?"
-msgstr "Questo sito permette a nuovi utenti di registrarsi?"
+#: ../../include/identity.php:1325
+msgid "Contact information and Social Networks:"
+msgstr "Contatti e social network:"
-#: ../../mod/admin.php:471
-msgid "Invitation only"
-msgstr "Solo con invito"
+#: ../../include/identity.php:1327
+msgid "My other channels:"
+msgstr "I miei altri canali:"
-#: ../../mod/admin.php:471
-msgid ""
-"Only allow new member registrations with an invitation code. Above register "
-"policy must be set to Yes."
-msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."
+#: ../../include/identity.php:1329
+msgid "Musical interests:"
+msgstr "Gusti musicali:"
-#: ../../mod/admin.php:472
-msgid "Which best describes the types of account offered by this hub?"
-msgstr "Come descriveresti il tipo di servizio proposto da questo server?"
+#: ../../include/identity.php:1331
+msgid "Books, literature:"
+msgstr "Libri, letteratura:"
-#: ../../mod/admin.php:473
-msgid "Register text"
-msgstr "Testo di registrazione"
+#: ../../include/identity.php:1333
+msgid "Television:"
+msgstr "Televisione:"
-#: ../../mod/admin.php:473
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
+#: ../../include/identity.php:1335
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film, danza, cultura, intrattenimento:"
-#: ../../mod/admin.php:474
-msgid "Site homepage to show visitors (default: login box)"
-msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"
+#: ../../include/identity.php:1337
+msgid "Love/Romance:"
+msgstr "Amore:"
-#: ../../mod/admin.php:474
-msgid ""
-"example: 'public' to show public stream, 'page/sys/home' to show a system "
-"webpage called 'home' or 'include:home.html' to include a file."
-msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."
+#: ../../include/identity.php:1339
+msgid "Work/employment:"
+msgstr "Lavoro:"
-#: ../../mod/admin.php:475
-msgid "Preserve site homepage URL"
-msgstr "Conserva l'URL della homepage"
+#: ../../include/identity.php:1341
+msgid "School/education:"
+msgstr "Scuola:"
-#: ../../mod/admin.php:475
-msgid ""
-"Present the site homepage in a frame at the original location instead of "
-"redirecting"
-msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."
+#: ../../include/identity.php:1361
+msgid "Like this thing"
+msgstr "Mi piace"
-#: ../../mod/admin.php:476
-msgid "Accounts abandoned after x days"
-msgstr "Account abbandonati dopo X giorni"
+#: ../../include/identity.php:1769 ../../mod/cover_photo.php:236
+msgid "cover photo"
+msgstr "Copertina del canale"
-#: ../../mod/admin.php:476
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."
+#: ../../include/oembed.php:267
+msgid "Embedded content"
+msgstr "Contenuti incorporati"
-#: ../../mod/admin.php:477
-msgid "Allowed friend domains"
-msgstr "Domini fidati e consentiti"
+#: ../../include/oembed.php:276
+msgid "Embedding disabled"
+msgstr "Disabilita la creazione di contenuti incorporati"
-#: ../../mod/admin.php:477
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
+msgstr "Può vedere i miei contenuti e i post normali"
-#: ../../mod/admin.php:478
-msgid "Allowed email domains"
-msgstr "Domini email consentiti"
+#: ../../include/permissions.php:27
+msgid "Can view my default channel profile"
+msgstr "Può vedere il profilo predefinito del canale"
-#: ../../mod/admin.php:478
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"
+#: ../../include/permissions.php:28
+msgid "Can view my connections"
+msgstr "Può vedere i miei contatti"
-#: ../../mod/admin.php:479
-msgid "Not allowed email domains"
-msgstr "Domini email non consentiti"
+#: ../../include/permissions.php:29
+msgid "Can view my file storage and photos"
+msgstr "Può vedere il mio archivio file e foto"
-#: ../../mod/admin.php:479
-msgid ""
-"Comma separated list of domains which are not allowed in email addresses for"
-" registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains, unless allowed domains have been defined."
-msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../include/permissions.php:30
+msgid "Can view my webpages"
+msgstr "Può vedere le mie pagine web"
-#: ../../mod/admin.php:480
-msgid "Block public"
-msgstr "Blocca pagine pubbliche"
+#: ../../include/permissions.php:33
+msgid "Can send me their channel stream and posts"
+msgstr "È tra i canali che seguo"
-#: ../../mod/admin.php:480
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."
+#: ../../include/permissions.php:34
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Può scrivere sulla bacheca del mio canale"
-#: ../../mod/admin.php:481
-msgid "Verify Email Addresses"
-msgstr "Verifica l'indirizzo email"
+#: ../../include/permissions.php:35
+msgid "Can comment on or like my posts"
+msgstr "Può commentare o aggiungere \"mi piace\" ai miei post"
-#: ../../mod/admin.php:481
-msgid ""
-"Check to verify email addresses used in account registration (recommended)."
-msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."
+#: ../../include/permissions.php:36
+msgid "Can send me private mail messages"
+msgstr "Può inviarmi messaggi privati"
-#: ../../mod/admin.php:482
-msgid "Force publish"
-msgstr "Forza la publicazione del profilo"
+#: ../../include/permissions.php:37
+msgid "Can like/dislike stuff"
+msgstr "Può aggiungere \"mi piace\" a tutto il resto"
-#: ../../mod/admin.php:482
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito."
+#: ../../include/permissions.php:37
+msgid "Profiles and things other than posts/comments"
+msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"
-#: ../../mod/admin.php:483
-msgid "Import Public Streams"
-msgstr "Suggerisci contenuti pubblici della rete Hubzilla"
+#: ../../include/permissions.php:39
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione"
-#: ../../mod/admin.php:483
-msgid ""
-"Import and allow access to public content pulled from other sites. Warning: "
-"this content is unmoderated."
-msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."
+#: ../../include/permissions.php:39
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione"
-#: ../../mod/admin.php:484
-msgid "login on Homepage"
-msgstr "Mostra il login sulla homepage"
+#: ../../include/permissions.php:40
+msgid "Can chat with me (when available)"
+msgstr "Può aprire una chat con me (se disponibile)"
-#: ../../mod/admin.php:484
-msgid ""
-"Present a login box to visitors on the home page if no other content has "
-"been configured."
-msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."
+#: ../../include/permissions.php:41
+msgid "Can write to my file storage and photos"
+msgstr "Può modificare il mio archivio file e foto"
-#: ../../mod/admin.php:486
-msgid "Directory Server URL"
-msgstr "URL del directory server"
+#: ../../include/permissions.php:42
+msgid "Can edit my webpages"
+msgstr "Può modificare le mie pagine web"
-#: ../../mod/admin.php:486
-msgid "Default directory server"
-msgstr "Directory server predefinito"
+#: ../../include/permissions.php:44
+msgid "Can source my public posts in derived channels"
+msgstr "Può usare i miei post pubblici per creare canali derivati"
-#: ../../mod/admin.php:488
-msgid "Proxy user"
-msgstr "Utente proxy"
+#: ../../include/permissions.php:44
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Piuttosto avanzato - molto utile nelle comunità aperte"
-#: ../../mod/admin.php:489
-msgid "Proxy URL"
-msgstr "URL proxy"
+#: ../../include/permissions.php:46
+msgid "Can administer my channel resources"
+msgstr "Può amministrare i contenuti del mio canale"
-#: ../../mod/admin.php:490
-msgid "Network timeout"
-msgstr "Timeout rete"
+#: ../../include/permissions.php:46
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
-#: ../../mod/admin.php:490
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."
+#: ../../include/permissions.php:867
+msgid "Social Networking"
+msgstr "Social network"
-#: ../../mod/admin.php:491
-msgid "Delivery interval"
-msgstr "Recapito ritardato"
+#: ../../include/permissions.php:867 ../../include/permissions.php:868
+#: ../../include/permissions.php:869
+msgid "Mostly Public"
+msgstr "Prevalentemente pubblico"
-#: ../../mod/admin.php:491
-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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."
+#: ../../include/permissions.php:867 ../../include/permissions.php:868
+#: ../../include/permissions.php:869
+msgid "Restricted"
+msgstr "Con restrizioni"
-#: ../../mod/admin.php:492
-msgid "Deliveries per process"
-msgstr "Tentativi di recapito per processo"
+#: ../../include/permissions.php:867 ../../include/permissions.php:868
+msgid "Private"
+msgstr "Privato"
-#: ../../mod/admin.php:492
-msgid ""
-"Number of deliveries to attempt in a single operating system process. Adjust"
-" if necessary to tune system performance. Recommend: 1-5."
-msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"
+#: ../../include/permissions.php:868
+msgid "Community Forum"
+msgstr "Forum di discussione"
-#: ../../mod/admin.php:493
-msgid "Poll interval"
-msgstr "Intervallo di polling"
+#: ../../include/permissions.php:869
+msgid "Feed Republish"
+msgstr "Aggregatore di feed esterni"
-#: ../../mod/admin.php:493
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."
+#: ../../include/permissions.php:870
+msgid "Special Purpose"
+msgstr "Per finalità speciali"
-#: ../../mod/admin.php:494
-msgid "Maximum Load Average"
-msgstr "Carico massimo medio"
+#: ../../include/permissions.php:870
+msgid "Celebrity/Soapbox"
+msgstr "Pagina per fan"
-#: ../../mod/admin.php:494
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."
+#: ../../include/permissions.php:870
+msgid "Group Repository"
+msgstr "Repository di gruppo"
-#: ../../mod/admin.php:495
-msgid "Expiration period in days for imported (grid/network) content"
-msgstr "Scadenza dei contenuti importati da altri siti (in giorni)"
+#: ../../include/permissions.php:871
+msgid "Custom/Expert Mode"
+msgstr "Personalizzazione per esperti"
-#: ../../mod/admin.php:495
-msgid "0 for no expiration of imported content"
-msgstr "0 per non avere scadenza"
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "Sistema"
-#: ../../mod/admin.php:585 ../../mod/admin.php:586 ../../mod/settings.php:717
-msgid "Off"
-msgstr "Off"
+#: ../../include/widgets.php:106
+msgid "Create Personal App"
+msgstr "Crea app personale"
-#: ../../mod/admin.php:585 ../../mod/admin.php:586 ../../mod/settings.php:717
-msgid "On"
-msgstr "On"
+#: ../../include/widgets.php:107
+msgid "Edit Personal App"
+msgstr "Modifica app personale"
+
+#: ../../include/widgets.php:149 ../../mod/suggest.php:54
+msgid "Ignore/Hide"
+msgstr "Ignora/nascondi"
+
+#: ../../include/widgets.php:154
+msgid "Suggestions"
+msgstr "Suggerimenti"
-#: ../../mod/admin.php:586
+#: ../../include/widgets.php:155
+msgid "See more..."
+msgstr "Altro..."
+
+#: ../../include/widgets.php:176
#, php-format
-msgid "Lock feature %s"
-msgstr "Rendi non modificabile %s"
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse."
-#: ../../mod/admin.php:594
-msgid "Manage Additional Features"
-msgstr "Funzionalità opzionali"
+#: ../../include/widgets.php:182
+msgid "Add New Connection"
+msgstr "Aggiungi un contatto"
-#: ../../mod/admin.php:611
-msgid "No server found"
-msgstr "Server non trovato"
+#: ../../include/widgets.php:183
+msgid "Enter channel address"
+msgstr "Indirizzo del canale"
-#: ../../mod/admin.php:618 ../../mod/admin.php:900
-msgid "ID"
-msgstr "ID"
+#: ../../include/widgets.php:184
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Per esempio: bob@example.com, https://example.com/barbara"
-#: ../../mod/admin.php:618
-msgid "for channel"
-msgstr "per il canale"
+#: ../../include/widgets.php:200
+msgid "Notes"
+msgstr "Note"
-#: ../../mod/admin.php:618
-msgid "on server"
-msgstr "sul server"
+#: ../../include/widgets.php:276
+msgid "Remove term"
+msgstr "Rimuovi termine"
-#: ../../mod/admin.php:618 ../../mod/connections.php:266
-msgid "Status"
-msgstr "Stato"
+#: ../../include/widgets.php:359
+msgid "Archives"
+msgstr "Archivi"
-#: ../../mod/admin.php:620
-msgid "Server"
-msgstr "Server"
+#: ../../include/widgets.php:449 ../../mod/connedit.php:580
+msgid "Me"
+msgstr "Me"
-#: ../../mod/admin.php:637
-msgid "Update has been marked successful"
-msgstr "L'aggiornamento è stato marcato come eseguito."
+#: ../../include/widgets.php:450 ../../mod/connedit.php:581
+msgid "Family"
+msgstr "Famiglia"
-#: ../../mod/admin.php:647
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."
+#: ../../include/widgets.php:452 ../../mod/connedit.php:583
+msgid "Acquaintances"
+msgstr "Conoscenti"
-#: ../../mod/admin.php:650
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "L'aggiornamento %s è terminato correttamente."
+#: ../../include/widgets.php:453 ../../mod/connections.php:88
+#: ../../mod/connections.php:103 ../../mod/connedit.php:584
+msgid "All"
+msgstr "Tutti"
-#: ../../mod/admin.php:654
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."
+#: ../../include/widgets.php:472
+msgid "Refresh"
+msgstr "Aggiorna"
-#: ../../mod/admin.php:657
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Impossibile trovare la funzione di aggiornamento %s"
+#: ../../include/widgets.php:506
+msgid "Account settings"
+msgstr "Il tuo account"
-#: ../../mod/admin.php:673
-msgid "No failed updates."
-msgstr "Nessun aggiornamento fallito."
+#: ../../include/widgets.php:512
+msgid "Channel settings"
+msgstr "Impostazioni del canale"
-#: ../../mod/admin.php:677
-msgid "Failed Updates"
-msgstr "Aggiornamenti falliti."
+#: ../../include/widgets.php:521
+msgid "Additional features"
+msgstr "Funzionalità opzionali"
-#: ../../mod/admin.php:679
-msgid "Mark success (if update was manually applied)"
-msgstr "Marca come eseguito (se applicato manualmente)."
+#: ../../include/widgets.php:528
+msgid "Feature/Addon settings"
+msgstr "Componenti aggiuntivi"
-#: ../../mod/admin.php:680
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."
+#: ../../include/widgets.php:534
+msgid "Display settings"
+msgstr "Aspetto"
-#: ../../mod/admin.php:711
-msgid "Queue Statistics"
-msgstr "Statistiche della coda"
+#: ../../include/widgets.php:540
+msgid "Connected apps"
+msgstr "App connesse"
-#: ../../mod/admin.php:712
-msgid "Total Entries"
-msgstr "Totale"
+#: ../../include/widgets.php:546
+msgid "Export channel"
+msgstr "Esporta il canale"
-#: ../../mod/admin.php:713
-msgid "Priority"
-msgstr "Priorità"
+#: ../../include/widgets.php:553 ../../mod/connedit.php:692
+msgid "Connection Default Permissions"
+msgstr "Permessi predefiniti dei nuovi contatti"
-#: ../../mod/admin.php:714
-msgid "Destination URL"
-msgstr "URL di destinazione"
+#: ../../include/widgets.php:561
+msgid "Premium Channel Settings"
+msgstr "Canale premium - impostazioni"
-#: ../../mod/admin.php:715
-msgid "Mark hub permanently offline"
-msgstr "Questo hub è definitivamente offline"
+#: ../../include/widgets.php:591
+msgid "Private Mail Menu"
+msgstr "Menu messaggi privati"
-#: ../../mod/admin.php:716
-msgid "Empty queue for this hub"
-msgstr "Svuota la coda per questo hub"
+#: ../../include/widgets.php:593
+msgid "Combined View"
+msgstr "Vista combinata"
-#: ../../mod/admin.php:717
-msgid "Last known contact"
-msgstr "Ultimo scambio dati"
+#: ../../include/widgets.php:627 ../../include/widgets.php:639
+msgid "Conversations"
+msgstr "Conversazioni"
-#: ../../mod/admin.php:753
-#, php-format
-msgid "%s account blocked/unblocked"
-msgid_plural "%s account blocked/unblocked"
-msgstr[0] "Modificato il blocco su %s account"
-msgstr[1] "Modificato il blocco verso %s"
+#: ../../include/widgets.php:631
+msgid "Received Messages"
+msgstr "Ricevuti"
-#: ../../mod/admin.php:761
-#, php-format
-msgid "%s account deleted"
-msgid_plural "%s accounts deleted"
-msgstr[0] "%s account eliminato"
-msgstr[1] "%s account eliminati"
+#: ../../include/widgets.php:635
+msgid "Sent Messages"
+msgstr "Inviati"
-#: ../../mod/admin.php:797
-msgid "Account not found"
-msgstr "Account non trovato"
+#: ../../include/widgets.php:649
+msgid "No messages."
+msgstr "Nessun messaggio."
-#: ../../mod/admin.php:809
-#, php-format
-msgid "Account '%s' deleted"
-msgstr "Account '%s' eliminato"
+#: ../../include/widgets.php:667
+msgid "Delete conversation"
+msgstr "Elimina la conversazione"
-#: ../../mod/admin.php:817
-#, php-format
-msgid "Account '%s' blocked"
-msgstr "Aggiunto un blocco verso '%s'"
+#: ../../include/widgets.php:693
+msgid "Events Menu"
+msgstr "Menu eventi"
-#: ../../mod/admin.php:825
-#, php-format
-msgid "Account '%s' unblocked"
-msgstr "Rimosso il blocco verso '%s'"
+#: ../../include/widgets.php:694
+msgid "Day View"
+msgstr "Eventi del giorno"
-#: ../../mod/admin.php:887 ../../mod/admin.php:899
-msgid "Users"
-msgstr "Utenti"
+#: ../../include/widgets.php:695
+msgid "Week View"
+msgstr "Eventi della settimana"
-#: ../../mod/admin.php:889 ../../mod/admin.php:1053
-msgid "select all"
-msgstr "seleziona tutti"
+#: ../../include/widgets.php:696
+msgid "Month View"
+msgstr "Eventi del mese"
-#: ../../mod/admin.php:890
-msgid "User registrations waiting for confirm"
-msgstr "Richieste di registrazione in attesa di conferma"
+#: ../../include/widgets.php:697 ../../mod/events.php:654
+msgid "Export"
+msgstr "Esporta"
-#: ../../mod/admin.php:891
-msgid "Request date"
-msgstr "Data richiesta"
+#: ../../include/widgets.php:698 ../../mod/events.php:657
+msgid "Import"
+msgstr "Importa"
-#: ../../mod/admin.php:892
-msgid "No registrations."
-msgstr "Nessuna registrazione."
+#: ../../include/widgets.php:708
+msgid "Events Tools"
+msgstr "Gestione eventi"
-#: ../../mod/admin.php:893 ../../mod/connections.php:271
-msgid "Approve"
-msgstr "Approva"
+#: ../../include/widgets.php:709
+msgid "Export Calendar"
+msgstr "Esporta calendario"
-#: ../../mod/admin.php:894
-msgid "Deny"
-msgstr "Nega"
+#: ../../include/widgets.php:710
+msgid "Import Calendar"
+msgstr "Importa calendario"
-#: ../../mod/admin.php:896 ../../mod/connedit.php:528
-msgid "Block"
-msgstr "Blocca"
+#: ../../include/widgets.php:784
+msgid "Chat Rooms"
+msgstr "Chat"
-#: ../../mod/admin.php:897 ../../mod/connedit.php:528
-msgid "Unblock"
-msgstr "Sblocca"
+#: ../../include/widgets.php:804
+msgid "Bookmarked Chatrooms"
+msgstr "Chat nei segnalibri"
-#: ../../mod/admin.php:900
-msgid "Register date"
-msgstr "Data registrazione"
+#: ../../include/widgets.php:824
+msgid "Suggested Chatrooms"
+msgstr "Chat suggerite"
-#: ../../mod/admin.php:900
-msgid "Last login"
-msgstr "Ultimo accesso"
+#: ../../include/widgets.php:969 ../../include/widgets.php:1059
+msgid "photo/image"
+msgstr "foto/immagine"
-#: ../../mod/admin.php:900
-msgid "Expires"
-msgstr "Con scadenza"
+#: ../../include/widgets.php:1153
+msgid "Rating Tools"
+msgstr "Valutazione"
-#: ../../mod/admin.php:900
-msgid "Service Class"
-msgstr "Classe dell'account"
+#: ../../include/widgets.php:1157 ../../include/widgets.php:1159
+msgid "Rate Me"
+msgstr "Valutami"
-#: ../../mod/admin.php:902
-msgid ""
-"Selected accounts will be deleted!\\n\\nEverything these accounts had posted"
-" on this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"
+#: ../../include/widgets.php:1162
+msgid "View Ratings"
+msgstr "Vedi le valutazioni ricevute"
-#: ../../mod/admin.php:903
-msgid ""
-"The account {0} will be deleted!\\n\\nEverything this account has posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"
+#: ../../include/widgets.php:1173
+msgid "Public Hubs"
+msgstr "Hub pubblici"
-#: ../../mod/admin.php:939
-#, php-format
-msgid "%s channel censored/uncensored"
-msgid_plural "%s channels censored/uncensored"
-msgstr[0] "Censura modificata per %s canale"
-msgstr[1] "Censura modificata per %s canali"
+#: ../../include/widgets.php:1221
+msgid "Forums"
+msgstr "Forum"
-#: ../../mod/admin.php:948
-#, php-format
-msgid "%s channel code allowed/disallowed"
-msgid_plural "%s channels code allowed/disallowed"
-msgstr[0] "%s canale permette/non permette codice nei contenuti"
-msgstr[1] "%s canali permettono/non permettono codice nei contenuti"
+#: ../../include/widgets.php:1250
+msgid "Tasks"
+msgstr "Attività"
-#: ../../mod/admin.php:955
-#, php-format
-msgid "%s channel deleted"
-msgid_plural "%s channels deleted"
-msgstr[0] "%s canale è stato rimosso"
-msgstr[1] "%s canali sono stati rimossi"
+#: ../../include/widgets.php:1259
+msgid "Documentation"
+msgstr "Guida"
-#: ../../mod/admin.php:975
-msgid "Channel not found"
-msgstr "Canale non trovato"
+#: ../../include/widgets.php:1261
+msgid "Project/Site Information"
+msgstr "Informazioni sul sito/progetto"
-#: ../../mod/admin.php:986
-#, php-format
-msgid "Channel '%s' deleted"
-msgstr "Il canale '%s' è stato rimosso"
+#: ../../include/widgets.php:1262
+msgid "For Members"
+msgstr "Per gli utenti"
-#: ../../mod/admin.php:998
-#, php-format
-msgid "Channel '%s' censored"
-msgstr "Applicata una censura al canale '%s'"
+#: ../../include/widgets.php:1263
+msgid "For Administrators"
+msgstr "Per gli amministratori"
-#: ../../mod/admin.php:998
-#, php-format
-msgid "Channel '%s' uncensored"
-msgstr "Rimossa la censura dal canale '%s'"
+#: ../../include/widgets.php:1264
+msgid "For Developers"
+msgstr "Per sviluppatori"
-#: ../../mod/admin.php:1009
-#, php-format
-msgid "Channel '%s' code allowed"
-msgstr "Il canale '%s' permette codice nei contenuti"
+#: ../../include/widgets.php:1289 ../../mod/admin.php:456
+msgid "Site"
+msgstr "Sito"
-#: ../../mod/admin.php:1009
-#, php-format
-msgid "Channel '%s' code disallowed"
-msgstr "Il canale '%s' non permette codice nei contenuti"
+#: ../../include/widgets.php:1290
+msgid "Accounts"
+msgstr "Account"
-#: ../../mod/admin.php:1055
-msgid "Censor"
-msgstr "Applica una censura"
+#: ../../include/widgets.php:1291 ../../mod/admin.php:1149
+msgid "Channels"
+msgstr "Canali"
-#: ../../mod/admin.php:1056
-msgid "Uncensor"
-msgstr "Rimuovi la censura"
+#: ../../include/widgets.php:1292 ../../mod/admin.php:710
+msgid "Security"
+msgstr "Sicurezza"
-#: ../../mod/admin.php:1057
-msgid "Allow Code"
-msgstr "Permetti codice nei contenuti"
+#: ../../include/widgets.php:1294 ../../mod/admin.php:1264
+#: ../../mod/admin.php:1325
+msgid "Plugins"
+msgstr "Plugin"
-#: ../../mod/admin.php:1058
-msgid "Disallow Code"
-msgstr "Non permettere codice nei contenuti"
+#: ../../include/widgets.php:1295 ../../mod/admin.php:1486
+#: ../../mod/admin.php:1520
+msgid "Themes"
+msgstr "Temi"
-#: ../../mod/admin.php:1060
-msgid "UID"
-msgstr "UID"
+#: ../../include/widgets.php:1296
+msgid "Inspect queue"
+msgstr "Coda di attesa"
-#: ../../mod/admin.php:1060 ../../mod/profiles.php:457
-msgid "Address"
-msgstr "Indirizzo"
+#: ../../include/widgets.php:1297
+msgid "Profile Config"
+msgstr "Configurazione del profilo"
-#: ../../mod/admin.php:1062
-msgid ""
-"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 "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"
+#: ../../include/widgets.php:1298
+msgid "DB updates"
+msgstr "Aggiornamenti al DB"
-#: ../../mod/admin.php:1063
-msgid ""
-"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 "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"
+#: ../../include/widgets.php:1316 ../../include/widgets.php:1322
+#: ../../mod/admin.php:1605
+msgid "Logs"
+msgstr "Log"
-#: ../../mod/admin.php:1120
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s non attivo."
+#: ../../include/widgets.php:1321
+msgid "Plugin Features"
+msgstr "Plugin"
-#: ../../mod/admin.php:1124
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s attivo."
+#: ../../include/widgets.php:1323
+msgid "User registrations waiting for confirmation"
+msgstr "Registrazioni in attesa"
-#: ../../mod/admin.php:1134 ../../mod/admin.php:1360
-msgid "Disable"
-msgstr "Disattiva"
+#: ../../include/widgets.php:1401 ../../mod/photos.php:760
+#: ../../mod/photos.php:1300
+msgid "View Photo"
+msgstr "Guarda la foto"
-#: ../../mod/admin.php:1137 ../../mod/admin.php:1362
-msgid "Enable"
-msgstr "Attiva"
+#: ../../include/widgets.php:1418 ../../mod/photos.php:791
+msgid "Edit Album"
+msgstr "Modifica album"
-#: ../../mod/admin.php:1167 ../../mod/admin.php:1389
-msgid "Toggle"
-msgstr "Attiva/disattiva"
+#: ../../include/ItemObject.php:130
+msgid "Save to Folder"
+msgstr "Salva nella cartella"
-#: ../../mod/admin.php:1175 ../../mod/admin.php:1399
-msgid "Author: "
-msgstr "Autore:"
+#: ../../include/ItemObject.php:151
+msgid "I will attend"
+msgstr "Parteciperò"
-#: ../../mod/admin.php:1176 ../../mod/admin.php:1400
-msgid "Maintainer: "
-msgstr "Gestore:"
+#: ../../include/ItemObject.php:151
+msgid "I will not attend"
+msgstr "Non parteciperò"
-#: ../../mod/admin.php:1177
-msgid "Minimum project version: "
-msgstr "Minima versione hubzilla"
+#: ../../include/ItemObject.php:151
+msgid "I might attend"
+msgstr "Forse parteciperò"
-#: ../../mod/admin.php:1178
-msgid "Maximum project version: "
-msgstr "Massima versione hubzilla"
+#: ../../include/ItemObject.php:161
+msgid "I agree"
+msgstr "Sono d'accordo"
-#: ../../mod/admin.php:1179
-msgid "Minimum PHP version: "
-msgstr "Minima versione PHP:"
+#: ../../include/ItemObject.php:161
+msgid "I disagree"
+msgstr "Non sono d'accordo"
-#: ../../mod/admin.php:1181 ../../mod/admin.php:1232
-msgid "Disabled - version incompatibility"
-msgstr "Disabilitato - incompatibilità di versione"
+#: ../../include/ItemObject.php:161
+msgid "I abstain"
+msgstr "Mi astengo"
-#: ../../mod/admin.php:1325
-msgid "No themes found."
-msgstr "Nessun tema trovato."
+#: ../../include/ItemObject.php:212
+msgid "Add Star"
+msgstr "Aggiungi ai preferiti"
-#: ../../mod/admin.php:1381
-msgid "Screenshot"
-msgstr "Istantanea dello schermo"
+#: ../../include/ItemObject.php:213
+msgid "Remove Star"
+msgstr "Rimuovi dai preferiti"
-#: ../../mod/admin.php:1427
-msgid "[Experimental]"
-msgstr "[Sperimentale]"
+#: ../../include/ItemObject.php:214
+msgid "Toggle Star Status"
+msgstr "Attiva/disattiva preferito"
-#: ../../mod/admin.php:1428
-msgid "[Unsupported]"
-msgstr "[Non supportato]"
+#: ../../include/ItemObject.php:218
+msgid "starred"
+msgstr "preferito"
-#: ../../mod/admin.php:1452
-msgid "Log settings updated."
-msgstr "Impostazioni di log aggiornate."
+#: ../../include/ItemObject.php:236
+msgid "Add Tag"
+msgstr "Aggiungi un tag"
-#: ../../mod/admin.php:1509
-msgid "Clear"
-msgstr "Pulisci"
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:1037
+msgid "I like this (toggle)"
+msgstr "Attiva/disattiva Mi piace"
-#: ../../mod/admin.php:1515
-msgid "Debugging"
-msgstr "Debugging"
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:1038
+msgid "I don't like this (toggle)"
+msgstr "Attiva/disattiva Non mi piace"
-#: ../../mod/admin.php:1516
-msgid "Log file"
-msgstr "File di log"
+#: ../../include/ItemObject.php:259
+msgid "Share This"
+msgstr "Condividi"
-#: ../../mod/admin.php:1516
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
-msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla."
+#: ../../include/ItemObject.php:259
+msgid "share"
+msgstr "condividi"
-#: ../../mod/admin.php:1517
-msgid "Log level"
-msgstr "Livello di log"
+#: ../../include/ItemObject.php:268
+msgid "Delivery Report"
+msgstr "Rapporto di trasmissione"
-#: ../../mod/admin.php:1563
-msgid "New Profile Field"
-msgstr "Nuovo campo del profilo"
+#: ../../include/ItemObject.php:286
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commento"
+msgstr[1] "%d commenti"
-#: ../../mod/admin.php:1564 ../../mod/admin.php:1584
-msgid "Field nickname"
-msgstr "Nome breve del campo"
+#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Guarda il profilo di %s - %s"
-#: ../../mod/admin.php:1564 ../../mod/admin.php:1584
-msgid "System name of field"
-msgstr "Nome di sistema del campo"
+#: ../../include/ItemObject.php:319
+msgid "to"
+msgstr "a"
-#: ../../mod/admin.php:1565 ../../mod/admin.php:1585
-msgid "Input type"
-msgstr "Tipo di dati"
+#: ../../include/ItemObject.php:320
+msgid "via"
+msgstr "via"
-#: ../../mod/admin.php:1566 ../../mod/admin.php:1586
-msgid "Field Name"
-msgstr "Nome del campo"
+#: ../../include/ItemObject.php:321
+msgid "Wall-to-Wall"
+msgstr "Da bacheca a bacheca"
-#: ../../mod/admin.php:1566 ../../mod/admin.php:1586
-msgid "Label on profile pages"
-msgstr "Etichetta da mostrare sulla pagina del profilo"
+#: ../../include/ItemObject.php:322
+msgid "via Wall-To-Wall:"
+msgstr "da bacheca a bacheca:"
-#: ../../mod/admin.php:1567 ../../mod/admin.php:1587
-msgid "Help text"
-msgstr "Testo di aiuto"
+#: ../../include/ItemObject.php:362
+msgid "Save Bookmarks"
+msgstr "Salva segnalibro"
-#: ../../mod/admin.php:1567 ../../mod/admin.php:1587
-msgid "Additional info (optional)"
-msgstr "Informazioni aggiuntive (facoltative)"
+#: ../../include/ItemObject.php:363
+msgid "Add to Calendar"
+msgstr "Aggiungi al calendario"
-#: ../../mod/admin.php:1577
-msgid "Field definition not found"
-msgstr "Impossibile trovare la definizione del campo"
+#: ../../include/ItemObject.php:372
+msgid "Mark all seen"
+msgstr "Marca tutto come letto"
-#: ../../mod/admin.php:1583
-msgid "Edit Profile Field"
-msgstr "Modifica campo del profilo"
+#: ../../include/ItemObject.php:378 ../../mod/photos.php:1223
+msgctxt "noun"
+msgid "Likes"
+msgstr "Mi piace"
+
+#: ../../include/ItemObject.php:379 ../../mod/photos.php:1224
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "Non mi piace"
+
+#: ../../include/ItemObject.php:700 ../../mod/photos.php:1056
+#: ../../mod/photos.php:1174
+msgid "This is you"
+msgstr "Questo sei tu"
+
+#: ../../include/ItemObject.php:709
+msgid "Image"
+msgstr "Immagine"
+
+#: ../../include/ItemObject.php:710
+msgid "Insert Link"
+msgstr "Collegamento"
+
+#: ../../include/ItemObject.php:711
+msgid "Video"
+msgstr "Video"
+
+#: ../../index.php:245 ../../mod/help.php:217
+msgid "Not Found"
+msgstr "Non disponibile"
+
+#: ../../index.php:248 ../../mod/block.php:75 ../../mod/display.php:110
+#: ../../mod/help.php:220 ../../mod/page.php:89
+msgid "Page not found."
+msgstr "Pagina non trovata."
+
+#: ../../mod/achievements.php:34
+msgid "Some blurb about what to do when you're new here"
+msgstr "Qualche suggerimento per i nuovi utenti su cosa fare"
+
+#: ../../mod/acl.php:222
+msgid "network"
+msgstr "rete"
+
+#: ../../mod/acl.php:232
+msgid "RSS"
+msgstr "RSS"
#: ../../mod/api.php:74 ../../mod/api.php:98
msgid "Authorize application connection"
@@ -5154,7 +4360,6 @@ msgid "Invalid item."
msgstr "Elemento non valido."
#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29
-#: ../../mod/zcard.php:19
msgid "Channel not found."
msgstr "Canale non trovato."
@@ -5371,6 +4576,10 @@ msgstr "Indirizzo del canale"
msgid "Network"
msgstr "Network"
+#: ../../mod/connections.php:266 ../../mod/admin.php:668
+msgid "Status"
+msgstr "Stato"
+
#: ../../mod/connections.php:268
msgid "Connected"
msgstr "In contatto"
@@ -5379,6 +4588,10 @@ msgstr "In contatto"
msgid "Approve connection"
msgstr "Approva questo contatto"
+#: ../../mod/connections.php:271 ../../mod/admin.php:991
+msgid "Approve"
+msgstr "Approva"
+
#: ../../mod/connections.php:272
msgid "Ignore connection"
msgstr "Ignora il contatto"
@@ -5459,6 +4672,14 @@ msgstr "Attività recenti"
msgid "View recent posts and comments"
msgstr "Leggi i post recenti e i commenti"
+#: ../../mod/connedit.php:528 ../../mod/admin.php:995
+msgid "Unblock"
+msgstr "Sblocca"
+
+#: ../../mod/connedit.php:528 ../../mod/admin.php:994
+msgid "Block"
+msgstr "Blocca"
+
#: ../../mod/connedit.php:531
msgid "Block (or Unblock) all communications with this connection"
msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)"
@@ -5981,12 +5202,12 @@ msgstr "Modifica l'evento"
msgid "Create Event"
msgstr "Crea un evento"
-#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:902
+#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:916
msgid "Previous"
msgstr "Precendente"
-#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:911
-#: ../../mod/setup.php:285
+#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:925
+#: ../../mod/setup.php:288
msgid "Next"
msgstr "Successivo"
@@ -6081,7 +5302,7 @@ msgstr "Suggerisci un amico a %s"
#: ../../mod/group.php:20
msgid "Privacy group created."
-msgstr "Gruppo di canali creato"
+msgstr "Gruppo di canali creato."
#: ../../mod/group.php:26
msgid "Could not create privacy group."
@@ -6101,7 +5322,7 @@ msgstr "Nome del gruppo di canali:"
#: ../../mod/group.php:89 ../../mod/group.php:183
msgid "Members are visible to other channels"
-msgstr "I membri potranno vedere gli altri canali dell'insieme"
+msgstr "I membri potranno vedere gli altri canali del gruppo"
#: ../../mod/group.php:107
msgid "Privacy group removed."
@@ -6127,15 +5348,15 @@ msgstr "Tutti i canali connessi"
msgid "Click on a channel to add or remove."
msgstr "Clicca su un canale per aggiungerlo o rimuoverlo."
-#: ../../mod/help.php:148
+#: ../../mod/help.php:149
msgid "Documentation Search"
msgstr "Ricerca nella guida"
-#: ../../mod/help.php:186 ../../mod/help.php:192 ../../mod/help.php:198
+#: ../../mod/help.php:190 ../../mod/help.php:196 ../../mod/help.php:202
msgid "Help:"
msgstr "Guida:"
-#: ../../mod/help.php:239
+#: ../../mod/help.php:243
msgid "$Projectname Documentation"
msgstr "Guida di $Projectname"
@@ -6243,51 +5464,55 @@ msgstr "Impossibile importare i dati dal vecchio hub"
msgid "Imported file is empty."
msgstr "Il file da importare è vuoto."
-#: ../../mod/import.php:116 ../../mod/import_items.php:82
+#: ../../mod/import.php:119 ../../mod/import_items.php:82
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti."
-#: ../../mod/import.php:149
+#: ../../mod/import.php:124
+msgid "Server platform is not compatible. Operation not permitted."
+msgstr "La tecnologia del server non è compatibile. Operazione non permessa."
+
+#: ../../mod/import.php:158
msgid "No channel. Import failed."
msgstr "Nessun canale. Import fallito."
-#: ../../mod/import.php:509
+#: ../../mod/import.php:518
msgid "You must be logged in to use this feature."
msgstr "Per questa funzionalità devi aver effettuato l'accesso."
-#: ../../mod/import.php:514
+#: ../../mod/import.php:523
msgid "Import Channel"
msgstr "Importa un canale"
-#: ../../mod/import.php:515
+#: ../../mod/import.php:524
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."
msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."
-#: ../../mod/import.php:516 ../../mod/import_items.php:115
+#: ../../mod/import.php:525 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "File da caricare"
-#: ../../mod/import.php:517
+#: ../../mod/import.php:526
msgid "Or provide the old server/hub details"
msgstr "Oppure fornisci i dettagli del vecchio hub"
-#: ../../mod/import.php:518
+#: ../../mod/import.php:527
msgid "Your old identity address (xyz@example.com)"
msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"
-#: ../../mod/import.php:519
+#: ../../mod/import.php:528
msgid "Your old login email address"
msgstr "L'email che usavi per accedere sul vecchio hub"
-#: ../../mod/import.php:520
+#: ../../mod/import.php:529
msgid "Your old login password"
msgstr "La password per il vecchio hub"
-#: ../../mod/import.php:521
+#: ../../mod/import.php:530
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"
@@ -6295,17 +5520,17 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."
-#: ../../mod/import.php:522
+#: ../../mod/import.php:531
msgid "Make this hub my primary location"
msgstr "Rendi questo hub il mio indirizzo primario"
-#: ../../mod/import.php:523
+#: ../../mod/import.php:532
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:533
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -6374,8 +5599,8 @@ msgid "Please join my community on $Projectname."
msgstr "Entra nella mia comunità su $Projectname."
#: ../../mod/invite.php:134
-msgid "You will need to supply this invitation code: "
-msgstr "Dovrai fornire questo codice di invito:"
+msgid "You will need to supply this invitation code:"
+msgstr "Dovrai fornire questo codice invito:"
#: ../../mod/invite.php:135
msgid ""
@@ -6387,8 +5612,8 @@ msgid "2. Enter my $Projectname network address into the site searchbar."
msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito."
#: ../../mod/invite.php:138
-msgid "or visit "
-msgstr "oppure visita "
+msgid "or visit"
+msgstr "oppure visita"
#: ../../mod/invite.php:140
msgid "3. Click [Connect]"
@@ -6838,7 +6063,7 @@ msgstr "Impossibile aggiungere l'elemento al menù."
msgid "Menu Item Permissions"
msgstr "Permessi del menu"
-#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1057
+#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1059
msgid "(click to open/close)"
msgstr "(clicca per aprire/chiudere)"
@@ -6944,7 +6169,7 @@ msgstr "Scegli il tuo umore attuale per mostrarlo agli amici"
#: ../../mod/network.php:91
msgid "No such group"
-msgstr "Impossibile trovare l'insieme"
+msgstr "Impossibile trovare il gruppo di canali"
#: ../../mod/network.php:131
msgid "No such channel"
@@ -7104,7 +6329,7 @@ msgstr "Album non trovato."
msgid "Delete Album"
msgstr "Elimina album"
-#: ../../mod/photos.php:171 ../../mod/photos.php:1006
+#: ../../mod/photos.php:171 ../../mod/photos.php:1020
msgid "Delete Photo"
msgstr "Elimina foto"
@@ -7126,141 +6351,978 @@ msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."
msgid "%1$.2f MB photo storage used."
msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile."
-#: ../../mod/photos.php:620
+#: ../../mod/photos.php:628
msgid "Upload Photos"
msgstr "Carica foto"
-#: ../../mod/photos.php:624
+#: ../../mod/photos.php:632
msgid "Enter an album name"
msgstr "Scegli il nome dell'album"
-#: ../../mod/photos.php:625
+#: ../../mod/photos.php:633
msgid "or select an existing album (doubleclick)"
msgstr "o seleziona un album esistente (doppio click)"
-#: ../../mod/photos.php:626
+#: ../../mod/photos.php:634
msgid "Create a status post for this upload"
msgstr "Pubblica sulla bacheca"
-#: ../../mod/photos.php:627
+#: ../../mod/photos.php:635
msgid "Caption (optional):"
msgstr "Titolo (facoltativo):"
-#: ../../mod/photos.php:628
+#: ../../mod/photos.php:636
msgid "Description (optional):"
msgstr "Descrizione (facoltativa):"
-#: ../../mod/photos.php:655
+#: ../../mod/photos.php:663
msgid "Album name could not be decoded"
msgstr "Non è stato possibile leggere il nome dell'album"
-#: ../../mod/photos.php:699 ../../mod/photos.php:1233
-#: ../../mod/photos.php:1250
+#: ../../mod/photos.php:711 ../../mod/photos.php:1250
+#: ../../mod/photos.php:1267
msgid "Contact Photos"
msgstr "Foto dei contatti"
-#: ../../mod/photos.php:722
+#: ../../mod/photos.php:734
msgid "Show Newest First"
msgstr "Prima i più recenti"
-#: ../../mod/photos.php:724
+#: ../../mod/photos.php:736
msgid "Show Oldest First"
msgstr "Prima i più vecchi"
-#: ../../mod/photos.php:824
+#: ../../mod/photos.php:838
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato."
-#: ../../mod/photos.php:826
+#: ../../mod/photos.php:840
msgid "Photo not available"
msgstr "Foto non disponibile"
-#: ../../mod/photos.php:884
+#: ../../mod/photos.php:898
msgid "Use as profile photo"
msgstr "Usa come foto del profilo"
-#: ../../mod/photos.php:891
+#: ../../mod/photos.php:905
msgid "Private Photo"
msgstr "Foto privata"
-#: ../../mod/photos.php:906
+#: ../../mod/photos.php:920
msgid "View Full Size"
msgstr "Vedi nelle dimensioni originali"
-#: ../../mod/photos.php:951 ../../mod/tagrm.php:133
+#: ../../mod/photos.php:965 ../../mod/tagrm.php:133
msgid "Remove"
msgstr "Rimuovi"
-#: ../../mod/photos.php:985
+#: ../../mod/photos.php:999
msgid "Edit photo"
msgstr "Modifica la foto"
-#: ../../mod/photos.php:987
+#: ../../mod/photos.php:1001
msgid "Rotate CW (right)"
msgstr "Ruota (senso orario)"
-#: ../../mod/photos.php:988
+#: ../../mod/photos.php:1002
msgid "Rotate CCW (left)"
msgstr "Ruota (senso antiorario)"
-#: ../../mod/photos.php:991
+#: ../../mod/photos.php:1005
msgid "Enter a new album name"
msgstr "Inserisci il nome del nuovo album"
-#: ../../mod/photos.php:992
+#: ../../mod/photos.php:1006
msgid "or select an existing one (doubleclick)"
msgstr "o seleziona uno esistente (doppio click)"
-#: ../../mod/photos.php:995
+#: ../../mod/photos.php:1009
msgid "Caption"
msgstr "Didascalia"
-#: ../../mod/photos.php:997
+#: ../../mod/photos.php:1011
msgid "Add a Tag"
msgstr "Aggiungi tag"
-#: ../../mod/photos.php:1001
+#: ../../mod/photos.php:1015
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com"
-#: ../../mod/photos.php:1004
+#: ../../mod/photos.php:1018
msgid "Flag as adult in album view"
msgstr "Marca come 'per adulti'"
-#: ../../mod/photos.php:1196
+#: ../../mod/photos.php:1210
msgid "In This Photo:"
msgstr "In questa foto:"
-#: ../../mod/photos.php:1201
+#: ../../mod/photos.php:1215
msgid "Map"
msgstr "Mappa"
-#: ../../mod/photos.php:1289
+#: ../../mod/photos.php:1306
msgid "View Album"
msgstr "Guarda l'album"
-#: ../../mod/photos.php:1300 ../../mod/photos.php:1313
-#: ../../mod/photos.php:1314
+#: ../../mod/photos.php:1317 ../../mod/photos.php:1330
+#: ../../mod/photos.php:1331
msgid "Recent Photos"
msgstr "Foto recenti"
-#: ../../mod/poke.php:164
+#: ../../mod/admin.php:54
+msgid "Theme settings updated."
+msgstr "Le impostazioni del tema sono state aggiornate."
+
+#: ../../mod/admin.php:174
+msgid "# Accounts"
+msgstr "# account"
+
+#: ../../mod/admin.php:175
+msgid "# blocked accounts"
+msgstr "# account bloccati"
+
+#: ../../mod/admin.php:176
+msgid "# expired accounts"
+msgstr "# account scaduti"
+
+#: ../../mod/admin.php:177
+msgid "# expiring accounts"
+msgstr "# account in scadenza"
+
+#: ../../mod/admin.php:188
+msgid "# Channels"
+msgstr "# canali"
+
+#: ../../mod/admin.php:189
+msgid "# primary"
+msgstr "# primari"
+
+#: ../../mod/admin.php:190
+msgid "# clones"
+msgstr "# cloni"
+
+#: ../../mod/admin.php:196
+msgid "Message queues"
+msgstr "Coda messaggi in uscita"
+
+#: ../../mod/admin.php:212 ../../mod/admin.php:455 ../../mod/admin.php:669
+#: ../../mod/admin.php:709 ../../mod/admin.php:984 ../../mod/admin.php:1148
+#: ../../mod/admin.php:1263 ../../mod/admin.php:1324 ../../mod/admin.php:1485
+#: ../../mod/admin.php:1519 ../../mod/admin.php:1604
+msgid "Administration"
+msgstr "Amministrazione"
+
+#: ../../mod/admin.php:213
+msgid "Summary"
+msgstr "Riepilogo"
+
+#: ../../mod/admin.php:216
+msgid "Registered accounts"
+msgstr "Account creati"
+
+#: ../../mod/admin.php:217 ../../mod/admin.php:673
+msgid "Pending registrations"
+msgstr "Registrazioni da approvare"
+
+#: ../../mod/admin.php:218
+msgid "Registered channels"
+msgstr "Canali creati"
+
+#: ../../mod/admin.php:219 ../../mod/admin.php:674
+msgid "Active plugins"
+msgstr "Plugin attivi"
+
+#: ../../mod/admin.php:220
+msgid "Version"
+msgstr "Versione"
+
+#: ../../mod/admin.php:339
+msgid "Site settings updated."
+msgstr "Impostazioni del sito salvate correttamente."
+
+#: ../../mod/admin.php:376 ../../mod/settings.php:793
+msgid "mobile"
+msgstr "mobile"
+
+#: ../../mod/admin.php:378
+msgid "experimental"
+msgstr "sperimentale"
+
+#: ../../mod/admin.php:380
+msgid "unsupported"
+msgstr "non supportato"
+
+#: ../../mod/admin.php:426
+msgid "Yes - with approval"
+msgstr "Sì - con approvazione"
+
+#: ../../mod/admin.php:432
+msgid "My site is not a public server"
+msgstr "Non è un server pubblico"
+
+#: ../../mod/admin.php:433
+msgid "My site has paid access only"
+msgstr "È un servizio a pagamento"
+
+#: ../../mod/admin.php:434
+msgid "My site has free access only"
+msgstr "È un servizio gratuito"
+
+#: ../../mod/admin.php:435
+msgid "My site offers free accounts with optional paid upgrades"
+msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento"
+
+#: ../../mod/admin.php:458 ../../mod/register.php:237
+msgid "Registration"
+msgstr "Registrazione"
+
+#: ../../mod/admin.php:459
+msgid "File upload"
+msgstr "Caricamento file"
+
+#: ../../mod/admin.php:460
+msgid "Policies"
+msgstr "Politiche"
+
+#: ../../mod/admin.php:465
+msgid "Site name"
+msgstr "Nome del sito"
+
+#: ../../mod/admin.php:466
+msgid "Banner/Logo"
+msgstr "Banner o logo"
+
+#: ../../mod/admin.php:467
+msgid "Administrator Information"
+msgstr "Informazioni sull'amministratore"
+
+#: ../../mod/admin.php:467
+msgid ""
+"Contact information for site administrators. Displayed on siteinfo page. "
+"BBCode can be used here"
+msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"
+
+#: ../../mod/admin.php:468
+msgid "System language"
+msgstr "Lingua di sistema"
+
+#: ../../mod/admin.php:469
+msgid "System theme"
+msgstr "Tema di sistema"
+
+#: ../../mod/admin.php:469
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>"
+
+#: ../../mod/admin.php:470
+msgid "Mobile system theme"
+msgstr "Tema di sistema per dispositivi mobili"
+
+#: ../../mod/admin.php:470
+msgid "Theme for mobile devices"
+msgstr "Tema per i dispositivi mobili"
+
+#: ../../mod/admin.php:472
+msgid "Allow Feeds as Connections"
+msgstr "Permetti di aggiungere i feed come contatti"
+
+#: ../../mod/admin.php:472
+msgid "(Heavy system resource usage)"
+msgstr "(Uso intenso delle risorse di sistema!)"
+
+#: ../../mod/admin.php:473
+msgid "Maximum image size"
+msgstr "Dimensione massima immagini"
+
+#: ../../mod/admin.php:473
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
+
+#: ../../mod/admin.php:474
+msgid "Does this site allow new member registration?"
+msgstr "Questo sito permette a nuovi utenti di registrarsi?"
+
+#: ../../mod/admin.php:475
+msgid "Invitation only"
+msgstr "Solo con invito"
+
+#: ../../mod/admin.php:475
+msgid ""
+"Only allow new member registrations with an invitation code. Above register "
+"policy must be set to Yes."
+msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."
+
+#: ../../mod/admin.php:476
+msgid "Which best describes the types of account offered by this hub?"
+msgstr "Come descriveresti il tipo di servizio proposto da questo server?"
+
+#: ../../mod/admin.php:477
+msgid "Register text"
+msgstr "Testo di registrazione"
+
+#: ../../mod/admin.php:477
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
+
+#: ../../mod/admin.php:478
+msgid "Site homepage to show visitors (default: login box)"
+msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"
+
+#: ../../mod/admin.php:478
+msgid ""
+"example: 'public' to show public stream, 'page/sys/home' to show a system "
+"webpage called 'home' or 'include:home.html' to include a file."
+msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."
+
+#: ../../mod/admin.php:479
+msgid "Preserve site homepage URL"
+msgstr "Conserva l'URL della homepage"
+
+#: ../../mod/admin.php:479
+msgid ""
+"Present the site homepage in a frame at the original location instead of "
+"redirecting"
+msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."
+
+#: ../../mod/admin.php:480
+msgid "Accounts abandoned after x days"
+msgstr "Account abbandonati dopo X giorni"
+
+#: ../../mod/admin.php:480
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."
+
+#: ../../mod/admin.php:481
+msgid "Allowed friend domains"
+msgstr "Domini fidati e consentiti"
+
+#: ../../mod/admin.php:481
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."
+
+#: ../../mod/admin.php:482
+msgid "Allowed email domains"
+msgstr "Domini email consentiti"
+
+#: ../../mod/admin.php:482
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"
+
+#: ../../mod/admin.php:483
+msgid "Not allowed email domains"
+msgstr "Domini email non consentiti"
+
+#: ../../mod/admin.php:483
+msgid ""
+"Comma separated list of domains which are not allowed in email addresses for"
+" registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains, unless allowed domains have been defined."
+msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+
+#: ../../mod/admin.php:484
+msgid "Verify Email Addresses"
+msgstr "Verifica l'indirizzo email"
+
+#: ../../mod/admin.php:484
+msgid ""
+"Check to verify email addresses used in account registration (recommended)."
+msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."
+
+#: ../../mod/admin.php:485
+msgid "Force publish"
+msgstr "Forza la publicazione del profilo"
+
+#: ../../mod/admin.php:485
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito."
+
+#: ../../mod/admin.php:486
+msgid "Import Public Streams"
+msgstr "Suggerisci contenuti pubblici della rete Hubzilla"
+
+#: ../../mod/admin.php:486
+msgid ""
+"Import and allow access to public content pulled from other sites. Warning: "
+"this content is unmoderated."
+msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."
+
+#: ../../mod/admin.php:487
+msgid "login on Homepage"
+msgstr "Mostra il login sulla homepage"
+
+#: ../../mod/admin.php:487
+msgid ""
+"Present a login box to visitors on the home page if no other content has "
+"been configured."
+msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."
+
+#: ../../mod/admin.php:489
+msgid "Directory Server URL"
+msgstr "URL del directory server"
+
+#: ../../mod/admin.php:489
+msgid "Default directory server"
+msgstr "Directory server predefinito"
+
+#: ../../mod/admin.php:491
+msgid "Proxy user"
+msgstr "Utente proxy"
+
+#: ../../mod/admin.php:492
+msgid "Proxy URL"
+msgstr "URL proxy"
+
+#: ../../mod/admin.php:493
+msgid "Network timeout"
+msgstr "Timeout rete"
+
+#: ../../mod/admin.php:493
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."
+
+#: ../../mod/admin.php:494
+msgid "Delivery interval"
+msgstr "Recapito ritardato"
+
+#: ../../mod/admin.php:494
+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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."
+
+#: ../../mod/admin.php:495
+msgid "Deliveries per process"
+msgstr "Tentativi di recapito per processo"
+
+#: ../../mod/admin.php:495
+msgid ""
+"Number of deliveries to attempt in a single operating system process. Adjust"
+" if necessary to tune system performance. Recommend: 1-5."
+msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"
+
+#: ../../mod/admin.php:496
+msgid "Poll interval"
+msgstr "Intervallo di polling"
+
+#: ../../mod/admin.php:496
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."
+
+#: ../../mod/admin.php:497
+msgid "Maximum Load Average"
+msgstr "Carico massimo medio"
+
+#: ../../mod/admin.php:497
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."
+
+#: ../../mod/admin.php:498
+msgid "Expiration period in days for imported (grid/network) content"
+msgstr "Scadenza dei contenuti importati da altri siti (in giorni)"
+
+#: ../../mod/admin.php:498
+msgid "0 for no expiration of imported content"
+msgstr "0 per non avere scadenza"
+
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:717
+msgid "Off"
+msgstr "Off"
+
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:717
+msgid "On"
+msgstr "On"
+
+#: ../../mod/admin.php:636
+#, php-format
+msgid "Lock feature %s"
+msgstr "Rendi non modificabile %s"
+
+#: ../../mod/admin.php:644
+msgid "Manage Additional Features"
+msgstr "Funzionalità opzionali"
+
+#: ../../mod/admin.php:661
+msgid "No server found"
+msgstr "Server non trovato"
+
+#: ../../mod/admin.php:668 ../../mod/admin.php:998
+msgid "ID"
+msgstr "ID"
+
+#: ../../mod/admin.php:668
+msgid "for channel"
+msgstr "per il canale"
+
+#: ../../mod/admin.php:668
+msgid "on server"
+msgstr "sul server"
+
+#: ../../mod/admin.php:670
+msgid "Server"
+msgstr "Server"
+
+#: ../../mod/admin.php:712
+msgid "Block public"
+msgstr "Blocca pagine pubbliche"
+
+#: ../../mod/admin.php:712
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently authenticated."
+msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."
+
+#: ../../mod/admin.php:713
+msgid "Allow communications only from these sites"
+msgstr "Permetti la comunicazione solo da questi siti"
+
+#: ../../mod/admin.php:713
+msgid ""
+"One site per line. Leave empty to allow communication from anywhere by "
+"default"
+msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"
+
+#: ../../mod/admin.php:714
+msgid "Block communications from these sites"
+msgstr "Blocca la comunicazione da questi siti"
+
+#: ../../mod/admin.php:715
+msgid "Allow communications only from these channels"
+msgstr "Permetti la comunicazione solo da questi canali"
+
+#: ../../mod/admin.php:715
+msgid ""
+"One channel (hash) per line. Leave empty to allow from any channel by "
+"default"
+msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"
+
+#: ../../mod/admin.php:716
+msgid "Block communications from these channels"
+msgstr "Blocca la comunicazione da questi canali"
+
+#: ../../mod/admin.php:717
+msgid "Allow embedded HTML content only from these domains"
+msgstr "Permetti i contenuti incorporati HTML solo da questi domini"
+
+#: ../../mod/admin.php:717
+msgid "One site per line. Leave empty to allow from any site by default"
+msgstr "Un sito per riga. Lascia vuoto per permettere sempre i contenuti incorporati"
+
+#: ../../mod/admin.php:718
+msgid "Block embedded HTML from these domains"
+msgstr "Blocca i contenuti incorporati HTML da questi domini"
+
+#: ../../mod/admin.php:720
+msgid "Cooperative embed security"
+msgstr "Sicurezza cooperativa sui contenuti incorporati"
+
+#: ../../mod/admin.php:720
+msgid "Enable to share embed security with other compatible sites/hubs"
+msgstr "Abilita la condivisione delle informazioni di sicurezza sui contenuti incorporati con altri siti/hub"
+
+#: ../../mod/admin.php:735
+msgid "Update has been marked successful"
+msgstr "L'aggiornamento è stato marcato come eseguito."
+
+#: ../../mod/admin.php:745
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."
+
+#: ../../mod/admin.php:748
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "L'aggiornamento %s è terminato correttamente."
+
+#: ../../mod/admin.php:752
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."
+
+#: ../../mod/admin.php:755
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Impossibile trovare la funzione di aggiornamento %s"
+
+#: ../../mod/admin.php:771
+msgid "No failed updates."
+msgstr "Nessun aggiornamento fallito."
+
+#: ../../mod/admin.php:775
+msgid "Failed Updates"
+msgstr "Aggiornamenti falliti."
+
+#: ../../mod/admin.php:777
+msgid "Mark success (if update was manually applied)"
+msgstr "Marca come eseguito (se applicato manualmente)."
+
+#: ../../mod/admin.php:778
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."
+
+#: ../../mod/admin.php:809
+msgid "Queue Statistics"
+msgstr "Statistiche della coda"
+
+#: ../../mod/admin.php:810
+msgid "Total Entries"
+msgstr "Totale"
+
+#: ../../mod/admin.php:811
+msgid "Priority"
+msgstr "Priorità"
+
+#: ../../mod/admin.php:812
+msgid "Destination URL"
+msgstr "URL di destinazione"
+
+#: ../../mod/admin.php:813
+msgid "Mark hub permanently offline"
+msgstr "Questo hub è definitivamente offline"
+
+#: ../../mod/admin.php:814
+msgid "Empty queue for this hub"
+msgstr "Svuota la coda per questo hub"
+
+#: ../../mod/admin.php:815
+msgid "Last known contact"
+msgstr "Ultimo scambio dati"
+
+#: ../../mod/admin.php:851
+#, php-format
+msgid "%s account blocked/unblocked"
+msgid_plural "%s account blocked/unblocked"
+msgstr[0] "Modificato il blocco su %s account"
+msgstr[1] "Modificato il blocco verso %s"
+
+#: ../../mod/admin.php:859
+#, php-format
+msgid "%s account deleted"
+msgid_plural "%s accounts deleted"
+msgstr[0] "%s account eliminato"
+msgstr[1] "%s account eliminati"
+
+#: ../../mod/admin.php:895
+msgid "Account not found"
+msgstr "Account non trovato"
+
+#: ../../mod/admin.php:907
+#, php-format
+msgid "Account '%s' deleted"
+msgstr "Account '%s' eliminato"
+
+#: ../../mod/admin.php:915
+#, php-format
+msgid "Account '%s' blocked"
+msgstr "Aggiunto un blocco verso '%s'"
+
+#: ../../mod/admin.php:923
+#, php-format
+msgid "Account '%s' unblocked"
+msgstr "Rimosso il blocco verso '%s'"
+
+#: ../../mod/admin.php:985 ../../mod/admin.php:997
+msgid "Users"
+msgstr "Utenti"
+
+#: ../../mod/admin.php:987 ../../mod/admin.php:1151
+msgid "select all"
+msgstr "seleziona tutti"
+
+#: ../../mod/admin.php:988
+msgid "User registrations waiting for confirm"
+msgstr "Richieste di registrazione in attesa di conferma"
+
+#: ../../mod/admin.php:989
+msgid "Request date"
+msgstr "Data richiesta"
+
+#: ../../mod/admin.php:990
+msgid "No registrations."
+msgstr "Nessuna registrazione."
+
+#: ../../mod/admin.php:992
+msgid "Deny"
+msgstr "Nega"
+
+#: ../../mod/admin.php:998
+msgid "Register date"
+msgstr "Data registrazione"
+
+#: ../../mod/admin.php:998
+msgid "Last login"
+msgstr "Ultimo accesso"
+
+#: ../../mod/admin.php:998
+msgid "Expires"
+msgstr "Con scadenza"
+
+#: ../../mod/admin.php:998
+msgid "Service Class"
+msgstr "Classe dell'account"
+
+#: ../../mod/admin.php:1000
+msgid ""
+"Selected accounts will be deleted!\\n\\nEverything these accounts had posted"
+" on this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"
+
+#: ../../mod/admin.php:1001
+msgid ""
+"The account {0} will be deleted!\\n\\nEverything this account has posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"
+
+#: ../../mod/admin.php:1037
+#, php-format
+msgid "%s channel censored/uncensored"
+msgid_plural "%s channels censored/uncensored"
+msgstr[0] "Censura modificata per %s canale"
+msgstr[1] "Censura modificata per %s canali"
+
+#: ../../mod/admin.php:1046
+#, php-format
+msgid "%s channel code allowed/disallowed"
+msgid_plural "%s channels code allowed/disallowed"
+msgstr[0] "%s canale permette/non permette codice nei contenuti"
+msgstr[1] "%s canali permettono/non permettono codice nei contenuti"
+
+#: ../../mod/admin.php:1053
+#, php-format
+msgid "%s channel deleted"
+msgid_plural "%s channels deleted"
+msgstr[0] "%s canale è stato rimosso"
+msgstr[1] "%s canali sono stati rimossi"
+
+#: ../../mod/admin.php:1073
+msgid "Channel not found"
+msgstr "Canale non trovato"
+
+#: ../../mod/admin.php:1084
+#, php-format
+msgid "Channel '%s' deleted"
+msgstr "Il canale '%s' è stato rimosso"
+
+#: ../../mod/admin.php:1096
+#, php-format
+msgid "Channel '%s' censored"
+msgstr "Applicata una censura al canale '%s'"
+
+#: ../../mod/admin.php:1096
+#, php-format
+msgid "Channel '%s' uncensored"
+msgstr "Rimossa la censura dal canale '%s'"
+
+#: ../../mod/admin.php:1107
+#, php-format
+msgid "Channel '%s' code allowed"
+msgstr "Il canale '%s' permette codice nei contenuti"
+
+#: ../../mod/admin.php:1107
+#, php-format
+msgid "Channel '%s' code disallowed"
+msgstr "Il canale '%s' non permette codice nei contenuti"
+
+#: ../../mod/admin.php:1153
+msgid "Censor"
+msgstr "Applica censura"
+
+#: ../../mod/admin.php:1154
+msgid "Uncensor"
+msgstr "Rimuovi censura"
+
+#: ../../mod/admin.php:1155
+msgid "Allow Code"
+msgstr "Permetti codice"
+
+#: ../../mod/admin.php:1156
+msgid "Disallow Code"
+msgstr "Non permettere codice"
+
+#: ../../mod/admin.php:1158
+msgid "UID"
+msgstr "UID"
+
+#: ../../mod/admin.php:1158 ../../mod/profiles.php:457
+msgid "Address"
+msgstr "Indirizzo"
+
+#: ../../mod/admin.php:1160
+msgid ""
+"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 "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"
+
+#: ../../mod/admin.php:1161
+msgid ""
+"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 "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"
+
+#: ../../mod/admin.php:1218
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s non attivo."
+
+#: ../../mod/admin.php:1222
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s attivo."
+
+#: ../../mod/admin.php:1232 ../../mod/admin.php:1458
+msgid "Disable"
+msgstr "Disattiva"
+
+#: ../../mod/admin.php:1235 ../../mod/admin.php:1460
+msgid "Enable"
+msgstr "Attiva"
+
+#: ../../mod/admin.php:1265 ../../mod/admin.php:1487
+msgid "Toggle"
+msgstr "Attiva/disattiva"
+
+#: ../../mod/admin.php:1273 ../../mod/admin.php:1497
+msgid "Author: "
+msgstr "Autore:"
+
+#: ../../mod/admin.php:1274 ../../mod/admin.php:1498
+msgid "Maintainer: "
+msgstr "Gestore:"
+
+#: ../../mod/admin.php:1275
+msgid "Minimum project version: "
+msgstr "Minima versione hubzilla"
+
+#: ../../mod/admin.php:1276
+msgid "Maximum project version: "
+msgstr "Massima versione hubzilla"
+
+#: ../../mod/admin.php:1277
+msgid "Minimum PHP version: "
+msgstr "Minima versione PHP:"
+
+#: ../../mod/admin.php:1279 ../../mod/admin.php:1330
+msgid "Disabled - version incompatibility"
+msgstr "Disabilitato - incompatibilità di versione"
+
+#: ../../mod/admin.php:1423
+msgid "No themes found."
+msgstr "Nessun tema trovato."
+
+#: ../../mod/admin.php:1479
+msgid "Screenshot"
+msgstr "Istantanea dello schermo"
+
+#: ../../mod/admin.php:1525
+msgid "[Experimental]"
+msgstr "[Sperimentale]"
+
+#: ../../mod/admin.php:1526
+msgid "[Unsupported]"
+msgstr "[Non supportato]"
+
+#: ../../mod/admin.php:1550
+msgid "Log settings updated."
+msgstr "Impostazioni di log aggiornate."
+
+#: ../../mod/admin.php:1607
+msgid "Clear"
+msgstr "Pulisci"
+
+#: ../../mod/admin.php:1613
+msgid "Debugging"
+msgstr "Debugging"
+
+#: ../../mod/admin.php:1614
+msgid "Log file"
+msgstr "File di log"
+
+#: ../../mod/admin.php:1614
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla."
+
+#: ../../mod/admin.php:1615
+msgid "Log level"
+msgstr "Livello di log"
+
+#: ../../mod/admin.php:1661
+msgid "New Profile Field"
+msgstr "Nuovo campo del profilo"
+
+#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+msgid "Field nickname"
+msgstr "Nome breve del campo"
+
+#: ../../mod/admin.php:1662 ../../mod/admin.php:1682
+msgid "System name of field"
+msgstr "Nome di sistema del campo"
+
+#: ../../mod/admin.php:1663 ../../mod/admin.php:1683
+msgid "Input type"
+msgstr "Tipo di dati"
+
+#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+msgid "Field Name"
+msgstr "Nome del campo"
+
+#: ../../mod/admin.php:1664 ../../mod/admin.php:1684
+msgid "Label on profile pages"
+msgstr "Etichetta da mostrare sulla pagina del profilo"
+
+#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+msgid "Help text"
+msgstr "Testo di aiuto"
+
+#: ../../mod/admin.php:1665 ../../mod/admin.php:1685
+msgid "Additional info (optional)"
+msgstr "Informazioni aggiuntive (facoltative)"
+
+#: ../../mod/admin.php:1675
+msgid "Field definition not found"
+msgstr "Impossibile trovare la definizione del campo"
+
+#: ../../mod/admin.php:1681
+msgid "Edit Profile Field"
+msgstr "Modifica campo del profilo"
+
+#: ../../mod/poke.php:165
+msgid "Poke somebody"
+msgstr "Manda un poke"
+
+#: ../../mod/poke.php:168
msgid "Poke/Prod"
msgstr "Poke/Prod"
-#: ../../mod/poke.php:165
-msgid "poke, prod or do other things to somebody"
-msgstr "Manda un poke, un prod o altro"
+#: ../../mod/poke.php:169
+msgid "Poke, prod or do other things to somebody"
+msgstr "Manda un poke o altro a qualcuno"
-#: ../../mod/poke.php:166
+#: ../../mod/poke.php:176
msgid "Recipient"
msgstr "Destinatario"
-#: ../../mod/poke.php:167
+#: ../../mod/poke.php:177
msgid "Choose what you wish to do to recipient"
msgstr "Scegli cosa vuoi inviare al destinatario"
-#: ../../mod/poke.php:170
+#: ../../mod/poke.php:180 ../../mod/poke.php:181
msgid "Make this post private"
msgstr "Rendi privato questo post"
@@ -7874,7 +7936,7 @@ msgid ""
"removed from the network"
msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"
-#: ../../mod/removeme.php:61 ../../mod/settings.php:1113
+#: ../../mod/removeme.php:61 ../../mod/settings.php:1115
msgid "Remove Channel"
msgstr "Elimina questo canale"
@@ -7998,8 +8060,8 @@ msgid "Optional"
msgstr "Facoltativo"
#: ../../mod/settings.php:603
-msgid "You can't edit this application."
-msgstr "Non puoi modificare questa applicazione."
+msgid "Application not found."
+msgstr "Applicazione non trovata."
#: ../../mod/settings.php:646
msgid "Connected Apps"
@@ -8041,7 +8103,7 @@ msgstr "Conferma la nuova password:"
msgid "Leave password fields blank unless changing"
msgstr "Lascia vuoti questi campi per non cambiare la password"
-#: ../../mod/settings.php:699 ../../mod/settings.php:1031
+#: ../../mod/settings.php:699 ../../mod/settings.php:1032
msgid "Email Address:"
msgstr "Indirizzo email:"
@@ -8190,701 +8252,711 @@ msgstr "Vuoi essere suggerito come amico ai nuovi membri?"
msgid "Your channel address is"
msgstr "L'indirizzo del tuo canale è"
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1023
msgid "Channel Settings"
msgstr "Impostazioni del canale"
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1030
msgid "Basic Settings"
msgstr "Impostazioni di base"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1033
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Default Post Location:"
msgstr "Località predefinita:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Geographical location to display on your posts"
msgstr "La posizione geografica da mostrare sui tuoi post"
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1035
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid "Adult Content"
msgstr "Contenuto per adulti"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1039
msgid "Security and Privacy Settings"
msgstr "Impostazioni di sicurezza e privacy"
-#: ../../mod/settings.php:1040
+#: ../../mod/settings.php:1042
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1044
msgid "Hide my online presence"
msgstr "Nascondi la mia presenza online"
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1044
msgid "Prevents displaying in your profile that you are online"
msgstr "Non mostrare sul tuo profilo quando sei online"
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1046
msgid "Simple Privacy Settings:"
msgstr "Impostazioni di privacy semplificate"
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1047
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Tutto pubblico - <em>estremamente permissivo (da usare con cautela)</em>"
-#: ../../mod/settings.php:1046
+#: ../../mod/settings.php:1048
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Standard - <em>contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)</em>"
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1049
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privato - <em>contenuti normalmente privati, nulla è aperto o pubblico</em>"
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1050
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Bloccato - <em>bloccato in invio e ricezione dei contenuti</em>"
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1052
msgid "Allow others to tag your posts"
msgstr "Permetti ad altri di taggare i tuoi post"
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1052
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1054
msgid "Advanced Privacy Settings"
msgstr "Impostazioni di privacy avanzate"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
msgid "Expire other channel content after this many days"
msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
#, php-format
msgid ""
"0 or blank to use the website limit. The website expires after %d days."
msgstr "0 o vuoto per usare i valori predefiniti. Per questo sito la scadenza è %d giorni. "
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1057
msgid "Maximum Friend Requests/Day:"
msgstr "Numero massimo giornaliero di richieste di amicizia:"
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1057
msgid "May reduce spam activity"
msgstr "Serve a ridurre lo spam"
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1058
msgid "Default Post Permissions"
msgstr "Permessi predefiniti per i post"
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1063
msgid "Channel permissions category:"
msgstr "Categorie di permessi dei canali:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1069
msgid "Maximum private messages per day from unknown people:"
msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1069
msgid "Useful to reduce spamming"
msgstr "Serve e ridurre lo spam"
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1072
msgid "Notification Settings"
msgstr "Impostazioni di notifica"
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1073
msgid "By default post a status message when:"
msgstr "Pubblica un messaggio di stato quando:"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1074
msgid "accepting a friend request"
msgstr "accetto una nuova amicizia"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1075
msgid "joining a forum/community"
msgstr "entro a far parte di un forum"
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1076
msgid "making an <em>interesting</em> profile change"
msgstr "faccio un cambiamento <em>interessante</em> al mio profilo"
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1077
msgid "Send a notification email when:"
msgstr "Invia una email di notifica quando:"
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1078
msgid "You receive a connection request"
msgstr "Ricevi una richiesta di entrare in contatto"
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1079
msgid "Your connections are confirmed"
msgstr "I tuoi contatti sono confermati"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1080
msgid "Someone writes on your profile wall"
msgstr "Qualcuno scrive sulla tua bacheca"
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1081
msgid "Someone writes a followup comment"
msgstr "Qualcuno scrive un commento dopo di te"
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1082
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1083
msgid "You receive a friend suggestion"
msgstr "Ti viene suggerito un amico"
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1084
msgid "You are tagged in a post"
msgstr "Sei taggato in un post"
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1085
msgid "You are poked/prodded/etc. in a post"
msgstr "Ricevi un poke in un post"
-#: ../../mod/settings.php:1086
+#: ../../mod/settings.php:1088
msgid "Show visual notifications including:"
msgstr "Mostra queste notifiche a schermo:"
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1090
msgid "Unseen grid activity"
msgstr "Nuove attività nella rete"
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1091
msgid "Unseen channel activity"
msgstr "Novità nei canali"
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1092
msgid "Unseen private messages"
msgstr "Nuovi messaggi privati"
-#: ../../mod/settings.php:1090 ../../mod/settings.php:1095
-#: ../../mod/settings.php:1096 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1092 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1098 ../../mod/settings.php:1099
msgid "Recommended"
msgstr "Consigliato"
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1093
msgid "Upcoming events"
msgstr "Prossimi eventi"
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1094
msgid "Events today"
msgstr "Eventi di oggi"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "Upcoming birthdays"
msgstr "Prossimi compleanni"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "Not available in all themes"
msgstr "Non disponibile in tutti i temi"
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1096
msgid "System (personal) notifications"
msgstr "Notifiche personali dal sistema"
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1097
msgid "System info messages"
msgstr "Notifiche di sistema"
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1098
msgid "System critical alerts"
msgstr "Avvisi critici di sistema"
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1099
msgid "New connections"
msgstr "Nuovi contatti"
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1100
msgid "System Registrations"
msgstr "Registrazioni"
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1101
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Notify me of events this many days in advance"
msgstr "Giorni di anticipo per notificare gli eventi"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Must be greater than 0"
msgstr "Maggiore di 0"
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1105
msgid "Advanced Account/Page Type Settings"
msgstr "Impostazioni avanzate"
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1106
msgid "Change the behaviour of this account for special situations"
msgstr "Cambia il funzionamento di questo account per necessità particolari"
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1109
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "Abilita la modalità esperto per fare cambiamenti! (in <a href=\"settings/features\">Impostazioni > Funzionalità opzionali</a>)"
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1110
msgid "Miscellaneous Settings"
msgstr "Impostazioni varie"
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1111
msgid "Default photo upload folder"
msgstr "Cartella predefinita per le foto caricate"
-#: ../../mod/settings.php:1109 ../../mod/settings.php:1110
+#: ../../mod/settings.php:1111 ../../mod/settings.php:1112
msgid "%Y - current year, %m - current month"
msgstr "%Y - anno corrente, %m - mese corrente"
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1112
msgid "Default file upload folder"
msgstr "Cartella predefinita per i file caricati"
-#: ../../mod/settings.php:1112
+#: ../../mod/settings.php:1114
msgid "Personal menu to display in your channel pages"
msgstr "Menu personale da mostrare sulle pagine del tuo canale"
-#: ../../mod/settings.php:1114
+#: ../../mod/settings.php:1116
msgid "Remove this channel."
msgstr "Elimina questo canale."
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1117
msgid "Firefox Share $Projectname provider"
msgstr "Attiva Firefox Share per $Projectname"
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1118
msgid "Start calendar week on monday"
msgstr "La settimana inizia il lunedì"
-#: ../../mod/setup.php:191
+#: ../../mod/setup.php:194
msgid "$Projectname Server - Setup"
msgstr "Server $Projectname - Installazione"
-#: ../../mod/setup.php:195
+#: ../../mod/setup.php:198
msgid "Could not connect to database."
msgstr " Impossibile connettersi al database."
-#: ../../mod/setup.php:199
+#: ../../mod/setup.php:202
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."
-#: ../../mod/setup.php:206
+#: ../../mod/setup.php:209
msgid "Could not create table."
msgstr "Impossibile creare le tabelle."
-#: ../../mod/setup.php:211
+#: ../../mod/setup.php:214
msgid "Your site database has been installed."
msgstr "Il database del sito è stato installato."
-#: ../../mod/setup.php:215
+#: ../../mod/setup.php:218
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."
-#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734
+#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Leggi il file 'install/INSTALL.txt'."
-#: ../../mod/setup.php:281
+#: ../../mod/setup.php:284
msgid "System check"
msgstr "Verifica del sistema"
-#: ../../mod/setup.php:286
+#: ../../mod/setup.php:289
msgid "Check again"
msgstr "Verifica di nuovo"
-#: ../../mod/setup.php:308
+#: ../../mod/setup.php:311
msgid "Database connection"
msgstr "Connessione al database"
-#: ../../mod/setup.php:309
+#: ../../mod/setup.php:312
msgid ""
"In order to install $Projectname we need to know how to connect to your "
"database."
msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database."
-#: ../../mod/setup.php:310
+#: ../../mod/setup.php:313
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
-#: ../../mod/setup.php:311
+#: ../../mod/setup.php:314
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare."
-#: ../../mod/setup.php:315
+#: ../../mod/setup.php:318
msgid "Database Server Name"
msgstr "Server del database"
-#: ../../mod/setup.php:315
+#: ../../mod/setup.php:318
msgid "Default is 127.0.0.1"
msgstr "Il valore predefinito è 127.0.0.1"
-#: ../../mod/setup.php:316
+#: ../../mod/setup.php:319
msgid "Database Port"
msgstr "Port del database"
-#: ../../mod/setup.php:316
+#: ../../mod/setup.php:319
msgid "Communication port number - use 0 for default"
msgstr "Scrivi 0 per usare il valore standard"
-#: ../../mod/setup.php:317
+#: ../../mod/setup.php:320
msgid "Database Login Name"
msgstr "Utente database"
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:321
msgid "Database Login Password"
msgstr "Password database"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:322
msgid "Database Name"
msgstr "Nome database"
-#: ../../mod/setup.php:320
+#: ../../mod/setup.php:323
msgid "Database Type"
msgstr "Tipo database"
-#: ../../mod/setup.php:322 ../../mod/setup.php:363
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
msgid "Site administrator email address"
msgstr "Indirizzo email dell'amministratore del hub"
-#: ../../mod/setup.php:322 ../../mod/setup.php:363
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."
-#: ../../mod/setup.php:323 ../../mod/setup.php:365
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
msgid "Website URL"
msgstr "URL completo del sito"
-#: ../../mod/setup.php:323 ../../mod/setup.php:365
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
msgid "Please use SSL (https) URL if available."
msgstr "Se disponibile, usa l'indirizzo SSL (https)."
-#: ../../mod/setup.php:325 ../../mod/setup.php:367
+#: ../../mod/setup.php:327 ../../mod/setup.php:370
msgid "Please select a default timezone for your website"
msgstr "Seleziona il fuso orario predefinito per il tuo hub"
-#: ../../mod/setup.php:352
+#: ../../mod/setup.php:354
msgid "Site settings"
msgstr "Impostazioni del hub"
-#: ../../mod/setup.php:417
+#: ../../mod/setup.php:368
+msgid "Enable $Projectname <strong>advanced</strong> features?"
+msgstr "Vuoi attivare le funzionalità <strong>avanzate</strong> di $Projectname?"
+
+#: ../../mod/setup.php:368
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
+msgstr "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato."
+
+#: ../../mod/setup.php:420
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"
-#: ../../mod/setup.php:418
+#: ../../mod/setup.php:421
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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."
-#: ../../mod/setup.php:422
+#: ../../mod/setup.php:425
msgid "PHP executable path"
msgstr "Path del comando PHP"
-#: ../../mod/setup.php:422
+#: ../../mod/setup.php:425
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."
-#: ../../mod/setup.php:427
+#: ../../mod/setup.php:430
msgid "Command line PHP"
msgstr "PHP da riga di comando"
-#: ../../mod/setup.php:436
+#: ../../mod/setup.php:439
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:440
msgid "This is required for message delivery to work."
msgstr "E' necessario perché funzioni la consegna dei messaggi."
-#: ../../mod/setup.php:440
+#: ../../mod/setup.php:443
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:458
+#: ../../mod/setup.php:461
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to"
" upload is set to %s. You are allowed to upload up to %d files at once."
msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."
-#: ../../mod/setup.php:463
+#: ../../mod/setup.php:466
msgid "You can adjust these settings in the servers php.ini."
msgstr "Puoi regolare queste impostazioni sul server in php.ini"
-#: ../../mod/setup.php:465
+#: ../../mod/setup.php:468
msgid "PHP upload limits"
msgstr "Limiti PHP in upload"
-#: ../../mod/setup.php:488
+#: ../../mod/setup.php:491
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"
-#: ../../mod/setup.php:489
+#: ../../mod/setup.php:492
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/setup.php:492
+#: ../../mod/setup.php:495
msgid "Generate encryption keys"
msgstr "Genera chiavi di cifratura"
-#: ../../mod/setup.php:504
+#: ../../mod/setup.php:507
msgid "libCurl PHP module"
msgstr "modulo PHP libCurl"
-#: ../../mod/setup.php:505
+#: ../../mod/setup.php:508
msgid "GD graphics PHP module"
msgstr "modulo PHP GD graphics"
-#: ../../mod/setup.php:506
+#: ../../mod/setup.php:509
msgid "OpenSSL PHP module"
msgstr "modulo PHP OpenSSL"
-#: ../../mod/setup.php:507
+#: ../../mod/setup.php:510
msgid "mysqli or postgres PHP module"
msgstr "modulo PHP per mysqli oppure prostgres"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:511
msgid "mb_string PHP module"
msgstr "modulo PHP mb_string"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:512
msgid "mcrypt PHP module"
msgstr "modulo PHP mcrypt"
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:513
msgid "xml PHP module"
msgstr "modulo xml PHP"
-#: ../../mod/setup.php:514 ../../mod/setup.php:516
+#: ../../mod/setup.php:517 ../../mod/setup.php:519
msgid "Apache mod_rewrite module"
msgstr "modulo Apache mod_rewrite"
-#: ../../mod/setup.php:514
+#: ../../mod/setup.php:517
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"
-#: ../../mod/setup.php:520 ../../mod/setup.php:523
+#: ../../mod/setup.php:523 ../../mod/setup.php:526
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:520
+#: ../../mod/setup.php:523
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"
-#: ../../mod/setup.php:528
+#: ../../mod/setup.php:531
msgid "Error: libCURL PHP module required but not installed."
msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato."
-#: ../../mod/setup.php:532
+#: ../../mod/setup.php:535
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."
-#: ../../mod/setup.php:536
+#: ../../mod/setup.php:539
msgid "Error: openssl PHP module required but not installed."
msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato."
-#: ../../mod/setup.php:540
+#: ../../mod/setup.php:543
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"
-#: ../../mod/setup.php:544
+#: ../../mod/setup.php:547
msgid "Error: mb_string PHP module required but not installed."
msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato."
-#: ../../mod/setup.php:548
+#: ../../mod/setup.php:551
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato."
-#: ../../mod/setup.php:552
+#: ../../mod/setup.php:555
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."
-#: ../../mod/setup.php:570
+#: ../../mod/setup.php:573
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."
-#: ../../mod/setup.php:571
+#: ../../mod/setup.php:574
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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."
-#: ../../mod/setup.php:572
+#: ../../mod/setup.php:575
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 "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."
-#: ../../mod/setup.php:573
+#: ../../mod/setup.php:576
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."
-#: ../../mod/setup.php:576
+#: ../../mod/setup.php:579
msgid ".htconfig.php is writable"
msgstr ".htconfig.php è scrivibile"
-#: ../../mod/setup.php:590
+#: ../../mod/setup.php:593
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."
-#: ../../mod/setup.php:591
+#: ../../mod/setup.php:594
#, php-format
msgid ""
"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."
msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla."
-#: ../../mod/setup.php:592 ../../mod/setup.php:613
+#: ../../mod/setup.php:595 ../../mod/setup.php:616
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."
-#: ../../mod/setup.php:593
+#: ../../mod/setup.php:596
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."
-#: ../../mod/setup.php:596
+#: ../../mod/setup.php:599
#, php-format
msgid "%s is writable"
msgstr "%s è scrivibile"
-#: ../../mod/setup.php:612
+#: ../../mod/setup.php:615
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 "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix"
-#: ../../mod/setup.php:616
+#: ../../mod/setup.php:619
msgid "store is writable"
msgstr "l'archivio è scrivibile"
-#: ../../mod/setup.php:649
+#: ../../mod/setup.php:652
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."
-#: ../../mod/setup.php:650
+#: ../../mod/setup.php:653
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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"
-#: ../../mod/setup.php:651
+#: ../../mod/setup.php:654
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."
-#: ../../mod/setup.php:652
+#: ../../mod/setup.php:655
msgid ""
"If your certificate is not recognized, members of other sites (who may "
"themselves have valid certificates) will get a warning message on their own "
"site complaining about security issues."
msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."
-#: ../../mod/setup.php:653
+#: ../../mod/setup.php:656
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."
-#: ../../mod/setup.php:654
+#: ../../mod/setup.php:657
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."
-#: ../../mod/setup.php:656
+#: ../../mod/setup.php:659
msgid "SSL certificate validation"
msgstr "Validazione del certificato SSL"
-#: ../../mod/setup.php:662
+#: ../../mod/setup.php:665
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"
-#: ../../mod/setup.php:665
+#: ../../mod/setup.php:668
msgid "Url rewrite is working"
msgstr "Url rewrite funziona correttamente"
-#: ../../mod/setup.php:674
+#: ../../mod/setup.php:677
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."
-#: ../../mod/setup.php:698
+#: ../../mod/setup.php:701
msgid "Errors encountered creating database tables."
msgstr "La creazione delle tabelle del database ha generato errori."
-#: ../../mod/setup.php:732
+#: ../../mod/setup.php:735
msgid "<h1>What next</h1>"
msgstr "<h1>I prossimi passi</h1>"
-#: ../../mod/setup.php:733
+#: ../../mod/setup.php:736
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -9448,20 +9520,20 @@ msgstr "Hai dimenticato la password?"
msgid "toggle mobile"
msgstr "attiva/disattiva versione mobile"
-#: ../../boot.php:2307
+#: ../../boot.php:2308
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire."
-#: ../../boot.php:2310
+#: ../../boot.php:2311
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Errore SSL su %s"
-#: ../../boot.php:2347
+#: ../../boot.php:2348
msgid "Cron/Scheduled tasks not running."
msgstr "Processi cron non avviati."
-#: ../../boot.php:2351
+#: ../../boot.php:2352
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Cron non è stato eseguito %s"
diff --git a/view/it/hstrings.php b/view/it/hstrings.php
index ffa146382..be24fc2c8 100644
--- a/view/it/hstrings.php
+++ b/view/it/hstrings.php
@@ -14,73 +14,6 @@ $a->strings["User '%s' deleted"] = "Utente '%s' eliminato";
$a->strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare.";
$a->strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito.";
$a->strings["Import completed."] = "L'importazione è terminata con successo.";
-$a->strings["Private Message"] = "Messaggio privato";
-$a->strings["Edit"] = "Modifica";
-$a->strings["Delete"] = "Elimina";
-$a->strings["Select"] = "Scegli";
-$a->strings["Save to Folder"] = "Salva nella cartella";
-$a->strings["I will attend"] = "Parteciperò";
-$a->strings["I will not attend"] = "Non parteciperò";
-$a->strings["I might attend"] = "Forse parteciperò";
-$a->strings["I agree"] = "Sono d'accordo";
-$a->strings["I disagree"] = "Non sono d'accordo";
-$a->strings["I abstain"] = "Mi astengo";
-$a->strings["View all"] = "Vedi tutto";
-$a->strings["__ctx:noun__ Like"] = array(
- 0 => "Mi piace",
- 1 => "Mi piace",
-);
-$a->strings["__ctx:noun__ Dislike"] = array(
- 0 => "Non mi piace",
- 1 => "Non mi piace",
-);
-$a->strings["Add Star"] = "Aggiungi ai preferiti";
-$a->strings["Remove Star"] = "Rimuovi dai preferiti";
-$a->strings["Toggle Star Status"] = "Attiva/disattiva preferito";
-$a->strings["starred"] = "preferito";
-$a->strings["Message signature validated"] = "Messaggio con firma verificata";
-$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
-$a->strings["Add Tag"] = "Aggiungi un tag";
-$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace";
-$a->strings["like"] = "mi piace";
-$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace";
-$a->strings["dislike"] = "non mi piace";
-$a->strings["Share This"] = "Condividi";
-$a->strings["share"] = "condividi";
-$a->strings["Delivery Report"] = "Rapporto di trasmissione";
-$a->strings["%d comment"] = array(
- 0 => "%d commento",
- 1 => "%d commenti",
-);
-$a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s";
-$a->strings["to"] = "a";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
-$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:";
-$a->strings["from %s"] = "da %s";
-$a->strings["last edited: %s"] = "ultima modifica: %s";
-$a->strings["Expires: %s"] = "Scadenza: %s";
-$a->strings["Save Bookmarks"] = "Salva segnalibro";
-$a->strings["Add to Calendar"] = "Aggiungi al calendario";
-$a->strings["Mark all seen"] = "Marca tutto come letto";
-$a->strings["__ctx:noun__ Likes"] = "Mi piace";
-$a->strings["__ctx:noun__ Dislikes"] = "Non mi piace";
-$a->strings["Close"] = "Chiudi";
-$a->strings["Please wait"] = "Attendere";
-$a->strings["[+] show all"] = "[+] mostra tutto";
-$a->strings["This is you"] = "Questo sei tu";
-$a->strings["Comment"] = "Commento";
-$a->strings["Submit"] = "Salva";
-$a->strings["Bold"] = "Grassetto";
-$a->strings["Italic"] = "Corsivo";
-$a->strings["Underline"] = "Sottolineato";
-$a->strings["Quote"] = "Citazione";
-$a->strings["Code"] = "Codice";
-$a->strings["Image"] = "Immagine";
-$a->strings["Insert Link"] = "Collegamento";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Anteprima";
-$a->strings["Encrypt text"] = "Cifratura del messaggio";
$a->strings["parent"] = "cartella superiore";
$a->strings["Collection"] = "Cartella";
$a->strings["Principal"] = "Principale";
@@ -98,6 +31,8 @@ $a->strings["Name"] = "Nome";
$a->strings["Type"] = "Tipo";
$a->strings["Size"] = "Dimensione";
$a->strings["Last Modified"] = "Ultima modifica";
+$a->strings["Edit"] = "Modifica";
+$a->strings["Delete"] = "Elimina";
$a->strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file.";
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s&#37;)";
$a->strings["WARNING:"] = "ATTENZIONE:";
@@ -126,6 +61,7 @@ $a->strings["Show"] = "Mostra";
$a->strings["Don't show"] = "Non mostrare";
$a->strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni";
$a->strings["Permissions"] = "Permessi";
+$a->strings["Close"] = "Chiudi";
$a->strings[" and "] = "e";
$a->strings["public profile"] = "profilo pubblico";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
@@ -248,10 +184,18 @@ $a->strings["__ctx:title__ Abstain"] = "Astenuti";
$a->strings["__ctx:title__ Attending"] = "Partecipano";
$a->strings["__ctx:title__ Not attending"] = "Non partecipano";
$a->strings["__ctx:title__ Might attend"] = "Forse partecipano";
+$a->strings["Select"] = "Scegli";
+$a->strings["Private Message"] = "Messaggio privato";
+$a->strings["Message signature validated"] = "Messaggio con firma verificata";
+$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
$a->strings["Categories:"] = "Categorie:";
$a->strings["Filed under:"] = "Classificato come:";
+$a->strings["from %s"] = "da %s";
+$a->strings["last edited: %s"] = "ultima modifica: %s";
+$a->strings["Expires: %s"] = "Scadenza: %s";
$a->strings["View in context"] = "Vedi nel contesto";
+$a->strings["Please wait"] = "Attendere";
$a->strings["remove"] = "rimuovi";
$a->strings["Loading..."] = "Caricamento in corso...";
$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
@@ -288,9 +232,15 @@ $a->strings["Tag term:"] = "Tag:";
$a->strings["Save to Folder:"] = "Salva nella cartella:";
$a->strings["Where are you right now?"] = "Dove sei ora?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM";
+$a->strings["Preview"] = "Anteprima";
$a->strings["Share"] = "Condividi";
$a->strings["Page link name"] = "Nome del link alla pagina";
$a->strings["Post as"] = "Pubblica come ";
+$a->strings["Bold"] = "Grassetto";
+$a->strings["Italic"] = "Corsivo";
+$a->strings["Underline"] = "Sottolineato";
+$a->strings["Quote"] = "Citazione";
+$a->strings["Code"] = "Codice";
$a->strings["Upload photo"] = "Carica foto";
$a->strings["upload photo"] = "carica foto";
$a->strings["Attach file"] = "Allega file";
@@ -314,6 +264,7 @@ $a->strings["Public post"] = "Post pubblico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
$a->strings["Set expiration date"] = "Data di scadenza";
$a->strings["Set publish date"] = "Data di uscita programmata";
+$a->strings["Encrypt text"] = "Cifratura del messaggio";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annulla";
$a->strings["Discover"] = "Scopri";
@@ -339,6 +290,15 @@ $a->strings["Files and Storage"] = "Archivio file";
$a->strings["Chatrooms"] = "Chat";
$a->strings["Saved Bookmarks"] = "Segnalibri salvati";
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
+$a->strings["View all"] = "Vedi tutto";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "Mi piace",
+ 1 => "Mi piace",
+);
+$a->strings["__ctx:noun__ Dislike"] = array(
+ 0 => "Non mi piace",
+ 1 => "Non mi piace",
+);
$a->strings["__ctx:noun__ Attending"] = array(
0 => "Partecipa",
1 => "Partecipano",
@@ -406,7 +366,7 @@ $a->strings["Protocol disabled."] = "Protocollo disabilitato.";
$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo.";
$a->strings["local account not found."] = "l'account locale non è stato trovato.";
$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso.";
-$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."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti <strong>potrebbero</strong> rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso.";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso.";
$a->strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali";
$a->strings["All Channels"] = "Tutti i canali";
$a->strings["edit"] = "modifica";
@@ -419,6 +379,8 @@ $a->strings["Cannot create a duplicate channel identifier on this system. Import
$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita.";
$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita.";
$a->strings["Delete this item?"] = "Eliminare questo elemento?";
+$a->strings["Comment"] = "Commento";
+$a->strings["[+] show all"] = "[+] mostra tutto";
$a->strings["[-] show less"] = "[-] riduci";
$a->strings["[+] expand"] = "[+] mostra tutto";
$a->strings["[-] collapse"] = "[-] riduci";
@@ -433,6 +395,7 @@ $a->strings["Nothing new here"] = "Niente di nuovo qui";
$a->strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)";
$a->strings["Rating"] = "Valutazioni";
$a->strings["Describe (optional)"] = "Descrizione (facoltativa)";
+$a->strings["Submit"] = "Salva";
$a->strings["Please enter a link URL"] = "Inserisci l'URL di un link";
$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?";
$a->strings["Location"] = "Posizione geografica";
@@ -558,8 +521,6 @@ $a->strings["%s Administrator"] = "L'amministratore di %s";
$a->strings["No Subject"] = "Nessun titolo";
$a->strings["created a new post"] = "Ha creato un nuovo post";
$a->strings["commented on %s's post"] = "ha commentato il post di %s";
-$a->strings["Embedded content"] = "Contenuti incorporati";
-$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati";
$a->strings["New Page"] = "Nuova pagina web";
$a->strings["View"] = "Guarda";
$a->strings["Actions"] = "Azioni";
@@ -567,37 +528,6 @@ $a->strings["Page Link"] = "Link alla pagina";
$a->strings["Title"] = "Titolo";
$a->strings["Created"] = "Creato";
$a->strings["Edited"] = "Modificato";
-$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali";
-$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale";
-$a->strings["Can view my connections"] = "Può vedere i miei contatti";
-$a->strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto";
-$a->strings["Can view my webpages"] = "Può vedere le mie pagine web";
-$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo";
-$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale";
-$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post";
-$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati";
-$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto";
-$a->strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo";
-$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione";
-$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione";
-$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)";
-$a->strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto";
-$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web";
-$a->strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati";
-$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte";
-$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale";
-$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri";
-$a->strings["Social Networking"] = "Social network";
-$a->strings["Mostly Public"] = "Prevalentemente pubblico";
-$a->strings["Restricted"] = "Con restrizioni";
-$a->strings["Private"] = "Privato";
-$a->strings["Community Forum"] = "Forum di discussione";
-$a->strings["Feed Republish"] = "Aggregatore di feed esterni";
-$a->strings["Special Purpose"] = "Per finalità speciali";
-$a->strings["Celebrity/Soapbox"] = "Pagina per fan";
-$a->strings["Group Repository"] = "Repository di gruppo";
-$a->strings["Other"] = "Altro";
-$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti";
$a->strings["Profile Photos"] = "Foto del profilo";
$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
@@ -618,6 +548,7 @@ $a->strings["Transsexual"] = "Transessuale";
$a->strings["Hermaphrodite"] = "Ermafrodito";
$a->strings["Neuter"] = "Neutro";
$a->strings["Non-specific"] = "Non specificato";
+$a->strings["Other"] = "Altro";
$a->strings["Undecided"] = "Indeciso";
$a->strings["Males"] = "Maschi";
$a->strings["Females"] = "Femmine";
@@ -670,7 +601,9 @@ $a->strings["have"] = "ho";
$a->strings["has"] = "ha";
$a->strings["want"] = "voglio";
$a->strings["wants"] = "vuole";
+$a->strings["like"] = "mi piace";
$a->strings["likes"] = "gli piace";
+$a->strings["dislike"] = "non mi piace";
$a->strings["dislikes"] = "non gli piace";
$a->strings["Invalid data packet"] = "Dati ricevuti non validi";
$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale";
@@ -692,63 +625,6 @@ $a->strings["Zot"] = "Zot";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
-$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
-$a->strings["Empty name"] = "Nome vuoto";
-$a->strings["Name too long"] = "Nome troppo lungo";
-$a->strings["No account identifier"] = "Account senza identificativo";
-$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio.";
-$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro.";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati.";
-$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
-$a->strings["Default Profile"] = "Profilo predefinito";
-$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
-$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
-$a->strings["Change profile photo"] = "Cambia la foto del profilo";
-$a->strings["Profiles"] = "Profili";
-$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
-$a->strings["Create New Profile"] = "Crea un nuovo profilo";
-$a->strings["Profile Image"] = "Immagine del profilo";
-$a->strings["visible to everybody"] = "visibile a tutti";
-$a->strings["Edit visibility"] = "Cambia la visibilità";
-$a->strings["Gender:"] = "Sesso:";
-$a->strings["Status:"] = "Stato:";
-$a->strings["Homepage:"] = "Home page:";
-$a->strings["Online Now"] = "Online adesso";
-$a->strings["g A l F d"] = "g A l d F";
-$a->strings["F d"] = "d F";
-$a->strings["[today]"] = "[oggi]";
-$a->strings["Birthday Reminders"] = "Promemoria compleanni";
-$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
-$a->strings["[No description]"] = "[Nessuna descrizione]";
-$a->strings["Event Reminders"] = "Promemoria";
-$a->strings["Events this week:"] = "Eventi della settimana:";
-$a->strings["Full Name:"] = "Nome completo:";
-$a->strings["Like this channel"] = "Mi piace questo canale";
-$a->strings["j F, Y"] = "j F Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Compleanno:";
-$a->strings["Age:"] = "Età:";
-$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
-$a->strings["Hometown:"] = "Città dove vivo:";
-$a->strings["Tags:"] = "Tag:";
-$a->strings["Political Views:"] = "Orientamento politico:";
-$a->strings["Religion:"] = "Religione:";
-$a->strings["About:"] = "Informazioni:";
-$a->strings["Hobbies/Interests:"] = "Interessi e hobby:";
-$a->strings["Likes:"] = "Mi piace:";
-$a->strings["Dislikes:"] = "Non mi piace:";
-$a->strings["Contact information and Social Networks:"] = "Contatti e social network:";
-$a->strings["My other channels:"] = "I miei altri canali:";
-$a->strings["Musical interests:"] = "Gusti musicali:";
-$a->strings["Books, literature:"] = "Libri, letteratura:";
-$a->strings["Television:"] = "Televisione:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:";
-$a->strings["Love/Romance:"] = "Amore:";
-$a->strings["Work/employment:"] = "Lavoro:";
-$a->strings["School/education:"] = "Scuola:";
-$a->strings["Like this thing"] = "Mi piace";
-$a->strings["cover photo"] = "Copertina del canale";
$a->strings["prev"] = "prec";
$a->strings["first"] = "inizio";
$a->strings["last"] = "fine";
@@ -860,6 +736,161 @@ $a->strings["Name:"] = "Nome:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
$a->strings["[Hubzilla:Notify]"] = "[Hubzilla]";
+$a->strings["General Features"] = "Funzionalità di base";
+$a->strings["Content Expiration"] = "Scadenza";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo";
+$a->strings["Multiple Profiles"] = "Profili multipli";
+$a->strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli";
+$a->strings["Advanced Profiles"] = "Profili avanzati";
+$a->strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo";
+$a->strings["Profile Import/Export"] = "Importa/esporta il profilo";
+$a->strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi";
+$a->strings["Web Pages"] = "Pagine web";
+$a->strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale";
+$a->strings["Hide Rating"] = "Nascondi le valutazioni";
+$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove.";
+$a->strings["Private Notes"] = "Note private";
+$a->strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)";
+$a->strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu";
+$a->strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione";
+$a->strings["Photo Location"] = "Posizione geografica";
+$a->strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche.";
+$a->strings["Expert Mode"] = "Modalità esperto";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate";
+$a->strings["Premium Channel"] = "Canale premium";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale";
+$a->strings["Post Composition Features"] = "Modalità di scrittura post";
+$a->strings["Use Markdown"] = "Usa il markdown";
+$a->strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare i post";
+$a->strings["Large Photos"] = "Foto grandi";
+$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)";
+$a->strings["Channel Sources"] = "Sorgenti del canale";
+$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed";
+$a->strings["Even More Encryption"] = "Cifratura addizionale";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi";
+$a->strings["Enable Voting Tools"] = "Permetti i post con votazione";
+$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare";
+$a->strings["Delayed Posting"] = "Pubblicazione ritardata";
+$a->strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post";
+$a->strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati";
+$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima.";
+$a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti";
+$a->strings["Search by Date"] = "Ricerca per data";
+$a->strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date";
+$a->strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali";
+$a->strings["Saved Searches"] = "Ricerche salvate";
+$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere";
+$a->strings["Network Personal Tab"] = "Attività personale";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito";
+$a->strings["Network New Tab"] = "Contenuti nuovi";
+$a->strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti";
+$a->strings["Affinity Tool"] = "Filtro per affinità";
+$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia";
+$a->strings["Connection Filtering"] = "Filtro sui contatti";
+$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave";
+$a->strings["Suggest Channels"] = "Suggerisci canali";
+$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti";
+$a->strings["Post/Comment Tools"] = "Gestione post e commenti";
+$a->strings["Community Tagging"] = "Tag della comunità";
+$a->strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti";
+$a->strings["Post Categories"] = "Categorie dei post";
+$a->strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post";
+$a->strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle";
+$a->strings["Dislike Posts"] = "Non mi piace";
+$a->strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post";
+$a->strings["Star Posts"] = "Post con stella";
+$a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti";
+$a->strings["Tag Cloud"] = "Nuvola di tag";
+$a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale";
+$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
+$a->strings["Empty name"] = "Nome vuoto";
+$a->strings["Name too long"] = "Nome troppo lungo";
+$a->strings["No account identifier"] = "Account senza identificativo";
+$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio.";
+$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati.";
+$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
+$a->strings["Default Profile"] = "Profilo predefinito";
+$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
+$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
+$a->strings["Change profile photo"] = "Cambia la foto del profilo";
+$a->strings["Profiles"] = "Profili";
+$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
+$a->strings["Create New Profile"] = "Crea un nuovo profilo";
+$a->strings["Profile Image"] = "Immagine del profilo";
+$a->strings["visible to everybody"] = "visibile a tutti";
+$a->strings["Edit visibility"] = "Cambia la visibilità";
+$a->strings["Gender:"] = "Sesso:";
+$a->strings["Status:"] = "Stato:";
+$a->strings["Homepage:"] = "Home page:";
+$a->strings["Online Now"] = "Online adesso";
+$a->strings["g A l F d"] = "g A l d F";
+$a->strings["F d"] = "d F";
+$a->strings["[today]"] = "[oggi]";
+$a->strings["Birthday Reminders"] = "Promemoria compleanni";
+$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
+$a->strings["[No description]"] = "[Nessuna descrizione]";
+$a->strings["Event Reminders"] = "Promemoria";
+$a->strings["Events this week:"] = "Eventi della settimana:";
+$a->strings["Full Name:"] = "Nome completo:";
+$a->strings["Like this channel"] = "Mi piace questo canale";
+$a->strings["j F, Y"] = "j F Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Compleanno:";
+$a->strings["Age:"] = "Età:";
+$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
+$a->strings["Hometown:"] = "Città dove vivo:";
+$a->strings["Tags:"] = "Tag:";
+$a->strings["Political Views:"] = "Orientamento politico:";
+$a->strings["Religion:"] = "Religione:";
+$a->strings["About:"] = "Informazioni:";
+$a->strings["Hobbies/Interests:"] = "Interessi e hobby:";
+$a->strings["Likes:"] = "Mi piace:";
+$a->strings["Dislikes:"] = "Non mi piace:";
+$a->strings["Contact information and Social Networks:"] = "Contatti e social network:";
+$a->strings["My other channels:"] = "I miei altri canali:";
+$a->strings["Musical interests:"] = "Gusti musicali:";
+$a->strings["Books, literature:"] = "Libri, letteratura:";
+$a->strings["Television:"] = "Televisione:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:";
+$a->strings["Love/Romance:"] = "Amore:";
+$a->strings["Work/employment:"] = "Lavoro:";
+$a->strings["School/education:"] = "Scuola:";
+$a->strings["Like this thing"] = "Mi piace";
+$a->strings["cover photo"] = "Copertina del canale";
+$a->strings["Embedded content"] = "Contenuti incorporati";
+$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati";
+$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali";
+$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale";
+$a->strings["Can view my connections"] = "Può vedere i miei contatti";
+$a->strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto";
+$a->strings["Can view my webpages"] = "Può vedere le mie pagine web";
+$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo";
+$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale";
+$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post";
+$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati";
+$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto";
+$a->strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo";
+$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione";
+$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione";
+$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)";
+$a->strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto";
+$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web";
+$a->strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati";
+$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte";
+$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale";
+$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri";
+$a->strings["Social Networking"] = "Social network";
+$a->strings["Mostly Public"] = "Prevalentemente pubblico";
+$a->strings["Restricted"] = "Con restrizioni";
+$a->strings["Private"] = "Privato";
+$a->strings["Community Forum"] = "Forum di discussione";
+$a->strings["Feed Republish"] = "Aggregatore di feed esterni";
+$a->strings["Special Purpose"] = "Per finalità speciali";
+$a->strings["Celebrity/Soapbox"] = "Pagina per fan";
+$a->strings["Group Repository"] = "Repository di gruppo";
+$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti";
$a->strings["System"] = "Sistema";
$a->strings["Create Personal App"] = "Crea app personale";
$a->strings["Edit Personal App"] = "Modifica app personale";
@@ -872,7 +903,6 @@ $a->strings["Enter channel address"] = "Indirizzo del canale";
$a->strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara";
$a->strings["Notes"] = "Note";
$a->strings["Remove term"] = "Rimuovi termine";
-$a->strings["Saved Searches"] = "Ricerche salvate";
$a->strings["Archives"] = "Archivi";
$a->strings["Me"] = "Me";
$a->strings["Family"] = "Famiglia";
@@ -888,7 +918,6 @@ $a->strings["Connected apps"] = "App connesse";
$a->strings["Export channel"] = "Esporta il canale";
$a->strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti";
$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni";
-$a->strings["Channel Sources"] = "Sorgenti del canale";
$a->strings["Private Mail Menu"] = "Menu messaggi privati";
$a->strings["Combined View"] = "Vista combinata";
$a->strings["Conversations"] = "Conversazioni";
@@ -923,6 +952,7 @@ $a->strings["For Developers"] = "Per sviluppatori";
$a->strings["Site"] = "Sito";
$a->strings["Accounts"] = "Account";
$a->strings["Channels"] = "Canali";
+$a->strings["Security"] = "Sicurezza";
$a->strings["Plugins"] = "Plugin";
$a->strings["Themes"] = "Temi";
$a->strings["Inspect queue"] = "Coda di attesa";
@@ -933,270 +963,46 @@ $a->strings["Plugin Features"] = "Plugin";
$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa";
$a->strings["View Photo"] = "Guarda la foto";
$a->strings["Edit Album"] = "Modifica album";
-$a->strings["General Features"] = "Funzionalità di base";
-$a->strings["Content Expiration"] = "Scadenza";
-$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo";
-$a->strings["Multiple Profiles"] = "Profili multipli";
-$a->strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli";
-$a->strings["Advanced Profiles"] = "Profili avanzati";
-$a->strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo";
-$a->strings["Profile Import/Export"] = "Importa/esporta il profilo";
-$a->strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi";
-$a->strings["Web Pages"] = "Pagine web";
-$a->strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale";
-$a->strings["Hide Rating"] = "Nascondi le valutazioni";
-$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove.";
-$a->strings["Private Notes"] = "Note private";
-$a->strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)";
-$a->strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu";
-$a->strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione";
-$a->strings["Photo Location"] = "Posizione geografica";
-$a->strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche.";
-$a->strings["Expert Mode"] = "Modalità esperto";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate";
-$a->strings["Premium Channel"] = "Canale premium";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale";
-$a->strings["Post Composition Features"] = "Modalità di scrittura post";
-$a->strings["Use Markdown"] = "Usa il markdown";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare i post";
-$a->strings["Large Photos"] = "Foto grandi";
-$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)";
-$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed";
-$a->strings["Even More Encryption"] = "Cifratura addizionale";
-$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi";
-$a->strings["Enable Voting Tools"] = "Permetti i post con votazione";
-$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare";
-$a->strings["Delayed Posting"] = "Pubblicazione ritardata";
-$a->strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post";
-$a->strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati";
-$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima.";
-$a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti";
-$a->strings["Search by Date"] = "Ricerca per data";
-$a->strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date";
-$a->strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali";
-$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere";
-$a->strings["Network Personal Tab"] = "Attività personale";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito";
-$a->strings["Network New Tab"] = "Contenuti nuovi";
-$a->strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti";
-$a->strings["Affinity Tool"] = "Filtro per affinità";
-$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia";
-$a->strings["Connection Filtering"] = "Filtro sui contatti";
-$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave";
-$a->strings["Suggest Channels"] = "Suggerisci canali";
-$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti";
-$a->strings["Post/Comment Tools"] = "Gestione post e commenti";
-$a->strings["Community Tagging"] = "Tag della comunità";
-$a->strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti";
-$a->strings["Post Categories"] = "Categorie dei post";
-$a->strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post";
-$a->strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle";
-$a->strings["Dislike Posts"] = "Non mi piace";
-$a->strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post";
-$a->strings["Star Posts"] = "Post con stella";
-$a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti";
-$a->strings["Tag Cloud"] = "Nuvola di tag";
-$a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale";
+$a->strings["Save to Folder"] = "Salva nella cartella";
+$a->strings["I will attend"] = "Parteciperò";
+$a->strings["I will not attend"] = "Non parteciperò";
+$a->strings["I might attend"] = "Forse parteciperò";
+$a->strings["I agree"] = "Sono d'accordo";
+$a->strings["I disagree"] = "Non sono d'accordo";
+$a->strings["I abstain"] = "Mi astengo";
+$a->strings["Add Star"] = "Aggiungi ai preferiti";
+$a->strings["Remove Star"] = "Rimuovi dai preferiti";
+$a->strings["Toggle Star Status"] = "Attiva/disattiva preferito";
+$a->strings["starred"] = "preferito";
+$a->strings["Add Tag"] = "Aggiungi un tag";
+$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace";
+$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace";
+$a->strings["Share This"] = "Condividi";
+$a->strings["share"] = "condividi";
+$a->strings["Delivery Report"] = "Rapporto di trasmissione";
+$a->strings["%d comment"] = array(
+ 0 => "%d commento",
+ 1 => "%d commenti",
+);
+$a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s";
+$a->strings["to"] = "a";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
+$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:";
+$a->strings["Save Bookmarks"] = "Salva segnalibro";
+$a->strings["Add to Calendar"] = "Aggiungi al calendario";
+$a->strings["Mark all seen"] = "Marca tutto come letto";
+$a->strings["__ctx:noun__ Likes"] = "Mi piace";
+$a->strings["__ctx:noun__ Dislikes"] = "Non mi piace";
+$a->strings["This is you"] = "Questo sei tu";
+$a->strings["Image"] = "Immagine";
+$a->strings["Insert Link"] = "Collegamento";
+$a->strings["Video"] = "Video";
$a->strings["Not Found"] = "Non disponibile";
$a->strings["Page not found."] = "Pagina non trovata.";
$a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare";
$a->strings["network"] = "rete";
$a->strings["RSS"] = "RSS";
-$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate.";
-$a->strings["# Accounts"] = "# account";
-$a->strings["# blocked accounts"] = "# account bloccati";
-$a->strings["# expired accounts"] = "# account scaduti";
-$a->strings["# expiring accounts"] = "# account in scadenza";
-$a->strings["# Channels"] = "# canali";
-$a->strings["# primary"] = "# primari";
-$a->strings["# clones"] = "# cloni";
-$a->strings["Message queues"] = "Coda messaggi in uscita";
-$a->strings["Administration"] = "Amministrazione";
-$a->strings["Summary"] = "Riepilogo";
-$a->strings["Registered accounts"] = "Account creati";
-$a->strings["Pending registrations"] = "Registrazioni da approvare";
-$a->strings["Registered channels"] = "Canali creati";
-$a->strings["Active plugins"] = "Plugin attivi";
-$a->strings["Version"] = "Versione";
-$a->strings["Site settings updated."] = "Impostazioni del sito salvate correttamente.";
-$a->strings["mobile"] = "mobile";
-$a->strings["experimental"] = "sperimentale";
-$a->strings["unsupported"] = "non supportato";
-$a->strings["Yes - with approval"] = "Sì - con approvazione";
-$a->strings["My site is not a public server"] = "Non è un server pubblico";
-$a->strings["My site has paid access only"] = "È un servizio a pagamento";
-$a->strings["My site has free access only"] = "È un servizio gratuito";
-$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento";
-$a->strings["Registration"] = "Registrazione";
-$a->strings["File upload"] = "Caricamento file";
-$a->strings["Policies"] = "Politiche";
-$a->strings["Site name"] = "Nome del sito";
-$a->strings["Banner/Logo"] = "Banner o logo";
-$a->strings["Administrator Information"] = "Informazioni sull'amministratore";
-$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode";
-$a->strings["System language"] = "Lingua di sistema";
-$a->strings["System theme"] = "Tema di sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>";
-$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili";
-$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili";
-$a->strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti";
-$a->strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)";
-$a->strings["Maximum image size"] = "Dimensione massima immagini";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
-$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?";
-$a->strings["Invitation only"] = "Solo con invito";
-$a->strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'.";
-$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?";
-$a->strings["Register text"] = "Testo di registrazione";
-$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
-$a->strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)";
-$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file.";
-$a->strings["Preserve site homepage URL"] = "Conserva l'URL della homepage";
-$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect.";
-$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo.";
-$a->strings["Allowed friend domains"] = "Domini fidati e consentiti";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio.";
-$a->strings["Allowed email domains"] = "Domini email consentiti";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email";
-$a->strings["Not allowed email domains"] = "Domini email non consentiti";
-$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
-$a->strings["Block public"] = "Blocca pagine pubbliche";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso.";
-$a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email";
-$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato).";
-$a->strings["Force publish"] = "Forza la publicazione del profilo";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito.";
-$a->strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla";
-$a->strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione.";
-$a->strings["login on Homepage"] = "Mostra il login sulla homepage";
-$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti.";
-$a->strings["Directory Server URL"] = "URL del directory server";
-$a->strings["Default directory server"] = "Directory server predefinito";
-$a->strings["Proxy user"] = "Utente proxy";
-$a->strings["Proxy URL"] = "URL proxy";
-$a->strings["Network timeout"] = "Timeout rete";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato).";
-$a->strings["Delivery interval"] = "Recapito ritardato";
-$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."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati.";
-$a->strings["Deliveries per process"] = "Tentativi di recapito per processo";
-$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5";
-$a->strings["Poll interval"] = "Intervallo di polling";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'.";
-$a->strings["Maximum Load Average"] = "Carico massimo medio";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50.";
-$a->strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)";
-$a->strings["0 for no expiration of imported content"] = "0 per non avere scadenza";
-$a->strings["Off"] = "Off";
-$a->strings["On"] = "On";
-$a->strings["Lock feature %s"] = "Rendi non modificabile %s";
-$a->strings["Manage Additional Features"] = "Funzionalità opzionali";
-$a->strings["No server found"] = "Server non trovato";
-$a->strings["ID"] = "ID";
-$a->strings["for channel"] = "per il canale";
-$a->strings["on server"] = "sul server";
-$a->strings["Status"] = "Stato";
-$a->strings["Server"] = "Server";
-$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito.";
-$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema.";
-$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente.";
-$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s";
-$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
-$a->strings["Failed Updates"] = "Aggiornamenti falliti.";
-$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente).";
-$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento.";
-$a->strings["Queue Statistics"] = "Statistiche della coda";
-$a->strings["Total Entries"] = "Totale";
-$a->strings["Priority"] = "Priorità";
-$a->strings["Destination URL"] = "URL di destinazione";
-$a->strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline";
-$a->strings["Empty queue for this hub"] = "Svuota la coda per questo hub";
-$a->strings["Last known contact"] = "Ultimo scambio dati";
-$a->strings["%s account blocked/unblocked"] = array(
- 0 => "Modificato il blocco su %s account",
- 1 => "Modificato il blocco verso %s",
-);
-$a->strings["%s account deleted"] = array(
- 0 => "%s account eliminato",
- 1 => "%s account eliminati",
-);
-$a->strings["Account not found"] = "Account non trovato";
-$a->strings["Account '%s' deleted"] = "Account '%s' eliminato";
-$a->strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'";
-$a->strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'";
-$a->strings["Users"] = "Utenti";
-$a->strings["select all"] = "seleziona tutti";
-$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
-$a->strings["Request date"] = "Data richiesta";
-$a->strings["No registrations."] = "Nessuna registrazione.";
-$a->strings["Approve"] = "Approva";
-$a->strings["Deny"] = "Nega";
-$a->strings["Block"] = "Blocca";
-$a->strings["Unblock"] = "Sblocca";
-$a->strings["Register date"] = "Data registrazione";
-$a->strings["Last login"] = "Ultimo accesso";
-$a->strings["Expires"] = "Con scadenza";
-$a->strings["Service Class"] = "Classe dell'account";
-$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?";
-$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?";
-$a->strings["%s channel censored/uncensored"] = array(
- 0 => "Censura modificata per %s canale",
- 1 => "Censura modificata per %s canali",
-);
-$a->strings["%s channel code allowed/disallowed"] = array(
- 0 => "%s canale permette/non permette codice nei contenuti",
- 1 => "%s canali permettono/non permettono codice nei contenuti",
-);
-$a->strings["%s channel deleted"] = array(
- 0 => "%s canale è stato rimosso",
- 1 => "%s canali sono stati rimossi",
-);
-$a->strings["Channel not found"] = "Canale non trovato";
-$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso";
-$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'";
-$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'";
-$a->strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti";
-$a->strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti";
-$a->strings["Censor"] = "Applica una censura";
-$a->strings["Uncensor"] = "Rimuovi la censura";
-$a->strings["Allow Code"] = "Permetti codice nei contenuti";
-$a->strings["Disallow Code"] = "Non permettere codice nei contenuti";
-$a->strings["UID"] = "UID";
-$a->strings["Address"] = "Indirizzo";
-$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?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?";
-$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?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?";
-$a->strings["Plugin %s disabled."] = "Plugin %s non attivo.";
-$a->strings["Plugin %s enabled."] = "Plugin %s attivo.";
-$a->strings["Disable"] = "Disattiva";
-$a->strings["Enable"] = "Attiva";
-$a->strings["Toggle"] = "Attiva/disattiva";
-$a->strings["Author: "] = "Autore:";
-$a->strings["Maintainer: "] = "Gestore:";
-$a->strings["Minimum project version: "] = "Minima versione hubzilla";
-$a->strings["Maximum project version: "] = "Massima versione hubzilla";
-$a->strings["Minimum PHP version: "] = "Minima versione PHP:";
-$a->strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione";
-$a->strings["No themes found."] = "Nessun tema trovato.";
-$a->strings["Screenshot"] = "Istantanea dello schermo";
-$a->strings["[Experimental]"] = "[Sperimentale]";
-$a->strings["[Unsupported]"] = "[Non supportato]";
-$a->strings["Log settings updated."] = "Impostazioni di log aggiornate.";
-$a->strings["Clear"] = "Pulisci";
-$a->strings["Debugging"] = "Debugging";
-$a->strings["Log file"] = "File di log";
-$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla.";
-$a->strings["Log level"] = "Livello di log";
-$a->strings["New Profile Field"] = "Nuovo campo del profilo";
-$a->strings["Field nickname"] = "Nome breve del campo";
-$a->strings["System name of field"] = "Nome di sistema del campo";
-$a->strings["Input type"] = "Tipo di dati";
-$a->strings["Field Name"] = "Nome del campo";
-$a->strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo";
-$a->strings["Help text"] = "Testo di aiuto";
-$a->strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)";
-$a->strings["Field definition not found"] = "Impossibile trovare la definizione del campo";
-$a->strings["Edit Profile Field"] = "Modifica campo del profilo";
$a->strings["Authorize application connection"] = "Autorizza la app";
$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:";
$a->strings["Please login to continue."] = "Accedi al sito per continuare.";
@@ -1267,8 +1073,10 @@ $a->strings["Edit connection"] = "Modifica il contatto";
$a->strings["Delete connection"] = "Elimina il contatto";
$a->strings["Channel address"] = "Indirizzo del canale";
$a->strings["Network"] = "Network";
+$a->strings["Status"] = "Stato";
$a->strings["Connected"] = "In contatto";
$a->strings["Approve connection"] = "Approva questo contatto";
+$a->strings["Approve"] = "Approva";
$a->strings["Ignore connection"] = "Ignora il contatto";
$a->strings["Ignore"] = "Ignora";
$a->strings["Recent activity"] = "Attività recenti";
@@ -1288,6 +1096,8 @@ $a->strings["Refresh Permissions"] = "Modifica i permessi";
$a->strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati";
$a->strings["Recent Activity"] = "Attività recenti";
$a->strings["View recent posts and comments"] = "Leggi i post recenti e i commenti";
+$a->strings["Unblock"] = "Sblocca";
+$a->strings["Block"] = "Blocca";
$a->strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)";
$a->strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!";
$a->strings["Unignore"] = "Non ignorare";
@@ -1438,12 +1248,12 @@ $a->strings["Contact not found."] = "Contatto non trovato.";
$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
$a->strings["Suggest Friends"] = "Suggerisci amici";
$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
-$a->strings["Privacy group created."] = "Gruppo di canali creato";
+$a->strings["Privacy group created."] = "Gruppo di canali creato.";
$a->strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali.";
$a->strings["Privacy group updated."] = "Gruppo di canali aggiornato.";
$a->strings["Create a group of channels."] = "Crea un gruppo di canali.";
$a->strings["Privacy group name: "] = "Nome del gruppo di canali:";
-$a->strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali dell'insieme";
+$a->strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo";
$a->strings["Privacy group removed."] = "Gruppo di canali rimosso.";
$a->strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali.";
$a->strings["Privacy group editor"] = "Editor dei gruppi di canali";
@@ -1479,6 +1289,7 @@ $a->strings["Nothing to import."] = "Non c'è niente da importare.";
$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub";
$a->strings["Imported file is empty."] = "Il file da importare è vuoto.";
$a->strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti.";
+$a->strings["Server platform is not compatible. Operation not permitted."] = "La tecnologia del server non è compatibile. Operazione non permessa.";
$a->strings["No channel. Import failed."] = "Nessun canale. Import fallito.";
$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso.";
$a->strings["Import Channel"] = "Importa un canale";
@@ -1509,10 +1320,10 @@ $a->strings["Send invitations"] = "Spedisci inviti";
$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
$a->strings["Your message:"] = "Il tuo messaggio:";
$a->strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname.";
-$a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:";
+$a->strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito.";
-$a->strings["or visit "] = "oppure visita ";
+$a->strings["or visit"] = "oppure visita";
$a->strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]";
$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
$a->strings["Empty post discarded."] = "Il post vuoto è stato ignorato.";
@@ -1646,7 +1457,7 @@ $a->strings["Menu item could not be deleted."] = "L'elemento del menù non può
$a->strings["Edit Menu Element"] = "Modifica l'elemento del menù";
$a->strings["Link text"] = "Testo del link";
$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici";
-$a->strings["No such group"] = "Impossibile trovare l'insieme";
+$a->strings["No such group"] = "Impossibile trovare il gruppo di canali";
$a->strings["No such channel"] = "Canale sconosciuto";
$a->strings["forum"] = "forum";
$a->strings["Search Results For:"] = "Cerca risultati con:";
@@ -1716,8 +1527,211 @@ $a->strings["In This Photo:"] = "In questa foto:";
$a->strings["Map"] = "Mappa";
$a->strings["View Album"] = "Guarda l'album";
$a->strings["Recent Photos"] = "Foto recenti";
+$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate.";
+$a->strings["# Accounts"] = "# account";
+$a->strings["# blocked accounts"] = "# account bloccati";
+$a->strings["# expired accounts"] = "# account scaduti";
+$a->strings["# expiring accounts"] = "# account in scadenza";
+$a->strings["# Channels"] = "# canali";
+$a->strings["# primary"] = "# primari";
+$a->strings["# clones"] = "# cloni";
+$a->strings["Message queues"] = "Coda messaggi in uscita";
+$a->strings["Administration"] = "Amministrazione";
+$a->strings["Summary"] = "Riepilogo";
+$a->strings["Registered accounts"] = "Account creati";
+$a->strings["Pending registrations"] = "Registrazioni da approvare";
+$a->strings["Registered channels"] = "Canali creati";
+$a->strings["Active plugins"] = "Plugin attivi";
+$a->strings["Version"] = "Versione";
+$a->strings["Site settings updated."] = "Impostazioni del sito salvate correttamente.";
+$a->strings["mobile"] = "mobile";
+$a->strings["experimental"] = "sperimentale";
+$a->strings["unsupported"] = "non supportato";
+$a->strings["Yes - with approval"] = "Sì - con approvazione";
+$a->strings["My site is not a public server"] = "Non è un server pubblico";
+$a->strings["My site has paid access only"] = "È un servizio a pagamento";
+$a->strings["My site has free access only"] = "È un servizio gratuito";
+$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento";
+$a->strings["Registration"] = "Registrazione";
+$a->strings["File upload"] = "Caricamento file";
+$a->strings["Policies"] = "Politiche";
+$a->strings["Site name"] = "Nome del sito";
+$a->strings["Banner/Logo"] = "Banner o logo";
+$a->strings["Administrator Information"] = "Informazioni sull'amministratore";
+$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode";
+$a->strings["System language"] = "Lingua di sistema";
+$a->strings["System theme"] = "Tema di sistema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>";
+$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili";
+$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili";
+$a->strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti";
+$a->strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)";
+$a->strings["Maximum image size"] = "Dimensione massima immagini";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
+$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?";
+$a->strings["Invitation only"] = "Solo con invito";
+$a->strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'.";
+$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?";
+$a->strings["Register text"] = "Testo di registrazione";
+$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
+$a->strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)";
+$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file.";
+$a->strings["Preserve site homepage URL"] = "Conserva l'URL della homepage";
+$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect.";
+$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo.";
+$a->strings["Allowed friend domains"] = "Domini fidati e consentiti";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio.";
+$a->strings["Allowed email domains"] = "Domini email consentiti";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email";
+$a->strings["Not allowed email domains"] = "Domini email non consentiti";
+$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio.";
+$a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email";
+$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato).";
+$a->strings["Force publish"] = "Forza la publicazione del profilo";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito.";
+$a->strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla";
+$a->strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione.";
+$a->strings["login on Homepage"] = "Mostra il login sulla homepage";
+$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti.";
+$a->strings["Directory Server URL"] = "URL del directory server";
+$a->strings["Default directory server"] = "Directory server predefinito";
+$a->strings["Proxy user"] = "Utente proxy";
+$a->strings["Proxy URL"] = "URL proxy";
+$a->strings["Network timeout"] = "Timeout rete";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato).";
+$a->strings["Delivery interval"] = "Recapito ritardato";
+$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."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati.";
+$a->strings["Deliveries per process"] = "Tentativi di recapito per processo";
+$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5";
+$a->strings["Poll interval"] = "Intervallo di polling";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'.";
+$a->strings["Maximum Load Average"] = "Carico massimo medio";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50.";
+$a->strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)";
+$a->strings["0 for no expiration of imported content"] = "0 per non avere scadenza";
+$a->strings["Off"] = "Off";
+$a->strings["On"] = "On";
+$a->strings["Lock feature %s"] = "Rendi non modificabile %s";
+$a->strings["Manage Additional Features"] = "Funzionalità opzionali";
+$a->strings["No server found"] = "Server non trovato";
+$a->strings["ID"] = "ID";
+$a->strings["for channel"] = "per il canale";
+$a->strings["on server"] = "sul server";
+$a->strings["Server"] = "Server";
+$a->strings["Block public"] = "Blocca pagine pubbliche";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso.";
+$a->strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti";
+$a->strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti";
+$a->strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti";
+$a->strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali";
+$a->strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali";
+$a->strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali";
+$a->strings["Allow embedded HTML content only from these domains"] = "Permetti i contenuti incorporati HTML solo da questi domini";
+$a->strings["One site per line. Leave empty to allow from any site by default"] = "Un sito per riga. Lascia vuoto per permettere sempre i contenuti incorporati";
+$a->strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini";
+$a->strings["Cooperative embed security"] = "Sicurezza cooperativa sui contenuti incorporati";
+$a->strings["Enable to share embed security with other compatible sites/hubs"] = "Abilita la condivisione delle informazioni di sicurezza sui contenuti incorporati con altri siti/hub";
+$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito.";
+$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema.";
+$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente.";
+$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s";
+$a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
+$a->strings["Failed Updates"] = "Aggiornamenti falliti.";
+$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente).";
+$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento.";
+$a->strings["Queue Statistics"] = "Statistiche della coda";
+$a->strings["Total Entries"] = "Totale";
+$a->strings["Priority"] = "Priorità";
+$a->strings["Destination URL"] = "URL di destinazione";
+$a->strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline";
+$a->strings["Empty queue for this hub"] = "Svuota la coda per questo hub";
+$a->strings["Last known contact"] = "Ultimo scambio dati";
+$a->strings["%s account blocked/unblocked"] = array(
+ 0 => "Modificato il blocco su %s account",
+ 1 => "Modificato il blocco verso %s",
+);
+$a->strings["%s account deleted"] = array(
+ 0 => "%s account eliminato",
+ 1 => "%s account eliminati",
+);
+$a->strings["Account not found"] = "Account non trovato";
+$a->strings["Account '%s' deleted"] = "Account '%s' eliminato";
+$a->strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'";
+$a->strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'";
+$a->strings["Users"] = "Utenti";
+$a->strings["select all"] = "seleziona tutti";
+$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
+$a->strings["Request date"] = "Data richiesta";
+$a->strings["No registrations."] = "Nessuna registrazione.";
+$a->strings["Deny"] = "Nega";
+$a->strings["Register date"] = "Data registrazione";
+$a->strings["Last login"] = "Ultimo accesso";
+$a->strings["Expires"] = "Con scadenza";
+$a->strings["Service Class"] = "Classe dell'account";
+$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?";
+$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?";
+$a->strings["%s channel censored/uncensored"] = array(
+ 0 => "Censura modificata per %s canale",
+ 1 => "Censura modificata per %s canali",
+);
+$a->strings["%s channel code allowed/disallowed"] = array(
+ 0 => "%s canale permette/non permette codice nei contenuti",
+ 1 => "%s canali permettono/non permettono codice nei contenuti",
+);
+$a->strings["%s channel deleted"] = array(
+ 0 => "%s canale è stato rimosso",
+ 1 => "%s canali sono stati rimossi",
+);
+$a->strings["Channel not found"] = "Canale non trovato";
+$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso";
+$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'";
+$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'";
+$a->strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti";
+$a->strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti";
+$a->strings["Censor"] = "Applica censura";
+$a->strings["Uncensor"] = "Rimuovi censura";
+$a->strings["Allow Code"] = "Permetti codice";
+$a->strings["Disallow Code"] = "Non permettere codice";
+$a->strings["UID"] = "UID";
+$a->strings["Address"] = "Indirizzo";
+$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?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?";
+$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?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?";
+$a->strings["Plugin %s disabled."] = "Plugin %s non attivo.";
+$a->strings["Plugin %s enabled."] = "Plugin %s attivo.";
+$a->strings["Disable"] = "Disattiva";
+$a->strings["Enable"] = "Attiva";
+$a->strings["Toggle"] = "Attiva/disattiva";
+$a->strings["Author: "] = "Autore:";
+$a->strings["Maintainer: "] = "Gestore:";
+$a->strings["Minimum project version: "] = "Minima versione hubzilla";
+$a->strings["Maximum project version: "] = "Massima versione hubzilla";
+$a->strings["Minimum PHP version: "] = "Minima versione PHP:";
+$a->strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione";
+$a->strings["No themes found."] = "Nessun tema trovato.";
+$a->strings["Screenshot"] = "Istantanea dello schermo";
+$a->strings["[Experimental]"] = "[Sperimentale]";
+$a->strings["[Unsupported]"] = "[Non supportato]";
+$a->strings["Log settings updated."] = "Impostazioni di log aggiornate.";
+$a->strings["Clear"] = "Pulisci";
+$a->strings["Debugging"] = "Debugging";
+$a->strings["Log file"] = "File di log";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla.";
+$a->strings["Log level"] = "Livello di log";
+$a->strings["New Profile Field"] = "Nuovo campo del profilo";
+$a->strings["Field nickname"] = "Nome breve del campo";
+$a->strings["System name of field"] = "Nome di sistema del campo";
+$a->strings["Input type"] = "Tipo di dati";
+$a->strings["Field Name"] = "Nome del campo";
+$a->strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo";
+$a->strings["Help text"] = "Testo di aiuto";
+$a->strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)";
+$a->strings["Field definition not found"] = "Impossibile trovare la definizione del campo";
+$a->strings["Edit Profile Field"] = "Modifica campo del profilo";
+$a->strings["Poke somebody"] = "Manda un poke";
$a->strings["Poke/Prod"] = "Poke/Prod";
-$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro";
+$a->strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno";
$a->strings["Recipient"] = "Destinatario";
$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario";
$a->strings["Make this post private"] = "Rendi privato questo post";
@@ -1894,7 +1908,7 @@ $a->strings["Redirect"] = "Redirect";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione";
$a->strings["Icon url"] = "Url icona";
$a->strings["Optional"] = "Facoltativo";
-$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
+$a->strings["Application not found."] = "Applicazione non trovata.";
$a->strings["Connected Apps"] = "App connesse";
$a->strings["Client key starts with"] = "La client key inizia con";
$a->strings["No name"] = "Nessun nome";
@@ -2039,6 +2053,8 @@ $a->strings["Website URL"] = "URL completo del sito";
$a->strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https).";
$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub";
$a->strings["Site settings"] = "Impostazioni del hub";
+$a->strings["Enable \$Projectname <strong>advanced</strong> features?"] = "Vuoi attivare le funzionalità <strong>avanzate</strong> di \$Projectname?";
+$a->strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato.";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron.";
$a->strings["PHP executable path"] = "Path del comando PHP";
diff --git a/view/js/main.js b/view/js/main.js
index f75f1f095..04b317914 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -617,8 +617,8 @@ function updateConvItems(mode,data) {
/* autocomplete @nicknames */
$(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1");
-/*
- var bimgs = $(".wall-item-body img").not(function() { return this.complete; });
+
+ var bimgs = ((preloadImages) ? false : $(".wall-item-body img").not(function() { return this.complete; }));
var bimgcount = bimgs.length;
if (bimgcount) {
@@ -631,37 +631,49 @@ function updateConvItems(mode,data) {
} else {
collapseHeight();
}
-*/
- collapseHeight();
}
function collapseHeight() {
var origContentHeight = parseInt($("#region_2").height());
+ var cDiff = 0;
+ var i = 0;
+ var position = $(window).scrollTop();
+
$(".wall-item-content, .directory-collapse").each(function() {
var orgHeight = parseInt($(this).css('height'));
if(orgHeight > divmore_height) {
if(! $(this).hasClass('divmore')) {
- var trigger = $(window).scrollTop() < $(this).offset().top ? true : false;
-
- if(trigger) {
- $(this).readmore({
- speed: 0,
- heightMargin: 50,
- collapsedHeight: divmore_height,
- moreLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowmore + '</a>',
- lessLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowless + '</a>',
- beforeToggle: function(trigger, element, expanded) {
- if(expanded) {
- if((($(element).offset().top + divmore_height) - $(window).scrollTop()) < 65 ) {
- $(window).scrollTop($(window).scrollTop() - (orgHeight - divmore_height));
- }
+ //var trigger = $(window).scrollTop() < $(this).offset().top ? true : false;
+ //console.log($(this).offset().top + divmore_height - $(window).scrollTop() + cDiff - ($(".divgrow-showmore").outerHeight() * i));
+
+ // check if we will collapse some content above the visible content and compensate the diff later
+ if($(this).offset().top + divmore_height - $(window).scrollTop() + cDiff - ($(".divgrow-showmore").outerHeight() * i) < 65) {
+ //$(this).css('color', 'red');
+ //console.log($(this).offset().top + divmore_height + ' / ' + $(window).scrollTop());
+ diff = orgHeight - divmore_height;
+ cDiff = cDiff + diff;
+ i++;
+ }
+
+ //if(trigger) {
+ $(this).readmore({
+ speed: 0,
+ heightMargin: 50,
+ collapsedHeight: divmore_height,
+ moreLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowmore + '</a>',
+ lessLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowless + '</a>',
+ beforeToggle: function(trigger, element, expanded) {
+ if(expanded) {
+ if((($(element).offset().top + divmore_height) - $(window).scrollTop()) < 65 ) {
+ $(window).scrollTop($(window).scrollTop() - (orgHeight - divmore_height));
}
}
- });
- $(this).addClass('divmore');
- }
+ }
+ });
+ $(this).addClass('divmore');
+ //}
}
}
});
@@ -670,6 +682,12 @@ function collapseHeight() {
contentHeightDiff = origContentHeight - collapsedContentHeight;
console.log('collapseHeight() - contentHeightDiff: ' + contentHeightDiff + 'px');
+ if(i){
+ var sval = position - cDiff + ($(".divgrow-showmore").outerHeight() * i);
+ console.log('collapsed above viewport count: ' + i);
+ $(window).scrollTop(sval);
+ }
+
}
@@ -721,39 +739,67 @@ function liveUpdate() {
$.get(update_url, function(data) {
var dready = new Date();
console.log('DATA ready in: ' + (dready - dstart)/1000 + ' seconds.');
- console.log('LOADING images...');
- $('.wall-item-body, .wall-photo-item',data).imagesLoaded( function() {
- var iready = new Date();
- console.log('IMAGES ready in: ' + (iready - dready)/1000 + ' seconds.');
+ if(update_mode === 'update' || preloadImages) {
+ console.log('LOADING images...');
- page_load = false;
- scroll_next = false;
- updateConvItems(update_mode,data);
- $("#page-spinner").spin(false);
- $("#profile-jot-text-loading").spin(false);
+ $('.wall-item-body, .wall-photo-item',data).imagesLoaded( function() {
+ var iready = new Date();
+ console.log('IMAGES ready in: ' + (iready - dready)/1000 + ' seconds.');
- if(update_mode === 'update') {
- $(window).scrollTop($(window).scrollTop() + $("#region_2").height() - orgHeight + contentHeightDiff);
- }
+ page_load = false;
+ scroll_next = false;
+ updateConvItems(update_mode,data);
+ $("#page-spinner").spin(false);
+ $("#profile-jot-text-loading").spin(false);
- in_progress = false;
+ // adjust scroll position if new content was added above viewport
+ if(update_mode === 'update') {
+ $(window).scrollTop($(window).scrollTop() + $("#region_2").height() - orgHeight + contentHeightDiff);
+ }
- // FIXME - the following lines were added so that almost
- // immediately after we update the posts on the page, we
- // re-check and update the notification counts.
- // As it turns out this causes a bit of an inefficiency
- // as we're pinging twice for every update, once before
- // and once after. A btter way to do this is to rewrite
- // NavUpdate and perhaps LiveUpdate so that we check for
- // post updates first and only call the notification ping
- // once.
+ in_progress = false;
- updateCountsOnly = true;
- if(timer) clearTimeout(timer);
- timer = setTimeout(NavUpdate,10);
+ // FIXME - the following lines were added so that almost
+ // immediately after we update the posts on the page, we
+ // re-check and update the notification counts.
+ // As it turns out this causes a bit of an inefficiency
+ // as we're pinging twice for every update, once before
+ // and once after. A btter way to do this is to rewrite
+ // NavUpdate and perhaps LiveUpdate so that we check for
+ // post updates first and only call the notification ping
+ // once.
- });
+ updateCountsOnly = true;
+ if(timer) clearTimeout(timer);
+ timer = setTimeout(NavUpdate,10);
+
+ });
+ }
+ else {
+ page_load = false;
+ scroll_next = false;
+ updateConvItems(update_mode,data);
+ $("#page-spinner").spin(false);
+ $("#profile-jot-text-loading").spin(false);
+
+ in_progress = false;
+
+ // FIXME - the following lines were added so that almost
+ // immediately after we update the posts on the page, we
+ // re-check and update the notification counts.
+ // As it turns out this causes a bit of an inefficiency
+ // as we're pinging twice for every update, once before
+ // and once after. A btter way to do this is to rewrite
+ // NavUpdate and perhaps LiveUpdate so that we check for
+ // post updates first and only call the notification ping
+ // once.
+
+ updateCountsOnly = true;
+ if(timer) clearTimeout(timer);
+ timer = setTimeout(NavUpdate,10);
+
+ }
});
}
@@ -1231,21 +1277,8 @@ function zFormError(elm,x) {
$(window).scroll(function () {
if(typeof buildCmd == 'function') {
// This is a content page with items and/or conversations
- $('#more').hide();
- $('#no-more').hide();
-
- if($(window).scrollTop() + $(window).height() > $(document).height() - 200) {
- $('#more').css("top","400");
- $('#more').show();
- }
-
- if($(window).scrollTop() + $(window).height() > $(document).height() - 100) {
-// if($(window).scrollTop() > $(document).height() - ($(window).height() * 1.5 )) {
-
+ if($(window).scrollTop() + $(window).height() > $(document).height() - 300) {
if((pageHasMoreContent) && (! loadingPage)) {
- $('#more').hide();
- $('#no-more').hide();
-
next_page++;
scroll_next = true;
loadingPage = true;
@@ -1255,18 +1288,8 @@ $(window).scroll(function () {
}
else {
// This is some other kind of page - perhaps a directory
-
- if($(window).scrollTop() + $(window).height() > $(document).height() - 200) {
- $('#more').css("top","400");
- $('#more').show();
- }
-
- if($(window).scrollTop() + $(window).height() > $(document).height() - 100) {
-// if($(window).scrollTop() > ($(document).height() - $(window).height() * 1.5 )) {
+ if($(window).scrollTop() + $(window).height() > $(document).height() - 300) {
if((pageHasMoreContent) && (! loadingPage) && (! justifiedGalleryActive)) {
- $('#more').hide();
- $('#no-more').hide();
-
next_page++;
scroll_next = true;
loadingPage = true;
diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po
index 0cf652dc1..fbfe9b66a 100644
--- a/view/nl/hmessages.po
+++ b/view/nl/hmessages.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-02-05 00:03-0800\n"
-"PO-Revision-Date: 2016-02-09 15:11+0000\n"
+"POT-Creation-Date: 2016-02-12 00:03-0800\n"
+"PO-Revision-Date: 2016-02-14 15:08+0000\n"
"Last-Translator: jeroenpraat <jeroenpraat@xs4all.nl>\n"
"Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n"
"MIME-Version: 1.0\n"
@@ -31,8 +31,8 @@ msgid "Welcome %s. Remote authentication successful."
msgstr "Welkom %s. Authenticatie op afstand geslaagd."
#: ../../include/Contact.php:101 ../../include/conversation.php:961
-#: ../../include/identity.php:954 ../../include/widgets.php:137
-#: ../../include/widgets.php:175 ../../mod/directory.php:321
+#: ../../include/identity.php:954 ../../include/widgets.php:147
+#: ../../include/widgets.php:185 ../../mod/directory.php:321
#: ../../mod/match.php:64 ../../mod/suggest.php:52
msgid "Connect"
msgstr "Verbinden"
@@ -58,319 +58,10 @@ msgstr "Geen gebruikersnaam in het importbestand gevonden."
msgid "Unable to create a unique channel address. Import failed."
msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:496
msgid "Import completed."
msgstr "Import voltooid."
-#: ../../include/ItemObject.php:89 ../../include/conversation.php:664
-msgid "Private Message"
-msgstr "Niet voor iedereen zichtbaar"
-
-#: ../../include/ItemObject.php:100 ../../include/RedDAV/RedBrowser.php:240
-#: ../../include/apps.php:259 ../../include/menu.php:108
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../mod/blocks.php:153 ../../mod/connections.php:286
-#: ../../mod/connections.php:306 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
-#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
-#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
-#: ../../mod/webpages.php:181
-msgid "Edit"
-msgstr "Bewerken"
-
-#: ../../include/ItemObject.php:120 ../../include/RedDAV/RedBrowser.php:241
-#: ../../include/apps.php:260 ../../include/conversation.php:657
-#: ../../mod/blocks.php:155 ../../mod/connections.php:259
-#: ../../mod/connedit.php:560 ../../mod/editblock.php:181
-#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
-#: ../../mod/group.php:173 ../../mod/photos.php:1132 ../../mod/admin.php:993
-#: ../../mod/admin.php:1152 ../../mod/settings.php:649 ../../mod/thing.php:257
-#: ../../mod/webpages.php:183
-msgid "Delete"
-msgstr "Verwijderen"
-
-#: ../../include/ItemObject.php:126 ../../include/conversation.php:656
-msgid "Select"
-msgstr "Kies"
-
-#: ../../include/ItemObject.php:130
-msgid "Save to Folder"
-msgstr "In map opslaan"
-
-#: ../../include/ItemObject.php:151
-msgid "I will attend"
-msgstr "Aanwezig"
-
-#: ../../include/ItemObject.php:151
-msgid "I will not attend"
-msgstr "Niet aanwezig"
-
-#: ../../include/ItemObject.php:151
-msgid "I might attend"
-msgstr "Mogelijk aanwezig"
-
-#: ../../include/ItemObject.php:161
-msgid "I agree"
-msgstr "Eens"
-
-#: ../../include/ItemObject.php:161
-msgid "I disagree"
-msgstr "Oneens"
-
-#: ../../include/ItemObject.php:161
-msgid "I abstain"
-msgstr "Onthouding"
-
-#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187
-#: ../../include/conversation.php:1707 ../../mod/photos.php:1085
-#: ../../mod/photos.php:1097
-msgid "View all"
-msgstr "Toon alles"
-
-#: ../../include/ItemObject.php:179 ../../include/conversation.php:1731
-#: ../../include/taxonomy.php:415 ../../include/identity.php:1264
-#: ../../mod/photos.php:1089
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "vindt dit leuk"
-msgstr[1] "vinden dit leuk"
-
-#: ../../include/ItemObject.php:184 ../../include/conversation.php:1734
-#: ../../mod/photos.php:1094
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "vindt dit niet leuk"
-msgstr[1] "vinden dit niet leuk"
-
-#: ../../include/ItemObject.php:212
-msgid "Add Star"
-msgstr "Ster toevoegen"
-
-#: ../../include/ItemObject.php:213
-msgid "Remove Star"
-msgstr "Ster verwijderen"
-
-#: ../../include/ItemObject.php:214
-msgid "Toggle Star Status"
-msgstr "Ster toevoegen of verwijderen"
-
-#: ../../include/ItemObject.php:218
-msgid "starred"
-msgstr "met ster"
-
-#: ../../include/ItemObject.php:227 ../../include/conversation.php:671
-msgid "Message signature validated"
-msgstr "Berichtkenmerk gevalideerd"
-
-#: ../../include/ItemObject.php:228 ../../include/conversation.php:672
-msgid "Message signature incorrect"
-msgstr "Berichtkenmerk onjuist"
-
-#: ../../include/ItemObject.php:236
-msgid "Add Tag"
-msgstr "Tag toevoegen"
-
-#: ../../include/ItemObject.php:254 ../../mod/photos.php:1029
-msgid "I like this (toggle)"
-msgstr "Vind ik leuk"
-
-#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328
-msgid "like"
-msgstr "vind dit leuk"
-
-#: ../../include/ItemObject.php:255 ../../mod/photos.php:1030
-msgid "I don't like this (toggle)"
-msgstr "Vind ik niet leuk"
-
-#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329
-msgid "dislike"
-msgstr "vind dit niet leuk"
-
-#: ../../include/ItemObject.php:259
-msgid "Share This"
-msgstr "Delen"
-
-#: ../../include/ItemObject.php:259
-msgid "share"
-msgstr "delen"
-
-#: ../../include/ItemObject.php:268
-msgid "Delivery Report"
-msgstr "Afleveringsrapport"
-
-#: ../../include/ItemObject.php:286
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d reactie"
-msgstr[1] "%d reacties weergeven"
-
-#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Profiel van %s bekijken - %s"
-
-#: ../../include/ItemObject.php:319
-msgid "to"
-msgstr "aan"
-
-#: ../../include/ItemObject.php:320
-msgid "via"
-msgstr "via"
-
-#: ../../include/ItemObject.php:321
-msgid "Wall-to-Wall"
-msgstr "Kanaal-naar-kanaal"
-
-#: ../../include/ItemObject.php:322
-msgid "via Wall-To-Wall:"
-msgstr "via kanaal-naar-kanaal"
-
-#: ../../include/ItemObject.php:334 ../../include/conversation.php:719
-#, php-format
-msgid "from %s"
-msgstr "van %s"
-
-#: ../../include/ItemObject.php:337 ../../include/conversation.php:722
-#, php-format
-msgid "last edited: %s"
-msgstr "laatst bewerkt: %s"
-
-#: ../../include/ItemObject.php:338 ../../include/conversation.php:723
-#, php-format
-msgid "Expires: %s"
-msgstr "Verloopt: %s"
-
-#: ../../include/ItemObject.php:362
-msgid "Save Bookmarks"
-msgstr "Bladwijzers opslaan"
-
-#: ../../include/ItemObject.php:363
-msgid "Add to Calendar"
-msgstr "Aan agenda toevoegen"
-
-#: ../../include/ItemObject.php:372
-msgid "Mark all seen"
-msgstr "Markeer alles als bekeken"
-
-#: ../../include/ItemObject.php:378 ../../mod/photos.php:1215
-msgctxt "noun"
-msgid "Likes"
-msgstr "vinden dit leuk"
-
-#: ../../include/ItemObject.php:379 ../../mod/photos.php:1216
-msgctxt "noun"
-msgid "Dislikes"
-msgstr "vinden dit niet leuk"
-
-#: ../../include/ItemObject.php:384 ../../include/acl_selectors.php:252
-#: ../../mod/photos.php:1221
-msgid "Close"
-msgstr "Sluiten"
-
-#: ../../include/ItemObject.php:389 ../../include/conversation.php:740
-#: ../../include/conversation.php:1237 ../../mod/editblock.php:150
-#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
-#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1032
-msgid "Please wait"
-msgstr "Even wachten"
-
-#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7
-msgid "[+] show all"
-msgstr "[+] alle"
-
-#: ../../include/ItemObject.php:700 ../../mod/photos.php:1048
-#: ../../mod/photos.php:1166
-msgid "This is you"
-msgstr "Dit ben jij"
-
-#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1050 ../../mod/photos.php:1168
-msgid "Comment"
-msgstr "Reactie"
-
-#: ../../include/ItemObject.php:703 ../../include/js_strings.php:22
-#: ../../include/widgets.php:679 ../../include/widgets.php:691
-#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
-#: ../../mod/connect.php:93 ../../mod/connedit.php:720
-#: ../../mod/events.php:461 ../../mod/events.php:658
-#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/group.php:81 ../../mod/import.php:527
-#: ../../mod/import_items.php:116 ../../mod/invite.php:142
-#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
-#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
-#: ../../mod/photos.php:637 ../../mod/photos.php:1011
-#: ../../mod/photos.php:1051 ../../mod/photos.php:1169 ../../mod/admin.php:457
-#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
-#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
-#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
-#: ../../mod/rate.php:168 ../../mod/settings.php:586
-#: ../../mod/settings.php:698 ../../mod/settings.php:726
-#: ../../mod/settings.php:749 ../../mod/settings.php:834
-#: ../../mod/settings.php:1024 ../../mod/setup.php:332 ../../mod/setup.php:372
-#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
-#: ../../mod/thing.php:358 ../../mod/xchan.php:11
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
-msgstr "Opslaan"
-
-#: ../../include/ItemObject.php:704 ../../include/conversation.php:1209
-#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
-#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
-msgid "Bold"
-msgstr "Vet"
-
-#: ../../include/ItemObject.php:705 ../../include/conversation.php:1210
-#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
-#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
-msgid "Italic"
-msgstr "Cursief"
-
-#: ../../include/ItemObject.php:706 ../../include/conversation.php:1211
-#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
-#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
-msgid "Underline"
-msgstr "Onderstrepen"
-
-#: ../../include/ItemObject.php:707 ../../include/conversation.php:1212
-#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
-#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
-msgid "Quote"
-msgstr "Citeren"
-
-#: ../../include/ItemObject.php:708 ../../include/conversation.php:1213
-#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
-#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
-msgid "Code"
-msgstr "Broncode"
-
-#: ../../include/ItemObject.php:709
-msgid "Image"
-msgstr "Afbeelding"
-
-#: ../../include/ItemObject.php:710
-msgid "Insert Link"
-msgstr "Link invoegen"
-
-#: ../../include/ItemObject.php:711
-msgid "Video"
-msgstr "Video"
-
-#: ../../include/ItemObject.php:712 ../../include/conversation.php:1179
-#: ../../include/page_widgets.php:40 ../../mod/editblock.php:171
-#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
-#: ../../mod/events.php:458 ../../mod/photos.php:1052
-#: ../../mod/webpages.php:188
-msgid "Preview"
-msgstr "Voorvertoning"
-
-#: ../../include/ItemObject.php:715 ../../include/conversation.php:1267
-#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
-msgid "Encrypt text"
-msgstr "Tekst versleutelen"
-
#: ../../include/RedDAV/RedBrowser.php:107
#: ../../include/RedDAV/RedBrowser.php:239
msgid "parent"
@@ -402,8 +93,8 @@ msgstr "Planning-postvak UIT"
#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360
#: ../../include/apps.php:415 ../../include/conversation.php:1037
-#: ../../include/widgets.php:1387 ../../mod/photos.php:758
-#: ../../mod/photos.php:1201
+#: ../../include/widgets.php:1407 ../../mod/photos.php:766
+#: ../../mod/photos.php:1209
msgid "Unknown"
msgstr "Onbekend"
@@ -430,8 +121,8 @@ msgid "Create"
msgstr "Aanmaken"
#: ../../include/RedDAV/RedBrowser.php:231
-#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1400
-#: ../../mod/photos.php:785 ../../mod/photos.php:1325
+#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1420
+#: ../../mod/photos.php:793 ../../mod/photos.php:1333
#: ../../mod/profile_photo.php:453 ../../mod/cover_photo.php:353
msgid "Upload"
msgstr "Uploaden"
@@ -455,6 +146,29 @@ msgstr "Grootte"
msgid "Last Modified"
msgstr "Laatst gewijzigd"
+#: ../../include/RedDAV/RedBrowser.php:240 ../../include/apps.php:259
+#: ../../include/menu.php:108 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/ItemObject.php:100
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/settings.php:648 ../../mod/thing.php:256
+#: ../../mod/webpages.php:181
+msgid "Edit"
+msgstr "Bewerken"
+
+#: ../../include/RedDAV/RedBrowser.php:241 ../../include/apps.php:260
+#: ../../include/conversation.php:657 ../../include/ItemObject.php:120
+#: ../../mod/blocks.php:155 ../../mod/connections.php:259
+#: ../../mod/connedit.php:560 ../../mod/editblock.php:181
+#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
+#: ../../mod/group.php:173 ../../mod/photos.php:1140 ../../mod/admin.php:993
+#: ../../mod/admin.php:1152 ../../mod/settings.php:649 ../../mod/thing.php:257
+#: ../../mod/webpages.php:183
+msgid "Delete"
+msgstr "Verwijderen"
+
#: ../../include/RedDAV/RedBrowser.php:282
#, php-format
msgid "You are using %1$s of your available file storage."
@@ -571,11 +285,16 @@ msgid "Other networks and post services"
msgstr "Andere netwerken en diensten"
#: ../../include/acl_selectors.php:251 ../../mod/chat.php:211
-#: ../../mod/filestorage.php:147 ../../mod/photos.php:631
-#: ../../mod/photos.php:1004 ../../mod/thing.php:309 ../../mod/thing.php:355
+#: ../../mod/filestorage.php:147 ../../mod/photos.php:639
+#: ../../mod/photos.php:1012 ../../mod/thing.php:309 ../../mod/thing.php:355
msgid "Permissions"
msgstr "Permissies"
+#: ../../include/acl_selectors.php:252 ../../include/ItemObject.php:384
+#: ../../mod/photos.php:1229
+msgid "Close"
+msgstr "Sluiten"
+
#: ../../include/activities.php:42
msgid " and "
msgstr " en "
@@ -608,7 +327,7 @@ msgid "Site Admin"
msgstr "Hubbeheerder"
#: ../../include/apps.php:129 ../../include/conversation.php:1665
-#: ../../include/nav.php:103
+#: ../../include/nav.php:104
msgid "Bookmarks"
msgstr "Bladwijzers"
@@ -616,36 +335,36 @@ msgstr "Bladwijzers"
msgid "Address Book"
msgstr "Connecties"
-#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1518
+#: ../../include/apps.php:131 ../../include/nav.php:112 ../../boot.php:1518
msgid "Login"
msgstr "Inloggen"
-#: ../../include/apps.php:132 ../../include/nav.php:200
+#: ../../include/apps.php:132 ../../include/nav.php:203
#: ../../mod/manage.php:162
msgid "Channel Manager"
msgstr "Kanaalbeheer"
-#: ../../include/apps.php:133 ../../include/nav.php:174
+#: ../../include/apps.php:133 ../../include/nav.php:176
msgid "Grid"
msgstr "Grid"
-#: ../../include/apps.php:134 ../../include/nav.php:202
-#: ../../include/widgets.php:557 ../../mod/admin.php:1266
+#: ../../include/apps.php:134 ../../include/nav.php:205
+#: ../../include/widgets.php:577 ../../mod/admin.php:1266
#: ../../mod/admin.php:1488
msgid "Settings"
msgstr "Instellingen"
#: ../../include/apps.php:136 ../../include/conversation.php:1675
-#: ../../include/nav.php:107 ../../mod/webpages.php:178
+#: ../../include/nav.php:108 ../../mod/webpages.php:178
msgid "Webpages"
msgstr "Webpagina's"
-#: ../../include/apps.php:137 ../../include/nav.php:177
+#: ../../include/apps.php:137 ../../include/nav.php:179
msgid "Channel Home"
msgstr "Jouw kanaal"
-#: ../../include/apps.php:138 ../../include/identity.php:1238
-#: ../../include/identity.php:1355 ../../mod/profperm.php:112
+#: ../../include/apps.php:138 ../../include/identity.php:1242
+#: ../../include/identity.php:1359 ../../mod/profperm.php:112
msgid "Profile"
msgstr "Profiel"
@@ -654,20 +373,20 @@ msgstr "Profiel"
msgid "Photos"
msgstr "Foto's"
-#: ../../include/apps.php:140 ../../include/nav.php:196
+#: ../../include/apps.php:140 ../../include/nav.php:198
msgid "Events"
msgstr "Agenda"
-#: ../../include/apps.php:141 ../../include/nav.php:162
+#: ../../include/apps.php:141 ../../include/nav.php:164
msgid "Directory"
msgstr "Kanalengids"
-#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:208
+#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:208
#: ../../mod/help.php:213 ../../mod/layouts.php:176
msgid "Help"
msgstr "Hulp"
-#: ../../include/apps.php:143 ../../include/nav.php:188
+#: ../../include/apps.php:143 ../../include/nav.php:190
msgid "Mail"
msgstr "Privéberichten"
@@ -680,11 +399,11 @@ msgstr "Stemming"
msgid "Poke"
msgstr "Aanstoten"
-#: ../../include/apps.php:146 ../../include/nav.php:97
+#: ../../include/apps.php:146 ../../include/nav.php:98
msgid "Chat"
msgstr "Chatten"
-#: ../../include/apps.php:147 ../../include/nav.php:159
+#: ../../include/apps.php:147 ../../include/nav.php:161
#: ../../include/text.php:885 ../../include/text.php:897
#: ../../mod/connections.php:302 ../../mod/search.php:40
msgid "Search"
@@ -706,7 +425,7 @@ msgstr "Willekeurig kanaal"
msgid "Invite"
msgstr "Uitnodigen "
-#: ../../include/apps.php:152 ../../include/widgets.php:1273
+#: ../../include/apps.php:152 ../../include/widgets.php:1293
msgid "Features"
msgstr "Extra functies"
@@ -743,7 +462,7 @@ msgstr "Aanschaffen"
#: ../../include/attach.php:436 ../../include/attach.php:888
#: ../../include/attach.php:959 ../../include/attach.php:1111
#: ../../include/chat.php:133 ../../include/photos.php:29
-#: ../../include/items.php:4430 ../../index.php:186 ../../index.php:374
+#: ../../include/items.php:4437 ../../index.php:189 ../../index.php:377
#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22
#: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76
@@ -772,14 +491,14 @@ msgstr "Aanschaffen"
#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
#: ../../mod/service_limits.php:7 ../../mod/settings.php:568
-#: ../../mod/setup.php:228 ../../mod/sharedwithme.php:7
+#: ../../mod/setup.php:230 ../../mod/sharedwithme.php:7
#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
#: ../../mod/thing.php:290 ../../mod/thing.php:327
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69
#: ../../mod/cover_photo.php:273 ../../mod/cover_photo.php:286
msgid "Permission denied."
-msgstr "Toegang geweigerd"
+msgstr "Toegang geweigerd."
#: ../../include/attach.php:246 ../../include/attach.php:332
msgid "Item was not found."
@@ -1025,18 +744,18 @@ msgstr "Vrienden uitnodigen"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"
-#: ../../include/contact_widgets.php:57 ../../include/features.php:93
-#: ../../include/widgets.php:304
+#: ../../include/contact_widgets.php:57 ../../include/features.php:96
+#: ../../include/widgets.php:314
msgid "Saved Folders"
msgstr "Bewaarde mappen"
#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98
-#: ../../include/widgets.php:307
+#: ../../include/widgets.php:317
msgid "Everything"
msgstr "Alles"
#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:282
-#: ../../include/widgets.php:36
+#: ../../include/widgets.php:46
msgid "Categories"
msgstr "Categorieën"
@@ -1107,46 +826,62 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s is %2$s"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1066
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Likes"
msgstr "vinden dit leuk"
-#: ../../include/conversation.php:574 ../../mod/photos.php:1066
+#: ../../include/conversation.php:574 ../../mod/photos.php:1074
msgctxt "title"
msgid "Dislikes"
msgstr "vinden dit niet leuk"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1067
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Agree"
msgstr "eens"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1067
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Disagree"
msgstr "oneens"
-#: ../../include/conversation.php:575 ../../mod/photos.php:1067
+#: ../../include/conversation.php:575 ../../mod/photos.php:1075
msgctxt "title"
msgid "Abstain"
msgstr "onthoudingen"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1068
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Attending"
msgstr "aanwezig"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1068
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Not attending"
msgstr "niet aanwezig"
-#: ../../include/conversation.php:576 ../../mod/photos.php:1068
+#: ../../include/conversation.php:576 ../../mod/photos.php:1076
msgctxt "title"
msgid "Might attend"
msgstr "mogelijk aanwezig"
+#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
+msgid "Select"
+msgstr "Kies"
+
+#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
+msgid "Private Message"
+msgstr "Niet voor iedereen zichtbaar"
+
+#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
+msgid "Message signature validated"
+msgstr "Berichtkenmerk gevalideerd"
+
+#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
+msgid "Message signature incorrect"
+msgstr "Berichtkenmerk onjuist"
+
#: ../../include/conversation.php:691
#, php-format
msgid "View %s's profile @ %s"
@@ -1160,15 +895,37 @@ msgstr "Categorieën:"
msgid "Filed under:"
msgstr "Bewaard onder:"
+#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
+#, php-format
+msgid "from %s"
+msgstr "van %s"
+
+#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
+#, php-format
+msgid "last edited: %s"
+msgstr "laatst bewerkt: %s"
+
+#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
+#, php-format
+msgid "Expires: %s"
+msgstr "Verloopt: %s"
+
#: ../../include/conversation.php:738
msgid "View in context"
msgstr "In context bekijken"
+#: ../../include/conversation.php:740 ../../include/conversation.php:1237
+#: ../../include/ItemObject.php:389 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1040
+msgid "Please wait"
+msgstr "Even wachten"
+
#: ../../include/conversation.php:850
msgid "remove"
msgstr "verwijderen"
-#: ../../include/conversation.php:854 ../../include/nav.php:241
+#: ../../include/conversation.php:854 ../../include/nav.php:244
msgid "Loading..."
msgstr "Aan het laden..."
@@ -1288,8 +1045,16 @@ msgstr "Waar bevind je je op dit moment?"
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Verloopt op DD-MM-YYYY om HH:MM"
+#: ../../include/conversation.php:1179 ../../include/page_widgets.php:40
+#: ../../include/ItemObject.php:712 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:458 ../../mod/photos.php:1060
+#: ../../mod/webpages.php:188
+msgid "Preview"
+msgstr "Voorvertoning"
+
#: ../../include/conversation.php:1202 ../../mod/blocks.php:154
-#: ../../mod/layouts.php:184 ../../mod/photos.php:1031
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1039
#: ../../mod/webpages.php:182
msgid "Share"
msgstr "Delen"
@@ -1302,6 +1067,36 @@ msgstr "Linknaam pagina"
msgid "Post as"
msgstr "Bericht plaatsen als"
+#: ../../include/conversation.php:1209 ../../include/ItemObject.php:704
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
+msgid "Bold"
+msgstr "Vet"
+
+#: ../../include/conversation.php:1210 ../../include/ItemObject.php:705
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
+msgid "Italic"
+msgstr "Cursief"
+
+#: ../../include/conversation.php:1211 ../../include/ItemObject.php:706
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
+msgid "Underline"
+msgstr "Onderstrepen"
+
+#: ../../include/conversation.php:1212 ../../include/ItemObject.php:707
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
+msgid "Quote"
+msgstr "Citeren"
+
+#: ../../include/conversation.php:1213 ../../include/ItemObject.php:708
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
+msgid "Code"
+msgstr "Broncode"
+
#: ../../include/conversation.php:1214 ../../mod/editblock.php:142
#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
#: ../../mod/editwebpage.php:182
@@ -1415,6 +1210,11 @@ msgstr "Verloopdatum instellen"
msgid "Set publish date"
msgstr "Publicatiedatum instellen"
+#: ../../include/conversation.php:1267 ../../include/ItemObject.php:715
+#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
+msgid "Encrypt text"
+msgstr "Tekst versleutelen"
+
#: ../../include/conversation.php:1269 ../../mod/editpost.php:159
msgid "OK"
msgstr "OK"
@@ -1450,7 +1250,7 @@ msgstr "Nieuwe berichten bovenaan"
msgid "Sort by Post Date"
msgstr "Nieuwe berichten bovenaan"
-#: ../../include/conversation.php:1536 ../../include/widgets.php:95
+#: ../../include/conversation.php:1536 ../../include/widgets.php:105
msgid "Personal"
msgstr "Persoonlijk"
@@ -1519,6 +1319,29 @@ msgstr "Opgeslagen bladwijzers"
msgid "Manage Webpages"
msgstr "Webpagina's beheren"
+#: ../../include/conversation.php:1707 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1093
+#: ../../mod/photos.php:1105
+msgid "View all"
+msgstr "Toon alles"
+
+#: ../../include/conversation.php:1731 ../../include/taxonomy.php:415
+#: ../../include/identity.php:1268 ../../include/ItemObject.php:179
+#: ../../mod/photos.php:1097
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "vindt dit leuk"
+msgstr[1] "vinden dit leuk"
+
+#: ../../include/conversation.php:1734 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1102
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "vindt dit niet leuk"
+msgstr[1] "vinden dit niet leuk"
+
#: ../../include/conversation.php:1737
msgctxt "noun"
msgid "Attending"
@@ -1574,7 +1397,7 @@ msgstr "JJJJ-MM-DD of MM-DD"
msgid "Required"
msgstr "Vereist"
-#: ../../include/datetime.php:263 ../../boot.php:2348
+#: ../../include/datetime.php:263 ../../boot.php:2349
msgid "never"
msgstr "nooit"
@@ -1674,7 +1497,7 @@ msgstr "Veilig zoeken"
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../mod/photos.php:626 ../../mod/admin.php:425 ../../mod/removeme.php:60
+#: ../../mod/photos.php:634 ../../mod/admin.php:425 ../../mod/removeme.php:60
#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
msgid "No"
@@ -1686,7 +1509,7 @@ msgstr "Nee"
#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../mod/photos.php:626 ../../mod/admin.php:427 ../../mod/removeme.php:60
+#: ../../mod/photos.php:634 ../../mod/admin.php:427 ../../mod/removeme.php:60
#: ../../mod/settings.php:577 ../../view/theme/redbasic/php/config.php:104
#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1522
msgid "Yes"
@@ -1775,7 +1598,7 @@ msgstr "Alle kanalen"
msgid "edit"
msgstr "bewerken"
-#: ../../include/group.php:295 ../../include/features.php:79
+#: ../../include/group.php:295 ../../include/features.php:82
msgid "Privacy Groups"
msgstr "Privacygroepen"
@@ -1791,7 +1614,7 @@ msgstr "Privacygroep toevoegen"
msgid "Channels not in any privacy group"
msgstr "Kanalen die zich in geen enkele privacygroep bevinden"
-#: ../../include/group.php:300 ../../include/widgets.php:275
+#: ../../include/group.php:300 ../../include/widgets.php:285
msgid "add"
msgstr "toevoegen"
@@ -1804,7 +1627,7 @@ msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren m
msgid "Channel clone failed. Import failed."
msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt."
-#: ../../include/import.php:80 ../../mod/import.php:139
+#: ../../include/import.php:80 ../../mod/import.php:148
msgid "Cloned channel not found. Import failed."
msgstr "Gekloond kanaal niet gevonden. Importeren mislukt."
@@ -1812,6 +1635,15 @@ msgstr "Gekloond kanaal niet gevonden. Importeren mislukt."
msgid "Delete this item?"
msgstr "Dit item verwijderen?"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:702
+#: ../../mod/photos.php:1058 ../../mod/photos.php:1176
+msgid "Comment"
+msgstr "Reactie"
+
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:413
+msgid "[+] show all"
+msgstr "[+] alle"
+
#: ../../include/js_strings.php:8
msgid "[-] show less"
msgstr "[-] minder reacties weergeven"
@@ -1869,6 +1701,31 @@ msgstr "Beoordeling"
msgid "Describe (optional)"
msgstr "Omschrijving (optioneel)"
+#: ../../include/js_strings.php:22 ../../include/widgets.php:699
+#: ../../include/widgets.php:711 ../../include/ItemObject.php:703
+#: ../../mod/appman.php:99 ../../mod/chat.php:184 ../../mod/chat.php:213
+#: ../../mod/connect.php:93 ../../mod/connedit.php:720
+#: ../../mod/events.php:461 ../../mod/events.php:658
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/group.php:81 ../../mod/import.php:536
+#: ../../mod/import_items.php:116 ../../mod/invite.php:142
+#: ../../mod/locs.php:116 ../../mod/mail.php:380 ../../mod/mitem.php:231
+#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:59
+#: ../../mod/photos.php:645 ../../mod/photos.php:1019
+#: ../../mod/photos.php:1059 ../../mod/photos.php:1177 ../../mod/admin.php:457
+#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
+#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
+#: ../../mod/admin.php:1606 ../../mod/poke.php:182 ../../mod/profiles.php:675
+#: ../../mod/rate.php:168 ../../mod/settings.php:586
+#: ../../mod/settings.php:698 ../../mod/settings.php:726
+#: ../../mod/settings.php:749 ../../mod/settings.php:834
+#: ../../mod/settings.php:1025 ../../mod/setup.php:333 ../../mod/setup.php:374
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/thing.php:312
+#: ../../mod/thing.php:358 ../../mod/xchan.php:11
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr "Opslaan"
+
#: ../../include/js_strings.php:23
msgid "Please enter a link URL"
msgstr "Vul een internetadres/URL in:"
@@ -2150,15 +2007,15 @@ msgstr "Afzender kan niet bepaald worden."
msgid "Stored post could not be verified."
msgstr "Opgeslagen bericht kon niet worden geverifieerd."
-#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1517
+#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1517
msgid "Logout"
msgstr "Uitloggen"
-#: ../../include/nav.php:82 ../../include/nav.php:114
+#: ../../include/nav.php:82 ../../include/nav.php:115
msgid "End this session"
msgstr "Beëindig deze sessie"
-#: ../../include/nav.php:85 ../../include/nav.php:145
+#: ../../include/nav.php:85 ../../include/nav.php:146
msgid "Home"
msgstr "Home"
@@ -2194,162 +2051,162 @@ msgstr "Jouw foto's"
msgid "Your files"
msgstr "Jouw bestanden"
-#: ../../include/nav.php:97
+#: ../../include/nav.php:98
msgid "Your chatrooms"
msgstr "Jouw chatkanalen"
-#: ../../include/nav.php:103
+#: ../../include/nav.php:104
msgid "Your bookmarks"
msgstr "Jouw bladwijzers"
-#: ../../include/nav.php:107
+#: ../../include/nav.php:108
msgid "Your webpages"
msgstr "Jouw webpagina's"
-#: ../../include/nav.php:111
+#: ../../include/nav.php:112
msgid "Sign in"
msgstr "Inloggen"
-#: ../../include/nav.php:128
+#: ../../include/nav.php:129
#, php-format
msgid "%s - click to logout"
msgstr "%s - klik om uit te loggen"
-#: ../../include/nav.php:131
+#: ../../include/nav.php:132
msgid "Remote authentication"
msgstr "Authenticatie op afstand"
-#: ../../include/nav.php:131
+#: ../../include/nav.php:132
msgid "Click to authenticate to your home hub"
msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub"
-#: ../../include/nav.php:145
+#: ../../include/nav.php:146
msgid "Home Page"
msgstr "Homepage"
-#: ../../include/nav.php:149 ../../mod/register.php:264 ../../boot.php:1500
+#: ../../include/nav.php:150 ../../mod/register.php:264 ../../boot.php:1500
msgid "Register"
msgstr "Registreren"
-#: ../../include/nav.php:149
+#: ../../include/nav.php:150
msgid "Create an account"
msgstr "Maak een account aan"
-#: ../../include/nav.php:154
+#: ../../include/nav.php:155
msgid "Help and documentation"
msgstr "Hulp en documentatie"
-#: ../../include/nav.php:157 ../../include/widgets.php:92
+#: ../../include/nav.php:159 ../../include/widgets.php:102
#: ../../mod/apps.php:36
msgid "Apps"
msgstr "Apps"
-#: ../../include/nav.php:157
+#: ../../include/nav.php:159
msgid "Applications, utilities, links, games"
msgstr "Apps"
-#: ../../include/nav.php:159
+#: ../../include/nav.php:161
msgid "Search site @name, #tag, ?docs, content"
msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "
-#: ../../include/nav.php:162
+#: ../../include/nav.php:164
msgid "Channel Directory"
msgstr "Kanalengids"
-#: ../../include/nav.php:174
+#: ../../include/nav.php:176
msgid "Your grid"
msgstr "Jouw grid"
-#: ../../include/nav.php:175
+#: ../../include/nav.php:177
msgid "Mark all grid notifications seen"
msgstr "Markeer alle gridnotificaties als bekeken"
-#: ../../include/nav.php:177
+#: ../../include/nav.php:179
msgid "Channel home"
msgstr "Jouw kanaal"
-#: ../../include/nav.php:178
+#: ../../include/nav.php:180
msgid "Mark all channel notifications seen"
msgstr "Alle kanaalnotificaties als gelezen markeren"
-#: ../../include/nav.php:181 ../../include/text.php:815
+#: ../../include/nav.php:183 ../../include/text.php:815
#: ../../mod/connections.php:298
msgid "Connections"
msgstr "Connecties"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:186
msgid "Notices"
msgstr "Notificaties"
-#: ../../include/nav.php:184
+#: ../../include/nav.php:186
msgid "Notifications"
msgstr "Notificaties"
-#: ../../include/nav.php:185
+#: ../../include/nav.php:187
msgid "See all notifications"
msgstr "Alle notificaties weergeven"
-#: ../../include/nav.php:186 ../../mod/notifications.php:99
+#: ../../include/nav.php:188 ../../mod/notifications.php:99
msgid "Mark all system notifications seen"
msgstr "Markeer alle systeemnotificaties als bekeken"
-#: ../../include/nav.php:188
+#: ../../include/nav.php:190
msgid "Private mail"
msgstr "Privéberichten"
-#: ../../include/nav.php:189
+#: ../../include/nav.php:191
msgid "See all private messages"
msgstr "Alle privéberichten weergeven"
-#: ../../include/nav.php:190
+#: ../../include/nav.php:192
msgid "Mark all private messages seen"
msgstr "Markeer alle privéberichten als bekeken"
-#: ../../include/nav.php:191 ../../include/widgets.php:578
+#: ../../include/nav.php:193 ../../include/widgets.php:598
msgid "Inbox"
msgstr "Postvak IN"
-#: ../../include/nav.php:192 ../../include/widgets.php:583
+#: ../../include/nav.php:194 ../../include/widgets.php:603
msgid "Outbox"
msgstr "Postvak UIT"
-#: ../../include/nav.php:193 ../../include/widgets.php:588
+#: ../../include/nav.php:195 ../../include/widgets.php:608
msgid "New Message"
msgstr "Nieuw bericht"
-#: ../../include/nav.php:196
+#: ../../include/nav.php:198
msgid "Event Calendar"
msgstr "Agenda"
-#: ../../include/nav.php:197
+#: ../../include/nav.php:199
msgid "See all events"
msgstr "Alle gebeurtenissen weergeven"
-#: ../../include/nav.php:198
+#: ../../include/nav.php:200
msgid "Mark all events seen"
msgstr "Markeer alle gebeurtenissen als bekeken"
-#: ../../include/nav.php:200
+#: ../../include/nav.php:203
msgid "Manage Your Channels"
msgstr "Beheer je kanalen"
-#: ../../include/nav.php:202
+#: ../../include/nav.php:205
msgid "Account/Channel Settings"
msgstr "Account-/kanaal-instellingen"
-#: ../../include/nav.php:210 ../../include/widgets.php:1300
+#: ../../include/nav.php:213 ../../include/widgets.php:1320
msgid "Admin"
msgstr "Beheer"
-#: ../../include/nav.php:210
+#: ../../include/nav.php:213
msgid "Site Setup and Configuration"
msgstr "Hub instellen en beheren"
-#: ../../include/nav.php:246
+#: ../../include/nav.php:249
msgid "@name, #tag, ?doc, content"
msgstr "@kanaal, #tag, inhoud, ?hulp"
-#: ../../include/nav.php:247
+#: ../../include/nav.php:250
msgid "Please wait..."
msgstr "Wachten aub..."
@@ -2419,7 +2276,7 @@ msgid "Edited"
msgstr "Bewerkt"
#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94
-#: ../../mod/photos.php:703 ../../mod/profile_photo.php:147
+#: ../../mod/photos.php:711 ../../mod/profile_photo.php:147
#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379
msgid "Profile Photos"
msgstr "Profielfoto's"
@@ -2611,7 +2468,7 @@ msgstr "Seksverslaafd"
#: ../../include/profile_selectors.php:80 ../../include/identity.php:390
#: ../../include/identity.php:391 ../../include/identity.php:398
-#: ../../include/widgets.php:430 ../../mod/connedit.php:582
+#: ../../include/widgets.php:451 ../../mod/connedit.php:582
#: ../../mod/settings.php:338 ../../mod/settings.php:342
#: ../../mod/settings.php:343 ../../mod/settings.php:346
#: ../../mod/settings.php:357
@@ -2738,10 +2595,18 @@ msgstr "wil"
msgid "wants"
msgstr "wil"
+#: ../../include/taxonomy.php:328 ../../include/ItemObject.php:254
+msgid "like"
+msgstr "vind dit leuk"
+
#: ../../include/taxonomy.php:328
msgid "likes"
msgstr "vindt dit leuk"
+#: ../../include/taxonomy.php:329 ../../include/ItemObject.php:255
+msgid "dislike"
+msgstr "vind dit niet leuk"
+
#: ../../include/taxonomy.php:329
msgid "dislikes"
msgstr "vindt dit niet leuk"
@@ -2759,7 +2624,7 @@ msgstr "Kanaalkenmerk kon niet worden geverifieerd. "
msgid "Unable to verify site signature for %s"
msgstr "Hubkenmerk voor %s kon niet worden geverifieerd"
-#: ../../include/zot.php:3585
+#: ../../include/zot.php:3591
msgid "invalid target signature"
msgstr "ongeldig doelkenmerk"
@@ -2863,7 +2728,7 @@ msgid "View all %s connections"
msgstr "Toon alle %s connecties"
#: ../../include/text.php:886 ../../include/text.php:898
-#: ../../include/widgets.php:192 ../../mod/filer.php:49
+#: ../../include/widgets.php:202 ../../mod/filer.php:49
#: ../../mod/admin.php:1666 ../../mod/admin.php:1686 ../../mod/rbmark.php:28
#: ../../mod/rbmark.php:100
msgid "Save"
@@ -3069,76 +2934,76 @@ msgstr "Lay-outs"
msgid "Pages"
msgstr "Pagina's"
-#: ../../include/items.php:423 ../../index.php:373 ../../mod/dreport.php:6
+#: ../../include/items.php:423 ../../index.php:376 ../../mod/dreport.php:6
#: ../../mod/dreport.php:45 ../../mod/group.php:68
#: ../../mod/import_items.php:108 ../../mod/like.php:280
#: ../../mod/profperm.php:23 ../../mod/subthread.php:58
msgid "Permission denied"
msgstr "Toegang geweigerd"
-#: ../../include/items.php:1130 ../../include/items.php:1176
+#: ../../include/items.php:1137 ../../include/items.php:1183
msgid "(Unknown)"
msgstr "(Onbekend)"
-#: ../../include/items.php:1373
+#: ../../include/items.php:1380
msgid "Visible to anybody on the internet."
msgstr "Voor iedereen op het internet zichtbaar."
-#: ../../include/items.php:1375
+#: ../../include/items.php:1382
msgid "Visible to you only."
msgstr "Alleen voor jou zichtbaar."
-#: ../../include/items.php:1377
+#: ../../include/items.php:1384
msgid "Visible to anybody in this network."
msgstr "Voor iedereen in dit netwerk zichtbaar."
-#: ../../include/items.php:1379
+#: ../../include/items.php:1386
msgid "Visible to anybody authenticated."
msgstr "Voor iedereen die geauthenticeerd is zichtbaar."
-#: ../../include/items.php:1381
+#: ../../include/items.php:1388
#, php-format
msgid "Visible to anybody on %s."
msgstr "Voor iedereen op %s zichtbaar."
-#: ../../include/items.php:1383
+#: ../../include/items.php:1390
msgid "Visible to all connections."
msgstr "Voor alle connecties zichtbaar."
-#: ../../include/items.php:1385
+#: ../../include/items.php:1392
msgid "Visible to approved connections."
msgstr "Voor alle geaccepteerde connecties zichtbaar."
-#: ../../include/items.php:1387
+#: ../../include/items.php:1394
msgid "Visible to specific connections."
msgstr "Voor specifieke connecties zichtbaar."
-#: ../../include/items.php:4351 ../../mod/display.php:36
+#: ../../include/items.php:4358 ../../mod/display.php:36
#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
#: ../../mod/viewsrc.php:20
msgid "Item not found."
msgstr "Item niet gevonden."
-#: ../../include/items.php:4863 ../../mod/group.php:38 ../../mod/group.php:137
+#: ../../include/items.php:4870 ../../mod/group.php:38 ../../mod/group.php:137
msgid "Privacy group not found."
msgstr "Privacygroep niet gevonden"
-#: ../../include/items.php:4879
+#: ../../include/items.php:4886
msgid "Privacy group is empty."
msgstr "Privacygroep is leeg"
-#: ../../include/items.php:4886
+#: ../../include/items.php:4893
#, php-format
msgid "Privacy group: %s"
msgstr "Privacygroep: %s"
-#: ../../include/items.php:4896 ../../mod/connedit.php:692
+#: ../../include/items.php:4903 ../../mod/connedit.php:692
#, php-format
msgid "Connection: %s"
msgstr "Connectie: %s"
-#: ../../include/items.php:4898
+#: ../../include/items.php:4905
msgid "Connection not found."
msgstr "Connectie niet gevonden."
@@ -3321,277 +3186,277 @@ msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen."
msgid "[Hubzilla:Notify]"
msgstr "[Hubzilla:Notificatie]"
-#: ../../include/features.php:45
+#: ../../include/features.php:48
msgid "General Features"
msgstr "Algemene functies"
-#: ../../include/features.php:47
+#: ../../include/features.php:50
msgid "Content Expiration"
msgstr "Inhoud laten verlopen"
-#: ../../include/features.php:47
+#: ../../include/features.php:50
msgid "Remove posts/comments and/or private messages at a future time"
msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"
-#: ../../include/features.php:48
+#: ../../include/features.php:51
msgid "Multiple Profiles"
msgstr "Meerdere profielen"
-#: ../../include/features.php:48
+#: ../../include/features.php:51
msgid "Ability to create multiple profiles"
msgstr "Mogelijkheid om meerdere profielen aan te maken"
-#: ../../include/features.php:49
+#: ../../include/features.php:52
msgid "Advanced Profiles"
msgstr "Geavanceerde profielen"
-#: ../../include/features.php:49
+#: ../../include/features.php:52
msgid "Additional profile sections and selections"
msgstr "Extra onderdelen en keuzes voor je profiel"
-#: ../../include/features.php:50
+#: ../../include/features.php:53
msgid "Profile Import/Export"
msgstr "Profiel importen/exporteren"
-#: ../../include/features.php:50
+#: ../../include/features.php:53
msgid "Save and load profile details across sites/channels"
msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."
-#: ../../include/features.php:51
+#: ../../include/features.php:54
msgid "Web Pages"
msgstr "Webpagina's"
-#: ../../include/features.php:51
+#: ../../include/features.php:54
msgid "Provide managed web pages on your channel"
msgstr "Sta beheerde webpagina's op jouw kanaal toe"
-#: ../../include/features.php:52
+#: ../../include/features.php:55
msgid "Hide Rating"
msgstr "Beoordelingen verbergen"
-#: ../../include/features.php:52
+#: ../../include/features.php:55
msgid ""
"Hide the rating buttons on your channel and profile pages. Note: People can "
"still rate you somewhere else."
msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "
-#: ../../include/features.php:53
+#: ../../include/features.php:56
msgid "Private Notes"
msgstr "Privé-aantekeningen"
-#: ../../include/features.php:53
+#: ../../include/features.php:56
msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"
-#: ../../include/features.php:54
+#: ../../include/features.php:57
msgid "Navigation Channel Select"
msgstr "Kanaal kiezen in navigatiemenu"
-#: ../../include/features.php:54
+#: ../../include/features.php:57
msgid "Change channels directly from within the navigation dropdown menu"
msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"
-#: ../../include/features.php:55
+#: ../../include/features.php:58
msgid "Photo Location"
msgstr "Fotolocatie"
-#: ../../include/features.php:55
+#: ../../include/features.php:58
msgid "If location data is available on uploaded photos, link this to a map."
msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."
-#: ../../include/features.php:57
+#: ../../include/features.php:60
msgid "Expert Mode"
msgstr "Expertmodus"
-#: ../../include/features.php:57
+#: ../../include/features.php:60
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Schakel de expertmodus in voor geavanceerde instellingen"
-#: ../../include/features.php:58
+#: ../../include/features.php:61
msgid "Premium Channel"
msgstr "Premiumkanaal"
-#: ../../include/features.php:58
+#: ../../include/features.php:61
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"
-#: ../../include/features.php:63
+#: ../../include/features.php:66
msgid "Post Composition Features"
msgstr "Functies voor het opstellen van berichten"
-#: ../../include/features.php:65
+#: ../../include/features.php:68
msgid "Use Markdown"
msgstr "Markdown gebruiken"
-#: ../../include/features.php:65
+#: ../../include/features.php:68
msgid "Allow use of \"Markdown\" to format posts"
msgstr "Sta het gebruik van \"markdown\" toe om berichten mee op te maken."
-#: ../../include/features.php:66
+#: ../../include/features.php:69
msgid "Large Photos"
msgstr "Grote foto's"
-#: ../../include/features.php:66
+#: ../../include/features.php:69
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."
-#: ../../include/features.php:67 ../../include/widgets.php:549
+#: ../../include/features.php:70 ../../include/widgets.php:569
#: ../../mod/sources.php:88
msgid "Channel Sources"
msgstr "Kanaalbronnen"
-#: ../../include/features.php:67
+#: ../../include/features.php:70
msgid "Automatically import channel content from other channels or feeds"
msgstr "Automatisch inhoud uit andere kanalen of feeds importeren."
-#: ../../include/features.php:68
+#: ../../include/features.php:71
msgid "Even More Encryption"
msgstr "Extra encryptie"
-#: ../../include/features.php:68
+#: ../../include/features.php:71
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."
-#: ../../include/features.php:69
+#: ../../include/features.php:72
msgid "Enable Voting Tools"
msgstr "Peilingen inschakelen"
-#: ../../include/features.php:69
+#: ../../include/features.php:72
msgid "Provide a class of post which others can vote on"
msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."
-#: ../../include/features.php:70
+#: ../../include/features.php:73
msgid "Delayed Posting"
msgstr "Berichten uitstellen"
-#: ../../include/features.php:70
+#: ../../include/features.php:73
msgid "Allow posts to be published at a later date"
msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."
-#: ../../include/features.php:71
+#: ../../include/features.php:74
msgid "Suppress Duplicate Posts/Comments"
msgstr "Dubbele berichten/reacties tegenhouden"
-#: ../../include/features.php:71
+#: ../../include/features.php:74
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "
-#: ../../include/features.php:77
+#: ../../include/features.php:80
msgid "Network and Stream Filtering"
msgstr "Netwerk- en streamfilter"
-#: ../../include/features.php:78
+#: ../../include/features.php:81
msgid "Search by Date"
msgstr "Zoek op datum"
-#: ../../include/features.php:78
+#: ../../include/features.php:81
msgid "Ability to select posts by date ranges"
msgstr "Mogelijkheid om berichten op datum te filteren "
-#: ../../include/features.php:79
+#: ../../include/features.php:82
msgid "Enable management and selection of privacy groups"
msgstr "Beheer en selectie van privacygroepen inschakelen"
-#: ../../include/features.php:80 ../../include/widgets.php:274
+#: ../../include/features.php:83 ../../include/widgets.php:284
msgid "Saved Searches"
msgstr "Opgeslagen zoekopdrachten"
-#: ../../include/features.php:80
+#: ../../include/features.php:83
msgid "Save search terms for re-use"
msgstr "Sla zoekopdrachten op voor hergebruik"
-#: ../../include/features.php:81
+#: ../../include/features.php:84
msgid "Network Personal Tab"
msgstr "Persoonlijke netwerktab"
-#: ../../include/features.php:81
+#: ../../include/features.php:84
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
-#: ../../include/features.php:82
+#: ../../include/features.php:85
msgid "Network New Tab"
msgstr "Nieuwe netwerktab"
-#: ../../include/features.php:82
+#: ../../include/features.php:85
msgid "Enable tab to display all new Network activity"
msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen"
-#: ../../include/features.php:83
+#: ../../include/features.php:86
msgid "Affinity Tool"
msgstr "Verwantschapsfilter"
-#: ../../include/features.php:83
+#: ../../include/features.php:86
msgid "Filter stream activity by depth of relationships"
msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"
-#: ../../include/features.php:84
+#: ../../include/features.php:87
msgid "Connection Filtering"
msgstr "Berichtenfilters"
-#: ../../include/features.php:84
+#: ../../include/features.php:87
msgid "Filter incoming posts from connections based on keywords/content"
msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"
-#: ../../include/features.php:85
+#: ../../include/features.php:88
msgid "Suggest Channels"
msgstr "Kanalen voorstellen"
-#: ../../include/features.php:85
+#: ../../include/features.php:88
msgid "Show channel suggestions"
msgstr "Voor jou mogelijk interessante kanalen voorstellen"
-#: ../../include/features.php:90
+#: ../../include/features.php:93
msgid "Post/Comment Tools"
msgstr "Bericht- en reactiehulpmiddelen"
-#: ../../include/features.php:91
+#: ../../include/features.php:94
msgid "Community Tagging"
msgstr "Taggen door anderen"
-#: ../../include/features.php:91
+#: ../../include/features.php:94
msgid "Ability to tag existing posts"
msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"
-#: ../../include/features.php:92
+#: ../../include/features.php:95
msgid "Post Categories"
msgstr "Categorieën berichten"
-#: ../../include/features.php:92
+#: ../../include/features.php:95
msgid "Add categories to your posts"
msgstr "Voeg categorieën toe aan je berichten"
-#: ../../include/features.php:93
+#: ../../include/features.php:96
msgid "Ability to file posts under folders"
msgstr "Mogelijkheid om berichten in mappen op te slaan"
-#: ../../include/features.php:94
+#: ../../include/features.php:97
msgid "Dislike Posts"
msgstr "Vind berichten niet leuk"
-#: ../../include/features.php:94
+#: ../../include/features.php:97
msgid "Ability to dislike posts/comments"
msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden"
-#: ../../include/features.php:95
+#: ../../include/features.php:98
msgid "Star Posts"
msgstr "Geef berichten een ster"
-#: ../../include/features.php:95
+#: ../../include/features.php:98
msgid "Ability to mark special posts with a star indicator"
msgstr "Mogelijkheid om speciale berichten met een ster te markeren"
-#: ../../include/features.php:96
+#: ../../include/features.php:99
msgid "Tag Cloud"
msgstr "Tagwolk"
-#: ../../include/features.php:96
+#: ../../include/features.php:99
msgid "Provide a personal tag cloud on your channel page"
msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"
@@ -3673,15 +3538,15 @@ msgstr "Voor iedereen zichtbaar"
msgid "Edit visibility"
msgstr "Zichtbaarheid bewerken"
-#: ../../include/identity.php:1009 ../../include/identity.php:1248
+#: ../../include/identity.php:1009 ../../include/identity.php:1252
msgid "Gender:"
msgstr "Geslacht:"
-#: ../../include/identity.php:1010 ../../include/identity.php:1292
+#: ../../include/identity.php:1010 ../../include/identity.php:1296
msgid "Status:"
msgstr "Status:"
-#: ../../include/identity.php:1011 ../../include/identity.php:1303
+#: ../../include/identity.php:1011 ../../include/identity.php:1307
msgid "Homepage:"
msgstr "Homepagina:"
@@ -3689,147 +3554,147 @@ msgstr "Homepagina:"
msgid "Online Now"
msgstr "Nu online"
-#: ../../include/identity.php:1095 ../../include/identity.php:1173
+#: ../../include/identity.php:1099 ../../include/identity.php:1177
#: ../../mod/ping.php:318
msgid "g A l F d"
msgstr "G:i, l d F"
-#: ../../include/identity.php:1096 ../../include/identity.php:1174
+#: ../../include/identity.php:1100 ../../include/identity.php:1178
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:1141 ../../include/identity.php:1213
+#: ../../include/identity.php:1145 ../../include/identity.php:1217
#: ../../mod/ping.php:341
msgid "[today]"
msgstr "[vandaag]"
-#: ../../include/identity.php:1152
+#: ../../include/identity.php:1156
msgid "Birthday Reminders"
msgstr "Verjaardagsherinneringen"
-#: ../../include/identity.php:1153
+#: ../../include/identity.php:1157
msgid "Birthdays this week:"
msgstr "Verjaardagen deze week:"
-#: ../../include/identity.php:1206
+#: ../../include/identity.php:1210
msgid "[No description]"
msgstr "[Geen omschrijving]"
-#: ../../include/identity.php:1224
+#: ../../include/identity.php:1228
msgid "Event Reminders"
msgstr "Herinneringen"
-#: ../../include/identity.php:1225
+#: ../../include/identity.php:1229
msgid "Events this week:"
msgstr "Gebeurtenissen deze week:"
-#: ../../include/identity.php:1246 ../../mod/settings.php:1030
+#: ../../include/identity.php:1250 ../../mod/settings.php:1031
msgid "Full Name:"
msgstr "Volledige naam:"
-#: ../../include/identity.php:1253
+#: ../../include/identity.php:1257
msgid "Like this channel"
msgstr "Vind dit kanaal leuk"
-#: ../../include/identity.php:1277
+#: ../../include/identity.php:1281
msgid "j F, Y"
msgstr "F j Y"
-#: ../../include/identity.php:1278
+#: ../../include/identity.php:1282
msgid "j F"
msgstr "F j"
-#: ../../include/identity.php:1285
+#: ../../include/identity.php:1289
msgid "Birthday:"
msgstr "Geboortedatum:"
-#: ../../include/identity.php:1289 ../../mod/directory.php:302
+#: ../../include/identity.php:1293 ../../mod/directory.php:302
msgid "Age:"
msgstr "Leeftijd:"
-#: ../../include/identity.php:1298
+#: ../../include/identity.php:1302
#, php-format
msgid "for %1$d %2$s"
msgstr "voor %1$d %2$s"
-#: ../../include/identity.php:1301 ../../mod/profiles.php:699
+#: ../../include/identity.php:1305 ../../mod/profiles.php:699
msgid "Sexual Preference:"
msgstr "Seksuele voorkeur:"
-#: ../../include/identity.php:1305 ../../mod/directory.php:318
+#: ../../include/identity.php:1309 ../../mod/directory.php:318
#: ../../mod/profiles.php:701
msgid "Hometown:"
msgstr "Oorspronkelijk uit:"
-#: ../../include/identity.php:1307
+#: ../../include/identity.php:1311
msgid "Tags:"
msgstr "Tags:"
-#: ../../include/identity.php:1309 ../../mod/profiles.php:702
+#: ../../include/identity.php:1313 ../../mod/profiles.php:702
msgid "Political Views:"
msgstr "Politieke overtuigingen:"
-#: ../../include/identity.php:1311
+#: ../../include/identity.php:1315
msgid "Religion:"
msgstr "Religie:"
-#: ../../include/identity.php:1313 ../../mod/directory.php:320
+#: ../../include/identity.php:1317 ../../mod/directory.php:320
msgid "About:"
msgstr "Over:"
-#: ../../include/identity.php:1315
+#: ../../include/identity.php:1319
msgid "Hobbies/Interests:"
msgstr "Hobby's/interesses:"
-#: ../../include/identity.php:1317 ../../mod/profiles.php:705
+#: ../../include/identity.php:1321 ../../mod/profiles.php:705
msgid "Likes:"
msgstr "Houdt van:"
-#: ../../include/identity.php:1319 ../../mod/profiles.php:706
+#: ../../include/identity.php:1323 ../../mod/profiles.php:706
msgid "Dislikes:"
msgstr "Houdt niet van:"
-#: ../../include/identity.php:1321
+#: ../../include/identity.php:1325
msgid "Contact information and Social Networks:"
msgstr "Contactinformatie en sociale netwerken:"
-#: ../../include/identity.php:1323
+#: ../../include/identity.php:1327
msgid "My other channels:"
msgstr "Mijn andere kanalen"
-#: ../../include/identity.php:1325
+#: ../../include/identity.php:1329
msgid "Musical interests:"
msgstr "Muzikale interesses:"
-#: ../../include/identity.php:1327
+#: ../../include/identity.php:1331
msgid "Books, literature:"
msgstr "Boeken, literatuur:"
-#: ../../include/identity.php:1329
+#: ../../include/identity.php:1333
msgid "Television:"
msgstr "Televisie:"
-#: ../../include/identity.php:1331
+#: ../../include/identity.php:1335
msgid "Film/dance/culture/entertainment:"
msgstr "Films/dansen/cultuur/vermaak:"
-#: ../../include/identity.php:1333
+#: ../../include/identity.php:1337
msgid "Love/Romance:"
msgstr "Liefde/romantiek:"
-#: ../../include/identity.php:1335
+#: ../../include/identity.php:1339
msgid "Work/employment:"
msgstr "Werk/beroep:"
-#: ../../include/identity.php:1337
+#: ../../include/identity.php:1341
msgid "School/education:"
msgstr "School/opleiding:"
-#: ../../include/identity.php:1357
+#: ../../include/identity.php:1361
msgid "Like this thing"
msgstr "Vind dit ding leuk"
-#: ../../include/identity.php:1765 ../../mod/cover_photo.php:236
+#: ../../include/identity.php:1769 ../../mod/cover_photo.php:236
msgid "cover photo"
msgstr "omslagfoto"
@@ -3964,305 +3829,440 @@ msgstr "Groepsopslag"
msgid "Custom/Expert Mode"
msgstr "Expertmodus/handmatig aanpassen"
-#: ../../include/widgets.php:93
+#: ../../include/widgets.php:103
msgid "System"
msgstr "Systeem"
-#: ../../include/widgets.php:96
+#: ../../include/widgets.php:106
msgid "Create Personal App"
msgstr "Persoonlijke app maken"
-#: ../../include/widgets.php:97
+#: ../../include/widgets.php:107
msgid "Edit Personal App"
msgstr "Persoonlijke app bewerken"
-#: ../../include/widgets.php:139 ../../mod/suggest.php:54
+#: ../../include/widgets.php:149 ../../mod/suggest.php:54
msgid "Ignore/Hide"
msgstr "Negeren/Verbergen"
-#: ../../include/widgets.php:144
+#: ../../include/widgets.php:154
msgid "Suggestions"
msgstr "Voorgestelde kanalen"
-#: ../../include/widgets.php:145
+#: ../../include/widgets.php:155
msgid "See more..."
msgstr "Meer..."
-#: ../../include/widgets.php:166
+#: ../../include/widgets.php:176
#, php-format
msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties."
-#: ../../include/widgets.php:172
+#: ../../include/widgets.php:182
msgid "Add New Connection"
msgstr "Nieuwe connectie toevoegen"
-#: ../../include/widgets.php:173
+#: ../../include/widgets.php:183
msgid "Enter channel address"
msgstr "Vul kanaaladres in"
-#: ../../include/widgets.php:174
+#: ../../include/widgets.php:184
msgid "Examples: bob@example.com, https://example.com/barbara"
msgstr "Voorbeelden: bob@example.com, http://example.com/barbara"
-#: ../../include/widgets.php:190
+#: ../../include/widgets.php:200
msgid "Notes"
msgstr "Aantekeningen"
-#: ../../include/widgets.php:266
+#: ../../include/widgets.php:276
msgid "Remove term"
msgstr "Verwijder zoekterm"
-#: ../../include/widgets.php:349
+#: ../../include/widgets.php:359
msgid "Archives"
msgstr "Archieven"
-#: ../../include/widgets.php:428 ../../mod/connedit.php:580
+#: ../../include/widgets.php:449 ../../mod/connedit.php:580
msgid "Me"
msgstr "Ik"
-#: ../../include/widgets.php:429 ../../mod/connedit.php:581
+#: ../../include/widgets.php:450 ../../mod/connedit.php:581
msgid "Family"
msgstr "Familie"
-#: ../../include/widgets.php:431 ../../mod/connedit.php:583
+#: ../../include/widgets.php:452 ../../mod/connedit.php:583
msgid "Acquaintances"
msgstr "Kennissen"
-#: ../../include/widgets.php:432 ../../mod/connections.php:88
+#: ../../include/widgets.php:453 ../../mod/connections.php:88
#: ../../mod/connections.php:103 ../../mod/connedit.php:584
msgid "All"
msgstr "Alles"
-#: ../../include/widgets.php:451
+#: ../../include/widgets.php:472
msgid "Refresh"
msgstr "Vernieuwen"
-#: ../../include/widgets.php:485
+#: ../../include/widgets.php:506
msgid "Account settings"
msgstr "Account"
-#: ../../include/widgets.php:491
+#: ../../include/widgets.php:512
msgid "Channel settings"
msgstr "Kanaal"
-#: ../../include/widgets.php:500
+#: ../../include/widgets.php:521
msgid "Additional features"
msgstr "Extra functies"
-#: ../../include/widgets.php:507
+#: ../../include/widgets.php:528
msgid "Feature/Addon settings"
msgstr "Plugin-instellingen"
-#: ../../include/widgets.php:513
+#: ../../include/widgets.php:534
msgid "Display settings"
msgstr "Weergave"
-#: ../../include/widgets.php:519
+#: ../../include/widgets.php:540
msgid "Connected apps"
msgstr "Verbonden applicaties"
-#: ../../include/widgets.php:525
+#: ../../include/widgets.php:546
msgid "Export channel"
msgstr "Kanaal exporteren"
-#: ../../include/widgets.php:533 ../../mod/connedit.php:692
+#: ../../include/widgets.php:553 ../../mod/connedit.php:692
msgid "Connection Default Permissions"
msgstr "Standaard permissies voor connecties"
-#: ../../include/widgets.php:541
+#: ../../include/widgets.php:561
msgid "Premium Channel Settings"
msgstr "Instellingen premiumkanaal"
-#: ../../include/widgets.php:571
+#: ../../include/widgets.php:591
msgid "Private Mail Menu"
msgstr "Privéberichten"
-#: ../../include/widgets.php:573
+#: ../../include/widgets.php:593
msgid "Combined View"
msgstr "Gecombineerd postvak"
-#: ../../include/widgets.php:607 ../../include/widgets.php:619
+#: ../../include/widgets.php:627 ../../include/widgets.php:639
msgid "Conversations"
msgstr "Conversaties"
-#: ../../include/widgets.php:611
+#: ../../include/widgets.php:631
msgid "Received Messages"
msgstr "Ontvangen berichten"
-#: ../../include/widgets.php:615
+#: ../../include/widgets.php:635
msgid "Sent Messages"
msgstr "Verzonden berichten"
-#: ../../include/widgets.php:629
+#: ../../include/widgets.php:649
msgid "No messages."
msgstr "Geen berichten"
-#: ../../include/widgets.php:647
+#: ../../include/widgets.php:667
msgid "Delete conversation"
msgstr "Verwijder conversatie"
-#: ../../include/widgets.php:673
+#: ../../include/widgets.php:693
msgid "Events Menu"
msgstr "Agenda-menu"
-#: ../../include/widgets.php:674
+#: ../../include/widgets.php:694
msgid "Day View"
msgstr "Dag tonen"
-#: ../../include/widgets.php:675
+#: ../../include/widgets.php:695
msgid "Week View"
msgstr "Week tonen"
-#: ../../include/widgets.php:676
+#: ../../include/widgets.php:696
msgid "Month View"
msgstr "Maand tonen"
-#: ../../include/widgets.php:677 ../../mod/events.php:654
+#: ../../include/widgets.php:697 ../../mod/events.php:654
msgid "Export"
msgstr "Exporteren"
-#: ../../include/widgets.php:678 ../../mod/events.php:657
+#: ../../include/widgets.php:698 ../../mod/events.php:657
msgid "Import"
msgstr "Importeren"
-#: ../../include/widgets.php:688
+#: ../../include/widgets.php:708
msgid "Events Tools"
msgstr "Agenda-hulpmiddelen"
-#: ../../include/widgets.php:689
+#: ../../include/widgets.php:709
msgid "Export Calendar"
msgstr "Exporteren"
-#: ../../include/widgets.php:690
+#: ../../include/widgets.php:710
msgid "Import Calendar"
msgstr "Importeren"
-#: ../../include/widgets.php:764
+#: ../../include/widgets.php:784
msgid "Chat Rooms"
msgstr "Chatkanalen"
-#: ../../include/widgets.php:784
+#: ../../include/widgets.php:804
msgid "Bookmarked Chatrooms"
msgstr "Bladwijzers van chatkanalen"
-#: ../../include/widgets.php:804
+#: ../../include/widgets.php:824
msgid "Suggested Chatrooms"
msgstr "Voorgestelde chatkanalen"
-#: ../../include/widgets.php:949 ../../include/widgets.php:1039
+#: ../../include/widgets.php:969 ../../include/widgets.php:1059
msgid "photo/image"
msgstr "foto/afbeelding"
-#: ../../include/widgets.php:1133
+#: ../../include/widgets.php:1153
msgid "Rating Tools"
msgstr "Beoordelingen"
-#: ../../include/widgets.php:1137 ../../include/widgets.php:1139
+#: ../../include/widgets.php:1157 ../../include/widgets.php:1159
msgid "Rate Me"
msgstr "Beoordeel mij"
-#: ../../include/widgets.php:1142
+#: ../../include/widgets.php:1162
msgid "View Ratings"
msgstr "Bekijk beoordelingen"
-#: ../../include/widgets.php:1153
+#: ../../include/widgets.php:1173
msgid "Public Hubs"
msgstr "Openbare hubs"
-#: ../../include/widgets.php:1201
+#: ../../include/widgets.php:1221
msgid "Forums"
msgstr "Forums"
-#: ../../include/widgets.php:1230
+#: ../../include/widgets.php:1250
msgid "Tasks"
msgstr "Taken"
-#: ../../include/widgets.php:1239
+#: ../../include/widgets.php:1259
msgid "Documentation"
msgstr "Documentatie"
-#: ../../include/widgets.php:1241
+#: ../../include/widgets.php:1261
msgid "Project/Site Information"
msgstr "Project- en hub-informatie"
-#: ../../include/widgets.php:1242
+#: ../../include/widgets.php:1262
msgid "For Members"
msgstr "Voor leden"
-#: ../../include/widgets.php:1243
+#: ../../include/widgets.php:1263
msgid "For Administrators"
msgstr "Voor beheerders"
-#: ../../include/widgets.php:1244
+#: ../../include/widgets.php:1264
msgid "For Developers"
msgstr "Voor ontwikkelaars"
-#: ../../include/widgets.php:1269 ../../mod/admin.php:456
+#: ../../include/widgets.php:1289 ../../mod/admin.php:456
msgid "Site"
msgstr "Hub-instellingen"
-#: ../../include/widgets.php:1270
+#: ../../include/widgets.php:1290
msgid "Accounts"
msgstr "Accounts"
-#: ../../include/widgets.php:1271 ../../mod/admin.php:1149
+#: ../../include/widgets.php:1291 ../../mod/admin.php:1149
msgid "Channels"
msgstr "Kanalen"
-#: ../../include/widgets.php:1272 ../../mod/admin.php:710
+#: ../../include/widgets.php:1292 ../../mod/admin.php:710
msgid "Security"
msgstr "Beveiliging"
-#: ../../include/widgets.php:1274 ../../mod/admin.php:1264
+#: ../../include/widgets.php:1294 ../../mod/admin.php:1264
#: ../../mod/admin.php:1325
msgid "Plugins"
msgstr "Plugins"
-#: ../../include/widgets.php:1275 ../../mod/admin.php:1486
+#: ../../include/widgets.php:1295 ../../mod/admin.php:1486
#: ../../mod/admin.php:1520
msgid "Themes"
msgstr "Thema's"
-#: ../../include/widgets.php:1276
+#: ../../include/widgets.php:1296
msgid "Inspect queue"
msgstr "Inspecteer berichtenwachtrij"
-#: ../../include/widgets.php:1277
+#: ../../include/widgets.php:1297
msgid "Profile Config"
msgstr "Profielconfiguratie"
-#: ../../include/widgets.php:1278
+#: ../../include/widgets.php:1298
msgid "DB updates"
msgstr "Database-updates"
-#: ../../include/widgets.php:1296 ../../include/widgets.php:1302
+#: ../../include/widgets.php:1316 ../../include/widgets.php:1322
#: ../../mod/admin.php:1605
msgid "Logs"
msgstr "Logboeken"
-#: ../../include/widgets.php:1301
+#: ../../include/widgets.php:1321
msgid "Plugin Features"
msgstr "Plugin-opties"
-#: ../../include/widgets.php:1303
+#: ../../include/widgets.php:1323
msgid "User registrations waiting for confirmation"
msgstr "Accounts die op goedkeuring wachten"
-#: ../../include/widgets.php:1381 ../../mod/photos.php:752
-#: ../../mod/photos.php:1292
+#: ../../include/widgets.php:1401 ../../mod/photos.php:760
+#: ../../mod/photos.php:1300
msgid "View Photo"
msgstr "Foto weergeven"
-#: ../../include/widgets.php:1398 ../../mod/photos.php:783
+#: ../../include/widgets.php:1418 ../../mod/photos.php:791
msgid "Edit Album"
msgstr "Album bewerken"
-#: ../../index.php:242 ../../mod/help.php:217
+#: ../../include/ItemObject.php:130
+msgid "Save to Folder"
+msgstr "In map opslaan"
+
+#: ../../include/ItemObject.php:151
+msgid "I will attend"
+msgstr "Aanwezig"
+
+#: ../../include/ItemObject.php:151
+msgid "I will not attend"
+msgstr "Niet aanwezig"
+
+#: ../../include/ItemObject.php:151
+msgid "I might attend"
+msgstr "Mogelijk aanwezig"
+
+#: ../../include/ItemObject.php:161
+msgid "I agree"
+msgstr "Eens"
+
+#: ../../include/ItemObject.php:161
+msgid "I disagree"
+msgstr "Oneens"
+
+#: ../../include/ItemObject.php:161
+msgid "I abstain"
+msgstr "Onthouding"
+
+#: ../../include/ItemObject.php:212
+msgid "Add Star"
+msgstr "Ster toevoegen"
+
+#: ../../include/ItemObject.php:213
+msgid "Remove Star"
+msgstr "Ster verwijderen"
+
+#: ../../include/ItemObject.php:214
+msgid "Toggle Star Status"
+msgstr "Ster toevoegen of verwijderen"
+
+#: ../../include/ItemObject.php:218
+msgid "starred"
+msgstr "met ster"
+
+#: ../../include/ItemObject.php:236
+msgid "Add Tag"
+msgstr "Tag toevoegen"
+
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:1037
+msgid "I like this (toggle)"
+msgstr "Vind ik leuk"
+
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:1038
+msgid "I don't like this (toggle)"
+msgstr "Vind ik niet leuk"
+
+#: ../../include/ItemObject.php:259
+msgid "Share This"
+msgstr "Delen"
+
+#: ../../include/ItemObject.php:259
+msgid "share"
+msgstr "delen"
+
+#: ../../include/ItemObject.php:268
+msgid "Delivery Report"
+msgstr "Afleveringsrapport"
+
+#: ../../include/ItemObject.php:286
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d reactie"
+msgstr[1] "%d reacties weergeven"
+
+#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Profiel van %s bekijken - %s"
+
+#: ../../include/ItemObject.php:319
+msgid "to"
+msgstr "aan"
+
+#: ../../include/ItemObject.php:320
+msgid "via"
+msgstr "via"
+
+#: ../../include/ItemObject.php:321
+msgid "Wall-to-Wall"
+msgstr "Kanaal-naar-kanaal"
+
+#: ../../include/ItemObject.php:322
+msgid "via Wall-To-Wall:"
+msgstr "via kanaal-naar-kanaal"
+
+#: ../../include/ItemObject.php:362
+msgid "Save Bookmarks"
+msgstr "Bladwijzers opslaan"
+
+#: ../../include/ItemObject.php:363
+msgid "Add to Calendar"
+msgstr "Aan agenda toevoegen"
+
+#: ../../include/ItemObject.php:372
+msgid "Mark all seen"
+msgstr "Markeer alles als bekeken"
+
+#: ../../include/ItemObject.php:378 ../../mod/photos.php:1223
+msgctxt "noun"
+msgid "Likes"
+msgstr "vinden dit leuk"
+
+#: ../../include/ItemObject.php:379 ../../mod/photos.php:1224
+msgctxt "noun"
+msgid "Dislikes"
+msgstr "vinden dit niet leuk"
+
+#: ../../include/ItemObject.php:700 ../../mod/photos.php:1056
+#: ../../mod/photos.php:1174
+msgid "This is you"
+msgstr "Dit ben jij"
+
+#: ../../include/ItemObject.php:709
+msgid "Image"
+msgstr "Afbeelding"
+
+#: ../../include/ItemObject.php:710
+msgid "Insert Link"
+msgstr "Link invoegen"
+
+#: ../../include/ItemObject.php:711
+msgid "Video"
+msgstr "Video"
+
+#: ../../index.php:245 ../../mod/help.php:217
msgid "Not Found"
msgstr "Niet gevonden"
-#: ../../index.php:245 ../../mod/block.php:75 ../../mod/display.php:110
+#: ../../index.php:248 ../../mod/block.php:75 ../../mod/display.php:110
#: ../../mod/help.php:220 ../../mod/page.php:89
msgid "Page not found."
msgstr "Pagina niet gevonden."
@@ -5200,12 +5200,12 @@ msgstr "Gebeurtenis bewerken"
msgid "Create Event"
msgstr "Gebeurtenis aanmaken"
-#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:908
+#: ../../mod/events.php:652 ../../mod/events.php:659 ../../mod/photos.php:916
msgid "Previous"
msgstr "Vorige"
-#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:917
-#: ../../mod/setup.php:286
+#: ../../mod/events.php:653 ../../mod/events.php:660 ../../mod/photos.php:925
+#: ../../mod/setup.php:288
msgid "Next"
msgstr "Volgende"
@@ -5462,51 +5462,55 @@ msgstr "Niet in staat om gegevens van de oude hub te downloaden"
msgid "Imported file is empty."
msgstr "Geïmporteerde bestand is leeg"
-#: ../../mod/import.php:116 ../../mod/import_items.php:82
+#: ../../mod/import.php:119 ../../mod/import_items.php:82
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr "Waarschuwing: database-versies lopen %1$d updates achter."
-#: ../../mod/import.php:149
+#: ../../mod/import.php:124
+msgid "Server platform is not compatible. Operation not permitted."
+msgstr "Server-platform is niet compatibel. Actie is niet toegestaan."
+
+#: ../../mod/import.php:158
msgid "No channel. Import failed."
msgstr "Geen kanaal. Importeren mislukt."
-#: ../../mod/import.php:509
+#: ../../mod/import.php:518
msgid "You must be logged in to use this feature."
msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."
-#: ../../mod/import.php:514
+#: ../../mod/import.php:523
msgid "Import Channel"
msgstr "Kanaal importeren"
-#: ../../mod/import.php:515
+#: ../../mod/import.php:524
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."
msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."
-#: ../../mod/import.php:516 ../../mod/import_items.php:115
+#: ../../mod/import.php:525 ../../mod/import_items.php:115
msgid "File to Upload"
msgstr "Bestand om te uploaden"
-#: ../../mod/import.php:517
+#: ../../mod/import.php:526
msgid "Or provide the old server/hub details"
msgstr "Of vul de gegevens van de oude hub in"
-#: ../../mod/import.php:518
+#: ../../mod/import.php:527
msgid "Your old identity address (xyz@example.com)"
msgstr "Jouw oude kanaaladres (xyz@example.com)"
-#: ../../mod/import.php:519
+#: ../../mod/import.php:528
msgid "Your old login email address"
msgstr "Het e-mailadres van je oude account"
-#: ../../mod/import.php:520
+#: ../../mod/import.php:529
msgid "Your old login password"
msgstr "Wachtwoord van jouw oude account"
-#: ../../mod/import.php:521
+#: ../../mod/import.php:530
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"
@@ -5514,17 +5518,17 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."
-#: ../../mod/import.php:522
+#: ../../mod/import.php:531
msgid "Make this hub my primary location"
msgstr "Stel deze hub als mijn primaire locatie in"
-#: ../../mod/import.php:523
+#: ../../mod/import.php:532
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"
-#: ../../mod/import.php:524
+#: ../../mod/import.php:533
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -5593,8 +5597,8 @@ msgid "Please join my community on $Projectname."
msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org"
#: ../../mod/invite.php:134
-msgid "You will need to supply this invitation code: "
-msgstr "Je moet deze uitnodigingscode opgeven: "
+msgid "You will need to supply this invitation code:"
+msgstr "Je moet deze uitnodigingscode opgeven:"
#: ../../mod/invite.php:135
msgid ""
@@ -5606,8 +5610,8 @@ msgid "2. Enter my $Projectname network address into the site searchbar."
msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:"
#: ../../mod/invite.php:138
-msgid "or visit "
-msgstr "of bezoek "
+msgid "or visit"
+msgstr "of bezoek"
#: ../../mod/invite.php:140
msgid "3. Click [Connect]"
@@ -6057,7 +6061,7 @@ msgstr "Menu-onderdeel kan niet worden toegevoegd."
msgid "Menu Item Permissions"
msgstr "Permissies menu-item"
-#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1057
+#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1059
msgid "(click to open/close)"
msgstr "(klik om te openen/sluiten)"
@@ -6323,7 +6327,7 @@ msgstr "Album niet gevonden."
msgid "Delete Album"
msgstr "Verwijder album"
-#: ../../mod/photos.php:171 ../../mod/photos.php:1012
+#: ../../mod/photos.php:171 ../../mod/photos.php:1020
msgid "Delete Photo"
msgstr "Verwijder foto"
@@ -6345,121 +6349,121 @@ msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."
msgid "%1$.2f MB photo storage used."
msgstr "%1$.2f MB aan foto-opslag gebruikt."
-#: ../../mod/photos.php:620
+#: ../../mod/photos.php:628
msgid "Upload Photos"
msgstr "Foto's uploaden"
-#: ../../mod/photos.php:624
+#: ../../mod/photos.php:632
msgid "Enter an album name"
msgstr "Vul een albumnaam in"
-#: ../../mod/photos.php:625
+#: ../../mod/photos.php:633
msgid "or select an existing album (doubleclick)"
msgstr "of kies een bestaand album (dubbelklikken)"
-#: ../../mod/photos.php:626
+#: ../../mod/photos.php:634
msgid "Create a status post for this upload"
msgstr "Plaats een bericht voor deze upload."
-#: ../../mod/photos.php:627
+#: ../../mod/photos.php:635
msgid "Caption (optional):"
msgstr "Bijschrift (optioneel):"
-#: ../../mod/photos.php:628
+#: ../../mod/photos.php:636
msgid "Description (optional):"
msgstr "Omschrijving (optioneel):"
-#: ../../mod/photos.php:655
+#: ../../mod/photos.php:663
msgid "Album name could not be decoded"
msgstr "Albumnaam kon niet gedecodeerd worden"
-#: ../../mod/photos.php:703 ../../mod/photos.php:1242
-#: ../../mod/photos.php:1259
+#: ../../mod/photos.php:711 ../../mod/photos.php:1250
+#: ../../mod/photos.php:1267
msgid "Contact Photos"
msgstr "Connectiefoto's"
-#: ../../mod/photos.php:726
+#: ../../mod/photos.php:734
msgid "Show Newest First"
msgstr "Nieuwste eerst weergeven"
-#: ../../mod/photos.php:728
+#: ../../mod/photos.php:736
msgid "Show Oldest First"
msgstr "Oudste eerst weergeven"
-#: ../../mod/photos.php:830
+#: ../../mod/photos.php:838
msgid "Permission denied. Access to this item may be restricted."
msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."
-#: ../../mod/photos.php:832
+#: ../../mod/photos.php:840
msgid "Photo not available"
msgstr "Foto niet aanwezig"
-#: ../../mod/photos.php:890
+#: ../../mod/photos.php:898
msgid "Use as profile photo"
msgstr "Als profielfoto gebruiken"
-#: ../../mod/photos.php:897
+#: ../../mod/photos.php:905
msgid "Private Photo"
msgstr "Privéfoto"
-#: ../../mod/photos.php:912
+#: ../../mod/photos.php:920
msgid "View Full Size"
msgstr "Volledige grootte weergeven"
-#: ../../mod/photos.php:957 ../../mod/tagrm.php:133
+#: ../../mod/photos.php:965 ../../mod/tagrm.php:133
msgid "Remove"
msgstr "Verwijderen"
-#: ../../mod/photos.php:991
+#: ../../mod/photos.php:999
msgid "Edit photo"
msgstr "Foto bewerken"
-#: ../../mod/photos.php:993
+#: ../../mod/photos.php:1001
msgid "Rotate CW (right)"
msgstr "Draai met de klok mee (naar rechts)"
-#: ../../mod/photos.php:994
+#: ../../mod/photos.php:1002
msgid "Rotate CCW (left)"
msgstr "Draai tegen de klok in (naar links)"
-#: ../../mod/photos.php:997
+#: ../../mod/photos.php:1005
msgid "Enter a new album name"
msgstr "Vul een nieuwe albumnaam in"
-#: ../../mod/photos.php:998
+#: ../../mod/photos.php:1006
msgid "or select an existing one (doubleclick)"
msgstr "of kies een bestaand album (dubbelklikken)"
-#: ../../mod/photos.php:1001
+#: ../../mod/photos.php:1009
msgid "Caption"
msgstr "Bijschrift"
-#: ../../mod/photos.php:1003
+#: ../../mod/photos.php:1011
msgid "Add a Tag"
msgstr "Tag toevoegen"
-#: ../../mod/photos.php:1007
+#: ../../mod/photos.php:1015
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"
-#: ../../mod/photos.php:1010
+#: ../../mod/photos.php:1018
msgid "Flag as adult in album view"
msgstr "Markeer als voor volwassenen in albumweergave"
-#: ../../mod/photos.php:1202
+#: ../../mod/photos.php:1210
msgid "In This Photo:"
msgstr "Op deze foto:"
-#: ../../mod/photos.php:1207
+#: ../../mod/photos.php:1215
msgid "Map"
msgstr "Kaart"
-#: ../../mod/photos.php:1298
+#: ../../mod/photos.php:1306
msgid "View Album"
msgstr "Album weergeven"
-#: ../../mod/photos.php:1309 ../../mod/photos.php:1322
-#: ../../mod/photos.php:1323
+#: ../../mod/photos.php:1317 ../../mod/photos.php:1330
+#: ../../mod/photos.php:1331
msgid "Recent Photos"
msgstr "Recente foto's"
@@ -7930,7 +7934,7 @@ msgid ""
"removed from the network"
msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd"
-#: ../../mod/removeme.php:61 ../../mod/settings.php:1113
+#: ../../mod/removeme.php:61 ../../mod/settings.php:1115
msgid "Remove Channel"
msgstr "Kanaal verwijderen"
@@ -8054,8 +8058,8 @@ msgid "Optional"
msgstr "Optioneel"
#: ../../mod/settings.php:603
-msgid "You can't edit this application."
-msgstr "Je kan deze applicatie niet bewerken"
+msgid "Application not found."
+msgstr "Applicatie niet gevonden."
#: ../../mod/settings.php:646
msgid "Connected Apps"
@@ -8097,7 +8101,7 @@ msgstr "Nieuw wachtwoord bevestigen:"
msgid "Leave password fields blank unless changing"
msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"
-#: ../../mod/settings.php:699 ../../mod/settings.php:1031
+#: ../../mod/settings.php:699 ../../mod/settings.php:1032
msgid "Email Address:"
msgstr "E-mailadres:"
@@ -8246,701 +8250,711 @@ msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan n
msgid "Your channel address is"
msgstr "Jouw kanaaladres is"
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1023
msgid "Channel Settings"
msgstr "Kanaal-instellingen"
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1030
msgid "Basic Settings"
msgstr "Basis-instellingen"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1033
msgid "Your Timezone:"
msgstr "Jouw tijdzone:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Default Post Location:"
msgstr "Standaardlocatie bericht:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Geographical location to display on your posts"
msgstr "Geografische locatie die bij het bericht moet worden vermeld"
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1035
msgid "Use Browser Location:"
msgstr "Locatie van webbrowser gebruiken:"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid "Adult Content"
msgstr "Inhoud voor volwassenen"
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1037
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"
-#: ../../mod/settings.php:1038
+#: ../../mod/settings.php:1039
msgid "Security and Privacy Settings"
msgstr "Veiligheids- en privacy-instellingen"
-#: ../../mod/settings.php:1040
+#: ../../mod/settings.php:1042
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1044
msgid "Hide my online presence"
msgstr "Verberg mijn aanwezigheid"
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1044
msgid "Prevents displaying in your profile that you are online"
msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent"
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1046
msgid "Simple Privacy Settings:"
msgstr "Eenvoudige privacy-instellingen:"
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1047
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Zeer openbaar <em>(kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)</em>"
-#: ../../mod/settings.php:1046
+#: ../../mod/settings.php:1048
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Normaal <em>(standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)</em>"
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1049
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privé <em>(standaard privé en nooit openbaar)</em>"
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1050
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Geblokkeerd <em>(standaard geblokkeerd naar/van iedereen)</em>"
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1052
msgid "Allow others to tag your posts"
msgstr "Anderen toestaan om je berichten te taggen"
-#: ../../mod/settings.php:1050
+#: ../../mod/settings.php:1052
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"
-#: ../../mod/settings.php:1052
+#: ../../mod/settings.php:1054
msgid "Advanced Privacy Settings"
msgstr "Geavanceerde privacy-instellingen"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
msgid "Expire other channel content after this many days"
msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"
-#: ../../mod/settings.php:1054
+#: ../../mod/settings.php:1056
#, php-format
msgid ""
"0 or blank to use the website limit. The website expires after %d days."
msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken. Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1057
msgid "Maximum Friend Requests/Day:"
msgstr "Maximum aantal connectieverzoeken per dag:"
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1057
msgid "May reduce spam activity"
msgstr "Kan eventuele spam verminderen"
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1058
msgid "Default Post Permissions"
msgstr "Standaard permissies voor nieuwe berichten"
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1063
msgid "Channel permissions category:"
msgstr "Kanaaltype en -permissies:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1069
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1069
msgid "Useful to reduce spamming"
msgstr "Kan eventuele spam verminderen"
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1072
msgid "Notification Settings"
msgstr "Notificatie-instellingen"
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1073
msgid "By default post a status message when:"
msgstr "Plaats automatisch een statusbericht wanneer:"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1074
msgid "accepting a friend request"
msgstr "Een connectieverzoek wordt geaccepteerd"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1075
msgid "joining a forum/community"
msgstr "Je lid wordt van een forum/groep"
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1076
msgid "making an <em>interesting</em> profile change"
msgstr "Er sprake is van een <em>interessante</em> profielwijziging"
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1077
msgid "Send a notification email when:"
msgstr "Verzend een notificatie per e-mail wanneer:"
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1078
msgid "You receive a connection request"
msgstr "Je een connectieverzoek ontvangt"
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1079
msgid "Your connections are confirmed"
msgstr "Jouw connecties zijn bevestigd"
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1080
msgid "Someone writes on your profile wall"
msgstr "Iemand iets op jouw kanaal heeft geschreven"
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1081
msgid "Someone writes a followup comment"
msgstr "Iemand een reactie schrijft"
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1082
msgid "You receive a private message"
msgstr "Je een privé-bericht ontvangt"
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1083
msgid "You receive a friend suggestion"
msgstr "Je een kanaalvoorstel ontvangt"
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1084
msgid "You are tagged in a post"
msgstr "Je expliciet in een bericht bent genoemd"
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1085
msgid "You are poked/prodded/etc. in a post"
msgstr "Je bent in een bericht aangestoten/gepord/etc."
-#: ../../mod/settings.php:1086
+#: ../../mod/settings.php:1088
msgid "Show visual notifications including:"
msgstr "Toon de volgende zichtbare notificaties:"
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1090
msgid "Unseen grid activity"
msgstr "Niet bekeken grid-activiteit"
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1091
msgid "Unseen channel activity"
msgstr "Niet bekeken kanaal-activiteit"
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1092
msgid "Unseen private messages"
msgstr "Niet bekeken privéberichten"
-#: ../../mod/settings.php:1090 ../../mod/settings.php:1095
-#: ../../mod/settings.php:1096 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1092 ../../mod/settings.php:1097
+#: ../../mod/settings.php:1098 ../../mod/settings.php:1099
msgid "Recommended"
msgstr "Aanbevolen"
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1093
msgid "Upcoming events"
msgstr "Aankomende gebeurtenissen"
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1094
msgid "Events today"
msgstr "Gebeurtenissen van vandaag"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "Upcoming birthdays"
msgstr "Aankomende verjaardagen"
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1095
msgid "Not available in all themes"
msgstr "Niet in alle thema's beschikbaar"
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1096
msgid "System (personal) notifications"
msgstr "(Persoonlijke) systeemnotificaties"
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1097
msgid "System info messages"
msgstr "Systeemmededelingen"
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1098
msgid "System critical alerts"
msgstr "Kritische systeemwaarschuwingen"
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1099
msgid "New connections"
msgstr "Nieuwe connecties"
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1100
msgid "System Registrations"
msgstr "Nieuwe accountregistraties op deze hub"
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1101
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Notify me of events this many days in advance"
msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen"
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1103
msgid "Must be greater than 0"
msgstr "Moet hoger dan 0 zijn"
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1105
msgid "Advanced Account/Page Type Settings"
msgstr "Instellingen geavanceerd account/paginatype"
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1106
msgid "Change the behaviour of this account for special situations"
msgstr "Verander het gedrag van dit account voor speciale situaties"
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1109
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr "Schakel de expertmodus in (in <a href=\"settings/features\">Instellingen > Extra functies</a>) om aan te kunnen passen!"
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1110
msgid "Miscellaneous Settings"
msgstr "Diverse instellingen"
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1111
msgid "Default photo upload folder"
msgstr "Standaard fotoalbum voor uploads"
-#: ../../mod/settings.php:1109 ../../mod/settings.php:1110
+#: ../../mod/settings.php:1111 ../../mod/settings.php:1112
msgid "%Y - current year, %m - current month"
msgstr "%Y - dit jaar, %m - deze maand"
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1112
msgid "Default file upload folder"
msgstr "Standaard bestandsmap voor uploads"
-#: ../../mod/settings.php:1112
+#: ../../mod/settings.php:1114
msgid "Personal menu to display in your channel pages"
msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven"
-#: ../../mod/settings.php:1114
+#: ../../mod/settings.php:1116
msgid "Remove this channel."
msgstr "Verwijder dit kanaal."
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1117
msgid "Firefox Share $Projectname provider"
msgstr "$Projectname-service voor Firefox Share"
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1118
msgid "Start calendar week on monday"
msgstr "Begin in de agenda de week op maandag"
-#: ../../mod/setup.php:192
+#: ../../mod/setup.php:194
msgid "$Projectname Server - Setup"
-msgstr "$Projectname Server - Setup"
+msgstr "$Projectname Hub - Setup"
-#: ../../mod/setup.php:196
+#: ../../mod/setup.php:198
msgid "Could not connect to database."
msgstr "Could not connect to database."
-#: ../../mod/setup.php:200
+#: ../../mod/setup.php:202
msgid ""
"Could not connect to specified site URL. Possible SSL certificate or DNS "
"issue."
msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."
-#: ../../mod/setup.php:207
+#: ../../mod/setup.php:209
msgid "Could not create table."
msgstr "Could not create table."
-#: ../../mod/setup.php:212
+#: ../../mod/setup.php:214
msgid "Your site database has been installed."
msgstr "Your hub database has been installed."
-#: ../../mod/setup.php:216
+#: ../../mod/setup.php:218
msgid ""
"You may need to import the file \"install/schema_xxx.sql\" manually using a "
"database client."
msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client."
-#: ../../mod/setup.php:217 ../../mod/setup.php:285 ../../mod/setup.php:735
+#: ../../mod/setup.php:219 ../../mod/setup.php:287 ../../mod/setup.php:737
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Please see the file \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:282
+#: ../../mod/setup.php:284
msgid "System check"
msgstr "System check"
-#: ../../mod/setup.php:287
+#: ../../mod/setup.php:289
msgid "Check again"
msgstr "Check again"
-#: ../../mod/setup.php:309
+#: ../../mod/setup.php:311
msgid "Database connection"
msgstr "Database connection"
-#: ../../mod/setup.php:310
+#: ../../mod/setup.php:312
msgid ""
"In order to install $Projectname we need to know how to connect to your "
"database."
msgstr "In order to install $Projectname we need to know how to connect to your database."
-#: ../../mod/setup.php:311
+#: ../../mod/setup.php:313
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
-msgstr "Please contact your hosting provider or site administrator if you have questions about these settings."
+msgstr "Please contact your hosting provider or server administrator if you have questions about these settings."
-#: ../../mod/setup.php:312
+#: ../../mod/setup.php:314
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
-#: ../../mod/setup.php:316
+#: ../../mod/setup.php:318
msgid "Database Server Name"
msgstr "Database Server Name"
-#: ../../mod/setup.php:316
+#: ../../mod/setup.php:318
msgid "Default is 127.0.0.1"
msgstr "Default is 127.0.0.1"
-#: ../../mod/setup.php:317
+#: ../../mod/setup.php:319
msgid "Database Port"
msgstr "Database Port"
-#: ../../mod/setup.php:317
+#: ../../mod/setup.php:319
msgid "Communication port number - use 0 for default"
msgstr "Communication port number - use 0 for default"
-#: ../../mod/setup.php:318
+#: ../../mod/setup.php:320
msgid "Database Login Name"
msgstr "Database Login Name"
-#: ../../mod/setup.php:319
+#: ../../mod/setup.php:321
msgid "Database Login Password"
msgstr "Database Login Password"
-#: ../../mod/setup.php:320
+#: ../../mod/setup.php:322
msgid "Database Name"
msgstr "Database Name"
-#: ../../mod/setup.php:321
+#: ../../mod/setup.php:323
msgid "Database Type"
msgstr "Database Type"
-#: ../../mod/setup.php:323 ../../mod/setup.php:364
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
msgid "Site administrator email address"
msgstr "Hub administrator email address"
-#: ../../mod/setup.php:323 ../../mod/setup.php:364
+#: ../../mod/setup.php:325 ../../mod/setup.php:365
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Your account email address must match this in order to use the web admin panel."
-#: ../../mod/setup.php:324 ../../mod/setup.php:366
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
msgid "Website URL"
msgstr "Hub URL"
-#: ../../mod/setup.php:324 ../../mod/setup.php:366
+#: ../../mod/setup.php:326 ../../mod/setup.php:367
msgid "Please use SSL (https) URL if available."
msgstr "Please use SSL (https) URL if available."
-#: ../../mod/setup.php:326 ../../mod/setup.php:368
+#: ../../mod/setup.php:327 ../../mod/setup.php:370
msgid "Please select a default timezone for your website"
msgstr "Please select a default timezone for your hub"
-#: ../../mod/setup.php:353
+#: ../../mod/setup.php:354
msgid "Site settings"
msgstr "Hub settings"
-#: ../../mod/setup.php:418
+#: ../../mod/setup.php:368
+msgid "Enable $Projectname <strong>advanced</strong> features?"
+msgstr "Enable $Projectname <strong>advanced</strong> features?"
+
+#: ../../mod/setup.php:368
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
+msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences"
+
+#: ../../mod/setup.php:420
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Could not find a command line version of PHP in the web server PATH."
-#: ../../mod/setup.php:419
+#: ../../mod/setup.php:421
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 "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."
-#: ../../mod/setup.php:423
+#: ../../mod/setup.php:425
msgid "PHP executable path"
msgstr "PHP executable path"
-#: ../../mod/setup.php:423
+#: ../../mod/setup.php:425
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
-#: ../../mod/setup.php:428
+#: ../../mod/setup.php:430
msgid "Command line PHP"
msgstr "Command line PHP"
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:439
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
-#: ../../mod/setup.php:438
+#: ../../mod/setup.php:440
msgid "This is required for message delivery to work."
msgstr "This is required for message delivery to work."
-#: ../../mod/setup.php:441
+#: ../../mod/setup.php:443
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:459
+#: ../../mod/setup.php:461
#, php-format
msgid ""
"Your max allowed total upload size is set to %s. Maximum size of one file to"
" upload is set to %s. You are allowed to upload up to %d files at once."
msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."
-#: ../../mod/setup.php:464
+#: ../../mod/setup.php:466
msgid "You can adjust these settings in the servers php.ini."
msgstr "You can adjust these settings in the servers php.ini."
-#: ../../mod/setup.php:466
+#: ../../mod/setup.php:468
msgid "PHP upload limits"
msgstr "PHP upload limits"
-#: ../../mod/setup.php:489
+#: ../../mod/setup.php:491
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
-#: ../../mod/setup.php:490
+#: ../../mod/setup.php:492
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/setup.php:493
+#: ../../mod/setup.php:495
msgid "Generate encryption keys"
msgstr "Generate encryption keys"
-#: ../../mod/setup.php:505
+#: ../../mod/setup.php:507
msgid "libCurl PHP module"
msgstr "libCurl PHP module"
-#: ../../mod/setup.php:506
+#: ../../mod/setup.php:508
msgid "GD graphics PHP module"
msgstr "GD graphics PHP module"
-#: ../../mod/setup.php:507
+#: ../../mod/setup.php:509
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP module"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:510
msgid "mysqli or postgres PHP module"
msgstr "mysqli or postgres PHP module"
-#: ../../mod/setup.php:509
+#: ../../mod/setup.php:511
msgid "mb_string PHP module"
msgstr "mb_string PHP module"
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:512
msgid "mcrypt PHP module"
msgstr "mcrypt PHP module"
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:513
msgid "xml PHP module"
msgstr "xml PHP module"
-#: ../../mod/setup.php:515 ../../mod/setup.php:517
+#: ../../mod/setup.php:517 ../../mod/setup.php:519
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
-#: ../../mod/setup.php:515
+#: ../../mod/setup.php:517
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Error: Apache webserver mod-rewrite module is required but not installed."
-#: ../../mod/setup.php:521 ../../mod/setup.php:524
+#: ../../mod/setup.php:523 ../../mod/setup.php:526
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:521
+#: ../../mod/setup.php:523
msgid ""
"Error: proc_open is required but is either not installed or has been "
"disabled in php.ini"
msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini"
-#: ../../mod/setup.php:529
+#: ../../mod/setup.php:531
msgid "Error: libCURL PHP module required but not installed."
msgstr "Error: libCURL PHP module required but not installed."
-#: ../../mod/setup.php:533
+#: ../../mod/setup.php:535
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
-#: ../../mod/setup.php:537
+#: ../../mod/setup.php:539
msgid "Error: openssl PHP module required but not installed."
msgstr "Error: openssl PHP module required but not installed."
-#: ../../mod/setup.php:541
+#: ../../mod/setup.php:543
msgid ""
"Error: mysqli or postgres PHP module required but neither are installed."
msgstr "Error: mysqli or postgres PHP module required but neither are installed."
-#: ../../mod/setup.php:545
+#: ../../mod/setup.php:547
msgid "Error: mb_string PHP module required but not installed."
msgstr "Error: mb_string PHP module required but not installed."
-#: ../../mod/setup.php:549
+#: ../../mod/setup.php:551
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Error: mcrypt PHP module required but not installed."
-#: ../../mod/setup.php:553
+#: ../../mod/setup.php:555
msgid "Error: xml PHP module required for DAV but not installed."
msgstr "Error: xml PHP module required for DAV but not installed."
-#: ../../mod/setup.php:571
+#: ../../mod/setup.php:573
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 "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."
-#: ../../mod/setup.php:572
+#: ../../mod/setup.php:574
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 "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."
-#: ../../mod/setup.php:573
+#: ../../mod/setup.php:575
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 "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."
-#: ../../mod/setup.php:574
+#: ../../mod/setup.php:576
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"install/INSTALL.txt\" for instructions."
msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."
-#: ../../mod/setup.php:577
+#: ../../mod/setup.php:579
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
-#: ../../mod/setup.php:591
+#: ../../mod/setup.php:593
msgid ""
"Red uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
-#: ../../mod/setup.php:592
+#: ../../mod/setup.php:594
#, php-format
msgid ""
"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."
msgstr "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."
-#: ../../mod/setup.php:593 ../../mod/setup.php:614
+#: ../../mod/setup.php:595 ../../mod/setup.php:616
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."
-#: ../../mod/setup.php:594
+#: ../../mod/setup.php:596
#, php-format
msgid ""
"Note: as a security measure, you should give the web server write access to "
"%s only--not the template files (.tpl) that it contains."
msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."
-#: ../../mod/setup.php:597
+#: ../../mod/setup.php:599
#, php-format
msgid "%s is writable"
msgstr "%s is writable"
-#: ../../mod/setup.php:613
+#: ../../mod/setup.php:615
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 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"
-#: ../../mod/setup.php:617
+#: ../../mod/setup.php:619
msgid "store is writable"
msgstr "store is writable"
-#: ../../mod/setup.php:650
+#: ../../mod/setup.php:652
msgid ""
"SSL certificate cannot be validated. Fix certificate or disable https access"
" to this site."
msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub."
-#: ../../mod/setup.php:651
+#: ../../mod/setup.php:653
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 "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"
-#: ../../mod/setup.php:652
+#: ../../mod/setup.php:654
msgid ""
"This restriction is incorporated because public posts from you may for "
"example contain references to images on your own hub."
msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub."
-#: ../../mod/setup.php:653
+#: ../../mod/setup.php:655
msgid ""
"If your certificate is not recognized, members of other sites (who may "
"themselves have valid certificates) will get a warning message on their own "
"site complaining about security issues."
msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."
-#: ../../mod/setup.php:654
+#: ../../mod/setup.php:656
msgid ""
"This can cause usability issues elsewhere (not just on your own site) so we "
"must insist on this requirement."
msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement."
-#: ../../mod/setup.php:655
+#: ../../mod/setup.php:657
msgid ""
"Providers are available that issue free certificates which are browser-"
"valid."
msgstr "Providers are available that issue free certificates which are browser-valid."
-#: ../../mod/setup.php:657
+#: ../../mod/setup.php:659
msgid "SSL certificate validation"
msgstr "SSL certificate validation"
-#: ../../mod/setup.php:663
+#: ../../mod/setup.php:665
msgid ""
"Url rewrite in .htaccess is not working. Check your server "
"configuration.Test: "
msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: "
-#: ../../mod/setup.php:666
+#: ../../mod/setup.php:668
msgid "Url rewrite is working"
msgstr "Url rewrite is working"
-#: ../../mod/setup.php:675
+#: ../../mod/setup.php:677
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 "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."
-#: ../../mod/setup.php:699
+#: ../../mod/setup.php:701
msgid "Errors encountered creating database tables."
msgstr "Errors encountered creating database tables."
-#: ../../mod/setup.php:733
+#: ../../mod/setup.php:735
msgid "<h1>What next</h1>"
-msgstr "<h1>Wat nu</h1>"
+msgstr "<h1>What next</h1>"
-#: ../../mod/setup.php:734
+#: ../../mod/setup.php:736
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -9504,20 +9518,20 @@ msgstr "Wachtwoord vergeten?"
msgid "toggle mobile"
msgstr "mobiele weergave omschakelen"
-#: ../../boot.php:2307
+#: ../../boot.php:2308
msgid "Website SSL certificate is not valid. Please correct."
msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b."
-#: ../../boot.php:2310
+#: ../../boot.php:2311
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Probleem met SSL-certificaat voor %s"
-#: ../../boot.php:2347
+#: ../../boot.php:2348
msgid "Cron/Scheduled tasks not running."
msgstr "Cron is niet actief"
-#: ../../boot.php:2351
+#: ../../boot.php:2352
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Cron-taken zijn niet actief op %s"
diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php
index 4b4de7b7f..6ec9e3c92 100644
--- a/view/nl/hstrings.php
+++ b/view/nl/hstrings.php
@@ -14,73 +14,6 @@ $a->strings["User '%s' deleted"] = "Account '%s' verwijderd";
$a->strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden.";
$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt.";
$a->strings["Import completed."] = "Import voltooid.";
-$a->strings["Private Message"] = "Niet voor iedereen zichtbaar";
-$a->strings["Edit"] = "Bewerken";
-$a->strings["Delete"] = "Verwijderen";
-$a->strings["Select"] = "Kies";
-$a->strings["Save to Folder"] = "In map opslaan";
-$a->strings["I will attend"] = "Aanwezig";
-$a->strings["I will not attend"] = "Niet aanwezig";
-$a->strings["I might attend"] = "Mogelijk aanwezig";
-$a->strings["I agree"] = "Eens";
-$a->strings["I disagree"] = "Oneens";
-$a->strings["I abstain"] = "Onthouding";
-$a->strings["View all"] = "Toon alles";
-$a->strings["__ctx:noun__ Like"] = array(
- 0 => "vindt dit leuk",
- 1 => "vinden dit leuk",
-);
-$a->strings["__ctx:noun__ Dislike"] = array(
- 0 => "vindt dit niet leuk",
- 1 => "vinden dit niet leuk",
-);
-$a->strings["Add Star"] = "Ster toevoegen";
-$a->strings["Remove Star"] = "Ster verwijderen";
-$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen";
-$a->strings["starred"] = "met ster";
-$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd";
-$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist";
-$a->strings["Add Tag"] = "Tag toevoegen";
-$a->strings["I like this (toggle)"] = "Vind ik leuk";
-$a->strings["like"] = "vind dit leuk";
-$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk";
-$a->strings["dislike"] = "vind dit niet leuk";
-$a->strings["Share This"] = "Delen";
-$a->strings["share"] = "delen";
-$a->strings["Delivery Report"] = "Afleveringsrapport";
-$a->strings["%d comment"] = array(
- 0 => "%d reactie",
- 1 => "%d reacties weergeven",
-);
-$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s";
-$a->strings["to"] = "aan";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal";
-$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal";
-$a->strings["from %s"] = "van %s";
-$a->strings["last edited: %s"] = "laatst bewerkt: %s";
-$a->strings["Expires: %s"] = "Verloopt: %s";
-$a->strings["Save Bookmarks"] = "Bladwijzers opslaan";
-$a->strings["Add to Calendar"] = "Aan agenda toevoegen";
-$a->strings["Mark all seen"] = "Markeer alles als bekeken";
-$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk";
-$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk";
-$a->strings["Close"] = "Sluiten";
-$a->strings["Please wait"] = "Even wachten";
-$a->strings["[+] show all"] = "[+] alle";
-$a->strings["This is you"] = "Dit ben jij";
-$a->strings["Comment"] = "Reactie";
-$a->strings["Submit"] = "Opslaan";
-$a->strings["Bold"] = "Vet";
-$a->strings["Italic"] = "Cursief";
-$a->strings["Underline"] = "Onderstrepen";
-$a->strings["Quote"] = "Citeren";
-$a->strings["Code"] = "Broncode";
-$a->strings["Image"] = "Afbeelding";
-$a->strings["Insert Link"] = "Link invoegen";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Voorvertoning";
-$a->strings["Encrypt text"] = "Tekst versleutelen";
$a->strings["parent"] = "omhoog";
$a->strings["Collection"] = "map";
$a->strings["Principal"] = "principal";
@@ -98,6 +31,8 @@ $a->strings["Name"] = "Naam";
$a->strings["Type"] = "Type";
$a->strings["Size"] = "Grootte";
$a->strings["Last Modified"] = "Laatst gewijzigd";
+$a->strings["Edit"] = "Bewerken";
+$a->strings["Delete"] = "Verwijderen";
$a->strings["You are using %1\$s of your available file storage."] = "Je gebruikt %1\$s van de beschikbare bestandsopslag.";
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Je gebruikt %1\$s van totaal %2\$s beschikbare bestandsopslag. (%3\$s&#37;)";
$a->strings["WARNING:"] = "WAARSCHUWING:";
@@ -126,6 +61,7 @@ $a->strings["Show"] = "Tonen";
$a->strings["Don't show"] = "Niet tonen";
$a->strings["Other networks and post services"] = "Andere netwerken en diensten";
$a->strings["Permissions"] = "Permissies";
+$a->strings["Close"] = "Sluiten";
$a->strings[" and "] = " en ";
$a->strings["public profile"] = "openbaar profiel";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2\$s naar &ldquo;%3\$s&rdquo;";
@@ -162,7 +98,7 @@ $a->strings["Profile Photo"] = "Profielfoto";
$a->strings["Update"] = "Bijwerken";
$a->strings["Install"] = "Installeren";
$a->strings["Purchase"] = "Aanschaffen";
-$a->strings["Permission denied."] = "Toegang geweigerd";
+$a->strings["Permission denied."] = "Toegang geweigerd.";
$a->strings["Item was not found."] = "Item niet gevonden";
$a->strings["No source file."] = "Geen bronbestand.";
$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
@@ -248,10 +184,18 @@ $a->strings["__ctx:title__ Abstain"] = "onthoudingen";
$a->strings["__ctx:title__ Attending"] = "aanwezig";
$a->strings["__ctx:title__ Not attending"] = "niet aanwezig";
$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig";
+$a->strings["Select"] = "Kies";
+$a->strings["Private Message"] = "Niet voor iedereen zichtbaar";
+$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd";
+$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist";
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
$a->strings["Categories:"] = "Categorieën:";
$a->strings["Filed under:"] = "Bewaard onder:";
+$a->strings["from %s"] = "van %s";
+$a->strings["last edited: %s"] = "laatst bewerkt: %s";
+$a->strings["Expires: %s"] = "Verloopt: %s";
$a->strings["View in context"] = "In context bekijken";
+$a->strings["Please wait"] = "Even wachten";
$a->strings["remove"] = "verwijderen";
$a->strings["Loading..."] = "Aan het laden...";
$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items";
@@ -288,9 +232,15 @@ $a->strings["Tag term:"] = "Tag:";
$a->strings["Save to Folder:"] = "Bewaar in map: ";
$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM";
+$a->strings["Preview"] = "Voorvertoning";
$a->strings["Share"] = "Delen";
$a->strings["Page link name"] = "Linknaam pagina";
$a->strings["Post as"] = "Bericht plaatsen als";
+$a->strings["Bold"] = "Vet";
+$a->strings["Italic"] = "Cursief";
+$a->strings["Underline"] = "Onderstrepen";
+$a->strings["Quote"] = "Citeren";
+$a->strings["Code"] = "Broncode";
$a->strings["Upload photo"] = "Foto uploaden";
$a->strings["upload photo"] = "foto uploaden";
$a->strings["Attach file"] = "Bestand toevoegen";
@@ -314,6 +264,7 @@ $a->strings["Public post"] = "Openbaar bericht";
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be";
$a->strings["Set expiration date"] = "Verloopdatum instellen";
$a->strings["Set publish date"] = "Publicatiedatum instellen";
+$a->strings["Encrypt text"] = "Tekst versleutelen";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annuleren";
$a->strings["Discover"] = "Ontdekken";
@@ -339,6 +290,15 @@ $a->strings["Files and Storage"] = "Bestanden en opslagruimte";
$a->strings["Chatrooms"] = "Chatkanalen";
$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers";
$a->strings["Manage Webpages"] = "Webpagina's beheren";
+$a->strings["View all"] = "Toon alles";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "vindt dit leuk",
+ 1 => "vinden dit leuk",
+);
+$a->strings["__ctx:noun__ Dislike"] = array(
+ 0 => "vindt dit niet leuk",
+ 1 => "vinden dit niet leuk",
+);
$a->strings["__ctx:noun__ Attending"] = array(
0 => "aanwezig",
1 => "aanwezig",
@@ -419,6 +379,8 @@ $a->strings["Cannot create a duplicate channel identifier on this system. Import
$a->strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt.";
$a->strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt.";
$a->strings["Delete this item?"] = "Dit item verwijderen?";
+$a->strings["Comment"] = "Reactie";
+$a->strings["[+] show all"] = "[+] alle";
$a->strings["[-] show less"] = "[-] minder reacties weergeven";
$a->strings["[+] expand"] = "[+] uitklappen";
$a->strings["[-] collapse"] = "[-] inklappen";
@@ -433,6 +395,7 @@ $a->strings["Nothing new here"] = "Niets nieuw hier";
$a->strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)";
$a->strings["Rating"] = "Beoordeling";
$a->strings["Describe (optional)"] = "Omschrijving (optioneel)";
+$a->strings["Submit"] = "Opslaan";
$a->strings["Please enter a link URL"] = "Vul een internetadres/URL in:";
$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?";
$a->strings["Location"] = "Locatie";
@@ -638,7 +601,9 @@ $a->strings["have"] = "heb";
$a->strings["has"] = "heeft";
$a->strings["want"] = "wil";
$a->strings["wants"] = "wil";
+$a->strings["like"] = "vind dit leuk";
$a->strings["likes"] = "vindt dit leuk";
+$a->strings["dislike"] = "vind dit niet leuk";
$a->strings["dislikes"] = "vindt dit niet leuk";
$a->strings["Invalid data packet"] = "Datapakket ongeldig";
$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. ";
@@ -998,6 +963,41 @@ $a->strings["Plugin Features"] = "Plugin-opties";
$a->strings["User registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten";
$a->strings["View Photo"] = "Foto weergeven";
$a->strings["Edit Album"] = "Album bewerken";
+$a->strings["Save to Folder"] = "In map opslaan";
+$a->strings["I will attend"] = "Aanwezig";
+$a->strings["I will not attend"] = "Niet aanwezig";
+$a->strings["I might attend"] = "Mogelijk aanwezig";
+$a->strings["I agree"] = "Eens";
+$a->strings["I disagree"] = "Oneens";
+$a->strings["I abstain"] = "Onthouding";
+$a->strings["Add Star"] = "Ster toevoegen";
+$a->strings["Remove Star"] = "Ster verwijderen";
+$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen";
+$a->strings["starred"] = "met ster";
+$a->strings["Add Tag"] = "Tag toevoegen";
+$a->strings["I like this (toggle)"] = "Vind ik leuk";
+$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk";
+$a->strings["Share This"] = "Delen";
+$a->strings["share"] = "delen";
+$a->strings["Delivery Report"] = "Afleveringsrapport";
+$a->strings["%d comment"] = array(
+ 0 => "%d reactie",
+ 1 => "%d reacties weergeven",
+);
+$a->strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s";
+$a->strings["to"] = "aan";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal";
+$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal";
+$a->strings["Save Bookmarks"] = "Bladwijzers opslaan";
+$a->strings["Add to Calendar"] = "Aan agenda toevoegen";
+$a->strings["Mark all seen"] = "Markeer alles als bekeken";
+$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk";
+$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk";
+$a->strings["This is you"] = "Dit ben jij";
+$a->strings["Image"] = "Afbeelding";
+$a->strings["Insert Link"] = "Link invoegen";
+$a->strings["Video"] = "Video";
$a->strings["Not Found"] = "Niet gevonden";
$a->strings["Page not found."] = "Pagina niet gevonden.";
$a->strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de <a href=\"directory\">kanalengids</a>, om kanalen te vinden. Rechtsboven vind je ook <a href=\"directory\">apps</a>, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor <a href=\"directory\">hulp</a> met \$Projectname klik je op het vraagteken.";
@@ -1289,6 +1289,7 @@ $a->strings["Nothing to import."] = "Niets gevonden om te importeren";
$a->strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden";
$a->strings["Imported file is empty."] = "Geïmporteerde bestand is leeg";
$a->strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter.";
+$a->strings["Server platform is not compatible. Operation not permitted."] = "Server-platform is niet compatibel. Actie is niet toegestaan.";
$a->strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt.";
$a->strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken.";
$a->strings["Import Channel"] = "Kanaal importeren";
@@ -1319,10 +1320,10 @@ $a->strings["Send invitations"] = "Uitnodigingen verzenden";
$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:";
$a->strings["Your message:"] = "Jouw bericht:";
$a->strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org";
-$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven: ";
+$a->strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:";
-$a->strings["or visit "] = "of bezoek ";
+$a->strings["or visit"] = "of bezoek";
$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]";
$a->strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. ";
$a->strings["Empty post discarded."] = "Leeg bericht geannuleerd";
@@ -1907,7 +1908,7 @@ $a->strings["Redirect"] = "Redirect/doorverwijzing";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist";
$a->strings["Icon url"] = "URL van pictogram";
$a->strings["Optional"] = "Optioneel";
-$a->strings["You can't edit this application."] = "Je kan deze applicatie niet bewerken";
+$a->strings["Application not found."] = "Applicatie niet gevonden.";
$a->strings["Connected Apps"] = "Verbonden applicaties";
$a->strings["Client key starts with"] = "Client key begint met";
$a->strings["No name"] = "Geen naam";
@@ -2025,7 +2026,7 @@ $a->strings["Personal menu to display in your channel pages"] = "Persoonlijk men
$a->strings["Remove this channel."] = "Verwijder dit kanaal.";
$a->strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share";
$a->strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag";
-$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server - Setup";
+$a->strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup";
$a->strings["Could not connect to database."] = "Could not connect to database.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue.";
$a->strings["Could not create table."] = "Could not create table.";
@@ -2036,7 +2037,7 @@ $a->strings["System check"] = "System check";
$a->strings["Check again"] = "Check again";
$a->strings["Database connection"] = "Database connection";
$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
$a->strings["Database Server Name"] = "Database Server Name";
$a->strings["Default is 127.0.0.1"] = "Default is 127.0.0.1";
@@ -2052,6 +2053,8 @@ $a->strings["Website URL"] = "Hub URL";
$a->strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available.";
$a->strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub";
$a->strings["Site settings"] = "Hub settings";
+$a->strings["Enable \$Projectname <strong>advanced</strong> features?"] = "Enable \$Projectname <strong>advanced</strong> features?";
+$a->strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Some advanced features, while useful - may be best suited for technically proficient audiences";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "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.";
$a->strings["PHP executable path"] = "PHP executable path";
@@ -2107,7 +2110,7 @@ $a->strings["Url rewrite in .htaccess is not working. Check your server configur
$a->strings["Url rewrite is working"] = "Url rewrite is working";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root.";
$a->strings["Errors encountered creating database tables."] = "Errors encountered creating database tables.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
+$a->strings["<h1>What next</h1>"] = "<h1>What next</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
$a->strings["No valid account found."] = "Geen geldige account gevonden.";
$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail.";
diff --git a/view/tpl/cover_photo.tpl b/view/tpl/cover_photo.tpl
index 1db139e7b..4352501ae 100755
--- a/view/tpl/cover_photo.tpl
+++ b/view/tpl/cover_photo.tpl
@@ -1,23 +1,29 @@
-<div class="generic-content-wrapper-styled">
-<h1>{{$title}}</h1>
+<div id="profile-photo-content" class="generic-content-wrapper">
+ <div class="section-title-wrapper">
+ <h2>{{$title}}</h2>
+ </div>
+ <div class="section-content-wrapper">
-<form enctype="multipart/form-data" action="cover_photo" method="post">
-<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
+ <form enctype="multipart/form-data" action="cover_photo" method="post">
+ <input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
-<div id="profile-photo-upload-wrapper">
+ <div id="profile-photo-upload-wrapper">
-<label id="profile-photo-upload-label" class="form-label" for="profile-photo-upload">{{$lbl_upfile}}</label>
-<input name="userfile" class="form-input" type="file" id="profile-photo-upload" size="48" />
-<div class="clear"></div>
+ <label id="profile-photo-upload-label" class="form-label" for="profile-photo-upload">{{$lbl_upfile}}</label>
+ <input name="userfile" class="form-input" type="file" id="profile-photo-upload" size="48" />
+ <div class="clear"></div>
+ <br />
+ <br />
+ <div id="profile-photo-submit-wrapper">
+ <input type="submit" name="submit" id="profile-photo-submit" value="{{$submit}}">
+ </div>
+ </div>
-<div id="profile-photo-submit-wrapper">
-<input type="submit" name="submit" id="profile-photo-submit" value="{{$submit}}">
-</div>
-</div>
-
-</form>
-
-<div id="profile-photo-link-select-wrapper">
-{{$select}}
-</div>
+ </form>
+ <br />
+ <br />
+ <div id="profile-photo-link-select-wrapper">
+ {{$select}}
+ </div>
+ </div>
</div>
diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl
index 8a007232e..322273193 100755
--- a/view/tpl/head.tpl
+++ b/view/tpl/head.tpl
@@ -28,6 +28,7 @@
var justifiedGalleryActive = false;
{{if $channel_hash}}var channelHash = '{{$channel_hash}}';{{/if}}
{{if $channel_id}}var channelId = '{{$channel_id}}';{{/if}}{{* Used in e.g. autocomplete *}}
+ var preloadImages = {{$preload_images}};
</script>
diff --git a/view/tpl/mood_content.tpl b/view/tpl/mood_content.tpl
index 4059620ce..315ee4c8a 100755
--- a/view/tpl/mood_content.tpl
+++ b/view/tpl/mood_content.tpl
@@ -5,27 +5,29 @@
</div>
<div class="section-content-wrapper">
- <div id="mood-desc">{{$desc}}</div>
+ <div id="mood-desc">{{$desc}}</div>
-<br />
-<br />
+ <br />
+ <br />
-<form action="mood" method="get">
-<br />
-<br />
+ <form action="mood" method="get">
+ <br />
+ <br />
-<input id="mood-parent" type="hidden" value="{{$parent}}" name="parent" />
+ <input id="mood-parent" type="hidden" value="{{$parent}}" name="parent" />
-<div class="form-group field custom">
- <select name="verb" id="mood-verb-select" class="form-control" >
- {{foreach $verbs as $v}}
- <option value="{{$v.0}}">{{$v.1}}</option>
- {{/foreach}}
- </select>
-</div>
-<br />
-<br />
-<input type="submit" name="submit" value="{{$submit}}" />
-</form>
+ <div class="form-group field custom">
+ <select name="verb" id="mood-verb-select" class="form-control" >
+ {{foreach $verbs as $v}}
+ <option value="{{$v.0}}">{{$v.1}}</option>
+ {{/foreach}}
+ </select>
+ </div>
+ <br />
+ <br />
+ <input type="submit" name="submit" value="{{$submit}}" />
+ </form>
+ </div>
+</div>
diff --git a/view/tpl/pdledit.tpl b/view/tpl/pdledit.tpl
index 9df93e4c6..af8e37602 100644
--- a/view/tpl/pdledit.tpl
+++ b/view/tpl/pdledit.tpl
@@ -1,3 +1,4 @@
+<div class="generic-content-wrapper-styled">
<h1>{{$header}}</h1>
<h2>{{$mname}} {{$module}}</h2>
@@ -17,5 +18,4 @@
<input type="submit" name="submit" value="{{$submit}}" />
</form>
-
-
+</div>
diff --git a/view/tpl/profile_photo.tpl b/view/tpl/profile_photo.tpl
index fbed32606..88e17407b 100755
--- a/view/tpl/profile_photo.tpl
+++ b/view/tpl/profile_photo.tpl
@@ -1,31 +1,43 @@
-<div class="generic-content-wrapper-styled">
-<h1>{{$title}}</h1>
+<div id="profile-photo-content" class="generic-content-wrapper">
+ <div class="section-title-wrapper">
+ <h2>{{$title}}</h2>
+ </div>
+ <div class="section-content-wrapper">
-<form enctype="multipart/form-data" action="profile_photo" method="post">
-<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
+ <form enctype="multipart/form-data" action="profile_photo" method="post">
+ <input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
-<div id="profile-photo-upload-wrapper">
+ <div id="profile-photo-upload-wrapper">
-<label id="profile-photo-upload-label" class="form-label" for="profile-photo-upload">{{$lbl_upfile}}</label>
-<input name="userfile" class="form-input" type="file" id="profile-photo-upload" size="48" />
-<div class="clear"></div>
+ <label id="profile-photo-upload-label" class="form-label" for="profile-photo-upload">{{$lbl_upfile}}</label>
+ <input name="userfile" class="form-input" type="file" id="profile-photo-upload" size="48" />
+ <div class="clear"></div>
-<label id="profile-photo-profiles-label" class="form-label" for="profile-photo-profiles">{{$lbl_profiles}}</label>
-<select name="profile" id="profile-photo-profiles" class="form-input" >
-{{foreach $profiles as $p}}
-<option value="{{$p.id}}" {{if $p.is_default}}selected="selected"{{/if}}>{{$p.name}}</option>
-{{/foreach}}
-</select>
-<div class="clear"></div>
+ {{if $single}}
+ <input type="hidden" name="profile" value="{{$profile0.id}}" />
+ {{else}}
-<div id="profile-photo-submit-wrapper">
-<input type="submit" name="submit" id="profile-photo-submit" value="{{$submit}}">
-</div>
-</div>
+ <label id="profile-photo-profiles-label" class="form-label" for="profile-photo-profiles">{{$lbl_profiles}}</label>
+ <select name="profile" id="profile-photo-profiles" class="form-control" >
+ {{foreach $profiles as $p}}
+ <option value="{{$p.id}}" {{if $p.is_default}}selected="selected"{{/if}}>{{$p.name}}</option>
+ {{/foreach}}
+ </select>
+ <div class="clear"></div>
+ <br />
+ <br />
+ {{/if}}
-</form>
+ <div id="profile-photo-submit-wrapper">
+ <input type="submit" name="submit" id="profile-photo-submit" value="{{$submit}}">
+ </div>
+ </div>
-<div id="profile-photo-link-select-wrapper">
-{{$select}}
-</div>
+ </form>
+ <br />
+ <br />
+ <div id="profile-photo-link-select-wrapper">
+ {{$select}}
+ </div>
+ </div>
</div>
diff --git a/view/tpl/register.tpl b/view/tpl/register.tpl
index b72e069c3..6c1bc87a4 100755
--- a/view/tpl/register.tpl
+++ b/view/tpl/register.tpl
@@ -31,14 +31,12 @@
{{include file="field_select_grouped.tpl" field=$role}}
<div id="newchannel-role-end" class="newchannel-field-end"></div>
{{/if}}
-
- <div id="newchannel-name-help" class="descriptive-paragraph">{{$help_name}}</div>
-
<label for="newchannel-name" id="label-newchannel-name" class="register-label" >{{$label_name}}</label>
<input type="text" name="name" id="newchannel-name" class="register-input" value="{{$name}}" />
<div id="name-spinner"></div>
<div id="newchannel-name-feedback" class="register-feedback"></div>
<div id="newchannel-name-end" class="register-field-end"></div>
+ <div id="newchannel-name-help" class="descriptive-paragraph">{{$help_name}}</div>
{{/if}}
@@ -62,12 +60,13 @@
<div id="register-password2-end" class="register-field-end"></div>
{{if $auto_create}}
- <div id="newchannel-nick-desc" class="descriptive-paragraph">{{$nick_desc}}</div>
<label for="newchannel-nickname" id="label-newchannel-nickname" class="register-label" >{{$label_nick}}</label>
<input type="text" name="nickname" id="newchannel-nickname" class="register-input" value="{{$nickname}}" />
<div id="nick-spinner"></div>
+ <div id="newchannel-nick-desc" style="text-align: right;">{{$nick_hub}}</div>
<div id="newchannel-nickname-feedback" class="register-feedback"></div>
<div id="newchannel-nickname-end" class="register-field-end"></div>
+ <div id="newchannel-nick-desc" class="descriptive-paragraph">{{$nick_desc}}</div>
{{/if}}
diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index 820ffd711..6f50f820a 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -1,6 +1,6 @@
<div class="generic-content-wrapper">
<div class="section-title-wrapper">
- <a title="{{$removechannel}}" class="btn btn-danger btn-xs pull-right" href="removeme"><i class="icon-trash"></i>&nbsp;{{$removeme}}</a>
+ {{if $server_role != 'basic'}}<a title="{{$removechannel}}" class="btn btn-danger btn-xs pull-right" href="removeme"><i class="icon-trash"></i>&nbsp;{{$removeme}}</a>{{/if}}
<h2>{{$ptitle}}</h2>
<div class="clear"></div>
</div>
diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl
index 02f679852..cf79671fd 100755
--- a/view/tpl/settings_display.tpl
+++ b/view/tpl/settings_display.tpl
@@ -65,6 +65,7 @@
{{include file="field_checkbox.tpl" field=$channel_list_mode}}
{{include file="field_checkbox.tpl" field=$network_list_mode}}
{{include file="field_checkbox.tpl" field=$user_scalable}}
+ {{include file="field_checkbox.tpl" field=$preload_images}}
{{if $expert}}
<div class="form-group">
<a class="btn btn-default "href="pdledit">{{$layout_editor}}</a>
diff --git a/view/tpl/settings_oauth.tpl b/view/tpl/settings_oauth.tpl
index 20e8f458f..94d76028a 100755
--- a/view/tpl/settings_oauth.tpl
+++ b/view/tpl/settings_oauth.tpl
@@ -1,7 +1,9 @@
-<div class="generic-content-wrapper-styled">
-<h1>{{$title}}</h1>
-
+<div class="generic-content-wrapper">
+<div class="section-title-wrapper">
+ <h2>{{$title}}</h2>
+</div>
+<div class="section-content-tools-wrapper">
<form action="settings/oauth" method="post" autocomplete="off">
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
@@ -31,3 +33,4 @@
</form>
</div>
+</div>
diff --git a/view/tpl/settings_oauth_edit.tpl b/view/tpl/settings_oauth_edit.tpl
index bf805363c..b94dec48a 100755
--- a/view/tpl/settings_oauth_edit.tpl
+++ b/view/tpl/settings_oauth_edit.tpl
@@ -1,5 +1,8 @@
-<h1>{{$title}}</h1>
-
+<div class="generic-content-wrapper">
+ <div class="section-title-wrapper">
+ <h2>{{$title}}</h2>
+ </div>
+<div class="section-content-tools-wrapper">
<form method="POST">
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
@@ -15,3 +18,5 @@
</div>
</form>
+</div>
+</div>