From e35a5bac55e0e259c7c587adfaf546484b032c92 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 7 Apr 2011 23:10:43 -0700 Subject: the rest of the english html templates except for htconfig --- view/it/contact_edit.tpl | 80 ---------- view/it/install_db.tpl | 40 ----- view/it/profile_advanced.php | 226 ---------------------------- view/it/profile_edit.tpl | 299 -------------------------------------- view/it/profile_entry_default.tpl | 9 -- view/it/profile_photo.tpl | 18 --- view/it/pwdreset.tpl | 16 -- view/it/settings.tpl | 175 ---------------------- view/it/settings_nick_set.tpl | 9 -- view/it/settings_nick_subdir.tpl | 7 - 10 files changed, 879 deletions(-) delete mode 100644 view/it/contact_edit.tpl delete mode 100644 view/it/install_db.tpl delete mode 100644 view/it/profile_advanced.php delete mode 100644 view/it/profile_edit.tpl delete mode 100644 view/it/profile_entry_default.tpl delete mode 100644 view/it/profile_photo.tpl delete mode 100644 view/it/pwdreset.tpl delete mode 100644 view/it/settings.tpl delete mode 100644 view/it/settings_nick_set.tpl delete mode 100644 view/it/settings_nick_subdir.tpl (limited to 'view/it') diff --git a/view/it/contact_edit.tpl b/view/it/contact_edit.tpl deleted file mode 100644 index ac0f13a54..000000000 --- a/view/it/contact_edit.tpl +++ /dev/null @@ -1,80 +0,0 @@ - -

$header

- -
$name
- -
- - -
- -
- $alt_text -
- $name -
-
-
-
- - - -
- - -
-
$lastupdtext$last_update -
$updpub
- $poll_interval - -
-
-
- -$insecure -$blocked -$ignored - - -
-

Informazioni di contatto / Note

- -
-
- - - - -
-

Visibiltà Profilo

-

Scegli il profilo che vuoi mostrare a $name quando guarda il tuo profilo in modo sicuro.

-
-$profile_select -
- - - - -
-

Reputazione Online

-

Puo' capitare che i tuoi amici vogliano sapere la legittimità online dei questa persona. Puoi aiutarli a scegliere se interagire o no con questa persona fornendo una 'reputazione' per guidarli.

-
-$rating -
-
-

-Prenditi un momento per pensare su questa selezione se senti che puo' essere utile ad altri. -

- -
-
-$groups - - - -
diff --git a/view/it/install_db.tpl b/view/it/install_db.tpl deleted file mode 100644 index 69a467e9d..000000000 --- a/view/it/install_db.tpl +++ /dev/null @@ -1,40 +0,0 @@ - -

Friendika Social Network

-

Installazione

- -

-Per poter installare Friendika dobbiamo conoscrere come collegarci al tuo database. Contatta il tuo hosting provider o l'amministratore del sito se hai domande su questi settaggi. Il database specificato qui di seguito deve essere giĆ  presente. Se non esiste, crealo prima di continuare. -

- -
- - - - - -
- - - -
- - - -
- - - -
- -
-Seleziona il fuso orario del tuo sito web -
- -$tzselect - -
- - -
-
- diff --git a/view/it/profile_advanced.php b/view/it/profile_advanced.php deleted file mode 100644 index fe065d46f..000000000 --- a/view/it/profile_advanced.php +++ /dev/null @@ -1,226 +0,0 @@ -Profilo - - -EOT; - -if($a->profile['name']) { -$o .= <<< EOT -
-
Nome Completo:
-
{$a->profile['name']}
-
-
-EOT; -} - -if($a->profile['gender']) { -$o .= <<< EOT -
-
Genere:
-
{$a->profile['gender']}
-
-
-EOT; -} - -if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { -$o .= <<< EOT -
-
Compleanno:
-EOT; - -// If no year, add an arbitrary one so just we can parse the month and day. - -$o .= '
' - . ((intval($a->profile['dob'])) - ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00','j F, Y')) - : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6) . ' 00:00 +00:00','j F'))) - . "
\r\n
"; - -$o .= '
'; - -} - -if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { -$o .= <<< EOT -
-
Età:
-
$age
-
-
-EOT; -} - -if($a->profile['marital']) { -$o .= <<< EOT -
-
Stato:
-
{$a->profile['marital']}
-EOT; - -if($a->profile['with']) - $o .= "
({$a->profile['with']})
"; -$o .= <<< EOT -
-
-EOT; -} - -if($a->profile['sexual']) { -$o .= <<< EOT -
-
Preferenze sessuali:
-
{$a->profile['sexual']}
-
-
-EOT; -} - -if($a->profile['homepage']) { - $homepage = linkify($a->profile['homepage']); -$o .= <<< EOT -
-
Homepage:
-
$homepage
-
-
-EOT; -} - -if($a->profile['politic']) { -$o .= <<< EOT -
-
Orientamento politico:
-
{$a->profile['politic']}
-
-
-EOT; -} - -if($a->profile['religion']) { -$o .= <<< EOT -
-
Religione:
-
{$a->profile['religion']}
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['about'])) { -$o .= <<< EOT -
-
Informazioni varie:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['interest'])) { -$o .= <<< EOT -
-
Hobbie/Interessi:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['contact'])) { -$o .= <<< EOT -
-
Informazioni su contatti e Social Networks:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['music'])) { -$o .= <<< EOT -
-
Interessi musicali:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['book'])) { -$o .= <<< EOT -
-
Libri, letteratura:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['tv'])) { -$o .= <<< EOT -
-
Televisione:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['film'])) { -$o .= <<< EOT -
-
Film/danza/cultura/intrattenimento:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['romance'])) { -$o .= <<< EOT -
-
Amore/romanticismo:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['work'])) { -$o .= <<< EOT -
-
Lavoro/impiego:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['education'])) { -$o .= <<< EOT -
-
Scuola/educazione:
-
-
$txt
-
-
-EOT; -} - - diff --git a/view/it/profile_edit.tpl b/view/it/profile_edit.tpl deleted file mode 100644 index 9f2a13790..000000000 --- a/view/it/profile_edit.tpl +++ /dev/null @@ -1,299 +0,0 @@ -

