Conflicts:
	view/theme/redbasic/css/style.css
This commit is contained in:
friendica 2013-12-11 15:32:25 -08:00
commit c57b6745e8
13 changed files with 1899 additions and 1892 deletions

View File

@ -22,7 +22,8 @@ function dir_sort_links() {
function dir_safe_mode() {
$observer = get_observer_hash();
if (! $observer)
return;
if ($observer)
$safe_mode = get_xconfig($observer,'directory','safe_mode');
if($safe_mode === '0')

View File

@ -49,6 +49,7 @@ function get_features() {
array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on')),
array('new_tab', t('Network New Tab'), t('Enable tab to display all new Network activity')),
array('affinity', t('Affinity Tool'), t('Filter stream activity by depth of relationships')),
array('suggest', t('Suggest Channels'), t('Show channel suggestions')),
),
// Item tools

View File

@ -57,6 +57,9 @@ function widget_collections($args) {
function widget_suggestions($arr) {
if((! local_user()) || (! feature_enabled(local_user(),'suggest')))
return '';
require_once('include/socgraph.php');
$r = suggestion_query(local_user(),get_observer_hash(),0,20);
@ -143,7 +146,7 @@ function widget_notes($arr) {
if(! feature_enabled(local_user(),'private_notes'))
return '';
$text = htmlspecialchars(get_pconfig(local_user(),'notes','text'));
$text = get_pconfig(local_user(),'notes','text');
$o = replace_macros(get_markup_template('notes.tpl'), array(
'$banner' => t('Notes'),

View File

@ -6,7 +6,7 @@ function notes_init(&$a) {
logger('mod_notes: ' . print_r($_REQUEST,true));
$ret = array('success' => true);
if($_REQUEST['note_text']) {
if($_REQUEST['note_text'] || $_REQUEST['note_text'] == '') {
$body = escape_tags($_REQUEST['note_text']);
set_pconfig(local_user(),'notes','text',$body);
}

View File

@ -3,6 +3,8 @@
function toggle_safesearch_init(&$a) {
$observer = get_observer_hash();
if (! $observer)
return;
if($observer)
$safe_mode = get_xconfig($observer,'directory','safe_mode');

110
view/css/widgets.css Normal file
View File

@ -0,0 +1,110 @@
.widget {
padding: 8px;
margin-top: 5px;
}
/* suggest */
.suggest-widget-more {
margin-top: 10px;
}
/* follow */
#side-follow-url {
margin-top: 5px;
}
#side-follow-submit {
margin-top: 15px;
}
/* notes */
#note-text {
width: 190px;
max-width: 190px;
height: 150px;
}
#note-save {
margin-top: 10px;
}
/* saved searches */
.saved-search-li {
margin-top: 3px;
}
.saved-search-li i {
opacity: 0;
}
.saved-search-li:hover i {
opacity: 1;
}
.savedsearchterm {
margin-left: 10px;
}
/* fileas */
.fileas-ul li {
margin-top: 10px;
}
.fileas-link {
margin-left: 24px;
}
.fileas-all {
margin-left: 0px;
}
/* posted date */
#datebrowse-sidebar select {
width: 190px;
max-width: 190px;
height: 150px;
}
/* categories */
.categories-ul li {
margin-top: 10px;
}
.categories-link {
margin-left: 24px;
}
.categories-all {
margin-left: 0px;
}
/* group */
#group-sidebar {
margin-bottom: 10px;
}
#sidebar-group-list .icon, #sidebar-group-list .iconspacer {
display: inline-block;
height: 12px;
width: 12px;
}
#sidebar-group-list li {
margin-top: 3px;
}
.groupsideedit {
margin-right: 10px;
}
.group-edit-icon {
opacity: 0;
}

File diff suppressed because it is too large Load Diff

View File

@ -97,13 +97,6 @@ $a->strings["Encrypt text"] = "Crittografia del testo";
$a->strings["Connect"] = "Entra in contatto/segui";
$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["Poke"] = "Poke";
$a->strings["View Status"] = "Guarda il messaggio di stato";
$a->strings["View Profile"] = "Profilo";
$a->strings["View Photos"] = "Guarda le foto";
$a->strings["Network Posts"] = "Articoli dalla tua rete";
$a->strings["Edit Contact"] = "Modifica il contatto";
$a->strings["Send PM"] = "Invia messaggio privato";
$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";
@ -237,35 +230,293 @@ $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.";
$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito.";
$a->strings["view full size"] = "guarda nelle dimensioni reali";
$a->strings["Profile Photos"] = "Foto del profilo";
$a->strings["Profile"] = "Profilo";
$a->strings["Full Name:"] = "Nome completo:";
$a->strings["Gender:"] = "Sesso:";
$a->strings["j F, Y"] = "j F Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Compleanno:";
$a->strings["Age:"] = "Età:";
$a->strings["Status:"] = "Stato:";
$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
$a->strings["Homepage:"] = "Home page:";
$a->strings["Hometown:"] = "Città dove vivo:";
$a->strings["Tags:"] = "Tag:";
$a->strings["Political Views:"] = "Orientamento politico:";
$a->strings["Religion:"] = "Religione:";
$a->strings["About:"] = "Informazioni:";
$a->strings["Hobbies/Interests:"] = "Interessi e hobby:";
$a->strings["Likes:"] = "Mi piace:";
$a->strings["Dislikes:"] = "Non mi piace:";
$a->strings["Contact information and Social Networks:"] = "Contatti e social network:";
$a->strings["Musical interests:"] = "Gusti musicali:";
$a->strings["Books, literature:"] = "Libri, letteratura:";
$a->strings["Television:"] = "Televisione:";
$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:";
$a->strings["Love/Romance:"] = "Amore:";
$a->strings["Work/employment:"] = "Lavoro:";
$a->strings["School/education:"] = "Scuola:";
$a->strings["Public Timeline"] = "Diario pubblico";
$a->strings["view full size"] = "guarda nelle dimensioni reali";
$a->strings["Image/photo"] = "Immagine";
$a->strings["Encrypted content"] = "Contenuto crittografato";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s seguente %3\$s";
$a->strings["post"] = "l'articolo";
$a->strings["$1 wrote:"] = "$1 ha scritto:";
$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["Permission denied."] = "Permesso negato.";
$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
$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["Male"] = "Maschio";
$a->strings["Female"] = "Femmina";
$a->strings["Currently Male"] = "Al momento maschio";
$a->strings["Currently Female"] = "Al momento femmina";
$a->strings["Mostly Male"] = "Prevalentemente maschio";
$a->strings["Mostly Female"] = "Prevalentemente femmina";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transessuale";
$a->strings["Hermaphrodite"] = "Ermafrodito";
$a->strings["Neuter"] = "Neutro";
$a->strings["Non-specific"] = "Non specificato";
$a->strings["Other"] = "Altro";
$a->strings["Undecided"] = "Indeciso";
$a->strings["Males"] = "Maschi";
$a->strings["Females"] = "Femmine";
$a->strings["Gay"] = "Gay";
$a->strings["Lesbian"] = "Lesbica";
$a->strings["No Preference"] = "Senza preferenza";
$a->strings["Bisexual"] = "Bisessuale";
$a->strings["Autosexual"] = "Autosessuale";
$a->strings["Abstinent"] = "Astinente";
$a->strings["Virgin"] = "Vergine";
$a->strings["Deviant"] = "Deviato";
$a->strings["Fetish"] = "Feticista";
$a->strings["Oodles"] = "Un sacco";
$a->strings["Nonsexual"] = "Asessuato";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Da solo";
$a->strings["Available"] = "Disponibile";
$a->strings["Unavailable"] = "Non disponibile";
$a->strings["Has crush"] = "Ha una cotta";
$a->strings["Infatuated"] = "Infatuato/a";
$a->strings["Dating"] = "Disponibile a un incontro";
$a->strings["Unfaithful"] = "Infedele";
$a->strings["Sex Addict"] = "Sesso-dipendente";
$a->strings["Friends"] = "Amici";
$a->strings["Friends/Benefits"] = "Amici piccanti";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Impegnato";
$a->strings["Married"] = "Sposato/a";
$a->strings["Imaginarily married"] = "Sogna il matrimonio";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "Convivente";
$a->strings["Common law"] = "Matrimonio regolare";
$a->strings["Happy"] = "Felice";
$a->strings["Not looking"] = "Non in cerca";
$a->strings["Swinger"] = "Scambista";
$a->strings["Betrayed"] = "Tradito/a";
$a->strings["Separated"] = "Separato/a";
$a->strings["Unstable"] = "Instabile";
$a->strings["Divorced"] = "Divorziato/a";
$a->strings["Imaginarily divorced"] = "Sogna il divorzio";
$a->strings["Widowed"] = "Vedovo/a";
$a->strings["Uncertain"] = "Incerto/a";
$a->strings["It's complicated"] = "Relazione complicata";
$a->strings["Don't care"] = "Chi se ne frega";
$a->strings["Ask me"] = "Chiedimelo";
$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 aver superato i limiti o l'azione potrebbe essere stata interrotta.";
$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 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["Invalid data packet"] = "Dati 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["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 e modifica i profili";
$a->strings["Photos"] = "Foto";
$a->strings["Your photos"] = "Le tue foto";
$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["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi";
$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["See all matrix notifications"] = "Notifiche dalla 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["See all channel notifications"] = "Guarda le notifiche dei canali";
$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali";
$a->strings["Intros"] = "Richieste";
$a->strings["New Connections"] = "Nuovi contatti";
$a->strings["See all channel introductions"] = "Guarda tutte le richieste di amicizia";
$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["Connections"] = "Contatti";
$a->strings["Manage/Edit Friends and Connections"] = "Modifica amici e contatti";
$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["Not a valid email address"] = "Email non valida";
$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito";
$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito.";
$a->strings["An invitation is required."] = "È necessario un invito.";
$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato.";
$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account.";
$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s";
$a->strings["Administrator"] = "Amministratore";
$a->strings["your registration password"] = "la password di registrazione";
$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
$a->strings["Account approved."] = "Account approvato.";
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %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["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
$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"] = "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["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"] = "Scadenza il AAAA-MM-GG OO:MM";
$a->strings["Share"] = "Condividi";
$a->strings["Page link title"] = "Link del titolo";
$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["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["Events and Calendar"] = "Calendario eventi";
$a->strings["Webpages"] = "Pagine web";
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
$a->strings["Logged out."] = "Uscita effettuata.";
$a->strings["Failed authentication"] = "Autenticazione fallita";
$a->strings["Login failed."] = "Accesso fallito.";
$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse.";
$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["%d invitation available"] = array(
0 => "%d invito disponibile",
1 => "%d inviti disponibili",
);
$a->strings["Find Channels"] = "Ricerca canali";
$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse";
$a->strings["Connect/Follow"] = "Entra in contatto/segui";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca";
$a->strings["Find"] = "Cerca";
$a->strings["Channel Suggestions"] = "Canali suggeriti";
$a->strings["Random Profile"] = "Profilo casuale";
$a->strings["Invite Friends"] = "Invita amici";
$a->strings["Everything"] = "Tutto";
$a->strings["Categories"] = "Categorie";
$a->strings["%d connection in common"] = array(
0 => "%d contatto in comune",
1 => "%d contatti in comune",
);
$a->strings["New Page"] = "Nuova pagina web";
$a->strings["prev"] = "prec";
$a->strings["first"] = "inizio";
$a->strings["last"] = "fine";
@ -278,10 +529,8 @@ $a->strings["%d Connection"] = array(
1 => "%d contatti",
);
$a->strings["View Connections"] = "Elenco contatti";
$a->strings["Search"] = "Cerca";
$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";
@ -341,278 +590,12 @@ $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["photo"] = "la foto";
$a->strings["event"] = "l'evento";
$a->strings["status"] = "il messaggio di stato";
$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["Public Timeline"] = "Diario pubblico";
$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
$a->strings["Empty name"] = "Nome vuoto";
$a->strings["Name too long"] = "Nome troppo lungo";
$a->strings["No account identifier"] = "Account senza identificativo";
$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio.";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati.";
$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
$a->strings["Default Profile"] = "Profilo predefinito";
$a->strings["Friends"] = "Amici";
$a->strings["Image/photo"] = "Immagine";
$a->strings["Encrypted content"] = "Contenuto crittografato";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s seguente %3\$s";
$a->strings["post"] = "l'articolo";
$a->strings["$1 wrote:"] = "$1 ha scritto:";
$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["Permission denied."] = "Permesso negato.";
$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
$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["Male"] = "Maschio";
$a->strings["Female"] = "Femmina";
$a->strings["Currently Male"] = "Al momento maschio";
$a->strings["Currently Female"] = "Al momento femmina";
$a->strings["Mostly Male"] = "Prevalentemente maschio";
$a->strings["Mostly Female"] = "Prevalentemente femmina";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transessuale";
$a->strings["Hermaphrodite"] = "Ermafrodito";
$a->strings["Neuter"] = "Neutro";
$a->strings["Non-specific"] = "Non specificato";
$a->strings["Other"] = "Altro";
$a->strings["Undecided"] = "Indeciso";
$a->strings["Males"] = "Maschi";
$a->strings["Females"] = "Femmine";
$a->strings["Gay"] = "Gay";
$a->strings["Lesbian"] = "Lesbica";
$a->strings["No Preference"] = "Senza preferenza";
$a->strings["Bisexual"] = "Bisessuale";
$a->strings["Autosexual"] = "Autosessuale";
$a->strings["Abstinent"] = "Astinente";
$a->strings["Virgin"] = "Vergine";
$a->strings["Deviant"] = "Deviato";
$a->strings["Fetish"] = "Feticista";
$a->strings["Oodles"] = "Un sacco";
$a->strings["Nonsexual"] = "Asessuato";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Da solo";
$a->strings["Available"] = "Disponibile";
$a->strings["Unavailable"] = "Non disponibile";
$a->strings["Has crush"] = "Ha una cotta";
$a->strings["Infatuated"] = "Infatuato/a";
$a->strings["Dating"] = "Disponibile a un incontro";
$a->strings["Unfaithful"] = "Infedele";
$a->strings["Sex Addict"] = "Sesso-dipendente";
$a->strings["Friends/Benefits"] = "Amici piccanti";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Impegnato";
$a->strings["Married"] = "Sposato/a";
$a->strings["Imaginarily married"] = "Sogna il matrimonio";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "Convivente";
$a->strings["Common law"] = "Matrimonio regolare";
$a->strings["Happy"] = "Felice";
$a->strings["Not looking"] = "Non in cerca";
$a->strings["Swinger"] = "Scambista";
$a->strings["Betrayed"] = "Tradito/a";
$a->strings["Separated"] = "Separato/a";
$a->strings["Unstable"] = "Instabile";
$a->strings["Divorced"] = "Divorziato/a";
$a->strings["Imaginarily divorced"] = "Sogna il divorzio";
$a->strings["Widowed"] = "Vedovo/a";
$a->strings["Uncertain"] = "Incerto/a";
$a->strings["It's complicated"] = "Relazione complicata";
$a->strings["Don't care"] = "Chi se ne frega";
$a->strings["Ask me"] = "Chiedimelo";
$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 aver superato i limiti o l'azione potrebbe essere stata interrotta.";
$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 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["Invalid data packet"] = "Dati 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["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["Your profile page"] = "Il tuo profilo";
$a->strings["Edit Profiles"] = "Modifica i profili";
$a->strings["Manage/Edit Profiles"] = "Gestisci e modifica i profili";
$a->strings["Photos"] = "Foto";
$a->strings["Your photos"] = "Le tue foto";
$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["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi";
$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["See all matrix notifications"] = "Notifiche dalla 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["See all channel notifications"] = "Guarda le notifiche dei canali";
$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali";
$a->strings["Intros"] = "Richieste";
$a->strings["New Connections"] = "Nuovi contatti";
$a->strings["See all channel introductions"] = "Guarda tutte le richieste di amicizia";
$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["Connections"] = "Contatti";
$a->strings["Manage/Edit Friends and Connections"] = "Modifica amici e contatti";
$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["Not a valid email address"] = "Email non valida";
$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito";
$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito.";
$a->strings["An invitation is required."] = "È necessario un invito.";
$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato.";
$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account.";
$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s";
$a->strings["Administrator"] = "Amministratore";
$a->strings["your registration password"] = "la password di registrazione";
$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
$a->strings["Account approved."] = "Account approvato.";
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
$a->strings["channel"] = "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["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
$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["Matrix Activity"] = "Attività nella tua rete";
$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"] = "Scadenza il AAAA-MM-GG OO:MM";
$a->strings["Share"] = "Condividi";
$a->strings["Page link title"] = "Link del titolo";
$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["Logged out."] = "Uscita effettuata.";
$a->strings["Failed authentication"] = "Autenticazione fallita";
$a->strings["Login failed."] = "Accesso fallito.";
$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse.";
$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["%d invitation available"] = array(
0 => "%d invito disponibile",
1 => "%d inviti disponibili",
);
$a->strings["Find Channels"] = "Ricerca canali";
$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse";
$a->strings["Connect/Follow"] = "Entra in contatto/segui";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca";
$a->strings["Find"] = "Cerca";
$a->strings["Channel Suggestions"] = "Canali suggeriti";
$a->strings["Random Profile"] = "Profilo casuale";
$a->strings["Invite Friends"] = "Invita amici";
$a->strings["Everything"] = "Tutto";
$a->strings["Categories"] = "Categorie";
$a->strings["%d connection in common"] = array(
0 => "%d contatto in comune",
1 => "%d contatti in comune",
);
$a->strings["New Page"] = "Nuova pagina web";
$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito.";
$a->strings["Channel location missing."] = "Manca l'indirizzo del canale.";
$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata.";
@ -653,6 +636,60 @@ $a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento.";
$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
$a->strings["Default"] = "Predefinito";
$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database";
$a->strings["Empty name"] = "Nome vuoto";
$a->strings["Name too long"] = "Nome troppo lungo";
$a->strings["No account identifier"] = "Account senza identificativo";
$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio.";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati.";
$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
$a->strings["Default Profile"] = "Profilo predefinito";
$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Purtroppo non hai il permesso di vedere questo profilo.";
$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
$a->strings["Profiles"] = "Profili";
$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Create New Profile"] = "Crea un nuovo profilo";
$a->strings["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à";
$a->strings["Gender:"] = "Sesso:";
$a->strings["Status:"] = "Stato:";
$a->strings["Homepage:"] = "Home page:";
$a->strings["g A l F d"] = "g A l d F";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[oggi]";
$a->strings["Birthday Reminders"] = "Promemoria compleanni";
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
$a->strings["[No description]"] = "[Nessuna descrizione]";
$a->strings["Event Reminders"] = "Promemoria";
$a->strings["Events this week:"] = "Eventi di questa settimana:";
$a->strings["Profile"] = "Profilo";
$a->strings["Full Name:"] = "Nome completo:";
$a->strings["j F, Y"] = "j F Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Compleanno:";
$a->strings["Age:"] = "Età:";
$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
$a->strings["Hometown:"] = "Città dove vivo:";
$a->strings["Tags:"] = "Tag:";
$a->strings["Political Views:"] = "Orientamento politico:";
$a->strings["Religion:"] = "Religione:";
$a->strings["About:"] = "Informazioni:";
$a->strings["Hobbies/Interests:"] = "Interessi e hobby:";
$a->strings["Likes:"] = "Mi piace:";
$a->strings["Dislikes:"] = "Non mi piace:";
$a->strings["Contact information and Social Networks:"] = "Contatti e social network:";
$a->strings["Musical interests:"] = "Gusti musicali:";
$a->strings["Books, literature:"] = "Libri, letteratura:";
$a->strings["Television:"] = "Televisione:";
$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:";
$a->strings["Love/Romance:"] = "Amore:";
$a->strings["Work/employment:"] = "Lavoro:";
$a->strings["School/education:"] = "Scuola:";
$a->strings["Welcome "] = "Ciao";
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo!";
$a->strings["Welcome back "] = "Ciao, è bello rivederti";
@ -721,7 +758,6 @@ $a->strings["Click the [Register] link on the following page to join."] = "Fai c
$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["Friends of %s"] = "Amici di %s";
$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
$a->strings["View"] = "Guarda";
$a->strings["Authorize application connection"] = "Autorizza la app";
$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:";
@ -881,14 +917,6 @@ $a->strings["Publish your default profile in the network directory"] = "Pubblica
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come potenziale amico ai nuovi membri?";
$a->strings["or"] = "o";
$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è";
$a->strings["Automatically expire posts after this many days:"] = "Gli articoli scadono automaticamente dopo questo numero di giorni:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasci vuoto, i messaggi non scadranno mai. I messaggi scaduti saranno eliminati.";
$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza";
$a->strings["Advanced Expiration"] = "Scadenza";
$a->strings["Expire posts:"] = "Fai scadere gli articoli:";
$a->strings["Expire starred posts:"] = "Fai scadere gli articoli preferiti:";
$a->strings["Expire photos:"] = "Fai scadere le foto:";
$a->strings["Only expire posts by others:"] = "Fai scadere solo gli articoli scritti da altri:";
$a->strings["Channel Settings"] = "Impostazioni del canale";
$a->strings["Basic Settings"] = "Impostazioni di base";
$a->strings["Your Timezone:"] = "Il tuo fuso orario:";
@ -1116,7 +1144,7 @@ $a->strings["Edit Menu Element"] = "Modifica l'elemento del menù";
$a->strings["Modify"] = "Modifica";
$a->strings["Collection created."] = "L'insieme di canali è stato creato.";
$a->strings["Could not create collection."] = "Impossibile creare l'insieme.";
$a->strings["Collection name changed."] = "Il nome dell'insieme di canali è stato cambiato.";
$a->strings["Collection updated."] = "Insieme aggiornato.";
$a->strings["Create a collection of channels."] = "Crea un insieme di canali.";
$a->strings["Collection Name: "] = "Nome del'insieme:";
$a->strings["Members are visible to other channels"] = "I membri saranno visibili agli altri canali";
@ -1162,8 +1190,6 @@ $a->strings["View Album"] = "Guarda l'album";
$a->strings["Recent Photos"] = "Foto recenti";
$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato";
$a->strings["added your channel"] = "ha aggiunto il tuo canale";
$a->strings["g A l F d"] = "g A l d F";
$a->strings["[today]"] = "[oggi]";
$a->strings["posted an event"] = "ha creato un evento";
$a->strings["- select -"] = "- scegli -";
$a->strings["Menu updated."] = "Menù aggiornato.";
@ -1172,7 +1198,6 @@ $a->strings["Menu created."] = "Menù creato.";
$a->strings["Unable to create menu."] = "Impossibile creare il menù.";
$a->strings["Manage Menus"] = "Gestione menù";
$a->strings["Drop"] = "Elimina";
$a->strings["New"] = "Novità";
$a->strings["Create a new menu"] = "Crea un nuovo menù";
$a->strings["Delete this menu"] = "Elimina questo menù";
$a->strings["Edit menu contents"] = "Modifica i contenuti del menù";
@ -1218,17 +1243,7 @@ $a->strings["Not Found"] = "Non disponibile";
$a->strings["Remote Authentication"] = "Autenticazione a distanza";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)";
$a->strings["Authenticate"] = "Autenticazione";
$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["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["No such group"] = "Impossibile trovare l'insieme";
$a->strings["Refresh"] = "Aggiorna";
$a->strings["Me"] = "Io";
$a->strings["Best Friends"] = "Buoni amici";
@ -1237,19 +1252,91 @@ $a->strings["Former Friends"] = "Ex amici";
$a->strings["Acquaintances"] = "Conoscenti";
$a->strings["Everybody"] = "Tutti";
$a->strings["Search Results For:"] = "Cerca risultati con:";
$a->strings["No such group"] = "Impossibile trovare l'insieme";
$a->strings["Collection: "] = "Insieme:";
$a->strings["Connection: "] = "Connessione:";
$a->strings["Invalid connection."] = "Connessione non valida.";
$a->strings["Ignore"] = "Ignora";
$a->strings["Connection updated."] = "Contatto aggiornato.";
$a->strings["Connection update failed."] = "Impossibile aggiornare il contatto.";
$a->strings["Introductions and Connection Requests"] = "Richieste per entrare in contatto";
$a->strings["Introductions and Connection Requests"] = "Richieste di entrare in contatto";
$a->strings["No pending introductions."] = "Nessuna richiesta in attesa.";
$a->strings["System error. Please try again later."] = "Errore di sistema. Riprovare più tardi.";
$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
$a->strings["Post a new friend activity"] = "Pubblica sulla bacheca che hai un nuovo contatto";
$a->strings["if applicable"] = "se possibile";
$a->strings["Discard"] = "Rifiuta";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo.";
$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo.";
$a->strings["This site is not a directory server"] = "Questo sito non fornisce l'elenco generale dei canali";
$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili.";
$a->strings["Visible to:"] = "Visibile a:";
$a->strings["Hub not found."] = "Server non trovato.";
$a->strings["Profile not found."] = "Profilo non trovato.";
$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 Name is required."] = "Il nome del profilo è obbligatorio .";
$a->strings["Marital Status"] = "Stato sentimentale";
$a->strings["Romantic Partner"] = "Partner affettivo";
$a->strings["Likes"] = "Cosa gli piace";
$a->strings["Dislikes"] = "Cosa non gli piace";
$a->strings["Work/Employment"] = "Lavoro/impiego";
$a->strings["Religion"] = "Religione";
$a->strings["Political Views"] = "Orientamento politico";
$a->strings["Gender"] = "Sesso";
$a->strings["Sexual Preference"] = "Preferenze sessuali";
$a->strings["Homepage"] = "Home page";
$a->strings["Interests"] = "Interessi";
$a->strings["Address"] = "Indirizzo";
$a->strings["Location"] = "Luogo attuale";
$a->strings["Profile updated."] = "Profilo aggiornato.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
$a->strings["View this profile"] = "Guarda questo profilo";
$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["Profile Name:"] = "Nome del profilo:";
$a->strings["Your Full Name:"] = "Il tuo nome completo:";
$a->strings["Title/Description:"] = "Titolo/descrizione:";
$a->strings["Your Gender:"] = "Sesso:";
$a->strings["Birthday (%s):"] = "Compleanno (%s):";
$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
$a->strings["Locality/City:"] = "Località:";
$a->strings["Postal/Zip Code:"] = "CAP:";
$a->strings["Country:"] = "Nazione:";
$a->strings["Region/State:"] = "Regione/stato:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "dal [data]:";
$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 nell'elenco pubblico 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";
$a->strings["My other channels"] = "I miei altri canali";
$a->strings["Musical interests"] = "Interessi musicali";
$a->strings["Books, literature"] = "Libri, letteratura";
$a->strings["Television"] = "Televisione";
$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
$a->strings["Love/romance"] = "Amore";
$a->strings["Work/employment"] = "Lavoro/impiego";
$a->strings["School/education"] = "Scuola/educazione";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
$a->strings["Age: "] = "Età:";
$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili";
$a->strings["Add a Channel"] = "Aggiungi un canale";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito.";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"";
$a->strings["Choose a short nickname"] = "Scegli un nome breve";
$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti.";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro server/hub";
$a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto.";
$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
$a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto.";
@ -1328,7 +1415,7 @@ $a->strings["Archived"] = "Archiviati";
$a->strings["All"] = "Tutti";
$a->strings["Suggestions"] = "Suggerimenti";
$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti";
$a->strings["Show pending (new) connections"] = "Richieste per entrare in contatto";
$a->strings["Show pending (new) connections"] = "Richieste di entrare in contatto";
$a->strings["All Connections"] = "Tutti i contatti";
$a->strings["Show all connections"] = "Mostra tutti i contatti";
$a->strings["Unblocked"] = "Non bloccati";
@ -1341,80 +1428,6 @@ $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["This site is not a directory server"] = "Questo sito non fornisce l'elenco generale dei canali";
$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili.";
$a->strings["Visible to:"] = "Visibile a:";
$a->strings["Profile not found."] = "Profilo non trovato.";
$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 Name is required."] = "Il nome del profilo è obbligatorio .";
$a->strings["Marital Status"] = "Stato sentimentale";
$a->strings["Romantic Partner"] = "Partner affettivo";
$a->strings["Likes"] = "Cosa gli piace";
$a->strings["Dislikes"] = "Cosa non gli piace";
$a->strings["Work/Employment"] = "Lavoro/impiego";
$a->strings["Religion"] = "Religione";
$a->strings["Political Views"] = "Orientamento politico";
$a->strings["Gender"] = "Sesso";
$a->strings["Sexual Preference"] = "Preferenze sessuali";
$a->strings["Homepage"] = "Home page";
$a->strings["Interests"] = "Interessi";
$a->strings["Address"] = "Indirizzo";
$a->strings["Location"] = "Luogo attuale";
$a->strings["Profile updated."] = "Profilo aggiornato.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
$a->strings["View this profile"] = "Guarda questo profilo";
$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["Profile Name:"] = "Nome del profilo:";
$a->strings["Your Full Name:"] = "Il tuo nome completo:";
$a->strings["Title/Description:"] = "Titolo/descrizione:";
$a->strings["Your Gender:"] = "Sesso:";
$a->strings["Birthday (%s):"] = "Compleanno (%s):";
$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
$a->strings["Locality/City:"] = "Località:";
$a->strings["Postal/Zip Code:"] = "CAP:";
$a->strings["Country:"] = "Nazione:";
$a->strings["Region/State:"] = "Regione/stato:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "dal [data]:";
$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 nell'elenco pubblico 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";
$a->strings["My other channels"] = "I miei altri canali";
$a->strings["Musical interests"] = "Interessi musicali";
$a->strings["Books, literature"] = "Libri, letteratura";
$a->strings["Television"] = "Televisione";
$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
$a->strings["Love/romance"] = "Amore";
$a->strings["Work/employment"] = "Lavoro/impiego";
$a->strings["School/education"] = "Scuola/educazione";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
$a->strings["Age: "] = "Età:";
$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
$a->strings["Create New Profile"] = "Crea un nuovo profilo";
$a->strings["Profile Image"] = "Immagine del profilo";
$a->strings["visible to everybody"] = "visibile a tutti";
$a->strings["Edit visibility"] = "Cambia la visibilità";
$a->strings["Add a Channel"] = "Aggiungi un canale";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito.";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"";
$a->strings["Choose a short nickname"] = "Scegli un nome breve";
$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti.";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro server/hub";
$a->strings["Permission Denied."] = "Permesso negato.";
$a->strings["Permission denied. VS."] = "Permesso negato.";
$a->strings["Download"] = "Scaricamento dati";
@ -1489,7 +1502,6 @@ $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["Delete Layout"] = "Elimina il layout";
$a->strings["Contacts who are not members of a group"] = "Contatti che non sono in nessun insieme";
$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
@ -1525,7 +1537,7 @@ $a->strings["Approve as: "] = "Approva come: ";
$a->strings["Friend"] = "Amico";
$a->strings["Sharer"] = "Sharer";
$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
$a->strings["Friend/Connect Request"] = "Richiesta per entrare in contatto";
$a->strings["Friend/Connect Request"] = "Richiesta di entrare in contatto";
$a->strings["New Follower"] = "Nuovo follower";
$a->strings["No introductions."] = "Nessuna richiesta di amicizia.";
$a->strings["%s liked %s's post"] = "A %s è piaciuto l'articolo di %s";
@ -1605,8 +1617,6 @@ $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["Please login."] = "Accedi.";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo.";
$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo.";
$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:";
@ -1687,22 +1697,4 @@ $a->strings["Remember me"] = "Resta connesso";
$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
$a->strings["permission denied"] = "permesso negato";
$a->strings["Got Zot?"] = "Hai Zot?";
$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Purtroppo non hai il permesso di vedere questo profilo.";
$a->strings["Profiles"] = "Profili";
$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Edit Profile"] = "Modifica il profilo";
$a->strings["F d"] = "d F";
$a->strings["Birthday Reminders"] = "Promemoria compleanni";
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
$a->strings["[No description]"] = "[Nessuna descrizione]";
$a->strings["Event Reminders"] = "Promemoria";
$a->strings["Events this week:"] = "Eventi di questa settimana:";
$a->strings["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["Events and Calendar"] = "Calendario eventi";
$a->strings["Webpages"] = "Pagine web";
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
$a->strings["toggle mobile"] = "attiva/disattiva versione mobile";

View File

@ -13,6 +13,7 @@ head_add_css('library/colorbox/colorbox.css');
// head_add_css('library/font_awesome/css/font-awesome.min.css');
head_add_css('view/css/conversation.css');
head_add_css('view/css/bootstrap-red.css');
head_add_css('view/css/widgets.css');
head_add_js('js/jquery.js');
head_add_js('library/bootstrap/js/bootstrap.min.js');

View File

@ -327,11 +327,8 @@ footer {
margin-bottom: 15px;
}
#group-sidebar {
margin-bottom: 10px;
}
.group-selected, .nets-selected, .fileas-selected, .categories-selected, .search-selected, .active {
/*TODO: we should use one class for all this, nets-selected probably obsolete */
.group-selected, /* .nets-selected, */ .fileas-selected, .categories-selected, .search-selected, .active {
color: #444444 !important;
}
@ -671,36 +668,6 @@ footer {
box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
}
#datebrowse-sidebar select {
margin-left: 25px;
border-radius: $radiuspx;
-moz-border-radius: $radiuspx;
opacity: 0.3;
filter:alpha(opacity=30);
}
#datebrowse-sidebar select:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
#posted-date-selector {
margin-left: 30px !important;
margin-top: 5px !important;
margin-right: 0px !important;
margin-bottom: 0px !important;
}
#posted-date-selector:hover {
box-shadow: 4px 4px 3px 0 #444444;
margin-left: 25px !important;
margin-top: 0px !important;
margin-right: 5px !important;
margin-bottom: 5px !important;
}
#side-bar-photos-albums {
margin-top: 15px;
}
@ -767,27 +734,12 @@ footer {
#netsearch-box { margin-bottom: 5px; }
#sidebar-group-list ul {
/* might be obsolete
.nets-ul {
list-style-type: none;
}
#sidebar-group-list .icon, #sidebar-group-list .iconspacer {
display: inline-block;
height: 12px;
width: 12px;
}
#sidebar-group-list li,
.saved-search-li {
margin-top: 3px;
}
.nets-ul, .fileas-ul, .categories-ul {
list-style-type: none;
}
.nets-ul li, .fileas-ul li, .categories-ul li {
.nets-ul li {
margin-top: 10px;
}
@ -797,45 +749,17 @@ footer {
.nets-all {
margin-left: 42px;
}
.fileas-link, .categories-link {
margin-left: 24px;
}
.fileas-all, .categories-all {
margin-left: 0px;
}
*/
#search-save {
margin-left: 5px;
}
.groupsideedit {
margin-right: 10px;
}
#saved-search-ul {
list-style-type: none;
}
.saved-search-li i {
opacity: 0;
}
.saved-search-li:hover i {
opacity: 1;
}
.savedsearchterm {
margin-left: 10px;
}
#side-follow-wrapper {
margin-top: 20px;
}
#side-follow-url, #side-peoplefind-url {
#side-peoplefind-url {
margin-top: 5px;
}
@ -851,7 +775,7 @@ footer {
font-family: FontAwesome;
}
#side-follow-submit, #side-peoplefind-submit {
#side-peoplefind-submit {
margin-top: 15px;
}
@ -860,7 +784,7 @@ footer {
}
.widget, .pmenu {
.pmenu {
border-bottom: 1px solid #eec;
padding: 8px;
margin-top: 5px;
@ -1679,12 +1603,6 @@ div.jGrowl div.info {
text-overflow: ellipsis;
}
#datebrowse-sidebar select {
margin-left: 25px;
}
.jslider .jslider-scale ins {
color: #333;
font-size: $body_font_size;
@ -2255,11 +2173,6 @@ text-decoration: none;
list-style-type: none;
}
.group-edit-icon,
.savedsearchdrop {
opacity: 0;
}
.admin-icons {
color: $toolicon_colour;
margin-right: 10px;
@ -2395,8 +2308,6 @@ img.mail-list-sender-photo {
max-width: $converse_width;
}
/* conv_item */
.wall-item-content-wrapper {
border-radius: $radiuspx;
background-color: $item_colour;
@ -2500,8 +2411,6 @@ img.mail-list-sender-photo {
color: $toolicon_colour;
}
/* comment_item */
.my-comment-photo {
border-radius: $radiuspx;
-moz-border-radius: $radiuspx;
@ -2538,15 +2447,35 @@ img.mail-list-sender-photo {
.comment-edit-text-full {
color: black;
}
.suggest-widget-more { margin-top: 10px; }
/* widgets */
.widget {
border-bottom: 1px solid #eec;
-moz-border-radius: $radiuspx;
-webkit-border-radius: $radiuspx;
border-radius: $radiuspx;
}
#note-text {
width: 190px;
max-width: 190px;
height: 150px;
border: 1px solid #ccc;
border-radius: $radiuspx;
-moz-border-radius: $radiuspx;
}
#saved-search-ul {
list-style-type: none;
}
.fileas-ul {
list-style-type: none;
}
#datebrowse-sidebar select {
border: 1px solid #ccc;
border-radius: $radiuspx;
-moz-border-radius: $radiuspx;
}
#note-save { margin-top: 10px; }
/* need to put these back in the theme for now - used in more than one module */
@ -2600,4 +2529,11 @@ img.mail-list-sender-photo {
}
.contact-entry-end {
clear: both;
.categories-ul {
list-style-type: none;
}
#sidebar-group-list ul {
list-style-type: none;
}

View File

@ -1,13 +1,10 @@
<div class="widget">
<script>
function notePost() {
$('#note-rotator').spin('tiny');
$.post('notes', { 'note_text' : $('#note-text').val() },function(data) { $('#note-rotator').spin(false); });
}
$("#note-text").live('input paste',function(e){
$.post('notes', { 'note_text' : $('#note-text').val() });
});
</script>
<h3>{{$banner}}</h3>
<textarea name="note_text" id="note-text">{{$text}}</textarea>
<input type="submit" name="submit" id="note-save" value="{{$save}}" onclick="notePost(); return true;">
<div id="note-rotator"></div>
</div>

View File

@ -5,7 +5,7 @@
<ul id="saved-search-ul">
{{foreach $saved as $search}}
<li id="search-term-{{$search.id}}" class="saved-search-li clear">
<a title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i id="dropicon-saved-search-term-{{$search.id}}" class="icon-remove drop-icons iconspacer savedsearchdrop" ></i></a>
<a title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i id="dropicon-saved-search-term-{{$search.id}}" class="icon-remove drop-icons iconspacer" ></i></a>
<a id="saved-search-term-{{$search.id}}" class="savedsearchterm{{if $search.selected}} search-selected{{/if}}" href="{{$search.srchlink}}">{{$search.displayterm}}</a>
</li>
{{/foreach}}

View File

@ -29,13 +29,7 @@
<div class="wall-item-content" id="wall-item-content-{{$item.id}}" >
<div class="wall-item-title" id="wall-item-title-{{$item.id}}">{{$item.title}}</div>
<div class="wall-item-title-end"></div>
<div class="wall-item-body" id="wall-item-body-{{$item.id}}" >{{$item.body}}
<div class="body-tag">
{{foreach $item.tags as $tag}}
<span class='tag'>{{$tag}}</span>
{{/foreach}}
</div>
</div>
<div class="wall-item-body" id="wall-item-body-{{$item.id}}" >{{$item.body}}</div>
</div>
<div class="wall-item-tools" id="wall-item-tools-{{$item.id}}">
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-{{$item.id}}" >