This commit is contained in:
redmatrix 2015-11-09 01:04:12 -08:00
commit 271a41b7dd
3 changed files with 1969 additions and 1826 deletions

View File

@ -2416,6 +2416,96 @@ logger('Req: ' . var_export($req,true));
api_register_func('api/oauth/request_token', 'api_oauth_request_token', false);
api_register_func('api/oauth/access_token', 'api_oauth_access_token', false);
function api_export_users(&$a,$type) {
if (! is_site_admin()){
header('HTTP/1.0 401 Unauthorized');
die('Only admin accounts may use this endpoint.');
}
$r = q("SELECT * FROM account");
// TODO: paginating!
$ret = array();
foreach($r as $u){
$ret[] = $u;
}
json_return_and_die(array('status' => 'OK',
'users' => $u));
}
api_register_func('api/export/users','api_export_users', true);
function api_export_channel_hashes(&$a, $type) {
if (! is_site_admin()){
header('HTTP/1.0 401 Unauthorized');
die('Only admin accounts may use this endpoint.');
}
if( $_REQUEST['account_id'] == ''){
header('HTTP/1.0 422 Unprocessable Entity');
die('Must supply account_id parameter.');
}
$c = q("select * from channel where channel_account_id = '%d'",
intval($_REQUEST['account_id']));
if(! $c){
header('HTTP/1.0 404 Not Found');
die('No such account_id '. $_REQUEST['account_id']);
}
$ret = array();
foreach ($c as $r){
$ret[] = $r['channel_hash'];
}
json_return_and_die(array('status' => 'OK',
'channel_hashes' => $ret));
}
api_register_func('api/export/channels','api_export_channel_hashes', true);
function api_export_identity(&$a, $type) {
if (! is_site_admin()){
header('HTTP/1.0 401 Unauthorized');
die('Only admin accounts may use this endpoint.');
}
if( $_REQUEST['channel_hash'] == ''){
header('HTTP/1.0 422 Unprocessable Entity');
die('Must supply channel_hash parameter.');
}
require_once('include/identity.php');
$c = q("select channel_id from channel where channel_hash = '%s' LIMIT 1",
dbesc($_REQUEST['channel_hash']));
if(! $c){
header('HTTP/1.0 404 Not Found');
die('No such channel '. $_REQUEST['channel_hash']);
}
json_return_and_die(
identity_basic_export($c[0]['channel_id'],
(($_REQUEST['posts']) ? intval($_REQUEST['posts']) : 0 )));
}
api_register_func('api/export/identity','api_export_identity', true);
/*
Not implemented by now:
statuses/retweets_of_me

File diff suppressed because it is too large Load Diff

View File

@ -5,6 +5,173 @@ function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["photo"] = "la foto";
$a->strings["event"] = "l'evento";
$a->strings["channel"] = "il 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["__ctx:title__ Likes"] = "Mi piace";
$a->strings["__ctx:title__ Dislikes"] = "Non mi piace";
$a->strings["__ctx:title__ Agree"] = "D'accordo";
$a->strings["__ctx:title__ Disagree"] = "Non d'accordo";
$a->strings["__ctx:title__ Abstain"] = "Astenuti";
$a->strings["__ctx:title__ Attending"] = "Partecipano";
$a->strings["__ctx:title__ Not attending"] = "Non partecipano";
$a->strings["__ctx:title__ Might attend"] = "Forse partecipano";
$a->strings["Select"] = "Scegli";
$a->strings["Delete"] = "Elimina";
$a->strings["Private Message"] = "Messaggio privato";
$a->strings["Message signature validated"] = "Messaggio con firma verificata";
$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
$a->strings["Categories:"] = "Categorie:";
$a->strings["Filed under:"] = "Classificato come:";
$a->strings["from %s"] = "da %s";
$a->strings["last edited: %s"] = "ultima modifica: %s";
$a->strings["Expires: %s"] = "Scadenza: %s";
$a->strings["View in context"] = "Vedi nel contesto";
$a->strings["Please wait"] = "Attendere";
$a->strings["remove"] = "rimuovi";
$a->strings["Loading..."] = "Caricamento in corso...";
$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati";
$a->strings["View Source"] = "Vedi il sorgente";
$a->strings["Follow Thread"] = "Segui la discussione";
$a->strings["Stop Following"] = "Non seguire più la discussione";
$a->strings["View Status"] = "Bacheca";
$a->strings["View Profile"] = "Profilo";
$a->strings["View Photos"] = "Foto";
$a->strings["Activity/Posts"] = "Attività e Post";
$a->strings["Connect"] = "Aggiungi";
$a->strings["Edit Connection"] = "Modifica il contatto";
$a->strings["Send PM"] = "Messaggio privato";
$a->strings["Poke"] = "Poke";
$a->strings["Unknown"] = "Sconosciuto";
$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 name"] = "Nome del link alla pagina";
$a->strings["Post as"] = "Pubblica come ";
$a->strings["Bold"] = "Grassetto";
$a->strings["Italic"] = "Corsivo";
$a->strings["Underline"] = "Sottolineato";
$a->strings["Quote"] = "Citazione";
$a->strings["Code"] = "Codice";
$a->strings["Upload photo"] = "Carica foto";
$a->strings["upload photo"] = "carica foto";
$a->strings["Attach file"] = "Allega file";
$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 del video";
$a->strings["video link"] = "link video";
$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio";
$a->strings["audio link"] = "link audio";
$a->strings["Set your location"] = "La tua località";
$a->strings["set location"] = "la tua località";
$a->strings["Toggle voting"] = "Abilita/disabilita il voto";
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
$a->strings["clear location"] = "rimuovi la località";
$a->strings["Title (optional)"] = "Titolo (facoltativo)";
$a->strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)";
$a->strings["Permission settings"] = "Permessi dei tuoi contatti";
$a->strings["permissions"] = "permessi";
$a->strings["Public post"] = "Post pubblico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
$a->strings["Set expiration date"] = "Data di scadenza";
$a->strings["Set publish date"] = "Data di uscita programmata";
$a->strings["Encrypt text"] = "Cifratura del messaggio";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annulla";
$a->strings["Discover"] = "Scopri";
$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 post";
$a->strings["Sort by Post Date"] = "Per data di creazione";
$a->strings["Personal"] = "Personali";
$a->strings["Posts that mention or involve you"] = "Post che ti riguardano";
$a->strings["New"] = "Novità";
$a->strings["Activity Stream - by date"] = "Elenco attività - per data";
$a->strings["Starred"] = "Preferiti";
$a->strings["Favourite Posts"] = "Post preferiti";
$a->strings["Spam"] = "Spam";
$a->strings["Posts flagged as SPAM"] = "Post marcati come spam";
$a->strings["Channel"] = "Canale";
$a->strings["Status Messages and Posts"] = "Post 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"] = "Archivio file";
$a->strings["Files and Storage"] = "Archivio file";
$a->strings["Chatrooms"] = "Chat";
$a->strings["Bookmarks"] = "Segnalibri";
$a->strings["Saved Bookmarks"] = "Segnalibri salvati";
$a->strings["Webpages"] = "Pagine web";
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
$a->strings["View all"] = "Vedi tutto";
$a->strings["__ctx:noun__ Like"] = array(
0 => "Mi piace",
1 => "Mi piace",
);
$a->strings["__ctx:noun__ Dislike"] = array(
0 => "Non mi piace",
1 => "Non mi piace",
);
$a->strings["__ctx:noun__ Attending"] = array(
0 => "Partecipa",
1 => "Partecipano",
);
$a->strings["__ctx:noun__ Not Attending"] = array(
0 => "Non partecipa",
1 => "Non partecipano",
);
$a->strings["__ctx:noun__ Undecided"] = array(
0 => "Indeciso",
1 => "Indecisi",
);
$a->strings["__ctx:noun__ Agree"] = array(
0 => "D'accordo",
1 => "D'accordo",
);
$a->strings["__ctx:noun__ Disagree"] = array(
0 => "Non d'accordo",
1 => "Non d'accordo",
);
$a->strings["__ctx:noun__ Abstain"] = array(
0 => "Astenuto",
1 => "Astenuti",
);
$a->strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare.";
$a->strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito.";
$a->strings["Import completed."] = "L'importazione è terminata con successo.";
@ -15,8 +182,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["Files"] = "Archivio file";
$a->strings["Total"] = "Totale";
$a->strings["Shared"] = "Condiviso";
$a->strings["Create"] = "Crea";
@ -26,7 +191,6 @@ $a->strings["Type"] = "Tipo";
$a->strings["Size"] = "Dimensione";
$a->strings["Last Modified"] = "Ultima modifica";
$a->strings["Edit"] = "Modifica";
$a->strings["Delete"] = "Elimina";
$a->strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file.";
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s&#37;)";
$a->strings["WARNING:"] = "ATTENZIONE:";
@ -121,7 +285,7 @@ $a->strings["Channel Sources"] = "Sorgenti del canale";
$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed";
$a->strings["Even More Encryption"] = "Cifratura addizionale";
$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi";
$a->strings["Enable Voting Tools"] = "Abilita gli strumenti per votare";
$a->strings["Enable Voting Tools"] = "Permetti i post con votazione";
$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare";
$a->strings["Delayed Posting"] = "Pubblicazione ritardata";
$a->strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post";
@ -257,7 +421,6 @@ $a->strings["public profile"] = "profilo pubblico";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s ";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s.";
$a->strings["Connect"] = "Aggiungi";
$a->strings["New window"] = "Nuova finestra";
$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra";
$a->strings["User '%s' deleted"] = "Utente '%s' eliminato";
@ -278,7 +441,6 @@ $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["Public Timeline"] = "Diario pubblico";
$a->strings["view full size"] = "guarda nelle dimensioni reali";
$a->strings["\$Projectname Notification"] = "Notifica \$Projectname";
$a->strings["\$projectname"] = "\$projectname";
@ -299,13 +461,11 @@ $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 salvare la foto.";
$a->strings["Photo Albums"] = "Album foto";
$a->strings["Upload New Photos"] = "Carica nuove foto";
$a->strings["created a new post"] = "Ha creato un nuovo post";
$a->strings["commented on %s's post"] = "ha commentato il post di %s";
$a->strings["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";
@ -376,29 +536,24 @@ $a->strings["Starts:"] = "Inizio:";
$a->strings["Finishes:"] = "Fine:";
$a->strings["Location:"] = "Luogo:";
$a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario";
$a->strings["event"] = "l'evento";
$a->strings["Not specified"] = "Non specificato";
$a->strings["Needs Action"] = "Necessita di un intervento";
$a->strings["Completed"] = "Completato";
$a->strings["In Process"] = "In corso";
$a->strings["Cancelled"] = "Annullato";
$a->strings["Site Admin"] = "Amministrazione sito";
$a->strings["Bookmarks"] = "Segnalibri";
$a->strings["Address Book"] = "Rubrica";
$a->strings["Login"] = "Accedi";
$a->strings["Channel Manager"] = "Gestione canali";
$a->strings["Grid"] = "Rete";
$a->strings["Settings"] = "Impostazioni";
$a->strings["Webpages"] = "Pagine web";
$a->strings["Channel Home"] = "Bacheca del canale";
$a->strings["Profile"] = "Profilo";
$a->strings["Photos"] = "Foto";
$a->strings["Events"] = "Eventi";
$a->strings["Directory"] = "Elenchi pubblici dei 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";
@ -412,21 +567,6 @@ $a->strings["Profile Photo"] = "Foto del profilo";
$a->strings["Update"] = "Aggiorna";
$a->strings["Install"] = "Installa";
$a->strings["Purchase"] = "Acquista";
$a->strings["Item was not found."] = "Elemento non trovato.";
$a->strings["No source file."] = "Nessun file di origine.";
$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato";
$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato";
$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati.";
$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato.";
$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito.";
$a->strings["Path not available."] = "Percorso non disponibile.";
$a->strings["Empty pathname"] = "Il percorso del file è vuoto";
$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato";
$a->strings["Path not found."] = "Percorso del file non trovato.";
$a->strings["mkdir failed."] = "mkdir fallito.";
$a->strings["database storage failed."] = "scrittura su database fallita.";
$a->strings["Empty path"] = "La posizione è vuota";
$a->strings["Logged out."] = "Uscita effettuata.";
$a->strings["Failed authentication"] = "Autenticazione fallita";
$a->strings["Login failed."] = "Accesso fallito.";
@ -466,8 +606,6 @@ $a->strings["Name:"] = "Nome:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
$a->strings["[Hubzilla:Notify]"] = "[Hubzilla]";
$a->strings["Private Message"] = "Messaggio privato";
$a->strings["Select"] = "Scegli";
$a->strings["Save to Folder"] = "Salva nella cartella";
$a->strings["I will attend"] = "Parteciperò";
$a->strings["I will not attend"] = "Non parteciperò";
@ -475,21 +613,10 @@ $a->strings["I might attend"] = "Forse parteciperò";
$a->strings["I agree"] = "Sono d'accordo";
$a->strings["I disagree"] = "Non sono d'accordo";
$a->strings["I abstain"] = "Mi astengo";
$a->strings["View all"] = "Vedi tutto";
$a->strings["__ctx:noun__ Like"] = array(
0 => "Mi piace",
1 => "Mi piace",
);
$a->strings["__ctx:noun__ Dislike"] = array(
0 => "Non mi piace",
1 => "Non mi piace",
);
$a->strings["Add Star"] = "Aggiungi ai preferiti";
$a->strings["Remove Star"] = "Rimuovi dai preferiti";
$a->strings["Toggle Star Status"] = "Attiva/disattiva preferito";
$a->strings["starred"] = "preferito";
$a->strings["Message signature validated"] = "Messaggio con firma verificata";
$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta";
$a->strings["Add Tag"] = "Aggiungi un tag";
$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace";
$a->strings["like"] = "mi piace";
@ -507,100 +634,27 @@ $a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:";
$a->strings["Delivery Report"] = "Rapporto di trasmissione";
$a->strings["from %s"] = "da %s";
$a->strings["last edited: %s"] = "ultima modifica: %s";
$a->strings["Expires: %s"] = "Scadenza: %s";
$a->strings["Save Bookmarks"] = "Salva segnalibro";
$a->strings["Add to Calendar"] = "Aggiungi al calendario";
$a->strings["Mark all seen"] = "Marca tutto come letto";
$a->strings["__ctx:noun__ Likes"] = "Mi piace";
$a->strings["__ctx:noun__ Dislikes"] = "Non mi piace";
$a->strings["Please wait"] = "Attendere";
$a->strings["This is you"] = "Questo sei tu";
$a->strings["Bold"] = "Grassetto";
$a->strings["Italic"] = "Corsivo";
$a->strings["Underline"] = "Sottolineato";
$a->strings["Quote"] = "Citazione";
$a->strings["Code"] = "Codice";
$a->strings["Image"] = "Immagine";
$a->strings["Insert Link"] = "Collegamento";
$a->strings["Video"] = "Video";
$a->strings["Encrypt text"] = "Cifratura del messaggio";
$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"] = "spintone";
$a->strings["prodded"] = "ha ricevuto uno spintone";
$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["May"] = "maggio";
$a->strings["Unknown Attachment"] = "Allegato non riconoscuto";
$a->strings["Attachment"] = "Allegato";
$a->strings["Size Unknown"] = "Dimensioni non note";
$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 sito d'origine";
$a->strings["default"] = "predefinito";
$a->strings["Page layout"] = "Layout della pagina";
$a->strings["You can create your own with the layouts tool"] = "Con la configurazione del layout puoi crearne uno tuo";
$a->strings["Page content type"] = "Tipo di contenuto della pagina";
$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
$a->strings["photo"] = "la foto";
$a->strings["status"] = "il messaggio di stato";
$a->strings["comment"] = "il commento";
$a->strings["activity"] = "l'attività";
$a->strings["Design Tools"] = "Strumenti di design";
$a->strings["Blocks"] = "Riquadri";
$a->strings["Menus"] = "Menù";
$a->strings["Layouts"] = "Layout";
$a->strings["Pages"] = "Pagine";
$a->strings["Invalid data packet"] = "Dati ricevuti non validi";
$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale";
$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s";
$a->strings["invalid target signature"] = "la firma ricevuta non è valida";
$a->strings["Public Timeline"] = "Diario pubblico";
$a->strings["Image/photo"] = "Immagine";
$a->strings["Encrypted content"] = "Contenuto cifrato";
$a->strings["Install %s element: "] = "Installa l'elemento %s:";
$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione.";
$a->strings["webpage"] = "pagina web";
$a->strings["layout"] = "layout";
$a->strings["block"] = "riquadro";
$a->strings["block"] = "block";
$a->strings["menu"] = "menu";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
$a->strings["post"] = "il post";
@ -663,10 +717,6 @@ $a->strings["Edit collection"] = "Modifica l'insieme di canali";
$a->strings["Add new collection"] = "Nuovo insieme";
$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme";
$a->strings["add"] = "aggiungi";
$a->strings["Invalid data packet"] = "Dati ricevuti non validi";
$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale";
$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s";
$a->strings["invalid target signature"] = "la firma ricevuta non è valida";
$a->strings["No recipient provided."] = "Devi scegliere un destinatario.";
$a->strings["[no subject]"] = "[nessun titolo]";
$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente.";
@ -728,8 +778,6 @@ $a->strings["Love/Romance:"] = "Amore:";
$a->strings["Work/employment:"] = "Lavoro:";
$a->strings["School/education:"] = "Scuola:";
$a->strings["Like this thing"] = "Mi piace";
$a->strings["Attachments:"] = "Allegati:";
$a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:";
$a->strings["Tags"] = "Tag";
$a->strings["Keywords"] = "Parole chiave";
$a->strings["have"] = "ho";
@ -738,134 +786,23 @@ $a->strings["want"] = "voglio";
$a->strings["wants"] = "vuole";
$a->strings["likes"] = "gli piace";
$a->strings["dislikes"] = "non gli piace";
$a->strings["channel"] = "il canale";
$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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
$a->strings["__ctx:title__ Likes"] = "Mi piace";
$a->strings["__ctx:title__ Dislikes"] = "Non mi piace";
$a->strings["__ctx:title__ Agree"] = "D'accordo";
$a->strings["__ctx:title__ Disagree"] = "Non d'accordo";
$a->strings["__ctx:title__ Abstain"] = "Astenuti";
$a->strings["__ctx:title__ Attending"] = "Partecipano";
$a->strings["__ctx:title__ Not attending"] = "Non partecipano";
$a->strings["__ctx:title__ Might attend"] = "Forse partecipano";
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
$a->strings["Categories:"] = "Categorie:";
$a->strings["Filed under:"] = "Classificato come:";
$a->strings["View in context"] = "Vedi nel contesto";
$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"] = "Stato attuale";
$a->strings["View Profile"] = "Profilo";
$a->strings["View Photos"] = "Foto";
$a->strings["Activity/Posts"] = "Attività e Post";
$a->strings["Edit Connection"] = "Modifica il contatto";
$a->strings["Send PM"] = "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 name"] = "Nome del link alla pagina";
$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 del video";
$a->strings["video link"] = "link video";
$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio";
$a->strings["audio link"] = "link audio";
$a->strings["Set your location"] = "La tua località";
$a->strings["set location"] = "la tua località";
$a->strings["Toggle voting"] = "Abilita/disabilita il voto";
$a->strings["Clear browser location"] = "Rimuovi la località data dal browser";
$a->strings["clear location"] = "rimuovi la località";
$a->strings["Title (optional)"] = "Titolo (facoltativo)";
$a->strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)";
$a->strings["Permission settings"] = "Permessi dei tuoi contatti";
$a->strings["permissions"] = "permessi";
$a->strings["Public post"] = "Post pubblico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com";
$a->strings["Set expiration date"] = "Data di scadenza";
$a->strings["Set publish date"] = "Data di uscita programmata";
$a->strings["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 post";
$a->strings["Sort by Post Date"] = "Per data di creazione";
$a->strings["Personal"] = "Personali";
$a->strings["Posts that mention or involve you"] = "Post che ti riguardano";
$a->strings["New"] = "Novità";
$a->strings["Activity Stream - by date"] = "Elenco attività - per data";
$a->strings["Starred"] = "Preferiti";
$a->strings["Favourite Posts"] = "Post preferiti";
$a->strings["Spam"] = "Spam";
$a->strings["Posts flagged as SPAM"] = "Post marcati come spam";
$a->strings["Channel"] = "Canale";
$a->strings["Status Messages and Posts"] = "Post 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["__ctx:noun__ Attending"] = array(
0 => "Partecipa",
1 => "Partecipano",
);
$a->strings["__ctx:noun__ Not Attending"] = array(
0 => "Non partecipa",
1 => "Non partecipano",
);
$a->strings["__ctx:noun__ Undecided"] = array(
0 => "Indeciso",
1 => "Indecisi",
);
$a->strings["__ctx:noun__ Agree"] = array(
0 => "D'accordo",
1 => "D'accordo",
);
$a->strings["__ctx:noun__ Disagree"] = array(
0 => "Non d'accordo",
1 => "Non d'accordo",
);
$a->strings["__ctx:noun__ Abstain"] = array(
0 => "Astenuto",
1 => "Astenuti",
);
$a->strings["Item was not found."] = "Elemento non trovato.";
$a->strings["No source file."] = "Nessun file di origine.";
$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato";
$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato";
$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati.";
$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato.";
$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito.";
$a->strings["Path not available."] = "Percorso non disponibile.";
$a->strings["Empty pathname"] = "Il percorso del file è vuoto";
$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato";
$a->strings["Path not found."] = "Percorso del file non trovato.";
$a->strings["mkdir failed."] = "mkdir fallito.";
$a->strings["database storage failed."] = "scrittura su database fallita.";
$a->strings["Empty path"] = "La posizione è vuota";
$a->strings["Attachments:"] = "Allegati:";
$a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:";
$a->strings["Apps"] = "App";
$a->strings["System"] = "Sistema";
$a->strings["Create Personal App"] = "Crea app personale";
@ -878,6 +815,7 @@ $a->strings["Add New Connection"] = "Aggiungi un contatto";
$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara";
$a->strings["Notes"] = "Note";
$a->strings["Save"] = "Salva";
$a->strings["Remove term"] = "Rimuovi termine";
$a->strings["Archives"] = "Archivi";
$a->strings["Me"] = "Me";
@ -904,7 +842,6 @@ $a->strings["Received Messages"] = "Ricevuti";
$a->strings["Sent Messages"] = "Inviati";
$a->strings["No messages."] = "Nessun messaggio.";
$a->strings["Delete conversation"] = "Elimina la conversazione";
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
$a->strings["Chat Rooms"] = "Chat";
$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri";
$a->strings["Suggested Chatrooms"] = "Chat suggerite";
@ -931,6 +868,68 @@ $a->strings["Logs"] = "Log";
$a->strings["Admin"] = "Amministrazione";
$a->strings["Plugin Features"] = "Plugin";
$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa";
$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["poke"] = "poke";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "ha ricevuto un ping";
$a->strings["prod"] = "spintone";
$a->strings["prodded"] = "ha ricevuto uno spintone";
$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["May"] = "maggio";
$a->strings["Unknown Attachment"] = "Allegato non riconoscuto";
$a->strings["unknown"] = "sconosciuta";
$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 sito d'origine";
$a->strings["default"] = "predefinito";
$a->strings["Page layout"] = "Layout della pagina";
$a->strings["You can create your own with the layouts tool"] = "Con la configurazione del layout puoi crearne uno tuo";
$a->strings["Page content type"] = "Tipo di contenuto della pagina";
$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
$a->strings["activity"] = "l'attività";
$a->strings["Design Tools"] = "Strumenti di design";
$a->strings["Blocks"] = "Block";
$a->strings["Menus"] = "Menù";
$a->strings["Layouts"] = "Layout";
$a->strings["Pages"] = "Pagine";
$a->strings["Logout"] = "Esci";
$a->strings["End this session"] = "Chiudi questa sessione";
$a->strings["Home"] = "Bacheca";
@ -975,7 +974,7 @@ $a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canal
$a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito";
$a->strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto";
$a->strings["Please wait..."] = "Attendere...";
$a->strings["Directory Options"] = "Opzioni per elenchi pubblici";
$a->strings["Directory Options"] = "Visibilità negli elenchi pubblici";
$a->strings["Safe Mode"] = "Modalità SafeSearch";
$a->strings["No"] = "No";
$a->strings["Yes"] = "Si";
@ -1226,27 +1225,6 @@ $a->strings["Website:"] = "Sito web:";
$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)";
$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)";
$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)";
$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario.";
$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto.";
$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto.";
$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito.";
$a->strings["Messages"] = "Messaggi";
$a->strings["Message recalled."] = "Messaggio revocato.";
$a->strings["Conversation removed."] = "Conversazione rimossa.";
$a->strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete";
$a->strings["Send Private Message"] = "Invia un messaggio privato";
$a->strings["To:"] = "A:";
$a->strings["Subject:"] = "Oggetto:";
$a->strings["Your message:"] = "Il tuo messaggio:";
$a->strings["Send"] = "Invia";
$a->strings["Delete message"] = "Elimina il messaggio";
$a->strings["Delivery report"] = "Rapporto di trasmissione";
$a->strings["Recall message"] = "Revoca il messaggio";
$a->strings["Message has been recalled."] = "Il messaggio è stato revocato.";
$a->strings["Delete Conversation"] = "Elimina la conversazione";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente.";
$a->strings["Send Reply"] = "Invia la risposta";
$a->strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):";
$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina.";
$a->strings["Album not found."] = "Album non trovato.";
$a->strings["Delete Album"] = "Elimina album";
@ -1303,12 +1281,12 @@ $a->strings["mail recalled"] = "messaggio richiamato dal mittente";
$a->strings["duplicate mail received"] = "ricevuto messaggio duplicato";
$a->strings["mail delivered"] = "messaggio recapitato";
$a->strings["Item not found"] = "Elemento non trovato";
$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?";
$a->strings["Delete block?"] = "Vuoi eliminare questo block?";
$a->strings["Insert YouTube video"] = "Inserisci video da YouTube";
$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]";
$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]";
$a->strings["Edit Block"] = "Modifica il riquadro";
$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione";
$a->strings["Edit Block"] = "Modifica il block";
$a->strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione";
$a->strings["Item is not editable"] = "L'elemento non è modificabile";
$a->strings["Delete item?"] = "Eliminare questo elemento?";
$a->strings["Edit post"] = "Modifica post";
@ -1376,11 +1354,13 @@ $a->strings["Check to block public access to all otherwise public personal pages
$a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email";
$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato).";
$a->strings["Force publish"] = "Forza la publicazione del profilo";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare negli elenchi pubblici <strong>tutti</strong> i profili registrati su questo sito.";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito.";
$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'";
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti.";
$a->strings["login on Homepage"] = "Mostra il login sulla homepage";
$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti.";
$a->strings["Directory Server URL"] = "URL del directory server";
$a->strings["Default directory server"] = "Directory server predefinito";
$a->strings["Proxy user"] = "Utente proxy";
$a->strings["Proxy URL"] = "URL proxy";
$a->strings["Network timeout"] = "Timeout rete";
@ -1550,6 +1530,7 @@ $a->strings["Layout not found."] = "Layout non trovato.";
$a->strings["Module Name:"] = "Nome del modulo:";
$a->strings["Layout Help"] = "Guida al layout";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s";
$a->strings["No valid account found."] = "Nessun account valido trovato.";
$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
$a->strings["Site Member (%s)"] = "Utente del sito (%s)";
@ -1656,8 +1637,8 @@ $a->strings["Please enter your invitation code"] = "Inserisci il codice dell'inv
$a->strings["Your email address"] = "Il tuo indirizzo email";
$a->strings["Choose a password"] = "Scegli una password";
$a->strings["Please re-enter your password"] = "Ripeti la password per verifica";
$a->strings["Block Name"] = "Nome del riquadro";
$a->strings["Block Title"] = "Titolo del riquadro";
$a->strings["Block Name"] = "Nome del block";
$a->strings["Block Title"] = "Titolo del block";
$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 account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete.";
@ -1760,12 +1741,33 @@ $a->strings["%d message sent."] = array(
$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
$a->strings["Send invitations"] = "Spedisci inviti";
$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
$a->strings["Your message:"] = "Il tuo messaggio:";
$a->strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname.";
$a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito.";
$a->strings["or visit "] = "oppure visita ";
$a->strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]";
$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario.";
$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto.";
$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto.";
$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito.";
$a->strings["Messages"] = "Messaggi";
$a->strings["Message recalled."] = "Messaggio revocato.";
$a->strings["Conversation removed."] = "Conversazione rimossa.";
$a->strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete";
$a->strings["Send Private Message"] = "Invia un messaggio privato";
$a->strings["To:"] = "A:";
$a->strings["Subject:"] = "Oggetto:";
$a->strings["Send"] = "Invia";
$a->strings["Delete message"] = "Elimina il messaggio";
$a->strings["Delivery report"] = "Rapporto di trasmissione";
$a->strings["Recall message"] = "Revoca il messaggio";
$a->strings["Message has been recalled."] = "Il messaggio è stato revocato.";
$a->strings["Delete Conversation"] = "Elimina la conversazione";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente.";
$a->strings["Send Reply"] = "Invia la risposta";
$a->strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):";
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
$a->strings["Source of Item"] = "Sorgente";
$a->strings["Name is required"] = "Il nome è obbligatorio";
@ -1901,9 +1903,11 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ca
$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in <a href=\"settings/features\">Impostazioni > Funzionalità opzionali</a>)";
$a->strings["Miscellaneous Settings"] = "Impostazioni varie";
$a->strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate";
$a->strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente";
$a->strings["Default file upload folder"] = "Cartella predefinita per i file caricati";
$a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale";
$a->strings["Remove this channel."] = "Elimina questo canale.";
$a->strings["Firefox Share \$Projectname provider"] = "Funzionalità Firefox Share per \$Projectname";
$a->strings["Xchan Lookup"] = "Ricerca canale";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:";
$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi.";
@ -1969,12 +1973,19 @@ $a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
$a->strings["Location not found."] = "Indirizzo non trovato.";
$a->strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita.";
$a->strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria.";
$a->strings["Syncing locations"] = "Sincronizzazione tra hub";
$a->strings["No locations found."] = "Nessun indirizzo trovato.";
$a->strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale";
$a->strings["Location (address)"] = "Indirizzo";
$a->strings["Primary Location"] = "Indirizzo primario";
$a->strings["Drop location"] = "Elimina un indirizzo";
$a->strings["Sync now"] = "Sincronizza ora";
$a->strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione.";
$a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sui loro hub e rimuovendoli.";
$a->strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante.";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo.";
$a->strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox";
$a->strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname";
$a->strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione";
$a->strings["Could not connect to database."] = " Impossibile connettersi al database.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS.";
@ -2109,7 +2120,7 @@ $a->strings["Homepage URL:"] = "Indirizzo home page:";
$a->strings["Religious Views:"] = "Orientamento religioso:";
$a->strings["Keywords:"] = "Parole chiave, tag:";
$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione";
$a->strings["Used in directory listings"] = "Visibile sugli elenchi pubblici di canali";
$a->strings["Used in directory listings"] = "Visibile negli elenchi pubblici di canali";
$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
$a->strings["Hobbies/Interests"] = "Hobby/interessi";
$a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network";