Modifica i dettagli del profilo

- - - - - -$default - -
-
- -
- -
*
-
-
- -
- - -
-
- -
- - -
(es. titolo, posizione, altro)
-
- - -
- -$gender -
-
- -
- -
-$dob $age -
-
-
- -$hide_friends - -
- -
-
- - -
- - -
-
- -
- - -
-
- - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- -
-
- -
- -$marital -
- - -
- -
- -$sexual -
-
- - - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- - -
(Used for suggesting potential friends, can be seen by others)
-
- -
- - -
(Usati per la ricerca dei profili, mai mostrati agli altri)
-
- - -
- -
-
- -
-

-Raccontaci di te.... -

- - - -
-
-
- - -
-

-Hobbie/Interessi -

- - - -
-
-
- - -
-

-Informazioni su contatti e Social network -

- - - -
-
- - - -
- -
-
- - -
-

-Interessi musicali -

- - - -
-
- - -
-

-Libri, letteratura -

- - - -
-
- - - - -
-

-Televisione -

- - - -
-
- - - - -
-

-Film/danza/cultura/intrattenimento -

- - - -
-
- - - -
- -
-
- - -
-

-Amore/romanticismo -

- - - -
-
- - - - -
-

-Lavoro/impiego -

- - - -
-
- - - - -
-

-Scuola/educazione -

- - - -
-
- - - - -
- -
-
- - - - - diff --git a/view/it/profile_entry_default.tpl b/view/it/profile_entry_default.tpl deleted file mode 100644 index 8c9aedae8..000000000 --- a/view/it/profile_entry_default.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
-
-Immagine Profilo -
-
- -
-
diff --git a/view/it/profile_photo.tpl b/view/it/profile_photo.tpl deleted file mode 100644 index 4d77e87cf..000000000 --- a/view/it/profile_photo.tpl +++ /dev/null @@ -1,18 +0,0 @@ -

Carica foto del profilo

- -
- -
- - -
- -
- -
- -
- - \ No newline at end of file diff --git a/view/it/pwdreset.tpl b/view/it/pwdreset.tpl deleted file mode 100644 index c283033ee..000000000 --- a/view/it/pwdreset.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

Resetta Password

- -

-La tua password è stata resettata come richiesto. -

-

-La tua nuova password è -

-

-$newpass -

-

-Salva o copia la tua nuova password, e quindi clicca qui per accedere. -

-

-La tua password puo' essere cambiata dalla pagina 'Impostazioni0 dopo aver effettuato l'accesso. diff --git a/view/it/settings.tpl b/view/it/settings.tpl deleted file mode 100644 index f361419da..000000000 --- a/view/it/settings.tpl +++ /dev/null @@ -1,175 +0,0 @@ -

Impostazioni account

- - - -$uexport - -$nickname_block - - -
- - -

Impostazioni base

- -
- - -
-
- -
- - -
-
- - - -
- -$zoneselect -
-
- -
- - -
-
- -
- - -
-
- - - - -
- -$theme -
-
- -
- -
- - -

Impostazioni di Sicurezza e Privacy

- - - - -
- - -
(per prevenire lo spam)
-
-
- - - - -$profile_in_dir - -$profile_in_net_dir - - - -
- -
- - -
-
- -
- - -
-
- - -
Cancella automaticamente i messaggi più vecchi di giorni
-
- -
- -
- - - -

Impostazione Notifiche

- - -
-
Invia una mail di notifica quando:
- - -
- - -
- - -
- - -
- - -
-
-
- -
- -
- - -

Impostazioni Password

- - -
-

-Lascia questi campi in bianco per non effettuare variazioni alla password -

- - -
-
- -
- - -
-
- -
- $oidhtml -
-
- - -
- -
- - -

Impostazioni Avanzate Account

- -$pagetype - -
- -
- - diff --git a/view/it/settings_nick_set.tpl b/view/it/settings_nick_set.tpl deleted file mode 100644 index c57653703..000000000 --- a/view/it/settings_nick_set.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
-

-L'indirizzo del tuo profilo è '$nickname@$basepath' -

-$subdir - -
-
diff --git a/view/it/settings_nick_subdir.tpl b/view/it/settings_nick_subdir.tpl deleted file mode 100644 index fc6138c6c..000000000 --- a/view/it/settings_nick_subdir.tpl +++ /dev/null @@ -1,7 +0,0 @@ -

-Sembra che il tuo sito web sia in una sottocartella del sito
-$hostname. Qualche impostazione potrebbe non funzionare correttamente.
-

-

-Se hai problemi, potresti avere migliori risultati usando l'inidirizzo
'$baseurl/profile/$nickname'. -

-- cgit v1.2.3