Merge https://github.com/friendica/red into pending_merge
This commit is contained in:
commit
de1198ccfe
23
doc/api_posting.bb
Normal file
23
doc/api_posting.bb
Normal file
@ -0,0 +1,23 @@
|
||||
[b][size=xx-large]Posting to the Matrix via the API[/size][/b]
|
||||
|
||||
The API allows you to post to the red# by HTTP POST request. Below you see an example using the command line tool cURL:
|
||||
|
||||
[code]curl -ssl -u [color=blue]$E-Mail[/color]:[color=blue]$Password[/color] -d "[color=blue]$Parameters[/color]" [url][observer.baseurl]/api/statuses/update
|
||||
[/url][/code]
|
||||
[table][tr][td]$E-Mail:[/td][td]The E-Mail Adress you use to login[/td][/tr]
|
||||
[tr][td]$Password:[/td][td]The Password you use to login[/td][/tr]
|
||||
[tr][td]$Parameters:[/td][td]That's the interesting part, here you insert the content you want to send using the following parameters:[/td][/tr][/table]
|
||||
|
||||
[ul]
|
||||
[*]title: the title of the posting
|
||||
[*]channel: the channel you want to post to
|
||||
[*]category: a comma-seperated list of categories for the posting
|
||||
[*]status: the content of the posting, formatted with BBCode
|
||||
OR
|
||||
[*]htmlstatus:the content of the posting, formatted in HTML.
|
||||
[/ul]
|
||||
|
||||
|
||||
Instead of calling [observer.baseurl]/api/statuses/update which returns a json (you could also add .json on the end to clarify) output, you can use [observer.baseurl]/api/statuses/update.xml to get an xml formatted return.
|
||||
|
||||
Instead of Basic HTTP Authentification you could also use oAuth.
|
@ -41,6 +41,31 @@ This will open up an editor where you can describe the changes you have made. S
|
||||
Finally, push the changes to your own git
|
||||
[code]git push[/code]
|
||||
|
||||
And that's it!
|
||||
And that's it, your repo is up to date!
|
||||
|
||||
Return to the [url=[baseurl]/help/main]Main documentation page[/url]
|
||||
All you need to do now is actually create the pull request. There are two ways to do this.
|
||||
|
||||
The easy way, if you're using Github is to simply click the green button at the top of your own copy of the repository, enter a description of the changes, and click 'create pull request'. The
|
||||
main repository, themes, and addons all have their main branch at Github, so this method can be used most of the time.
|
||||
|
||||
Most people can stop here.
|
||||
|
||||
Some projects in the extended RedMatrix ecosphere have no Github presence, to pull request these is a bit different - you'll have to create your pull request manually. Fortunately, this isn't
|
||||
much harder.
|
||||
|
||||
[code]git request-pull -p <start> <url>[/code]
|
||||
|
||||
Start is the name of a commit to start at. This must exist upstream. Normally, you just want master.
|
||||
|
||||
URL is the URL of [i]your[/i] repo.
|
||||
|
||||
One can also specify <end>. This defaults to HEAD.
|
||||
|
||||
Example:
|
||||
[code]
|
||||
git request-pull master https://example.com/project
|
||||
[/code]
|
||||
|
||||
And simply send the output to the project maintainer.
|
||||
|
||||
Return to the [url=[baseurl]/help/main]Main documentation page[/url]
|
||||
|
@ -13,7 +13,7 @@ Think of standalone family communication platforms, distributed online communiti
|
||||
Zot is the great new communicaton protocol invented especially for the Red Matrix. As a member you are no longer bound to a single site or hub thanks to "Nomadic Identities". Migrate easily to another server and keep your contacts intact, or clone it and run the same channel on several servers. Just in case one of them might shut down, you don't lose out. Plus once you are inside the Red Matrix there is no need for you to authenticate twice, even when accessing another Red Matrix site. Zot is what sets the Red Matrix apart.
|
||||
|
||||
[size=large][b]Getting Started[/b][/size]
|
||||
[zrl=[baseurl]/help/Privacy]Privacy Policy[/zrl]
|
||||
[zrl=[baseurl]/help/Privacy]Privacy Policy[/zrl]
|
||||
[zrl=[baseurl]/help/registration]Account Registration[/zrl]
|
||||
[zrl=[baseurl]/help/accounts_profiles_channels_basics]You at the Red Matrix: accounts, profiles and channels in short[/zrl]
|
||||
[zrl=[baseurl]/help/profiles]Profiles[/zrl]
|
||||
@ -58,6 +58,7 @@ Zot is the great new communicaton protocol invented especially for the Red Matri
|
||||
[zrl=[baseurl]/help/developers]Developers[/zrl]
|
||||
[zrl=[baseurl]/help/intro_for_developers]Intro for Developers[/zrl]
|
||||
[zrl=[baseurl]/help/api_functions]API functions[/zrl]
|
||||
[zrl=[baseurl]/help/api_posting]Posting to the red# using the API[/zrl]
|
||||
[zrl=[baseurl]/help/developer_function_primer]Red Functions 101[/zrl]
|
||||
[zrl=[baseurl]/doc/html/]Code Reference (doxygen generated - sets cookies)[/zrl]
|
||||
[zrl=[baseurl]/help/to_do_doco]To-Do list for the Red Documentation Project[/zrl]
|
||||
|
@ -418,72 +418,76 @@ function post_to_red_get_avatar($avatar,$id_or_email,$size,$default,$alt) {
|
||||
|
||||
// from:
|
||||
// http://www.docgate.com/tutorial/php/how-to-convert-html-to-bbcode-with-php-script.html
|
||||
function xpost_to_html2bbcode($text) {
|
||||
$htmltags = array(
|
||||
'/\<b\>(.*?)\<\/b\>/is',
|
||||
'/\<i\>(.*?)\<\/i\>/is',
|
||||
'/\<u\>(.*?)\<\/u\>/is',
|
||||
'/\<ul.*?\>(.*?)\<\/ul\>/is',
|
||||
'/\<li\>(.*?)\<\/li\>/is',
|
||||
'/\<img(.*?) src=\"(.*?)\" alt=\"(.*?)\" title=\"Smile(y?)\" \/\>/is', // some smiley
|
||||
'/\<img(.*?) src=\"http:\/\/(.*?)\" (.*?)\>/is',
|
||||
'/\<img(.*?) src=\"(.*?)\" alt=\":(.*?)\" .*? \/\>/is', // some smiley
|
||||
'/\<div class=\"quotecontent\"\>(.*?)\<\/div\>/is',
|
||||
'/\<div class=\"codecontent\"\>(.*?)\<\/div\>/is',
|
||||
'/\<div class=\"quotetitle\"\>(.*?)\<\/div\>/is',
|
||||
'/\<div class=\"codetitle\"\>(.*?)\<\/div\>/is',
|
||||
'/\<cite.*?\>(.*?)\<\/cite\>/is',
|
||||
'/\<blockquote.*?\>(.*?)\<\/blockquote\>/is',
|
||||
'/\<div\>(.*?)\<\/div\>/is',
|
||||
'/\<code\>(.*?)\<\/code\>/is',
|
||||
'/\<br(.*?)\>/is',
|
||||
'/\<strong\>(.*?)\<\/strong\>/is',
|
||||
'/\<em\>(.*?)\<\/em\>/is',
|
||||
'/\<a href=\"mailto:(.*?)\"(.*?)\>(.*?)\<\/a\>/is',
|
||||
'/\<a .*?href=\"(.*?)\"(.*?)\>http:\/\/(.*?)\<\/a\>/is',
|
||||
'/\<a .*?href=\"(.*?)\"(.*?)\>(.*?)\<\/a\>/is'
|
||||
);
|
||||
|
||||
$bbtags = array(
|
||||
'[b]$1[/b]',
|
||||
'[i]$1[/i]',
|
||||
'[u]$1[/u]',
|
||||
'[list]$1[/list]',
|
||||
'[*]$1',
|
||||
'$3',
|
||||
'[img]http://$2[/img]' . "\n",
|
||||
':$3',
|
||||
'[quote]$1[/quote]',
|
||||
'[code]$1[/code]',
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
'[quote]$1[/quote]',
|
||||
'$1',
|
||||
'[code]$1[/code]',
|
||||
"\n",
|
||||
'[b]$1[/b]',
|
||||
'[i]$1[/i]',
|
||||
'[email=$1]$3[/email]',
|
||||
'[url]$1[/url]',
|
||||
'[url=$1]$3[/url]'
|
||||
);
|
||||
//function exists also in post to friendica plugin; load only if not yet loaded by that plugin
|
||||
if(!function_exists('xpost_to_html2bbcode')) {
|
||||
function xpost_to_html2bbcode($text) {
|
||||
$htmltags = array(
|
||||
'/\<b\>(.*?)\<\/b\>/is',
|
||||
'/\<i\>(.*?)\<\/i\>/is',
|
||||
'/\<u\>(.*?)\<\/u\>/is',
|
||||
'/\<ul.*?\>(.*?)\<\/ul\>/is',
|
||||
'/\<li\>(.*?)\<\/li\>/is',
|
||||
'/\<img(.*?) src=\"(.*?)\" alt=\"(.*?)\" title=\"Smile(y?)\" \/\>/is', // some smiley
|
||||
'/\<img(.*?) src=\"http:\/\/(.*?)\" (.*?)\>/is',
|
||||
'/\<img(.*?) src=\"(.*?)\" alt=\":(.*?)\" .*? \/\>/is', // some smiley
|
||||
'/\<div class=\"quotecontent\"\>(.*?)\<\/div\>/is',
|
||||
'/\<div class=\"codecontent\"\>(.*?)\<\/div\>/is',
|
||||
'/\<div class=\"quotetitle\"\>(.*?)\<\/div\>/is',
|
||||
'/\<div class=\"codetitle\"\>(.*?)\<\/div\>/is',
|
||||
'/\<cite.*?\>(.*?)\<\/cite\>/is',
|
||||
'/\<blockquote.*?\>(.*?)\<\/blockquote\>/is',
|
||||
'/\<div\>(.*?)\<\/div\>/is',
|
||||
'/\<code\>(.*?)\<\/code\>/is',
|
||||
'/\<br(.*?)\>/is',
|
||||
'/\<strong\>(.*?)\<\/strong\>/is',
|
||||
'/\<em\>(.*?)\<\/em\>/is',
|
||||
'/\<a href=\"mailto:(.*?)\"(.*?)\>(.*?)\<\/a\>/is',
|
||||
'/\<a .*?href=\"(.*?)\"(.*?)\>http:\/\/(.*?)\<\/a\>/is',
|
||||
'/\<a .*?href=\"(.*?)\"(.*?)\>(.*?)\<\/a\>/is'
|
||||
);
|
||||
|
||||
$text = str_replace ("\n", ' ', $text);
|
||||
$ntext = preg_replace ($htmltags, $bbtags, $text);
|
||||
$ntext = preg_replace ($htmltags, $bbtags, $ntext);
|
||||
$bbtags = array(
|
||||
'[b]$1[/b]',
|
||||
'[i]$1[/i]',
|
||||
'[u]$1[/u]',
|
||||
'[list]$1[/list]',
|
||||
'[*]$1',
|
||||
'$3',
|
||||
'[img]http://$2[/img]' . "\n",
|
||||
':$3',
|
||||
'[quote]$1[/quote]',
|
||||
'[code]$1[/code]',
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
'[quote]$1[/quote]',
|
||||
'$1',
|
||||
'[code]$1[/code]',
|
||||
"\n",
|
||||
'[b]$1[/b]',
|
||||
'[i]$1[/i]',
|
||||
'[email=$1]$3[/email]',
|
||||
'[url]$1[/url]',
|
||||
'[url=$1]$3[/url]'
|
||||
);
|
||||
|
||||
// for too large text and cannot handle by str_replace
|
||||
if (!$ntext) {
|
||||
$ntext = str_replace(array('<br>', '<br />'), "\n", $text);
|
||||
$ntext = str_replace(array('<strong>', '</strong>'), array('[b]', '[/b]'), $ntext);
|
||||
$ntext = str_replace(array('<em>', '</em>'), array('[i]', '[/i]'), $ntext);
|
||||
}
|
||||
|
||||
$ntext = strip_tags($ntext);
|
||||
$text = str_replace ("\n", ' ', $text);
|
||||
$ntext = preg_replace ($htmltags, $bbtags, $text);
|
||||
$ntext = preg_replace ($htmltags, $bbtags, $ntext);
|
||||
|
||||
$ntext = trim(html_entity_decode($ntext,ENT_QUOTES,'UTF-8'));
|
||||
return $ntext;
|
||||
// for too large text and cannot handle by str_replace
|
||||
if (!$ntext) {
|
||||
$ntext = str_replace(array('<br>', '<br />'), "\n", $text);
|
||||
$ntext = str_replace(array('<strong>', '</strong>'), array('[b]', '[/b]'), $ntext);
|
||||
$ntext = str_replace(array('<em>', '</em>'), array('[i]', '[/i]'), $ntext);
|
||||
}
|
||||
|
||||
$ntext = strip_tags($ntext);
|
||||
|
||||
$ntext = trim(html_entity_decode($ntext,ENT_QUOTES,'UTF-8'));
|
||||
return $ntext;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
2318
view/fr/messages.po
2318
view/fr/messages.po
File diff suppressed because it is too large
Load Diff
@ -7,10 +7,50 @@ function string_plural_select_fr($n){
|
||||
;
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BD '%s'";
|
||||
$a->strings["Profile Photos"] = "Photos du profil";
|
||||
$a->strings["%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["Site Admin"] = "Administrateur";
|
||||
$a->strings["Bookmarks"] = "Favoris";
|
||||
$a->strings["Address Book"] = "Carnet d'adresse";
|
||||
$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["Webpages"] = "Pages web";
|
||||
$a->strings["Channel Home"] = "Mon canal";
|
||||
$a->strings["Profile"] = "Profil";
|
||||
$a->strings["Photos"] = "Photos";
|
||||
$a->strings["Events"] = "Événements";
|
||||
$a->strings["Directory"] = "Annuaire";
|
||||
$a->strings["Help"] = "Aide";
|
||||
$a->strings["Mail"] = "Messages";
|
||||
$a->strings["Mood"] = "Humeur";
|
||||
$a->strings["Poke"] = "Cogner";
|
||||
$a->strings["Chat"] = "Clavardage";
|
||||
$a->strings["Search"] = "Recherche";
|
||||
$a->strings["Probe"] = "Sonder";
|
||||
$a->strings["Suggest"] = "Suggérer";
|
||||
$a->strings["Random Channel"] = "Un Canal au Hasard";
|
||||
$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["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";
|
||||
@ -23,7 +63,6 @@ $a->strings["%d Connection"] = array(
|
||||
1 => "%d relations",
|
||||
);
|
||||
$a->strings["View Connections"] = "Voir les relations";
|
||||
$a->strings["Search"] = "Recherche";
|
||||
$a->strings["Save"] = "Sauver";
|
||||
$a->strings["poke"] = "cogne";
|
||||
$a->strings["poked"] = "C'est fait cogner";
|
||||
@ -87,9 +126,7 @@ $a->strings["Select a page layout: "] = "Choisir une mise en page :";
|
||||
$a->strings["default"] = "défaut";
|
||||
$a->strings["Page content type: "] = "Type de contenu :";
|
||||
$a->strings["Select an alternate language"] = "Choisir une langue alternative";
|
||||
$a->strings["photo"] = "photo";
|
||||
$a->strings["event"] = "événement";
|
||||
$a->strings["status"] = "le statut";
|
||||
$a->strings["comment"] = "commentaire";
|
||||
$a->strings["activity"] = "activité";
|
||||
$a->strings["Design"] = "Conception";
|
||||
@ -98,7 +135,6 @@ $a->strings["Menus"] = "Menus";
|
||||
$a->strings["Layouts"] = "Mises-en-page";
|
||||
$a->strings["Pages"] = "Pages";
|
||||
$a->strings["New Page"] = "Nouvelle page";
|
||||
$a->strings["Edit"] = "Éditer";
|
||||
$a->strings["View"] = "Voir";
|
||||
$a->strings["Preview"] = "Aperçu";
|
||||
$a->strings["Actions"] = "Actions";
|
||||
@ -129,7 +165,7 @@ $a->strings["Unable to process image"] = "Impossible de traiter l'image";
|
||||
$a->strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
|
||||
$a->strings["Photo Albums"] = "Albums photo";
|
||||
$a->strings["Upload New Photos"] = "Ajouter des photos";
|
||||
$a->strings["Visible to everybody"] = "Visible pour tous";
|
||||
$a->strings["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";
|
||||
@ -169,34 +205,26 @@ $a->strings["View Profile"] = "Voir profil";
|
||||
$a->strings["Your profile page"] = "Votre profil";
|
||||
$a->strings["Edit Profiles"] = "Éditer les profils";
|
||||
$a->strings["Manage/Edit profiles"] = "Gérer/éditer les profils";
|
||||
$a->strings["Photos"] = "Photos";
|
||||
$a->strings["Edit Profile"] = "Éditer le profil";
|
||||
$a->strings["Edit your profile"] = "Éditer votre profil";
|
||||
$a->strings["Your photos"] = "Vos photos";
|
||||
$a->strings["Files"] = "Fichiers";
|
||||
$a->strings["Your files"] = "Vos fichiers";
|
||||
$a->strings["Chat"] = "Clavardage";
|
||||
$a->strings["Your chatrooms"] = "Vos salons";
|
||||
$a->strings["Bookmarks"] = "Favoris";
|
||||
$a->strings["Your bookmarks"] = "Vos favoris";
|
||||
$a->strings["Webpages"] = "Pages web";
|
||||
$a->strings["Your webpages"] = "Vos pages web";
|
||||
$a->strings["Login"] = "Connexion";
|
||||
$a->strings["Sign in"] = "Connexion";
|
||||
$a->strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter";
|
||||
$a->strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub";
|
||||
$a->strings["Home Page"] = "Page d'accueil";
|
||||
$a->strings["Register"] = "S'inscrire";
|
||||
$a->strings["Create an account"] = "Créer un compte";
|
||||
$a->strings["Help"] = "Aide";
|
||||
$a->strings["Help and documentation"] = "Aide et documentation";
|
||||
$a->strings["Apps"] = "Applications";
|
||||
$a->strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux";
|
||||
$a->strings["Search site content"] = "Rechercher parmi le contenu du site";
|
||||
$a->strings["Directory"] = "Annuaire";
|
||||
$a->strings["Channel Locator"] = "Localisation de canaux";
|
||||
$a->strings["Matrix"] = "Matrice";
|
||||
$a->strings["Your matrix"] = "Votre matrice";
|
||||
$a->strings["Mark all matrix notifications seen"] = "Marquer toutes les notifications de la matrice comme vues";
|
||||
$a->strings["Channel Home"] = "Mon canal";
|
||||
$a->strings["Channel home"] = "Mon canal";
|
||||
$a->strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues";
|
||||
$a->strings["Connections"] = "Relations";
|
||||
@ -204,31 +232,22 @@ $a->strings["Notices"] = "Notifications";
|
||||
$a->strings["Notifications"] = "Notifications";
|
||||
$a->strings["See all notifications"] = "Voir toutes les notifications";
|
||||
$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
|
||||
$a->strings["Mail"] = "Messages";
|
||||
$a->strings["Private mail"] = "Messages privés";
|
||||
$a->strings["See all private messages"] = "Voir tous les messages privés";
|
||||
$a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
|
||||
$a->strings["Inbox"] = "Boîte de réception";
|
||||
$a->strings["Outbox"] = "Boîte d'envoi";
|
||||
$a->strings["New Message"] = "Nouveau message";
|
||||
$a->strings["Events"] = "Événements";
|
||||
$a->strings["Event Calendar"] = "Calendrier des événements";
|
||||
$a->strings["See all events"] = "Voir tous les événements";
|
||||
$a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
|
||||
$a->strings["Channel Select"] = "Changer de canal";
|
||||
$a->strings["Manage Your Channels"] = "Gérer vos canaux";
|
||||
$a->strings["Settings"] = "Réglages";
|
||||
$a->strings["Account/Channel Settings"] = "Réglages du Compte/Canal";
|
||||
$a->strings["Admin"] = "Administrateur";
|
||||
$a->strings["Site Setup and Configuration"] = "Configuration du site";
|
||||
$a->strings["Nothing new here"] = "Aucun nouveau contenu trouvé";
|
||||
$a->strings["Please wait..."] = "Merci de patienter...";
|
||||
$a->strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
|
||||
$a->strings["Missing room name"] = "Il manque le nom du salon";
|
||||
$a->strings["Duplicate room name"] = "Un salon de ce nom existe déjà";
|
||||
$a->strings["Invalid room specifier."] = "Identifiant de salon invalide.";
|
||||
$a->strings["Room not found."] = "Salon introuvable.";
|
||||
$a->strings["Room is full"] = "Le salon est plein";
|
||||
$a->strings["Tags"] = "Étiquettes";
|
||||
$a->strings["Keywords"] = "Mots-clefs";
|
||||
$a->strings["have"] = "ont";
|
||||
@ -244,12 +263,6 @@ $a->strings["__ctx:noun__ Like"] = array(
|
||||
1 => "J'aime",
|
||||
);
|
||||
$a->strings["Default"] = "Défaut";
|
||||
$a->strings["Unknown | Not categorised"] = "Inconnu / Non-classé";
|
||||
$a->strings["Block immediately"] = "Bloquer";
|
||||
$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, donne dans l'auto-promotion";
|
||||
$a->strings["Known to me, but no opinion"] = "M'est connu, n'ai pas d'opinion à son sujet";
|
||||
$a->strings["OK, probably harmless"] = "OK, probablement anodin";
|
||||
$a->strings["Reputable, has my trust"] = "Réputé, je lui fais confiance";
|
||||
$a->strings["Frequently"] = "Constamment";
|
||||
$a->strings["Hourly"] = "Chaque heure";
|
||||
$a->strings["Twice daily"] = "Deux fois par jour";
|
||||
@ -359,6 +372,7 @@ $a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\
|
||||
$a->strings["Name:"] = "Nom :";
|
||||
$a->strings["Photo:"] = "Photo :";
|
||||
$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";
|
||||
@ -366,21 +380,18 @@ $a->strings["Addressbook"] = "Carnet d'adresse";
|
||||
$a->strings["Calendar"] = "Calendrier";
|
||||
$a->strings["Schedule Inbox"] = "Calendrier - Message entrants";
|
||||
$a->strings["Schedule Outbox"] = "Calendrier - Message sortants";
|
||||
$a->strings["Unknown"] = "Inconnu";
|
||||
$a->strings["%1\$s used"] = "%1\$s utilisé";
|
||||
$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s utilisé de %2\$s (%3\$s%)";
|
||||
$a->strings["Name"] = "Nom";
|
||||
$a->strings["Type"] = "Type";
|
||||
$a->strings["Size"] = "Taille";
|
||||
$a->strings["Last Modified"] = "Modifié le";
|
||||
$a->strings["Delete"] = "Supprimer";
|
||||
$a->strings["Total"] = "Total";
|
||||
$a->strings["Create new folder"] = "Nouveau dossier";
|
||||
$a->strings["Create"] = "Créer";
|
||||
$a->strings["Upload file"] = "Téléverser un fichier";
|
||||
$a->strings["Upload"] = "Envoyer";
|
||||
$a->strings["channel"] = "canal";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s déteste %3\$s de %2\$s";
|
||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses relations";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s a cogné %2\$s";
|
||||
@ -406,7 +417,6 @@ $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["Poke"] = "Cogner";
|
||||
$a->strings["%s likes this."] = "%s aime ça.";
|
||||
$a->strings["%s doesn't like this."] = "%s déteste ça.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
@ -486,6 +496,10 @@ $a->strings["Content Expiration"] = "Expiration de contenu";
|
||||
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard";
|
||||
$a->strings["Multiple Profiles"] = "Profils multiples";
|
||||
$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
|
||||
$a->strings["Advanced Profiles"] = "Profils Avancés";
|
||||
$a->strings["Additional profile sections and selections"] = "Sections additionnelles 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["Web Pages"] = "Pages web";
|
||||
$a->strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
|
||||
$a->strings["Private Notes"] = "Notes privées";
|
||||
@ -541,6 +555,26 @@ $a->strings["Channel was deleted and no longer exists."] = "Le canal a été sup
|
||||
$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 usagers 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 : %s";
|
||||
$a->strings["Connection: %s"] = "Relation : %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";
|
||||
@ -567,7 +601,6 @@ $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["Create New Profile"] = "Créer un nouveau profil";
|
||||
$a->strings["Edit Profile"] = "Éditer le profil";
|
||||
$a->strings["Profile Image"] = "Image du profil";
|
||||
$a->strings["visible to everybody"] = "visible pour tous";
|
||||
$a->strings["Edit visibility"] = "Éditer la visibilité";
|
||||
@ -583,7 +616,6 @@ $a->strings["Birthdays this week:"] = "Anniversaires cette semaine :";
|
||||
$a->strings["[No description]"] = "[Pas de description]";
|
||||
$a->strings["Event Reminders"] = "Rappels d'événements";
|
||||
$a->strings["Events this week:"] = "Événements cette semaine :";
|
||||
$a->strings["Profile"] = "Profil";
|
||||
$a->strings["Full Name:"] = "Nom complet :";
|
||||
$a->strings["Like this channel"] = "J'aime ce canal";
|
||||
$a->strings["j F, Y"] = "j F Y";
|
||||
@ -611,14 +643,6 @@ $a->strings["Work/employment:"] = "Travail :";
|
||||
$a->strings["School/education:"] = "Cursus :";
|
||||
$a->strings["Like this thing"] = "J'aime ceci";
|
||||
$a->strings["view full size"] = "pleine taille";
|
||||
$a->strings["Site Admin"] = "Administrateur";
|
||||
$a->strings["Address Book"] = "Carnet d'adresse";
|
||||
$a->strings["Mood"] = "Humeur";
|
||||
$a->strings["Probe"] = "Sonder";
|
||||
$a->strings["Suggest"] = "Suggérer";
|
||||
$a->strings["Update"] = "Mise-à-jour";
|
||||
$a->strings["Install"] = "Installer";
|
||||
$a->strings["Purchase"] = "Acheter";
|
||||
$a->strings["Image/photo"] = "Image/photo";
|
||||
$a->strings["Encrypted content"] = "Contenu chiffré";
|
||||
$a->strings["QR code"] = "code QR";
|
||||
@ -792,32 +816,25 @@ $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["Permission denied"] = "Accès refusé";
|
||||
$a->strings["(Unknown)"] = "(Inconnu)";
|
||||
$a->strings["Item not found."] = "Élément introuvable.";
|
||||
$a->strings["Collection not found."] = "Collection introuvable.";
|
||||
$a->strings["Collection is empty."] = "Collection vide.";
|
||||
$a->strings["Collection: %s"] = "Collection : %s";
|
||||
$a->strings["Connection: %s"] = "Relation : %s";
|
||||
$a->strings["Connection not found."] = "Relation introuvable.";
|
||||
$a->strings["Can view my \"public\" stream and posts"] = "Peut voir mon flux et mes publications \"publiques\"";
|
||||
$a->strings["Can view my \"public\" channel profile"] = "Peut voir mon le canal \"public\" de mon profil";
|
||||
$a->strings["Can view my \"public\" photo albums"] = "Peut voir mes albums photos \"publics\"";
|
||||
$a->strings["Can view my \"public\" address book"] = "Peut voir mes contacts \"publics\"";
|
||||
$a->strings["Can view my \"public\" file storage"] = "Peut voir mes fichiers \"publics\"";
|
||||
$a->strings["Can view my \"public\" pages"] = "Peut voir mes pages \"publiques\"";
|
||||
$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 \"public\" file storage"] = "Peut écrire dans mon stockage \"public\" de fichiers";
|
||||
$a->strings["Can edit my \"public\" pages"] = "Peut éditer mes pages \"publiques\"";
|
||||
$a->strings["Can source my \"public\" posts in derived channels"] = "Peut utiliser mes contributions \"publiques\" comme source de canaux dérivés";
|
||||
$a->strings["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";
|
||||
@ -898,6 +915,7 @@ $a->strings["%s - (Experimental)"] = "%s - (Expérimental)";
|
||||
$a->strings["Display Settings"] = "Affichage";
|
||||
$a->strings["Display Theme:"] = "Thème :";
|
||||
$a->strings["Mobile Theme:"] = "Thème mobile :";
|
||||
$a->strings["Enable user zoom on mobile devices"] = "Permettre à l'usager 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 :";
|
||||
@ -1003,6 +1021,7 @@ $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["Marital Status"] = "Statut marital";
|
||||
$a->strings["Romantic Partner"] = "Partenaire";
|
||||
@ -1025,6 +1044,8 @@ $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["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 :";
|
||||
$a->strings["Your Full Name:"] = "Votre nom complet :";
|
||||
$a->strings["Title/Description:"] = "Titre/description :";
|
||||
@ -1055,7 +1076,7 @@ $a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Diverti
|
||||
$a->strings["Love/romance"] = "Amour/Romance";
|
||||
$a->strings["Work/employment"] = "Travail/Occupation";
|
||||
$a->strings["School/education"] = "Études";
|
||||
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>pourrait</strong> être visible par tout utilisateur - fut-il anonyme - d'Internet.";
|
||||
$a->strings["This is your default profile."] = "Voilà votre profil par défault.";
|
||||
$a->strings["Age: "] = "Age :";
|
||||
$a->strings["Edit/Manage Profiles"] = "Éditer/gérer les profils";
|
||||
$a->strings["Add profile things"] = "Ajouter des choses de profil";
|
||||
@ -1111,6 +1132,7 @@ $a->strings["Away"] = "Absent";
|
||||
$a->strings["Online"] = "En ligne";
|
||||
$a->strings["Please login."] = "Merci de vous connecter.";
|
||||
$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Matrice Rouge - Pour les invités: Usager = {votre courriel}, Mot de passe = +++";
|
||||
$a->strings["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 :";
|
||||
@ -1165,6 +1187,7 @@ $a->strings["Edit contact"] = "Éditer contact";
|
||||
$a->strings["Search your connections"] = "Chercher parmi vos relations";
|
||||
$a->strings["Finding: "] = "Recherche :";
|
||||
$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é";
|
||||
@ -1249,8 +1272,6 @@ $a->strings["No entries."] = "Aucune entrée.";
|
||||
$a->strings["Public access denied."] = "Accès public refusé.";
|
||||
$a->strings["Gender: "] = "Sexe/genre :";
|
||||
$a->strings["Finding:"] = "Recherche :";
|
||||
$a->strings["next page"] = "page suivante";
|
||||
$a->strings["previous page"] = "page précédente";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
|
||||
$a->strings["Status: "] = "État :";
|
||||
$a->strings["Sexual Preference: "] = "Orientation sexuelle :";
|
||||
@ -1330,7 +1351,7 @@ $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 recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si vos certificats sont invalides, les autres administrateurs de hubs recevront constamment des messages d'avertissements de sécurité sur leur propre hub.";
|
||||
$a->strings["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 validation"] = "Validation du certificat SSL/TLS";
|
||||
@ -1364,7 +1385,7 @@ $a->strings["Version %s"] = "Version %s";
|
||||
$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées :";
|
||||
$a->strings["No installed plugins/addons/apps"] = "Aucune extension/application installée";
|
||||
$a->strings["Red"] = "Rouge";
|
||||
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Ceci est une instance - un hub - de la Matrice Rouge - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée";
|
||||
$a->strings["This is a hub of the Red Matrix - 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 Red Matrix."] = "Merci de visiter <a href=\"http://getzot.com\">GetZot.com</a> pour en apprendre davantage sur la Matrice Rouge.";
|
||||
$a->strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
|
||||
@ -1382,6 +1403,7 @@ $a->strings["Upload Photos"] = "Téléverser des photos";
|
||||
$a->strings["New album name: "] = "Créer un album :";
|
||||
$a->strings["or existing album name: "] = "ou choisir un album existant :";
|
||||
$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";
|
||||
@ -1474,6 +1496,7 @@ $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";
|
||||
@ -1654,12 +1677,12 @@ $a->strings["You have no more invitations available"] = "Vous ne disposez plus d
|
||||
$a->strings["Send invitations"] = "Envoyer des invitations";
|
||||
$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne :";
|
||||
$a->strings["Your message:"] = "Votre message :";
|
||||
$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Vous êtes cordialement invité à me rejoindre, ainsi que d'autres amis proches, sur la Matrice Rouge - un nouvel outil de communication décentralisé et révolutionnaire.";
|
||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code";
|
||||
$a->strings["Please visit my channel at"] = "Merci de me rendre visite sur";
|
||||
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Une fois inscrit (sur N'IMPORTE QUEL HUB publique - ils sont tous inter-connectés), merci d'ajouter mon Canal :";
|
||||
$a->strings["Click the [Register] link on the following page to join."] = "Cliquez le lien [S'inscrire] sur la page suivante pour nous rejoindre.";
|
||||
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Pour plus d'information sur le projet Red Matrix(Matrice Rouge), et sa capacité à remodeler Internet, merci de visiter http://getzot.com";
|
||||
$a->strings["Please join my community on RedMatrix."] = "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 RedMatrix 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 RedMatrix 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.";
|
||||
@ -1701,7 +1724,7 @@ $a->strings["Email Address"] = "Adresse de courriel";
|
||||
$a->strings["Reset"] = "Réinitialiser";
|
||||
$a->strings["Hub not found."] = "Hub introuvable.";
|
||||
$a->strings["Total votes"] = "Total des votes";
|
||||
$a->strings["Average Rating"] = "Évaluation";
|
||||
$a->strings["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é.";
|
||||
@ -1712,6 +1735,7 @@ $a->strings["Message recalled."] = "Message annulé/rappelé.";
|
||||
$a->strings["Send Private Message"] = "Envoyer un Message Privé";
|
||||
$a->strings["To:"] = "À :";
|
||||
$a->strings["Subject:"] = "Sujet :";
|
||||
$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";
|
||||
@ -1783,67 +1807,77 @@ $a->strings["Version ID"] = "Version";
|
||||
$a->strings["Price of app"] = "Prix de l'application";
|
||||
$a->strings["Location (URL) to purchase app"] = "Emplacement (LIEN) pour l'achat de l'application";
|
||||
$a->strings["Poll"] = "Sondage";
|
||||
$a->strings["View Results"] = "Résultats";
|
||||
$a->strings["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'usager 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 police de caractères";
|
||||
$a->strings["Set iconset"] = "Définir les icônes";
|
||||
$a->strings["Set big shadow size, default 15px 15px 15px"] = "Taille de l'ombre max, par défaut 15px 15px 15px";
|
||||
$a->strings["Set small shadow size, default 5px 5px 5px"] = "Taille de l'ombre min, par défaut 5px 5px 5px";
|
||||
$a->strings["Set shadow colour, default #000"] = "Couleur de l'ombre, défaut #000";
|
||||
$a->strings["Set radius size, default 5px"] = "Rayon, défaut 5px";
|
||||
$a->strings["Set line-height for posts and comments"] = "Hauteur de la ligne utilisé par les publications et les commentaires";
|
||||
$a->strings["Set background image"] = "Image de fond";
|
||||
$a->strings["Set 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 colour"] = "Couleur de fond";
|
||||
$a->strings["Set section background image"] = "Image de fond - Section";
|
||||
$a->strings["Set section background colour"] = "Image de fond - Couleur";
|
||||
$a->strings["Set colour of items - use hex"] = "Couleur des items - hexadécimal";
|
||||
$a->strings["Set colour of links - use hex"] = "Couleur des liens - hexadécimal";
|
||||
$a->strings["Set max-width for items. Default 400px"] = "Largeur maximale des items, Défaut 400px";
|
||||
$a->strings["Set min-width for items. Default 240px"] = "Largeur minimale des items, Défaut 240px";
|
||||
$a->strings["Set the generic content wrapper width. Default 48%"] = "Largeur du \"wrapper\" de contenu. Défaut 48%";
|
||||
$a->strings["Set colour of fonts - use hex"] = "Couleur des polices - Hexadécimal";
|
||||
$a->strings["Set background-size element"] = "Taille du fond";
|
||||
$a->strings["Item opacity"] = "Transparence";
|
||||
$a->strings["Display post previews only"] = "Prévisualiser seulement";
|
||||
$a->strings["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 la section";
|
||||
$a->strings["Right offset of the section element"] = "Décalage à droite de la section";
|
||||
$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 à droite du panneau latéral";
|
||||
$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 sur les pages du profil uniquement";
|
||||
$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 (Red Matrix default)"] = "Blanc (valeur par défaut)";
|
||||
$a->strings["Narrow navbar"] = "Barre de navigation fine";
|
||||
$a->strings["Navigation bar background colour"] = "Couleur de fond de la barre de navigation";
|
||||
$a->strings["Navigation bar gradient top colour"] = "Gradient de la barre de navigation (couleur 1)";
|
||||
$a->strings["Navigation bar gradient bottom colour"] = "Gradient de la barre de navigation (couleur 2)";
|
||||
$a->strings["Navigation active button gradient top colour"] = "Gradient du bouton de navigation (couleur 1)";
|
||||
$a->strings["Navigation active button gradient bottom colour"] = "Gradient du bouton de navigation (couleur 2)";
|
||||
$a->strings["Navigation bar border colour "] = "Couleur de la bordure de la barre de navigation";
|
||||
$a->strings["Navigation bar icon colour "] = "Couleur de l'icône de la barre de navigation";
|
||||
$a->strings["Navigation bar active icon colour "] = "Couleur de l'icône active de la barre de navigation";
|
||||
$a->strings["link colour"] = "couleur des liens";
|
||||
$a->strings["Set font-colour for banner"] = "Définir la couleur du texte de la bannière";
|
||||
$a->strings["Set the background colour"] = "Définir la couleur d'arrière-plan";
|
||||
$a->strings["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 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 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";
|
||||
$a->strings["Set the background color"] = "Définir la couleur d'arrière-plan";
|
||||
$a->strings["Set the background image"] = "Définir l'image d'arrière-plan";
|
||||
$a->strings["Set the background colour of items"] = "Définir la couleur de fond des contributions";
|
||||
$a->strings["Set the background colour of comments"] = "Couleur de fond des commentaires";
|
||||
$a->strings["Set the border colour of comments"] = "Couleur de la bordure des commentaires";
|
||||
$a->strings["Set the background color of items"] = "Définir la couleur de fond des contributions";
|
||||
$a->strings["Set the background color of comments"] = "Couleur de fond des commentaires";
|
||||
$a->strings["Set the border color of comments"] = "Couleur de la bordure des commentaires";
|
||||
$a->strings["Set the indent for comments"] = "Indentation des commentaires";
|
||||
$a->strings["Set the basic colour for item icons"] = "Définir la couleur de base pour les icônes des éléments";
|
||||
$a->strings["Set the hover colour for item icons"] = "Définir la couleur de survol des icônes des éléments";
|
||||
$a->strings["Set 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-colour for posts and comments"] = "Définir font-colour pour les contributions et commentaires";
|
||||
$a->strings["Set font-color for posts and comments"] = "Définir font-colour pour les contributions et commentaires";
|
||||
$a->strings["Set radius of corners"] = "Définir le rayon des arrondis";
|
||||
$a->strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos";
|
||||
$a->strings["Set maximum width of conversation regions"] = "Définir la largeur maximale des conversations";
|
||||
|
2001
view/it/messages.po
2001
view/it/messages.po
File diff suppressed because it is too large
Load Diff
@ -7,128 +7,136 @@ function string_plural_select_it($n){
|
||||
;
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
|
||||
$a->strings["Profile Photos"] = "Foto del profilo";
|
||||
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s è ora amico di %2\$s";
|
||||
$a->strings["Sharing notification from Diaspora network"] = "Notifica condivisa da Diaspora";
|
||||
$a->strings["photo"] = "la foto";
|
||||
$a->strings["status"] = "il messaggio di stato";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
|
||||
$a->strings["Attachments:"] = "Allegati:";
|
||||
$a->strings["Embedded content"] = "Contenuti incorporati";
|
||||
$a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata";
|
||||
$a->strings["created a new post"] = "Ha creato un nuovo articolo";
|
||||
$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s";
|
||||
$a->strings["photo"] = "la foto";
|
||||
$a->strings["event"] = "l'evento";
|
||||
$a->strings["channel"] = "canale";
|
||||
$a->strings["status"] = "il messaggio di stato";
|
||||
$a->strings["comment"] = "il commento";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
|
||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
|
||||
$a->strings["poked"] = "ha ricevuto un poke";
|
||||
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
|
||||
$a->strings["Select"] = "Seleziona";
|
||||
$a->strings["Delete"] = "Elimina";
|
||||
$a->strings["Private Message"] = "Messaggio privato";
|
||||
$a->strings["Message is verified"] = "Messaggio verificato";
|
||||
$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";
|
||||
$a->strings["View Source"] = "Vedi il sorgente";
|
||||
$a->strings["Follow Thread"] = "Segui la discussione";
|
||||
$a->strings["View Status"] = "Guarda il messaggio di stato";
|
||||
$a->strings["View Profile"] = "Profilo";
|
||||
$a->strings["View Photos"] = "Guarda le foto";
|
||||
$a->strings["Matrix Activity"] = "Attività nella tua rete";
|
||||
$a->strings["Edit Contact"] = "Modifica il contatto";
|
||||
$a->strings["Send PM"] = "Invia messaggio privato";
|
||||
$a->strings["Poke"] = "Poke";
|
||||
$a->strings["%s likes this."] = "Piace a %s.";
|
||||
$a->strings["%s doesn't like this."] = "Non piace a %s.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
0 => "",
|
||||
1 => "Piace a <span %1\$s>%2\$d persone</span>.",
|
||||
);
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||
0 => "",
|
||||
1 => "Non piace a <span %1\$s>%2\$d persone</span>.",
|
||||
);
|
||||
$a->strings["and"] = "e";
|
||||
$a->strings[", and %d other people"] = array(
|
||||
0 => "",
|
||||
1 => "e altre %d persone",
|
||||
);
|
||||
$a->strings["%s like this."] = "Piace a %s.";
|
||||
$a->strings["%s don't like this."] = "Non piace a %s.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
|
||||
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
|
||||
$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 title"] = "Link del titolo";
|
||||
$a->strings["Post as"] = "Pubblica come ";
|
||||
$a->strings["Upload photo"] = "Carica foto";
|
||||
$a->strings["upload photo"] = "carica foto";
|
||||
$a->strings["Attach file"] = "Allega file";
|
||||
$a->strings["attach file"] = "allega file";
|
||||
$a->strings["Insert web link"] = "Inserisci un indirizzo web";
|
||||
$a->strings["web link"] = "link web";
|
||||
$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video";
|
||||
$a->strings["video link"] = "link video";
|
||||
$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio";
|
||||
$a->strings["audio link"] = "link audio";
|
||||
$a->strings["Set your location"] = "La tua località";
|
||||
$a->strings["set location"] = "la tua località";
|
||||
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
|
||||
$a->strings["clear location"] = "rimuovi la località";
|
||||
$a->strings["Set title"] = "Scegli un titolo";
|
||||
$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)";
|
||||
$a->strings["Permission settings"] = "Impostazioni permessi";
|
||||
$a->strings["permissions"] = "permessi";
|
||||
$a->strings["Public post"] = "Articolo 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["Encrypt text"] = "Crittografia del testo";
|
||||
$a->strings["OK"] = "OK";
|
||||
$a->strings["Cancel"] = "Annulla";
|
||||
$a->strings["Discover"] = "Scopri";
|
||||
$a->strings["Imported public streams"] = "Contenuti pubblici importati";
|
||||
$a->strings["Commented Order"] = "Ultimi commenti";
|
||||
$a->strings["Sort by Comment Date"] = "Per data del commento";
|
||||
$a->strings["Posted Order"] = "Ultimi articoli";
|
||||
$a->strings["Sort by Post Date"] = "Per data di creazione";
|
||||
$a->strings["Personal"] = "Personali";
|
||||
$a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano";
|
||||
$a->strings["New"] = "Novità";
|
||||
$a->strings["Activity Stream - by date"] = "Elenco attività - per data";
|
||||
$a->strings["Starred"] = "Preferiti";
|
||||
$a->strings["Favourite Posts"] = "Articoli preferiti";
|
||||
$a->strings["Spam"] = "Spam";
|
||||
$a->strings["Posts flagged as SPAM"] = "Articoli marcati come spam";
|
||||
$a->strings["Channel"] = "Canale";
|
||||
$a->strings["Status Messages and Posts"] = "Articoli e messaggi di stato";
|
||||
$a->strings["About"] = "Informazioni";
|
||||
$a->strings["Profile Details"] = "Dettagli del profilo";
|
||||
$a->strings["Photos"] = "Foto";
|
||||
$a->strings["Photo Albums"] = "Album foto";
|
||||
$a->strings["Files"] = "Elenco file";
|
||||
$a->strings["Files and Storage"] = "Archivio file";
|
||||
$a->strings["Chatrooms"] = "Chat";
|
||||
$a->strings["Site Admin"] = "Amministrazione sito";
|
||||
$a->strings["Bookmarks"] = "Segnalibri";
|
||||
$a->strings["Saved Bookmarks"] = "Segnalibri salvati";
|
||||
$a->strings["Address Book"] = "Rubrica";
|
||||
$a->strings["Login"] = "Accedi";
|
||||
$a->strings["Channel Select"] = "Gestisci i canali";
|
||||
$a->strings["Matrix"] = "La tua rete";
|
||||
$a->strings["Settings"] = "Impostazioni";
|
||||
$a->strings["Files"] = "Elenco file";
|
||||
$a->strings["Webpages"] = "Pagine web";
|
||||
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
|
||||
$a->strings["New Page"] = "Nuova pagina web";
|
||||
$a->strings["Channel Home"] = "Bacheca del canale";
|
||||
$a->strings["Profile"] = "Profilo";
|
||||
$a->strings["Photos"] = "Foto";
|
||||
$a->strings["Events"] = "Eventi";
|
||||
$a->strings["Directory"] = "Tutti i canali";
|
||||
$a->strings["Help"] = "Guida";
|
||||
$a->strings["Mail"] = "Messaggi";
|
||||
$a->strings["Mood"] = "Umore";
|
||||
$a->strings["Poke"] = "Poke";
|
||||
$a->strings["Chat"] = "Chat";
|
||||
$a->strings["Search"] = "Cerca";
|
||||
$a->strings["Probe"] = "Diagnostica";
|
||||
$a->strings["Suggest"] = "Suggerisci";
|
||||
$a->strings["Random Channel"] = "Canale casuale";
|
||||
$a->strings["Invite"] = "Invita";
|
||||
$a->strings["Features"] = "Funzionalità";
|
||||
$a->strings["Language"] = "Lingua";
|
||||
$a->strings["Post"] = "Articolo";
|
||||
$a->strings["Profile Photo"] = "Foto del profilo";
|
||||
$a->strings["Update"] = "Aggiorna";
|
||||
$a->strings["Install"] = "Installa";
|
||||
$a->strings["Purchase"] = "Acquista";
|
||||
$a->strings["Edit"] = "Modifica";
|
||||
$a->strings["Delete"] = "Elimina";
|
||||
$a->strings["Unknown"] = "Sconosciuto";
|
||||
$a->strings["prev"] = "prec";
|
||||
$a->strings["first"] = "inizio";
|
||||
$a->strings["last"] = "fine";
|
||||
$a->strings["next"] = "succ";
|
||||
$a->strings["older"] = "più recenti";
|
||||
$a->strings["newer"] = "più nuovi";
|
||||
$a->strings["No connections"] = "Nessun contatto";
|
||||
$a->strings["%d Connection"] = array(
|
||||
0 => "%d contatto",
|
||||
1 => "%d contatti",
|
||||
);
|
||||
$a->strings["View Connections"] = "Elenco contatti";
|
||||
$a->strings["Save"] = "Salva";
|
||||
$a->strings["poke"] = "poke";
|
||||
$a->strings["poked"] = "ha ricevuto un poke";
|
||||
$a->strings["ping"] = "ping";
|
||||
$a->strings["pinged"] = "ha ricevuto un ping";
|
||||
$a->strings["prod"] = "prod";
|
||||
$a->strings["prodded"] = "ha ricevuto un prod";
|
||||
$a->strings["slap"] = "schiaffo";
|
||||
$a->strings["slapped"] = "ha ricevuto uno schiaffo";
|
||||
$a->strings["finger"] = "finger";
|
||||
$a->strings["fingered"] = "ha ricevuto un finger";
|
||||
$a->strings["rebuff"] = "rifiuto";
|
||||
$a->strings["rebuffed"] = "ha ricevuto un rifiuto";
|
||||
$a->strings["happy"] = "felice";
|
||||
$a->strings["sad"] = "triste";
|
||||
$a->strings["mellow"] = "calmo";
|
||||
$a->strings["tired"] = "stanco";
|
||||
$a->strings["perky"] = "vivace";
|
||||
$a->strings["angry"] = "arrabbiato";
|
||||
$a->strings["stupified"] = "stordito";
|
||||
$a->strings["puzzled"] = "confuso";
|
||||
$a->strings["interested"] = "attento";
|
||||
$a->strings["bitter"] = "amaro";
|
||||
$a->strings["cheerful"] = "allegro";
|
||||
$a->strings["alive"] = "vivace";
|
||||
$a->strings["annoyed"] = "seccato";
|
||||
$a->strings["anxious"] = "ansioso";
|
||||
$a->strings["cranky"] = "irritabile";
|
||||
$a->strings["disturbed"] = "turbato";
|
||||
$a->strings["frustrated"] = "frustrato";
|
||||
$a->strings["depressed"] = "in depressione";
|
||||
$a->strings["motivated"] = "motivato";
|
||||
$a->strings["relaxed"] = "rilassato";
|
||||
$a->strings["surprised"] = "sorpreso";
|
||||
$a->strings["Monday"] = "lunedì";
|
||||
$a->strings["Tuesday"] = "martedì";
|
||||
$a->strings["Wednesday"] = "mercoledì";
|
||||
$a->strings["Thursday"] = "giovedì";
|
||||
$a->strings["Friday"] = "venerdì";
|
||||
$a->strings["Saturday"] = "sabato";
|
||||
$a->strings["Sunday"] = "domenica";
|
||||
$a->strings["January"] = "gennaio";
|
||||
$a->strings["February"] = "febbraio";
|
||||
$a->strings["March"] = "marzo";
|
||||
$a->strings["April"] = "aprile";
|
||||
$a->strings["May"] = "maggio";
|
||||
$a->strings["June"] = "giugno";
|
||||
$a->strings["July"] = "luglio";
|
||||
$a->strings["August"] = "agosto";
|
||||
$a->strings["September"] = "settembre";
|
||||
$a->strings["October"] = "ottobre";
|
||||
$a->strings["November"] = "novembre";
|
||||
$a->strings["December"] = "dicembre";
|
||||
$a->strings["unknown.???"] = "sconosciuto???";
|
||||
$a->strings["bytes"] = "byte";
|
||||
$a->strings["remove category"] = "rimuovi la categoria";
|
||||
$a->strings["remove from file"] = "rimuovi dal file";
|
||||
$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
|
||||
$a->strings["Link to Source"] = "Link al sorgente";
|
||||
$a->strings["Select a page layout: "] = "Scegli il layout della pagina:";
|
||||
$a->strings["default"] = "predefinito";
|
||||
$a->strings["Page content type: "] = "Contenuto della pagina:";
|
||||
$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
|
||||
$a->strings["event"] = "l'evento";
|
||||
$a->strings["comment"] = "il commento";
|
||||
$a->strings["activity"] = "l'attività";
|
||||
$a->strings["Design"] = "Design";
|
||||
$a->strings["Blocks"] = "Riquadri";
|
||||
$a->strings["Menus"] = "Menù";
|
||||
$a->strings["Layouts"] = "Layout";
|
||||
$a->strings["Pages"] = "Pagine";
|
||||
$a->strings["New Page"] = "Nuova pagina web";
|
||||
$a->strings["View"] = "Guarda";
|
||||
$a->strings["Preview"] = "Anteprima";
|
||||
$a->strings["Actions"] = "Azioni";
|
||||
$a->strings["Page Link"] = "Link alla pagina";
|
||||
$a->strings["Title"] = "Titolo";
|
||||
@ -155,8 +163,9 @@ $a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine super
|
||||
$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
|
||||
$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
|
||||
$a->strings["Photo storage failed."] = "Impossibile caricare la foto.";
|
||||
$a->strings["Photo Albums"] = "Album foto";
|
||||
$a->strings["Upload New Photos"] = "Carica nuove foto";
|
||||
$a->strings["Visible to everybody"] = "Visibile a tutti";
|
||||
$a->strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite";
|
||||
$a->strings["Show"] = "Mostra";
|
||||
$a->strings["Don't show"] = "Non mostrare";
|
||||
$a->strings["Permissions"] = "Permessi";
|
||||
@ -192,34 +201,30 @@ $a->strings["Logout"] = "Esci";
|
||||
$a->strings["End this session"] = "Chiudi questa sessione";
|
||||
$a->strings["Home"] = "Bacheca";
|
||||
$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni";
|
||||
$a->strings["View Profile"] = "Profilo";
|
||||
$a->strings["Your profile page"] = "Il tuo profilo";
|
||||
$a->strings["Edit Profiles"] = "Modifica i profili";
|
||||
$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili";
|
||||
$a->strings["Edit Profile"] = "Modifica il profilo";
|
||||
$a->strings["Edit your profile"] = "Modifica il profilo";
|
||||
$a->strings["Your photos"] = "Le tue foto";
|
||||
$a->strings["Your files"] = "I tuoi file";
|
||||
$a->strings["Chat"] = "Chat";
|
||||
$a->strings["Your chatrooms"] = "Le tue chat";
|
||||
$a->strings["Your bookmarks"] = "I tuoi segnalibri";
|
||||
$a->strings["Your webpages"] = "Le tue pagine web";
|
||||
$a->strings["Login"] = "Accedi";
|
||||
$a->strings["Sign in"] = "Entra";
|
||||
$a->strings["%s - click to logout"] = "%s - clicca per uscire";
|
||||
$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale";
|
||||
$a->strings["Home Page"] = "Bacheca";
|
||||
$a->strings["Register"] = "Iscriviti";
|
||||
$a->strings["Create an account"] = "Crea un account";
|
||||
$a->strings["Help"] = "Guida";
|
||||
$a->strings["Help and documentation"] = "Guida e documentazione";
|
||||
$a->strings["Apps"] = "Apps";
|
||||
$a->strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi";
|
||||
$a->strings["Search"] = "Cerca";
|
||||
$a->strings["Search site content"] = "Cerca nel sito";
|
||||
$a->strings["Directory"] = "Tutti i canali";
|
||||
$a->strings["Channel Locator"] = "Ricerca canali";
|
||||
$a->strings["Matrix"] = "La tua rete";
|
||||
$a->strings["Your matrix"] = "La tua rete";
|
||||
$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete";
|
||||
$a->strings["Channel Home"] = "Bacheca del canale";
|
||||
$a->strings["Channel home"] = "Bacheca del canale";
|
||||
$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali";
|
||||
$a->strings["Connections"] = "Contatti";
|
||||
@ -227,31 +232,22 @@ $a->strings["Notices"] = "Notifiche";
|
||||
$a->strings["Notifications"] = "Notifiche";
|
||||
$a->strings["See all notifications"] = "Vedi tutte le notifiche";
|
||||
$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema";
|
||||
$a->strings["Mail"] = "Messaggi";
|
||||
$a->strings["Private mail"] = "Messaggi privati";
|
||||
$a->strings["See all private messages"] = "Guarda tutti i messaggi privati";
|
||||
$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati";
|
||||
$a->strings["Inbox"] = "In arrivo";
|
||||
$a->strings["Outbox"] = "Inviati";
|
||||
$a->strings["New Message"] = "Nuovo messaggio";
|
||||
$a->strings["Events"] = "Eventi";
|
||||
$a->strings["Event Calendar"] = "Calendario";
|
||||
$a->strings["See all events"] = "Guarda tutti gli eventi";
|
||||
$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi";
|
||||
$a->strings["Channel Select"] = "Gestisci i canali";
|
||||
$a->strings["Manage Your Channels"] = "Gestisci i contatti dei tuoi canali";
|
||||
$a->strings["Settings"] = "Impostazioni";
|
||||
$a->strings["Account/Channel Settings"] = "Impostazioni account e canali";
|
||||
$a->strings["Admin"] = "Amministrazione";
|
||||
$a->strings["Site Setup and Configuration"] = "Configurazione del sito";
|
||||
$a->strings["Nothing new here"] = "Niente di nuovo qui";
|
||||
$a->strings["Please wait..."] = "Attendere...";
|
||||
$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s";
|
||||
$a->strings["Missing room name"] = "Chat senza nome";
|
||||
$a->strings["Duplicate room name"] = "Il nome della chat è duplicato";
|
||||
$a->strings["Invalid room specifier."] = "Il nome della chat non è valido.";
|
||||
$a->strings["Room not found."] = "Chat non trovata.";
|
||||
$a->strings["Room is full"] = "La chat è al completo";
|
||||
$a->strings["Tags"] = "Tag";
|
||||
$a->strings["Keywords"] = "Parole chiave";
|
||||
$a->strings["have"] = "ho";
|
||||
@ -267,12 +263,6 @@ $a->strings["__ctx:noun__ Like"] = array(
|
||||
1 => "Mi piace",
|
||||
);
|
||||
$a->strings["Default"] = "Predefinito";
|
||||
$a->strings["Unknown | Not categorised"] = "Sconosciuto | Senza categoria";
|
||||
$a->strings["Block immediately"] = "Blocca subito";
|
||||
$a->strings["Shady, spammer, self-marketer"] = "Spammer o dedito al marketing";
|
||||
$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
|
||||
$a->strings["OK, probably harmless"] = "È ok, probabilmente innocuo";
|
||||
$a->strings["Reputable, has my trust"] = "Affidabile, ha la mia fiducia";
|
||||
$a->strings["Frequently"] = "Frequentemente";
|
||||
$a->strings["Hourly"] = "Ogni ora";
|
||||
$a->strings["Twice daily"] = "Due volte al giorno";
|
||||
@ -382,6 +372,7 @@ $a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\
|
||||
$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["[Red:Notify]"] = "[Red:Notifica]";
|
||||
$a->strings["parent"] = "cartella superiore";
|
||||
$a->strings["Collection"] = "Cartella";
|
||||
$a->strings["Principal"] = "Principale";
|
||||
@ -389,7 +380,6 @@ $a->strings["Addressbook"] = "Rubrica";
|
||||
$a->strings["Calendar"] = "Calendario";
|
||||
$a->strings["Schedule Inbox"] = "Appuntamenti ricevuti";
|
||||
$a->strings["Schedule Outbox"] = "Appuntamenti inviati";
|
||||
$a->strings["Unknown"] = "Sconosciuto";
|
||||
$a->strings["%1\$s used"] = "%1\$s occupati";
|
||||
$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s occupati di %2\$s (%3\$s%)";
|
||||
$a->strings["Name"] = "Nome";
|
||||
@ -401,11 +391,115 @@ $a->strings["Create new folder"] = "Crea una nuova cartella";
|
||||
$a->strings["Create"] = "Crea";
|
||||
$a->strings["Upload file"] = "Carica un file";
|
||||
$a->strings["Upload"] = "Carica";
|
||||
$a->strings["channel"] = "canale";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
|
||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s";
|
||||
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
|
||||
$a->strings["Select"] = "Seleziona";
|
||||
$a->strings["Private Message"] = "Messaggio privato";
|
||||
$a->strings["Message is verified"] = "Messaggio verificato";
|
||||
$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";
|
||||
$a->strings["View Source"] = "Vedi il sorgente";
|
||||
$a->strings["Follow Thread"] = "Segui la discussione";
|
||||
$a->strings["View Status"] = "Guarda il messaggio di stato";
|
||||
$a->strings["View Photos"] = "Guarda le foto";
|
||||
$a->strings["Matrix Activity"] = "Attività nella tua rete";
|
||||
$a->strings["Edit Contact"] = "Modifica il contatto";
|
||||
$a->strings["Send PM"] = "Invia messaggio privato";
|
||||
$a->strings["%s likes this."] = "Piace a %s.";
|
||||
$a->strings["%s doesn't like this."] = "Non piace a %s.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
0 => "",
|
||||
1 => "Piace a <span %1\$s>%2\$d persone</span>.",
|
||||
);
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||
0 => "",
|
||||
1 => "Non piace a <span %1\$s>%2\$d persone</span>.",
|
||||
);
|
||||
$a->strings["and"] = "e";
|
||||
$a->strings[", and %d other people"] = array(
|
||||
0 => "",
|
||||
1 => "e altre %d persone",
|
||||
);
|
||||
$a->strings["%s like this."] = "Piace a %s.";
|
||||
$a->strings["%s don't like this."] = "Non piace a %s.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
|
||||
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:";
|
||||
$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["Share"] = "Condividi";
|
||||
$a->strings["Page link title"] = "Link del titolo";
|
||||
$a->strings["Post as"] = "Pubblica come ";
|
||||
$a->strings["Upload photo"] = "Carica foto";
|
||||
$a->strings["upload photo"] = "carica foto";
|
||||
$a->strings["Attach file"] = "Allega file";
|
||||
$a->strings["attach file"] = "allega file";
|
||||
$a->strings["Insert web link"] = "Inserisci un indirizzo web";
|
||||
$a->strings["web link"] = "link web";
|
||||
$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video";
|
||||
$a->strings["video link"] = "link video";
|
||||
$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio";
|
||||
$a->strings["audio link"] = "link audio";
|
||||
$a->strings["Set your location"] = "La tua località";
|
||||
$a->strings["set location"] = "la tua località";
|
||||
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
|
||||
$a->strings["clear location"] = "rimuovi la località";
|
||||
$a->strings["Set title"] = "Scegli un titolo";
|
||||
$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)";
|
||||
$a->strings["Permission settings"] = "Impostazioni permessi";
|
||||
$a->strings["permissions"] = "permessi";
|
||||
$a->strings["Public post"] = "Articolo 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["Encrypt text"] = "Crittografia del testo";
|
||||
$a->strings["OK"] = "OK";
|
||||
$a->strings["Cancel"] = "Annulla";
|
||||
$a->strings["Discover"] = "Scopri";
|
||||
$a->strings["Imported public streams"] = "Contenuti pubblici importati";
|
||||
$a->strings["Commented Order"] = "Ultimi commenti";
|
||||
$a->strings["Sort by Comment Date"] = "Per data del commento";
|
||||
$a->strings["Posted Order"] = "Ultimi articoli";
|
||||
$a->strings["Sort by Post Date"] = "Per data di creazione";
|
||||
$a->strings["Personal"] = "Personali";
|
||||
$a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano";
|
||||
$a->strings["New"] = "Novità";
|
||||
$a->strings["Activity Stream - by date"] = "Elenco attività - per data";
|
||||
$a->strings["Starred"] = "Preferiti";
|
||||
$a->strings["Favourite Posts"] = "Articoli preferiti";
|
||||
$a->strings["Spam"] = "Spam";
|
||||
$a->strings["Posts flagged as SPAM"] = "Articoli marcati come spam";
|
||||
$a->strings["Channel"] = "Canale";
|
||||
$a->strings["Status Messages and Posts"] = "Articoli e messaggi di stato";
|
||||
$a->strings["About"] = "Informazioni";
|
||||
$a->strings["Profile Details"] = "Dettagli del profilo";
|
||||
$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["General Features"] = "Funzionalità di base";
|
||||
$a->strings["Content Expiration"] = "Scadenza";
|
||||
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del 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 canali o 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["Private Notes"] = "Note private";
|
||||
@ -461,6 +555,26 @@ $a->strings["Channel was deleted and no longer exists."] = "Il canale è stato r
|
||||
$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["Missing room name"] = "Chat senza nome";
|
||||
$a->strings["Duplicate room name"] = "Il nome della chat è duplicato";
|
||||
$a->strings["Invalid room specifier."] = "Il nome della chat non è valido.";
|
||||
$a->strings["Room not found."] = "Chat non trovata.";
|
||||
$a->strings["Room is full"] = "La chat è al completo";
|
||||
$a->strings["Permission denied"] = "Permesso negato";
|
||||
$a->strings["(Unknown)"] = "(Sconosciuto)";
|
||||
$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet";
|
||||
$a->strings["Visible to you only."] = "Visibile solo a te.";
|
||||
$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete.";
|
||||
$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato.";
|
||||
$a->strings["Visible to anybody on %s."] = "Visibile a tutti in %s.";
|
||||
$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono.";
|
||||
$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati.";
|
||||
$a->strings["Item not found."] = "Elemento non trovato.";
|
||||
$a->strings["Collection not found."] = "Insieme non trovato.";
|
||||
$a->strings["Collection is empty."] = "L'insieme di canali è vuoto.";
|
||||
$a->strings["Collection: %s"] = "Insieme: %s";
|
||||
$a->strings["Connection: %s"] = "Contatto: %s";
|
||||
$a->strings["Connection not found."] = "Contatto non trovato.";
|
||||
$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["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire";
|
||||
$a->strings["All Channels"] = "Tutti i canali";
|
||||
@ -487,7 +601,6 @@ $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["Edit Profile"] = "Modifica il profilo";
|
||||
$a->strings["Profile Image"] = "Immagine del profilo";
|
||||
$a->strings["visible to everybody"] = "visibile a tutti";
|
||||
$a->strings["Edit visibility"] = "Cambia la visibilità";
|
||||
@ -503,7 +616,6 @@ $a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
|
||||
$a->strings["[No description]"] = "[Nessuna descrizione]";
|
||||
$a->strings["Event Reminders"] = "Promemoria";
|
||||
$a->strings["Events this week:"] = "Eventi di questa settimana:";
|
||||
$a->strings["Profile"] = "Profilo";
|
||||
$a->strings["Full Name:"] = "Nome completo:";
|
||||
$a->strings["Like this channel"] = "Mi piace questo canale";
|
||||
$a->strings["j F, Y"] = "j F Y";
|
||||
@ -531,94 +643,6 @@ $a->strings["Work/employment:"] = "Lavoro:";
|
||||
$a->strings["School/education:"] = "Scuola:";
|
||||
$a->strings["Like this thing"] = "Mi piace questo oggetto";
|
||||
$a->strings["view full size"] = "guarda nelle dimensioni reali";
|
||||
$a->strings["prev"] = "prec";
|
||||
$a->strings["first"] = "inizio";
|
||||
$a->strings["last"] = "fine";
|
||||
$a->strings["next"] = "succ";
|
||||
$a->strings["older"] = "più recenti";
|
||||
$a->strings["newer"] = "più nuovi";
|
||||
$a->strings["No connections"] = "Nessun contatto";
|
||||
$a->strings["%d Connection"] = array(
|
||||
0 => "%d contatto",
|
||||
1 => "%d contatti",
|
||||
);
|
||||
$a->strings["View Connections"] = "Elenco contatti";
|
||||
$a->strings["Save"] = "Salva";
|
||||
$a->strings["poke"] = "poke";
|
||||
$a->strings["ping"] = "ping";
|
||||
$a->strings["pinged"] = "ha ricevuto un ping";
|
||||
$a->strings["prod"] = "prod";
|
||||
$a->strings["prodded"] = "ha ricevuto un prod";
|
||||
$a->strings["slap"] = "schiaffo";
|
||||
$a->strings["slapped"] = "ha ricevuto uno schiaffo";
|
||||
$a->strings["finger"] = "finger";
|
||||
$a->strings["fingered"] = "ha ricevuto un finger";
|
||||
$a->strings["rebuff"] = "rifiuto";
|
||||
$a->strings["rebuffed"] = "ha ricevuto un rifiuto";
|
||||
$a->strings["happy"] = "felice";
|
||||
$a->strings["sad"] = "triste";
|
||||
$a->strings["mellow"] = "calmo";
|
||||
$a->strings["tired"] = "stanco";
|
||||
$a->strings["perky"] = "vivace";
|
||||
$a->strings["angry"] = "arrabbiato";
|
||||
$a->strings["stupified"] = "stordito";
|
||||
$a->strings["puzzled"] = "confuso";
|
||||
$a->strings["interested"] = "attento";
|
||||
$a->strings["bitter"] = "amaro";
|
||||
$a->strings["cheerful"] = "allegro";
|
||||
$a->strings["alive"] = "vivace";
|
||||
$a->strings["annoyed"] = "seccato";
|
||||
$a->strings["anxious"] = "ansioso";
|
||||
$a->strings["cranky"] = "irritabile";
|
||||
$a->strings["disturbed"] = "turbato";
|
||||
$a->strings["frustrated"] = "frustrato";
|
||||
$a->strings["depressed"] = "in depressione";
|
||||
$a->strings["motivated"] = "motivato";
|
||||
$a->strings["relaxed"] = "rilassato";
|
||||
$a->strings["surprised"] = "sorpreso";
|
||||
$a->strings["Monday"] = "lunedì";
|
||||
$a->strings["Tuesday"] = "martedì";
|
||||
$a->strings["Wednesday"] = "mercoledì";
|
||||
$a->strings["Thursday"] = "giovedì";
|
||||
$a->strings["Friday"] = "venerdì";
|
||||
$a->strings["Saturday"] = "sabato";
|
||||
$a->strings["Sunday"] = "domenica";
|
||||
$a->strings["January"] = "gennaio";
|
||||
$a->strings["February"] = "febbraio";
|
||||
$a->strings["March"] = "marzo";
|
||||
$a->strings["April"] = "aprile";
|
||||
$a->strings["May"] = "maggio";
|
||||
$a->strings["June"] = "giugno";
|
||||
$a->strings["July"] = "luglio";
|
||||
$a->strings["August"] = "agosto";
|
||||
$a->strings["September"] = "settembre";
|
||||
$a->strings["October"] = "ottobre";
|
||||
$a->strings["November"] = "novembre";
|
||||
$a->strings["December"] = "dicembre";
|
||||
$a->strings["unknown.???"] = "sconosciuto???";
|
||||
$a->strings["bytes"] = "byte";
|
||||
$a->strings["remove category"] = "rimuovi la categoria";
|
||||
$a->strings["remove from file"] = "rimuovi dal file";
|
||||
$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
|
||||
$a->strings["Link to Source"] = "Link al sorgente";
|
||||
$a->strings["Select a page layout: "] = "Scegli il layout della pagina:";
|
||||
$a->strings["default"] = "predefinito";
|
||||
$a->strings["Page content type: "] = "Contenuto della pagina:";
|
||||
$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
|
||||
$a->strings["activity"] = "l'attività";
|
||||
$a->strings["Design"] = "Design";
|
||||
$a->strings["Blocks"] = "Riquadri";
|
||||
$a->strings["Menus"] = "Menù";
|
||||
$a->strings["Layouts"] = "Layout";
|
||||
$a->strings["Pages"] = "Pagine";
|
||||
$a->strings["Site Admin"] = "Amministrazione sito";
|
||||
$a->strings["Address Book"] = "Rubrica";
|
||||
$a->strings["Mood"] = "Umore";
|
||||
$a->strings["Probe"] = "Diagnostica";
|
||||
$a->strings["Suggest"] = "Suggerisci";
|
||||
$a->strings["Update"] = "Aggiorna";
|
||||
$a->strings["Install"] = "Installa";
|
||||
$a->strings["Purchase"] = "Acquista";
|
||||
$a->strings["Image/photo"] = "Immagine";
|
||||
$a->strings["Encrypted content"] = "Contenuto crittografato";
|
||||
$a->strings["QR code"] = "QR code";
|
||||
@ -792,31 +816,25 @@ $a->strings["Ask me"] = "Chiedimelo";
|
||||
$a->strings["Logged out."] = "Uscita effettuata.";
|
||||
$a->strings["Failed authentication"] = "Autenticazione fallita";
|
||||
$a->strings["Login failed."] = "Accesso fallito.";
|
||||
$a->strings["Permission denied"] = "Permesso negato";
|
||||
$a->strings["(Unknown)"] = "(Sconosciuto)";
|
||||
$a->strings["Item not found."] = "Elemento non trovato.";
|
||||
$a->strings["Collection not found."] = "Insieme non trovato.";
|
||||
$a->strings["Collection is empty."] = "L'insieme di canali è vuoto.";
|
||||
$a->strings["Collection: %s"] = "Insieme: %s";
|
||||
$a->strings["Connection: %s"] = "Contatto: %s";
|
||||
$a->strings["Connection not found."] = "Contatto non trovato.";
|
||||
$a->strings["Can view my \"public\" stream and posts"] = "Può vedere i miei contenuti \"pubblici\"";
|
||||
$a->strings["Can view my \"public\" channel profile"] = "Può vedere il profilo del mio canale \"pubblico\"";
|
||||
$a->strings["Can view my \"public\" photo albums"] = "Può vedere il mio album fotografico \"pubblico\"";
|
||||
$a->strings["Can view my \"public\" address book"] = "Può vedere il mio elenco contatti \"pubblico\"";
|
||||
$a->strings["Can view my \"public\" file storage"] = "Può vedere il mio archivio file \"pubblico\"";
|
||||
$a->strings["Can view my \"public\" pages"] = "Può vedere le mie pagine web \"pubbliche\"";
|
||||
$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e articoli normali";
|
||||
$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale";
|
||||
$a->strings["Can view my photo albums"] = "Può vedere i miei album fotografici";
|
||||
$a->strings["Can view my connections"] = "Può vedere i miei contatti";
|
||||
$a->strings["Can view my file storage"] = "Può vedere i miei file condivisi";
|
||||
$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 my posts"] = "Può commentare i miei articoli";
|
||||
$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei articoli";
|
||||
$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati";
|
||||
$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album";
|
||||
$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\"";
|
||||
$a->strings["Profiles and things other than posts/comments"] = "Profili e tutto ciò che non è articoli e commenti";
|
||||
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli 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 \"public\" file storage"] = "Può scrivere sul mio archivio di file \"pubblico\"";
|
||||
$a->strings["Can edit my \"public\" pages"] = "Può modificare le mie pagine web \"pubbliche\"";
|
||||
$a->strings["Can source my \"public\" posts in derived channels"] = "Può aggiungere i miei post \"pubblici\" a un suo canale derivato";
|
||||
$a->strings["Can write to my file storage"] = "Può scrivere sul mio archivio file";
|
||||
$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 articoli 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";
|
||||
@ -897,6 +915,7 @@ $a->strings["%s - (Experimental)"] = "%s - (Sperimentale)";
|
||||
$a->strings["Display Settings"] = "Aspetto";
|
||||
$a->strings["Display Theme:"] = "Tema per monitor:";
|
||||
$a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:";
|
||||
$a->strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili";
|
||||
$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
|
||||
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
|
||||
$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
|
||||
@ -1002,6 +1021,7 @@ $a->strings["Profile deleted."] = "Profilo eliminato.";
|
||||
$a->strings["Profile-"] = "Profilo-";
|
||||
$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
|
||||
$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
|
||||
$a->strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export.";
|
||||
$a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio .";
|
||||
$a->strings["Marital Status"] = "Stato sentimentale";
|
||||
$a->strings["Romantic Partner"] = "Partner affettivo";
|
||||
@ -1024,6 +1044,8 @@ $a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
|
||||
$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
|
||||
$a->strings["Clone this profile"] = "Clona questo profilo";
|
||||
$a->strings["Delete this profile"] = "Elimina questo profilo";
|
||||
$a->strings["Import profile from file"] = "Importa il profilo da un file";
|
||||
$a->strings["Export profile to file"] = "Esporta il profilo in un file";
|
||||
$a->strings["Profile Name:"] = "Nome del profilo:";
|
||||
$a->strings["Your Full Name:"] = "Il tuo nome completo:";
|
||||
$a->strings["Title/Description:"] = "Titolo/descrizione:";
|
||||
@ -1054,7 +1076,7 @@ $a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intratteni
|
||||
$a->strings["Love/romance"] = "Amore";
|
||||
$a->strings["Work/employment"] = "Lavoro/impiego";
|
||||
$a->strings["School/education"] = "Scuola/educazione";
|
||||
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
|
||||
$a->strings["This is your default profile."] = "Questo è il tuo profilo predefinito.";
|
||||
$a->strings["Age: "] = "Età:";
|
||||
$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili";
|
||||
$a->strings["Add profile things"] = "Aggiungi oggetti al profilo";
|
||||
@ -1110,6 +1132,7 @@ $a->strings["Away"] = "Assente";
|
||||
$a->strings["Online"] = "Online";
|
||||
$a->strings["Please login."] = "Accedi.";
|
||||
$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password.";
|
||||
$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password.";
|
||||
$a->strings["Remove This Channel"] = "Elimina questo canale";
|
||||
$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo.";
|
||||
$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
|
||||
@ -1149,7 +1172,6 @@ $a->strings["Ignored"] = "Ignorati";
|
||||
$a->strings["Hidden"] = "Nascosti";
|
||||
$a->strings["Archived"] = "Archiviati";
|
||||
$a->strings["All"] = "Tutti";
|
||||
$a->strings["Unconnected"] = "Non connesso";
|
||||
$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti";
|
||||
$a->strings["New Connections"] = "Nuovi contatti";
|
||||
$a->strings["Show pending (new) connections"] = "Richieste di contatto in attesa";
|
||||
@ -1160,12 +1182,12 @@ $a->strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"
|
||||
$a->strings["Only show ignored connections"] = "Mostra solo i contatti ignorati";
|
||||
$a->strings["Only show archived connections"] = "Mostra solo i contatti archiviati";
|
||||
$a->strings["Only show hidden connections"] = "Mostra solo i contatti nascosti";
|
||||
$a->strings["Only show one-way connections"] = "Mostra solo i contatti non ricambiati";
|
||||
$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
|
||||
$a->strings["Edit contact"] = "Modifica il contatto";
|
||||
$a->strings["Search your connections"] = "Cerca tra i contatti";
|
||||
$a->strings["Finding: "] = "Ricerca: ";
|
||||
$a->strings["Edit post"] = "Modifica articolo";
|
||||
$a->strings["is now connected to"] = "adesso è in contatto con";
|
||||
$a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica.";
|
||||
$a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare.";
|
||||
$a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato";
|
||||
@ -1250,8 +1272,6 @@ $a->strings["No entries."] = "Nessun risultato.";
|
||||
$a->strings["Public access denied."] = "Accesso pubblico negato.";
|
||||
$a->strings["Gender: "] = "Sesso:";
|
||||
$a->strings["Finding:"] = "Ricerca:";
|
||||
$a->strings["next page"] = "pagina succ.";
|
||||
$a->strings["previous page"] = "pagina prec.";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualcosa potrebbe essere nascosto).";
|
||||
$a->strings["Status: "] = "Stato:";
|
||||
$a->strings["Sexual Preference: "] = "Preferenza sessuale:";
|
||||
@ -1331,7 +1351,7 @@ $a->strings["store is writable"] = "l'archivio è scrivibile";
|
||||
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito.";
|
||||
$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!"] = "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 generati da te!";
|
||||
$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server.";
|
||||
$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza.";
|
||||
$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."] = "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.";
|
||||
$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare problemi di usabilità molto gravi (non solo sul tuo sito), quindi dobbiamo insistere su questo punto.";
|
||||
$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser.";
|
||||
$a->strings["SSL certificate validation"] = "Validazione del certificato SSL";
|
||||
@ -1365,7 +1385,7 @@ $a->strings["Version %s"] = "Versione %s";
|
||||
$a->strings["Installed plugins/addons/apps:"] = "App e componenti installati:";
|
||||
$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato";
|
||||
$a->strings["Red"] = "Red";
|
||||
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. ";
|
||||
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di RedMatrix - una rete cooperativa e decentralizzata di siti ad elevata privacy. ";
|
||||
$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web";
|
||||
$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "Visita <a href=\"http://getzot.com\">GetZot.com</a> per scoprire il progetto Red Matrix.";
|
||||
$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita";
|
||||
@ -1383,6 +1403,7 @@ $a->strings["Upload Photos"] = "Carica foto";
|
||||
$a->strings["New album name: "] = "Nome del nuovo album: ";
|
||||
$a->strings["or existing album name: "] = "o nome di un album esistente: ";
|
||||
$a->strings["Do not show a status post for this upload"] = "Non creare un messaggio di stato per questo caricamento";
|
||||
$a->strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album";
|
||||
$a->strings["Contact Photos"] = "Foto dei contatti";
|
||||
$a->strings["Edit Album"] = "Modifica album";
|
||||
$a->strings["Show Newest First"] = "Prima i più recenti";
|
||||
@ -1475,6 +1496,7 @@ $a->strings["Channels"] = "Canali";
|
||||
$a->strings["Plugins"] = "Plugin";
|
||||
$a->strings["Themes"] = "Temi";
|
||||
$a->strings["Server"] = "Server";
|
||||
$a->strings["Profile Config"] = "Configurazione del profilo";
|
||||
$a->strings["DB updates"] = "Aggiornamenti al DB";
|
||||
$a->strings["Logs"] = "Log";
|
||||
$a->strings["Plugin Features"] = "Plugin";
|
||||
@ -1655,12 +1677,12 @@ $a->strings["You have no more invitations available"] = "Non hai altri inviti di
|
||||
$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["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario.";
|
||||
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
|
||||
$a->strings["Please visit my channel at"] = "Puoi visitare il mio canale su";
|
||||
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:";
|
||||
$a->strings["Click the [Register] link on the following page to join."] = "Fai clic su [Registrati] nella pagina seguente per iscriverti.";
|
||||
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com";
|
||||
$a->strings["Please join my community on RedMatrix."] = "Entra a far parte della mia comunità su RedMatrix.";
|
||||
$a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:";
|
||||
$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registrati su un qualsiasi sito RedMatrix (sono tutti interconnessi)";
|
||||
$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Inserisci il mio indirizzo RedMatrix nella barra di ricerca che compare nella pagina.";
|
||||
$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."] = "L'articolo vuoto è stato ignorato.";
|
||||
$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale.";
|
||||
@ -1670,7 +1692,15 @@ $a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto
|
||||
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
|
||||
$a->strings["Help with this feature"] = "La guida per questa funzionalità";
|
||||
$a->strings["Layout Name"] = "Nome layout";
|
||||
$a->strings["Like/Dislike"] = "Mi piace/Non mi piace";
|
||||
$a->strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti.";
|
||||
$a->strings["Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href=\"register\">register as a new RedMatrix member</a> to continue."] = "Per favore <a href=\"rmagic\">accedi con il tuo identificativo RedMatrix</a> o <a href=\"register\">registrati su RedMatrix</a> per continuare.";
|
||||
$a->strings["Invalid request."] = "Richiesta non valida.";
|
||||
$a->strings["thing"] = "oggetto";
|
||||
$a->strings["Channel unavailable."] = "Canale non trovato.";
|
||||
$a->strings["Previous action reversed."] = "Il comando precedente è stato annullato.";
|
||||
$a->strings["Action completed."] = "Comando completato.";
|
||||
$a->strings["Thank you."] = "Grazie.";
|
||||
$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili.";
|
||||
$a->strings["Visible to:"] = "Visibile a:";
|
||||
$a->strings["No connections."] = "Nessun contatto.";
|
||||
@ -1705,6 +1735,7 @@ $a->strings["Message recalled."] = "Messaggio revocato.";
|
||||
$a->strings["Send Private Message"] = "Invia un messaggio privato";
|
||||
$a->strings["To:"] = "A:";
|
||||
$a->strings["Subject:"] = "Oggetto:";
|
||||
$a->strings["Send"] = "Invia";
|
||||
$a->strings["Message not found."] = "Messaggio non trovato.";
|
||||
$a->strings["Delete message"] = "Elimina il messaggio";
|
||||
$a->strings["Recall message"] = "Revoca il messaggio";
|
||||
@ -1775,8 +1806,20 @@ $a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa";
|
||||
$a->strings["Version ID"] = "ID versione";
|
||||
$a->strings["Price of app"] = "Prezzo app";
|
||||
$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app";
|
||||
$a->strings["Poll"] = "Sondaggio";
|
||||
$a->strings["View Results"] = "Guarda i risultati";
|
||||
$a->strings["Friendica Photo Album Import"] = "Importazione album fotografici da Friendica";
|
||||
$a->strings["This will import all your Friendica photo albums to this Red channel."] = "Questa operazione importerà tutti i tuoi album fotografici da Friendica a questo canale RedMatrix.";
|
||||
$a->strings["Friendica Server base URL"] = "URL base del server Friendica";
|
||||
$a->strings["Friendica Login Username"] = "Nome utente Friendica";
|
||||
$a->strings["Friendica Login Password"] = "Password Friendica";
|
||||
$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password.";
|
||||
$a->strings["Remove This Account"] = "Elimina questo account";
|
||||
$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Questa operazione rimuoverà completamente il tuo account dalla rete, inclusi tutti i suoi canali. Una volta avviata la rimozione, sarà definitiva.";
|
||||
$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati.";
|
||||
$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete.";
|
||||
$a->strings["Schema Default"] = "Schema predefinito";
|
||||
$a->strings["Sans-Serif"] = "Sans-serif";
|
||||
$a->strings["Sans-Serif"] = "Sans-Serif";
|
||||
$a->strings["Monospace"] = "Monospace";
|
||||
$a->strings["Theme settings"] = "Impostazioni del tema";
|
||||
$a->strings["Set scheme"] = "Schema";
|
||||
@ -1785,56 +1828,56 @@ $a->strings["Set font face"] = "Tipo di carattere";
|
||||
$a->strings["Set iconset"] = "Icone";
|
||||
$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ombra grande, predefinita 15px 15px 15px";
|
||||
$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ombra piccola, predefinita 5px 5px 5px";
|
||||
$a->strings["Set shadow colour, default #000"] = "Colore dell'ombra, predefinito #000";
|
||||
$a->strings["Set shadow color, default #000"] = "Colore dell'ombra, predefinito #000";
|
||||
$a->strings["Set radius size, default 5px"] = "Raggio degli angoli, predefinito 5px";
|
||||
$a->strings["Set line-height for posts and comments"] = "Altezza della riga per articoli e commenti";
|
||||
$a->strings["Set background image"] = "Immagine di sfondo";
|
||||
$a->strings["Set background attachment"] = "Allega uno sfondo";
|
||||
$a->strings["Set background colour"] = "Colore di sfondo";
|
||||
$a->strings["Set background color"] = "Colore di sfondo";
|
||||
$a->strings["Set section background image"] = "Immagine di sfondo della sezione";
|
||||
$a->strings["Set section background colour"] = "Colore di sfondo della sezione";
|
||||
$a->strings["Set colour of items - use hex"] = "Colore degli elementi della pagina - esadecimale";
|
||||
$a->strings["Set colour of links - use hex"] = "Colore dei link - esadecimale";
|
||||
$a->strings["Set section background color"] = "Colore di sfondo della sezione";
|
||||
$a->strings["Set color of items - use hex"] = "Colore degli elementi della pagina - esadecimale";
|
||||
$a->strings["Set color of links - use hex"] = "Colore dei link - esadecimale";
|
||||
$a->strings["Set max-width for items. Default 400px"] = "Larghezza massima degli elementi della pagina. Predefinita: 400px";
|
||||
$a->strings["Set min-width for items. Default 240px"] = "Larghezza minima degli elementi della pagina. Predefinita: 240px";
|
||||
$a->strings["Set the generic content wrapper width. Default 48%"] = "Larghezza di tutta l'area dei contenuti. Predefinita: 48%";
|
||||
$a->strings["Set colour of fonts - use hex"] = "Colore dei caratteri - esadecimale";
|
||||
$a->strings["Set background-size element"] = "Background-size";
|
||||
$a->strings["Set color of fonts - use hex"] = "Colore dei caratteri - esadecimale";
|
||||
$a->strings["Set background-size element"] = "Background-size element";
|
||||
$a->strings["Item opacity"] = "Opacità degli elementi della pagina";
|
||||
$a->strings["Display post previews only"] = "Mostra le anteprime solo degli articoli";
|
||||
$a->strings["Display side bar on channel page"] = "Mostra la colonna laterale sulla pagina del canale";
|
||||
$a->strings["Colour of the navigation bar"] = "Colore della barra di navigazione";
|
||||
$a->strings["Item float"] = "Float degli oggetti della pagina";
|
||||
$a->strings["Left offset of the section element"] = "Margine sinistro dei contenuti";
|
||||
$a->strings["Right offset of the section element"] = "Margine destro dei contenuti";
|
||||
$a->strings["Section width"] = "Larghezza dei contenuti";
|
||||
$a->strings["Left offset of the aside"] = "Margine sinistro della colonna laterale";
|
||||
$a->strings["Right offset of the aside element"] = "Margine destro della colonna laterale";
|
||||
$a->strings["Left offset of the section element"] = "Spostamento a sinistra della sezione";
|
||||
$a->strings["Right offset of the section element"] = "Spostamento a destra della sezione";
|
||||
$a->strings["Section width"] = "Larghezza della section";
|
||||
$a->strings["Left offset of the aside"] = "Spostamento a sinistra della colonna laterale";
|
||||
$a->strings["Right offset of the aside element"] = "Spostamento a destra della colonna laterale";
|
||||
$a->strings["None"] = "Nessuno";
|
||||
$a->strings["Header image"] = "Immagine dell'intestazione";
|
||||
$a->strings["Header image only on profile pages"] = "Mostra un'immagine solo nell'intestazione dei profili";
|
||||
$a->strings["Header image only on profile pages"] = "Metti un'immagine solo nell'intestazione dei profili";
|
||||
$a->strings["Light (Red Matrix default)"] = "Light (predefinito)";
|
||||
$a->strings["Narrow navbar"] = "Barra di navigazione ristretta";
|
||||
$a->strings["Navigation bar background colour"] = "Barra di navigazione: Colore di sfondo";
|
||||
$a->strings["Navigation bar gradient top colour"] = "Barra di navigazione: Gradiente superiore";
|
||||
$a->strings["Navigation bar gradient bottom colour"] = "Barra di navigazione: Gradiente inferiore";
|
||||
$a->strings["Navigation active button gradient top colour"] = "Barra di navigazione: Gradiente superiore dell'icona attiva";
|
||||
$a->strings["Navigation active button gradient bottom colour"] = "Barra di navigazione: Gradiente inferiore dell'icona attiva";
|
||||
$a->strings["Navigation bar border colour "] = "Barra di navigazione: Colore del bordo";
|
||||
$a->strings["Navigation bar icon colour "] = "Barra di navigazione: Colore delle icone";
|
||||
$a->strings["Navigation bar active icon colour "] = "Barra di navigazione: Colore dell'icona attiva";
|
||||
$a->strings["link colour"] = "Colore dei link";
|
||||
$a->strings["Set font-colour for banner"] = "Colore del font del banner";
|
||||
$a->strings["Set the background colour"] = "Colore di sfondo";
|
||||
$a->strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo";
|
||||
$a->strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore";
|
||||
$a->strings["Navigation bar gradient bottom color"] = "Barra di navigazione: Gradiente inferiore";
|
||||
$a->strings["Navigation active button gradient top color"] = "Bottone di navigazione attivo: Gradiente superiore";
|
||||
$a->strings["Navigation active button gradient bottom color"] = "Bottone di navigazione attivo: Gradiente inferiore";
|
||||
$a->strings["Navigation bar border color "] = "Barra di navigazione: Colore del bordo";
|
||||
$a->strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone";
|
||||
$a->strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva";
|
||||
$a->strings["link color"] = "colore del link";
|
||||
$a->strings["Set font-color for banner"] = "Colore del font del banner";
|
||||
$a->strings["Set the background color"] = "Imposta il colore di sfondo";
|
||||
$a->strings["Set the background image"] = "Immagine di sfondo";
|
||||
$a->strings["Set the background colour of items"] = "Colore di sfondo degli elementi della pagina";
|
||||
$a->strings["Set the background colour of comments"] = "Imposta il colore di sfondo dei commenti";
|
||||
$a->strings["Set the border colour of comments"] = "Imposta il colore del bordo dei commenti";
|
||||
$a->strings["Set the background color of items"] = "Imposta il colore di sfondo degli oggetti";
|
||||
$a->strings["Set the background color of comments"] = "Imposta il colore di sfondo dei commenti";
|
||||
$a->strings["Set the border color of comments"] = "Imposta il colore del bordo dei commenti";
|
||||
$a->strings["Set the indent for comments"] = "Imposta il lo spostamento a destra dei commenti";
|
||||
$a->strings["Set the basic colour for item icons"] = "Colore di base per le icone";
|
||||
$a->strings["Set the hover colour for item icons"] = "Colore per le icone in evidenza";
|
||||
$a->strings["Set the basic color for item icons"] = "Colore di base per le icone";
|
||||
$a->strings["Set the hover color for item icons"] = "Colore per le icone in mouse-over";
|
||||
$a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito";
|
||||
$a->strings["Set font-colour for posts and comments"] = "Colore del carattere per articoli e commenti";
|
||||
$a->strings["Set font-color for posts and comments"] = "Imposta il colore del carattere per articoli e commenti";
|
||||
$a->strings["Set radius of corners"] = "Raggio degli angoli stondati";
|
||||
$a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto";
|
||||
$a->strings["Set maximum width of conversation regions"] = "Larghezza massima dell'area delle conversazioni";
|
||||
|
Reference in New Issue
Block a user