Merge pull request #438 from Mauron/develop-2.1.x
Italian translation for Board3-Portal.
This commit is contained in:
@@ -54,7 +54,7 @@ $lang = array_merge($lang, array(
|
|||||||
'PORTAL_ANNOUNCEMENTS' => 'Display global announcements',
|
'PORTAL_ANNOUNCEMENTS' => 'Display global announcements',
|
||||||
'PORTAL_ANNOUNCEMENTS_EXP' => 'Display this block on the portal.',
|
'PORTAL_ANNOUNCEMENTS_EXP' => 'Display this block on the portal.',
|
||||||
'PORTAL_ANNOUNCEMENTS_STYLE' => 'Compact global announcements block style',
|
'PORTAL_ANNOUNCEMENTS_STYLE' => 'Compact global announcements block style',
|
||||||
'PORTAL_ANNOUNCEMENTS_STYLE_EXP' => '"Yes" means use the compact style for for global announcements. "No" means use the large style (text view).',
|
'PORTAL_ANNOUNCEMENTS_STYLE_EXP' => '"Yes" means use the compact style for global announcements. "No" means use the large style (text view).',
|
||||||
'PORTAL_NUMBER_OF_ANNOUNCEMENTS' => 'Number of announcements on the portal',
|
'PORTAL_NUMBER_OF_ANNOUNCEMENTS' => 'Number of announcements on the portal',
|
||||||
'PORTAL_NUMBER_OF_ANNOUNCEMENTS_EXP' => '0 means infinite',
|
'PORTAL_NUMBER_OF_ANNOUNCEMENTS_EXP' => '0 means infinite',
|
||||||
'PORTAL_ANNOUNCEMENTS_DAY' => 'Number of days to display the announcement',
|
'PORTAL_ANNOUNCEMENTS_DAY' => 'Number of days to display the announcement',
|
||||||
|
|||||||
53
language/it/info_acp_portal.php
Normal file
53
language/it/info_acp_portal.php
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'ACP_PORTAL_MODULES' => 'Moduli portale',
|
||||||
|
'ACP_PORTAL' => 'Portale',
|
||||||
|
'ACP_PORTAL_GENERAL_INFO' => 'Impostazioni generali',
|
||||||
|
'ACP_PORTAL_UPLOAD' => 'Carica modulo',
|
||||||
|
|
||||||
|
// Portal logs
|
||||||
|
'LOG_PORTAL_LINK_ADDED' => '<strong>Impostazioni portale modificate</strong><br />» Collegamento aggiunto: %s ',
|
||||||
|
'LOG_PORTAL_LINK_UPDATED' => '<strong>Impostazioni portale modificate</strong><br />» Collegamento aggiornato: %s ',
|
||||||
|
'LOG_PORTAL_LINK_REMOVED' => '<strong>Impostazioni portale modificate</strong><br />» Collegamento rimosso: %s ',
|
||||||
|
'LOG_PORTAL_EVENT_ADDED' => '<strong>Impostazioni portale modificate</strong><br />» Evento aggiunto: %s ',
|
||||||
|
'LOG_PORTAL_EVENT_UPDATED' => '<strong>Impostazioni portale modificate</strong><br />» Evento aggiornato: %s ',
|
||||||
|
'LOG_PORTAL_EVENT_REMOVED' => '<strong>Impostazioni portale modificate</strong><br />» Evento rimosso: %s ',
|
||||||
|
'LOG_PORTAL_CONFIG' => '<strong>Impostazioni portale modificate</strong><br />» %s',
|
||||||
|
|
||||||
|
// Adding the permissions
|
||||||
|
'ACL_A_MANAGE_PORTAL' => 'Può modificare le impostazioni del portale',
|
||||||
|
'ACL_U_VIEW_PORTAL' => 'Può visualizzare il portale',
|
||||||
|
));
|
||||||
74
language/it/modules/portal_announcements_module.php
Normal file
74
language/it/modules/portal_announcements_module.php
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Announcements [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'LATEST_ANNOUNCEMENTS' => 'Annunci globali recenti',
|
||||||
|
'GLOBAL_ANNOUNCEMENTS' => 'Annunci globali',
|
||||||
|
'GLOBAL_ANNOUNCEMENT' => 'Annuncio globale',
|
||||||
|
'VIEW_LATEST_ANNOUNCEMENT' => '1 annuncio',
|
||||||
|
'VIEW_LATEST_ANNOUNCEMENTS' => '%d annunci',
|
||||||
|
'READ_FULL' => 'Leggi tutti',
|
||||||
|
'NO_ANNOUNCEMENTS' => 'Nessun annuncio globale',
|
||||||
|
'POSTED_BY' => 'Di',
|
||||||
|
'COMMENTS' => 'Commenti',
|
||||||
|
'VIEW_COMMENTS' => 'Visualizza commenti',
|
||||||
|
'PORTAL_POST_REPLY' => 'Lascia un commento',
|
||||||
|
'TOPIC_VIEWS' => 'Visite',
|
||||||
|
'JUMP_NEWEST' => 'Salta al messaggio più recente',
|
||||||
|
'JUMP_FIRST' => 'Salta al primo messaggio',
|
||||||
|
'JUMP_TO_POST' => 'Salta al messaggio',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_ANNOUNCE_SETTINGS' => 'Impostazioni annunci globali',
|
||||||
|
'ACP_PORTAL_ANNOUNCE_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco annunci globali.',
|
||||||
|
'PORTAL_ANNOUNCEMENTS' => 'Mostra annunci globali',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_EXP' => 'Mostra blocco nel portale.',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_STYLE' => 'Stile compatto per il blocco annunci globali',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_STYLE_EXP' => 'Se impostato su "Sì" sarà usato lo stile compatto per il blocco annunci globali; se impostato su "No" sarà mostrato l\'intero contenuto.',
|
||||||
|
'PORTAL_NUMBER_OF_ANNOUNCEMENTS' => 'Numero di annunci in portale',
|
||||||
|
'PORTAL_NUMBER_OF_ANNOUNCEMENTS_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_DAY' => 'Periodo di esposizione dell\'annuncio (in giorni)',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_DAY_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_LENGTH' => 'Lunghezza massima annunci globali',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_LENGTH_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_GLOBAL_ANNOUNCEMENTS_FORUM' => 'Forum annunci',
|
||||||
|
'PORTAL_GLOBAL_ANNOUNCEMENTS_FORUM_EXP' => 'Specificare da quale forum recuperare gli annunci. Lasciare in bianco per recuperare gli annunci da tutti i forum. Se "Escludi forum" è impostato su "Sì". selezionare i forum da escludere.<br />Se "Escludi forum" è impostato su "No", selezionare i forum di cui vedere gli annunci.<br />Selezionare/Deselezionare più forum tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_FORUM_EXCLUDE' => 'Escludi forum',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_FORUM_EXCLUDE_EXP'=> 'Impostare su "Sì" per escludere i forum selezionati dal blocco annunci, "No" per vedere gli annunci solo dai forum selezionati.',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_PERMISSIONS' => 'Abilita/Disabilita permessi',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_PERMISSIONS_EXP' => 'Nel mostrare gli annunci, tenere conto dei permessi utente.',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_ARCHIVE' => 'Abilita sistema di archivio annunci',
|
||||||
|
'PORTAL_ANNOUNCEMENTS_ARCHIVE_EXP' => 'Se attivato, il sistema di archivio annunci o i numeri di pagine saranno mostrati.',
|
||||||
|
'PORTAL_SHOW_REPLIES_VIEWS' => 'Mostra numero visite e risposte',
|
||||||
|
'PORTAL_SHOW_REPLIES_VIEWS_EXP' => 'Quest\'impostazione riguarda il blocco compatto.<br />Se impostata su "Sì", saranno mostrati i numeri di visite e risposte in due colonne ulteriori; se impostato su "No", le visite e le risposte saranno mostrate di fianco al nome del forum. Impostare su "No" per risolvere i problemi dovuti alla larghezza delle due colonne extra.',
|
||||||
|
));
|
||||||
54
language/it/modules/portal_attachments_module.php
Normal file
54
language/it/modules/portal_attachments_module.php
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Attachments [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'DOWNLOADS' => 'Download',
|
||||||
|
'NO_ATTACHMENTS' => 'Nessun allegato',
|
||||||
|
'PORTAL_ATTACHMENTS' => 'Allegati',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_ATTACHMENTS_NUMBER_SETTINGS' => 'Impostazioni allegati',
|
||||||
|
'ACP_PORTAL_ATTACHMENTS_NUMBER_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco allegati.',
|
||||||
|
'PORTAL_ATTACHMENTS_NUMBER' => 'Limite allegati mostrati',
|
||||||
|
'PORTAL_ATTACHMENTS_NUMBER_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_ATTACHMENTS_FORUM_IDS' => 'Forum allegati',
|
||||||
|
'PORTAL_ATTACHMENTS_FORUM_IDS_EXP' => 'Specificare da quale forum recuperare gli allegati. Lasciare in bianco per recuperare gli allegati da tutti i forum. Se "Escludi forum" è impostato su "Sì". selezionare i forum da escludere.<br />Se "Escludi forum" è impostato su "No", selezionare i forum di cui vedere gli allegati.<br />Selezionare/Deselezionare più forum tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_ATTACHMENTS_FORUM_EXCLUDE' => 'Escludi forum',
|
||||||
|
'PORTAL_ATTACHMENTS_FORUM_EXCLUDE_EXP' => 'Impostare su "Sì" per escludere i forum selezionati dal blocco allegati, "No" per vedere gli allegati solo dai forum selezionati.',
|
||||||
|
'PORTAL_ATTACHMENTS_MAX_LENGTH' => 'Limite caratteri per ogni allegato',
|
||||||
|
'PORTAL_ATTACHMENTS_MAX_LENGTH_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_ATTACHMENTS_FILETYPE' => 'Tipi di file',
|
||||||
|
'PORTAL_ATTACHMENTS_FILETYPE_EXP' => 'Se "Escludi tipi di file" è impostato su "Sì", selezionare i tipi di file da escludere.<br />Se "Escludi tipi di file" è impostato su "No", selezionare i tipi di file da mostrare.<br />Selezionare/Deselezionare più tipi di file tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_ATTACHMENTS_EXCLUDE' => 'Escludi tipi di file',
|
||||||
|
'PORTAL_ATTACHMENTS_EXCLUDE_EXP' => 'Impostare su "Sì" per escludere i tipi di file selezionati dal blocco allegati, "No" per mostrare i tipi di file selezionati nel blocco allegati.',
|
||||||
|
));
|
||||||
44
language/it/modules/portal_birthday_list_module.php
Normal file
44
language/it/modules/portal_birthday_list_module.php
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Birthday List [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'BIRTHDAYS_AHEAD' => 'Nei prossimi %s giorni',
|
||||||
|
'NO_BIRTHDAYS_AHEAD' => 'Non cade il compleanno di nessuno in questo periodo.',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_BIRTHDAYS_SETTINGS' => 'Impostazioni compleanni',
|
||||||
|
'ACP_PORTAL_BIRTHDAYS_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco compleanni.',
|
||||||
|
'PORTAL_BIRTHDAYS' => 'Blocco compleanni',
|
||||||
|
'PORTAL_BIRTHDAYS_AHEAD' => 'Compleanni nei prossimi giorni',
|
||||||
|
'PORTAL_BIRTHDAYS_AHEAD_EXP' => 'Vengono cercati i prossimi compleanni nell\'intervallo di tempo specificato (in giorni).<br />Impostando a 0 viene disattivata questa funzione.',
|
||||||
|
));
|
||||||
131
language/it/modules/portal_calendar_module.php
Normal file
131
language/it/modules/portal_calendar_module.php
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Calendar [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_CALENDAR' => 'Calendario',
|
||||||
|
'VIEW_NEXT_MONTH' => 'mese successivo',
|
||||||
|
'VIEW_PREVIOUS_MONTH' => 'Mese precedente',
|
||||||
|
'EVENT_START' => 'Da',
|
||||||
|
'EVENT_END' => 'a',
|
||||||
|
'EVENT_TIME' => 'Tempo',
|
||||||
|
'EVENT_ALL_DAY' => 'Tutta la giornata',
|
||||||
|
'CURRENT_EVENTS' => 'Eventi correnti',
|
||||||
|
'NO_CUR_EVENTS' => 'Nessun evento corrente',
|
||||||
|
'UPCOMING_EVENTS' => 'Eventi in arrivo',
|
||||||
|
'NO_UPCOMING_EVENTS' => 'Nessun evento in arrivo',
|
||||||
|
|
||||||
|
'mini_cal' => array(
|
||||||
|
'day' => array(
|
||||||
|
'1' => 'Do',
|
||||||
|
'2' => 'Lu',
|
||||||
|
'3' => 'Ma',
|
||||||
|
'4' => 'Me',
|
||||||
|
'5' => 'Gi',
|
||||||
|
'6' => 'Ve',
|
||||||
|
'7' => 'Sa',
|
||||||
|
),
|
||||||
|
|
||||||
|
'month' => array(
|
||||||
|
'1' => 'Gen',
|
||||||
|
'2' => 'Feb',
|
||||||
|
'3' => 'Mar',
|
||||||
|
'4' => 'Apr',
|
||||||
|
'5' => 'Mag',
|
||||||
|
'6' => 'Giu',
|
||||||
|
'7' => 'Lug',
|
||||||
|
'8' => 'Ago',
|
||||||
|
'9' => 'Set',
|
||||||
|
'10'=> 'Ott',
|
||||||
|
'11'=> 'Nov',
|
||||||
|
'12'=> 'Dic',
|
||||||
|
),
|
||||||
|
|
||||||
|
'long_month'=> array(
|
||||||
|
'1' => 'Gennaio',
|
||||||
|
'2' => 'Febbraio',
|
||||||
|
'3' => 'Marzo',
|
||||||
|
'4' => 'Aprile',
|
||||||
|
'5' => 'Maggio',
|
||||||
|
'6' => 'Giugno',
|
||||||
|
'7' => 'Luglio',
|
||||||
|
'8' => 'Agosto',
|
||||||
|
'9' => 'Settembre',
|
||||||
|
'10'=> 'Ottobre',
|
||||||
|
'11'=> 'Novembre',
|
||||||
|
'12'=> 'Dicembre',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_CALENDAR' => 'Impostazioni calendario',
|
||||||
|
'ACP_PORTAL_CALENDAR_EXP' => 'Qui è possibile personalizzare il blocco calendario.',
|
||||||
|
'ACP_PORTAL_EVENTS' => 'Eventi calendario',
|
||||||
|
'PORTAL_CALENDAR_TODAY_COLOR' => 'Colore giorno attivo',
|
||||||
|
'PORTAL_CALENDAR_TODAY_COLOR_EXP' => 'Sono permessi nomi o codici esadecimali come "white" o #FFFFFF o nomi di colori come "violet".',
|
||||||
|
'PORTAL_CALENDAR_SUNDAY_COLOR' => 'Colore per domenica',
|
||||||
|
'PORTAL_CALENDAR_SUNDAY_COLOR_EXP' => 'Sono permessi nomi o codici esadecimali come "white" o #FFFFFF o nomi di colori come "violet".',
|
||||||
|
'PORTAL_LONG_MONTH' => 'Mostra nomi estesi per i mesi',
|
||||||
|
'PORTAL_LONG_MONTH_EXP' => 'Se disabilitato, i mesi saranno abbreviati (per esempio, Ago invece di Agosto).',
|
||||||
|
'PORTAL_SUNDAY_FIRST' => 'Primo giorno della settimane',
|
||||||
|
'PORTAL_SUNDAY_FIRST_EXP' => 'Se disabilitato, il calendario mostrerà Lu --> Do, altrimenti Do --> Sa.',
|
||||||
|
'PORTAL_DISPLAY_EVENTS' => 'Mostra eventi',
|
||||||
|
'PORTAL_DISPLAY_EVENTS_EXP' => 'Mostra eventi creati nel blocco calendario',
|
||||||
|
'PORTAL_EVENTS_MANAGE' => 'Gestisci eventi',
|
||||||
|
'NO_EVENT_TITLE' => 'Non è stato specificato un titolo per l\'evento.',
|
||||||
|
'NO_EVENT_START' => 'Non è stata specificata una data d\'inizio per l\'evento.',
|
||||||
|
'ADD_EVENT' => 'Aggiungi nuovo evento',
|
||||||
|
'EVENT_UPDATED' => 'Evento aggiornato con successo.',
|
||||||
|
'EVENT_ADDED' => 'Event aggiunto con successo.',
|
||||||
|
'NO_EVENT' => 'Nessun evento specificato.',
|
||||||
|
'EVENT_TITLE' => 'Titolo evento',
|
||||||
|
'EVENT_DESC' => 'Descrizione evento',
|
||||||
|
'EVENT_LINK' => 'Collegamento evento',
|
||||||
|
'EVENT_LINK_EXP' => 'Inserisci il collegamento al topic o al sito con l\'annuncio o il topic di discussione dell\'evento.',
|
||||||
|
'NO_EVENTS' => 'Nessun evento',
|
||||||
|
'ACP_PORTAL_CALENDAR_START_INCORRECT' => 'La data d\'inizio dell\'evento specificata non è valida. Seguire attentamente le istruzioni.',
|
||||||
|
'ACP_PORTAL_CALENDAR_END_INCORRECT' => 'La data di fine dell\'evento specificata non è valida. Seguire attentamente le istruzioni.',
|
||||||
|
'ACP_PORTAL_CALENDAR_EVENT_PAST' => 'La data d\'inizio dell\'evento dev\'essere nel futuro.',
|
||||||
|
'ACP_PORTAL_EVENT_START_DATE' => 'Data d\'inizio evento',
|
||||||
|
'ACP_PORTAL_EVENT_START_DATE_EXP' => 'Inserire la data e l\'ora dell\'inizio evento. La data dev\'essere nel formato MM/DD/YYYY h:mm PM',
|
||||||
|
'ACP_PORTAL_EVENT_END_DATE' => 'Data di fine evento',
|
||||||
|
'ACP_PORTAL_EVENT_END_DATE_EXP' => 'Inserire la data e l\'ora di fine evento. La data dev\'essere nel formato MM/DD/YYYY h:mm PM',
|
||||||
|
'ACP_PORTAL_CALENDAR_EVENT_START_FIRST' => 'La fine dell\'evento deve avvenire dopo l\'inizio.',
|
||||||
|
'ACP_PORTAL_CALENDAR_PERMISSION' => 'Permessi evento',
|
||||||
|
'ACP_PORTAL_CALENDAR_PERMISSION_EXP' => 'Selezionare i gruppi autorizzati a vedere l\'evento. Per permettere la visione a tutti, non selezionare alcun gruppo.<br />Selezionare/Deselezionare più gruppi tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_EVENTS_URL_NEW_WINDOW' => 'Apri collegamenti esterni in una nuova finestra',
|
||||||
|
|
||||||
|
// Logs
|
||||||
|
'LOG_PORTAL_EVENT_UPDATED' => '<strong>Evento aggiornato</strong><br />» %s',
|
||||||
|
'LOG_PORTAL_EVENT_ADDED' => '<strong>Evento aggiunto</strong><br />» %s',
|
||||||
|
'LOG_PORTAL_EVENT_REMOVED' => '<strong>Evento rimosso</strong><br />» %s',
|
||||||
|
));
|
||||||
42
language/it/modules/portal_clock_module.php
Normal file
42
language/it/modules/portal_clock_module.php
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Clock [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'CLOCK' => 'Orologio',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_CLOCK_SETTINGS' => 'Impostazioni orologio',
|
||||||
|
'ACP_PORTAL_CLOCK_SETTINGS_EXP' => 'Qui è possibile personalizzare l\'orologio',
|
||||||
|
'ACP_PORTAL_CLOCK_SRC' => 'Orologio',
|
||||||
|
'ACP_PORTAL_CLOCK_SRC_EXP' => 'Inserire il nome file del proprio orologio. L\'orologio deve trovarsi nella cartella styles/{propriostile}/theme/images/portal/.',
|
||||||
|
));
|
||||||
49
language/it/modules/portal_custom_module.php
Normal file
49
language/it/modules/portal_custom_module.php
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Custom
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_CUSTOM' => 'Modulo personalizzato',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_CUSTOM_SETTINGS' => 'Impostazioni modulo personalizzato',
|
||||||
|
'ACP_PORTAL_CUSTOM_SETTINGS_EXP' => 'Qui è possibile modificare il proprio blocco personalizzato',
|
||||||
|
'ACP_PORTAL_CUSTOM_CODE_SHORT' => 'Il codice inserito è troppo breve.',
|
||||||
|
'ACP_PORTAL_CUSTOM_PREVIEW' => 'Anteprima',
|
||||||
|
'ACP_PORTAL_CUSTOM_CODE' => 'Codice blocco personalizzato',
|
||||||
|
'ACP_PORTAL_CUSTOM_CODE_EXP' => 'Change the code for the small custom block (HTML or BBCode) here.',
|
||||||
|
'ACP_PORTAL_CUSTOM_PERMISSION' => 'Permessi blocco personalizzato',
|
||||||
|
'ACP_PORTAL_CUSTOM_PERMISSION_EXP' => 'Selezionare i gruppi abilitati alla visualizzazione del blocco personalizzato. Per impostare la visione pubblica, non selezionare alcun gruppo.<br />Selezionare/Deselezionare più gruppi tenendo premuto <samp>CTRL</samp> e cliccando.',
|
||||||
|
'ACP_PORTAL_CUSTOM_BBCODE' => 'Attiva BBCode per il blocco personalizzato',
|
||||||
|
'ACP_PORTAL_CUSTOM_BBCODE_EXP' => 'BBCode può essere usato in questo box; se non è attiva quest\'opzione, sarà invece interpretato il codice HTML.
|
||||||
|
BBCode could be used in this box. If BBCode is not activated, HTML will be parsed.',
|
||||||
|
));
|
||||||
65
language/it/modules/portal_donation_module.php
Normal file
65
language/it/modules/portal_donation_module.php
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Donation
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'DONATION' => 'Donazioni PayPal',
|
||||||
|
'DONATION_TEXT' => 'è un fornitore di servizi non a scopo di lucro. Le tue donazioni sono ben accette: in questo modo potranno essere sostenuti i costi di mantenimento del sito.',
|
||||||
|
'PAY_MSG' => 'Usare il punto come separatore decimali (per esempio 3.50)',
|
||||||
|
'PAY_ITEM' => 'Dona!', // paypal item
|
||||||
|
|
||||||
|
'AUD' => 'Dollari australiani (AUD)',
|
||||||
|
'CAD' => 'Collari canadesi (CAD)',
|
||||||
|
'CZK' => 'Corona ceca (CZK)',
|
||||||
|
'DKK' => 'Corona danese (DKK)',
|
||||||
|
'HKD' => 'Dollari di Honk Kong (HKD)',
|
||||||
|
'HUF' => 'Fiorino ungherese (HUF)',
|
||||||
|
'NZD' => 'Dollari neozelandesi (NZD)',
|
||||||
|
'NOK' => 'Corona norvegese (NOK)',
|
||||||
|
'PLN' => 'Złoty polacco (PLN)',
|
||||||
|
'GBP' => 'Sterline (GBP)',
|
||||||
|
'SGD' => 'Dollari di Singapore (SGD)',
|
||||||
|
'SEK' => 'Corona svedese (SEK)',
|
||||||
|
'CHF' => 'Franco svizzero (CHF)',
|
||||||
|
'JPY' => 'Yen (JPY)',
|
||||||
|
'USD' => 'Dollari statunitensi (USD)',
|
||||||
|
'EUR' => 'Euro (EUR)',
|
||||||
|
'MXN' => 'Peso messicano (MXN)',
|
||||||
|
'ILS' => 'Israeli New Shekels (ILS)',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_PAYPAL_SETTINGS' => 'Impostazioni PayPal',
|
||||||
|
'ACP_PORTAL_PAYPAL_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco PayPal.',
|
||||||
|
'PORTAL_PAY_ACC' => 'Profilo PayPal da utilizzare',
|
||||||
|
'PORTAL_PAY_ACC_EXP' => 'Inserire l\'indirizzo e-mail del proprio profilo PayPal (per esempio xxx@xxx.com)',
|
||||||
|
'PORTAL_PAY_CUSTOM' => 'Allega il nome utente alla donazione PayPal',
|
||||||
|
));
|
||||||
36
language/it/modules/portal_forumlist_module.php
Normal file
36
language/it/modules/portal_forumlist_module.php
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Forumlist [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_FORUMLIST' => 'Elenco forum',
|
||||||
|
));
|
||||||
47
language/it/modules/portal_friends_module.php
Normal file
47
language/it/modules/portal_friends_module.php
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Friends
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'FRIENDS' => 'Amici',
|
||||||
|
'FRIENDS_OFFLINE' => 'Non in linea',
|
||||||
|
'FRIENDS_ONLINE' => 'In linea',
|
||||||
|
'NO_FRIENDS' => 'Nessun amico in lista',
|
||||||
|
'NO_FRIENDS_OFFLINE' => 'Nessun amico non in linea',
|
||||||
|
'NO_FRIENDS_ONLINE' => 'Nessun amico in linea',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_FRIENDS_SETTINGS' => 'Impostazioni amici',
|
||||||
|
'ACP_PORTAL_FRIENDS_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco amici.',
|
||||||
|
'PORTAL_MAX_ONLINE_FRIENDS' => 'Limite amici visualizzabili',
|
||||||
|
'PORTAL_MAX_ONLINE_FRIENDS_EXP' => 'Il limite massimo di amici mostrati.',
|
||||||
|
));
|
||||||
43
language/it/modules/portal_latest_bots_module.php
Normal file
43
language/it/modules/portal_latest_bots_module.php
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Latest Bots
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'LATEST_BOTS' => 'Ultimi bot',
|
||||||
|
'LAST_VISITED_BOTS' => 'Ultimi bot visitatori',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_BOTS_SETTINGS' => 'Impostazioni bot visitatori',
|
||||||
|
'ACP_PORTAL_BOTS_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco bot visitatori.',
|
||||||
|
'PORTAL_LAST_VISITED_BOTS_NUMBER' => 'Quanti bot mostrare',
|
||||||
|
'PORTAL_LAST_VISITED_BOTS_NUMBER_EXP' => 'Impostare 0 per rimuovere il limite',
|
||||||
|
));
|
||||||
42
language/it/modules/portal_latest_members_module.php
Normal file
42
language/it/modules/portal_latest_members_module.php
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Latest Members [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'LATEST_MEMBERS' => 'Nuovi membri',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_MEMBERS_SETTINGS' => 'Impostazioni nuovi membri',
|
||||||
|
'ACP_PORTAL_MEMBERS_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco nuovi membri.',
|
||||||
|
'PORTAL_MAX_LAST_MEMBER' => 'Numero massimo di nuovi membri mostrati',
|
||||||
|
'PORTAL_MAX_LAST_MEMBER_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
));
|
||||||
45
language/it/modules/portal_leaders_module.php
Normal file
45
language/it/modules/portal_leaders_module.php
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Leaders [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'NO_ADMINISTRATORS_P' => 'Nessun amministratore',
|
||||||
|
'NO_MODERATORS_P' => 'Nessun moderatore',
|
||||||
|
'NO_GROUPS_P' => 'Nessun gruppo',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_LEADERS' => 'Impostazioni staff',
|
||||||
|
'ACP_PORTAL_LEADERS_EXP' => 'Qui è possibile personalizzare il blocco staff',
|
||||||
|
'PORTAL_LEADERS_EXT' => 'Blocco esteso',
|
||||||
|
'PORTAL_LEADERS_EXT_EXP' => 'Il blocco standard mostra tutti gli amministratori e moderatori mentre il blocco esteso mostra tutti i gruppi non nascosti in una legenda.
|
||||||
|
The standard block lists all admins/mods, while the extended block includes all non-hidden groups with a legend.',
|
||||||
|
));
|
||||||
37
language/it/modules/portal_link_us_module.php
Normal file
37
language/it/modules/portal_link_us_module.php
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Link Us [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'LINK_US' => 'Condividi',
|
||||||
|
'LINK_US_TXT' => 'Puoi condividere un link a <strong>%s</strong> usando questo codice:',
|
||||||
|
));
|
||||||
56
language/it/modules/portal_links_module.php
Normal file
56
language/it/modules/portal_links_module.php
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Links [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_LINKS' => 'Collegamenti',
|
||||||
|
'LINKS_NO_LINKS' => 'Nessun collegamento',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_LINKS' => 'Impostazioni collegamenti',
|
||||||
|
'ACP_PORTAL_LINKS_EXP' => 'Personalizza i collegamenti elencati nel blocco collegamenti',
|
||||||
|
'ACP_PORTAL_LINK_TITLE' => 'Titolo',
|
||||||
|
'ACP_PORTAL_LINK_TYPE' => 'Tipo di collegamento',
|
||||||
|
'ACP_PORTAL_LINK_TYPE_EXP' => 'Se il collegamento punta a una pagina di questo sito, usa "Collegamento interno" per evitare disconnessioni indesiderate.',
|
||||||
|
'ACP_PORTAL_LINK_INT' => 'Collegamento interno',
|
||||||
|
'ACP_PORTAL_LINK_EXT' => 'Collegamento esterno',
|
||||||
|
'ACP_PORTAL_LINK_ADD' => 'Aggiungi nuovo collegamento di navigazione',
|
||||||
|
'ACP_PORTAL_LINK_URL' => 'URL collegamento',
|
||||||
|
'ACP_PORTAL_LINK_URL_EXP' => 'Collegamenti esterni:<br />I collegamenti esterni devono contenere http://<br /><br />Collegamenti interni:<br />Inserire semplicemente il file php come collegamento (per esempio index.php?style=4).',
|
||||||
|
'ACP_PORTAL_LINK_PERMISSION' => 'Permessi collegamenti',
|
||||||
|
'ACP_PORTAL_LINK_PERMISSION_EXP'=> 'Selezionare i gruppi autorizzati a vedere i collegamenti. Se si vuole che tutti possano vedere i collegamenti, non selezionare alcun gruppo.<br />Selezionare/Deselezionare più gruppi tenendo premuto <samp>CTRL</samp> e cliccando.',
|
||||||
|
'ACP_PORTAL_LINKS_NEW_WINDOW' => 'Apri collegamenti esterni in una nuova finestra',
|
||||||
|
|
||||||
|
// Errors
|
||||||
|
'NO_LINK_TITLE' => 'È necessario inserire un titolo per questo collegamento.',
|
||||||
|
'NO_LINK_URL' => 'È necessario inserire l\'URL di un collegamento.',
|
||||||
|
));
|
||||||
69
language/it/modules/portal_main_menu_module.php
Normal file
69
language/it/modules/portal_main_menu_module.php
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Main Menu [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'M_MENU' => 'Menu',
|
||||||
|
'M_CONTENT' => 'Contenuto',
|
||||||
|
'M_ACP' => 'PCA',
|
||||||
|
'M_HELP' => 'Aiuto',
|
||||||
|
'M_BBCODE' => 'FAQ BBCode',
|
||||||
|
'M_TERMS' => 'Termini di Servizio',
|
||||||
|
'M_PRV' => 'Informativa sulla privacy',
|
||||||
|
'M_SEARCH' => 'Cerca',
|
||||||
|
'MENU_NO_LINKS' => 'Nessun collegamento',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_MENU' => 'Impostazioni menù',
|
||||||
|
'ACP_PORTAL_MENU_LINK_SETTINGS' => 'Impostazioni collegamento',
|
||||||
|
'ACP_PORTAL_MENU_EXP' => 'Gestisci il menù principale',
|
||||||
|
'ACP_PORTAL_MENU_MANAGE' => 'gestisci menù',
|
||||||
|
'ACP_PORTAL_MENU_MANAGE_EXP' => 'Qui è possibile cambiare i collegamenti del proprio menù principale.',
|
||||||
|
'ACP_PORTAL_MENU_CAT' => 'Categoria',
|
||||||
|
'ACP_PORTAL_MENU_IS_CAT' => 'Imposta come categoria di collegamento speciale',
|
||||||
|
'ACP_PORTAL_MENU_INT' => 'Collegamento interno',
|
||||||
|
'ACP_PORTAL_MENU_EXT' => 'Collegamento esterno',
|
||||||
|
'ACP_PORTAL_MENU_TITLE' => 'Titolo',
|
||||||
|
'ACP_PORTAL_MENU_URL' => 'URL collegamento',
|
||||||
|
'ACP_PORTAL_MENU_ADD' => 'Aggiungi nuovo collegamento di navigazione',
|
||||||
|
'ACP_PORTAL_MENU_TYPE' => 'Tipo di collegamento',
|
||||||
|
'ACP_PORTAL_MENU_TYPE_EXP' => 'Se il collegamento punta a una pagina di questo sito, usa "Collegamento interno" per evitare disconnessioni indesiderate.',
|
||||||
|
'ACP_PORTAL_MENU_CREATE_CAT' => 'È necessario prima creare una categoria.',
|
||||||
|
'ACP_PORTAL_MENU_URL_EXP' => 'Collegamenti esterni:<br />I collegamenti esterni devono contenere http://<br /><br />Collegamenti interni:<br />Inserire semplicemente il file php come collegamento (per esempio index.php?style=4).',
|
||||||
|
'ACP_PORTAL_MENU_PERMISSION' => 'Permessi collegamenti',
|
||||||
|
'ACP_PORTAL_MENU_PERMISSION_EXP'=> 'Selezionare i gruppi autorizzati a vedere i collegamenti. Se si vuole che tutti possano vedere i collegamenti, non selezionare alcun gruppo.<br />Selezionare/Deselezionare più gruppi tenendo premuto <samp>CTRL</samp> e cliccando.',
|
||||||
|
'ACP_PORTAL_MENU_EXT_NEW_WINDOW'=> 'Apri collegamenti esterni in una nuova finestra',
|
||||||
|
|
||||||
|
// Errors
|
||||||
|
'NO_LINK_TITLE' => 'You must enter a title for this link.',
|
||||||
|
'NO_LINK_URL' => 'You must enter a link URL.',
|
||||||
|
));
|
||||||
70
language/it/modules/portal_news_module.php
Normal file
70
language/it/modules/portal_news_module.php
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - News
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'LATEST_NEWS' => 'Ultime notizie',
|
||||||
|
'READ_FULL' => 'Leggi tutto',
|
||||||
|
'NO_NEWS' => 'Nessuna notizia',
|
||||||
|
'POSTED_BY' => 'Da',
|
||||||
|
'COMMENTS' => 'Commenti',
|
||||||
|
'VIEW_COMMENTS' => 'Vedi commenti',
|
||||||
|
'PORTAL_POST_REPLY' => 'Lascia un commento',
|
||||||
|
'TOPIC_VIEWS' => 'Visite',
|
||||||
|
'JUMP_NEWEST' => 'Salta al messaggio più recente',
|
||||||
|
'JUMP_FIRST' => 'Salta al primo messaggio',
|
||||||
|
'JUMP_TO_POST' => 'Salta al messaggio',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_NEWS_SETTINGS' => 'Impostazioni notizie',
|
||||||
|
'ACP_PORTAL_NEWS_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco notizie',
|
||||||
|
'PORTAL_NEWS_STYLE' => 'Stile blocco notizie compatto',
|
||||||
|
'PORTAL_NEWS_STYLE_EXP' => 'Impostando "Sì" sarà usato lo stile compatto; impostando "No" sarà usato lo stile esteso.',
|
||||||
|
'PORTAL_SHOW_ALL_NEWS' => 'Mostra tutti gli articoli in questo forum',
|
||||||
|
'PORTAL_SHOW_ALL_NEWS_EXP' => 'Includi importanti.',
|
||||||
|
'PORTAL_NUMBER_OF_NEWS' => 'Numero di articoli in portale',
|
||||||
|
'PORTAL_NUMBER_OF_NEWS_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_NEWS_LENGTH' => 'Lunghezza massima articoli',
|
||||||
|
'PORTAL_NEWS_LENGTH_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_NEWS_FORUM' => 'Forum notizie',
|
||||||
|
'PORTAL_NEWS_FORUM_EXP' => 'Specificare da quale forum recuperare le notizie. Lasciare in bianco per recuperare le notizie da tutti i forum. Se "Escludi forum" è impostato su "Sì". selezionare i forum da escludere.<br />Se "Escludi forum" è impostato su "No", selezionare i forum di cui vedere le notizie.<br />Selezionare/Deselezionare più forum tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_NEWS_EXCLUDE' => 'Escludi forum',
|
||||||
|
'PORTAL_NEWS_EXCLUDE_EXP' => 'Impostare su "Sì" per escludere i forum selezionati dal blocco notizie, "No" per vedere le notizie solo dai forum selezionati.',
|
||||||
|
'PORTAL_NEWS_PERMISSIONS' => 'Abilita/Disabilita permessi',
|
||||||
|
'PORTAL_NEWS_PERMISSIONS_EXP' => 'Nel mostrare le notizie, tenere conto dei permessi utente.',
|
||||||
|
'PORTAL_NEWS_SHOW_LAST' => 'Mostra i messaggi più recenti',
|
||||||
|
'PORTAL_NEWS_SHOW_LAST_EXP' => 'Se attivato, saranno mostrate come recenti le notizie col messaggio più recente, altrimenti saranno mostrate le notizie più recenti.',
|
||||||
|
'PORTAL_NEWS_ARCHIVE' => 'Abilita sistema di archivio notizie',
|
||||||
|
'PORTAL_NEWS_ARCHIVE_EXP' => 'Se attivato, il sistema di archivio notizie o i numeri di pagine saranno mostrati.',
|
||||||
|
'PORTAL_SHOW_REPLIES_VIEWS' => 'Mostra numero visite e risposte',
|
||||||
|
'PORTAL_SHOW_REPLIES_VIEWS_EXP' => 'Quest\'impostazione riguarda il blocco compatto.<br />Se impostata su "Sì", saranno mostrati i numeri di visite e risposte in due colonne ulteriori; se impostato su "No", le visite e le risposte saranno mostrate di fianco al nome del forum. Impostare su "No" per risolvere i problemi dovuti alla larghezza delle due colonne extra.',
|
||||||
|
));
|
||||||
53
language/it/modules/portal_poll_module.php
Normal file
53
language/it/modules/portal_poll_module.php
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Poll [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_POLL' => 'Sondaggio',
|
||||||
|
'LATEST_POLLS' => 'Ultimi sondaggi',
|
||||||
|
'NO_OPTIONS' => 'Questo sondaggio non ha opzioni disponibili.',
|
||||||
|
'NO_POLL' => 'Nessun sondaggio disponibile',
|
||||||
|
'RETURN_PORTAL' => '%sTorna al portale%s',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_POLLS_SETTINGS' => 'Impostazioni sondaggio',
|
||||||
|
'ACP_PORTAL_POLLS_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco sondaggio.',
|
||||||
|
'PORTAL_POLL_TOPIC_ID' => 'Forum sondaggio',
|
||||||
|
'PORTAL_POLL_TOPIC_ID_EXP' => 'Specificare da quale forum recuperare i sondaggi. Lasciare in bianco per recuperare i sondaggi da tutti i forum. Se "Escludi forum" è impostato su "Sì". selezionare i forum da escludere.<br />Se "Escludi forum" è impostato su "No", selezionare i forum di cui vedere i sondaggi.<br />Selezionare/Deselezionare più forum tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_POLL_EXCLUDE_ID' => 'Escludi forum',
|
||||||
|
'PORTAL_POLL_EXCLUDE_ID_EXP' => 'Impostare su "Sì" per escludere i forum selezionati dal blocco sondaggi, "No" per vedere i sondaggi solo dai forum selezionati.',
|
||||||
|
'PORTAL_POLL_LIMIT' => 'Limite sondaggi visualizzabili',
|
||||||
|
'PORTAL_POLL_LIMIT_EXP' => 'Il numero di sondaggi visualizzabili nel portale.',
|
||||||
|
'PORTAL_POLL_ALLOW_VOTE' => 'Permetti voto',
|
||||||
|
'PORTAL_POLL_ALLOW_VOTE_EXP' => 'Allow users with the required permissions to vote from the portal page.',
|
||||||
|
'PORTAL_POLL_HIDE' => 'Nascondi sondaggi conclusi',
|
||||||
|
));
|
||||||
41
language/it/modules/portal_random_member_module.php
Normal file
41
language/it/modules/portal_random_member_module.php
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Random Member [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_RANDOM_MEMBER' => 'Utente a caso',
|
||||||
|
'RND_JOIN' => 'Iscritto il',
|
||||||
|
'RND_POSTS' => 'Messaggi',
|
||||||
|
'RND_OCC' => 'Occupazione',
|
||||||
|
'RND_FROM' => 'Località',
|
||||||
|
'RND_WWW' => 'Sito web',
|
||||||
|
));
|
||||||
51
language/it/modules/portal_recent_module.php
Normal file
51
language/it/modules/portal_recent_module.php
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Recent [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_RECENT' => 'Recenti',
|
||||||
|
'PORTAL_RECENT_TOPIC' => 'Topic recenti',
|
||||||
|
'PORTAL_RECENT_ANN' => 'Annunci recenti',
|
||||||
|
'PORTAL_RECENT_HOT_TOPIC' => 'Topic popolari recenti',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_RECENT_SETTINGS' => 'Impostazioni topic recenti',
|
||||||
|
'ACP_PORTAL_RECENT_SETTINGS_EXP' => 'Qui è possibile personalizzare il blocco topic recenti.',
|
||||||
|
'PORTAL_MAX_TOPIC' => 'Limite annunci recenti/topic popolari',
|
||||||
|
'PORTAL_MAX_TOPIC_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_RECENT_TITLE_LIMIT' => 'Limite caratteri per ogni topic recente',
|
||||||
|
'PORTAL_RECENT_TITLE_LIMIT_EXP' => 'Inserire 0 per rimuovere il limite',
|
||||||
|
'PORTAL_RECENT_FORUM' => 'Forum topic recenti',
|
||||||
|
'PORTAL_RECENT_FORUM_EXP' => 'Specificare da quale forum recuperare i topic recenti. Lasciare in bianco per recuperare i topic recenti da tutti i forum. Se "Escludi forum" è impostato su "Sì". selezionare i forum da escludere.<br />Se "Escludi forum" è impostato su "No", selezionare i forum di cui vedere i topic recenti.<br />Selezionare/Deselezionare più forum tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'PORTAL_EXCLUDE_FORUM' => 'Escludi forum',
|
||||||
|
'PORTAL_EXCLUDE_FORUM_EXP' => 'Impostare su "Sì" per escludere i forum selezionati dal blocco topic recenti, "No" per vedere i topic recenti solo dai forum selezionati.',
|
||||||
|
));
|
||||||
42
language/it/modules/portal_search_module.php
Normal file
42
language/it/modules/portal_search_module.php
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Search [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_SEARCH' => 'Cerca',
|
||||||
|
'PORTAL_SEARCH_GO' => 'Vai',
|
||||||
|
'PORTAL_SEARCH_SITE' => 'Forum',
|
||||||
|
'PORTAL_SEARCH_POSTS' => 'Messaggi',
|
||||||
|
'PORTAL_SEARCH_AUTHOR' => 'Autore',
|
||||||
|
'PORTAL_SEARCH_ENGINE' => 'Motori di ricerca',
|
||||||
|
'PORTAL_SEARCH_ADV' => 'Ricerca avanzata',
|
||||||
|
));
|
||||||
51
language/it/modules/portal_statistics_module.php
Normal file
51
language/it/modules/portal_statistics_module.php
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Statistics [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'ST_TOP' => 'Totali',
|
||||||
|
'ST_TOP_ANNS' => 'Annunci totali:',
|
||||||
|
'ST_TOP_STICKYS'=> 'Topic importanti totali:',
|
||||||
|
'ST_TOT_ATTACH' => 'Allegati totali:',
|
||||||
|
'TOPICS_PER_DAY_OTHER' => 'Topic giornalieri: <strong>%d</strong>',
|
||||||
|
'TOPICS_PER_DAY_ZERO' => 'Topic giornalieri: <strong>0</strong>',
|
||||||
|
'POSTS_PER_DAY_OTHER' => 'Messaggi giornalieri: <strong>%d</strong>',
|
||||||
|
'POSTS_PER_DAY_ZERO' => 'Messaggi giornalieri: <strong>0</strong>',
|
||||||
|
'USERS_PER_DAY_OTHER' => 'Utenti giornalieri: <strong>%d</strong>',
|
||||||
|
'USERS_PER_DAY_ZERO' => 'Utenti giornalieri: <strong>0</strong>',
|
||||||
|
'TOPICS_PER_USER_OTHER' => 'Topic per utente: <strong>%d</strong>',
|
||||||
|
'TOPICS_PER_USER_ZERO' => 'Topic per utente: <strong>0</strong>',
|
||||||
|
'POSTS_PER_USER_OTHER' => 'Messaggi per utente: <strong>%d</strong>',
|
||||||
|
'POSTS_PER_USER_ZERO' => 'messaggi per utente: <strong>0</strong>',
|
||||||
|
'POSTS_PER_TOPIC_OTHER' => 'Messaggi per topic: <strong>%d</strong>',
|
||||||
|
'POSTS_PER_TOPIC_ZERO' => 'Messaggi per topic: <strong>0</strong>',
|
||||||
|
));
|
||||||
37
language/it/modules/portal_stylechanger_module.php
Normal file
37
language/it/modules/portal_stylechanger_module.php
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Stylechanger [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'BOARD_STYLE' => 'Stile',
|
||||||
|
'STYLE_CHOOSE' => 'Seleziona stile',
|
||||||
|
));
|
||||||
41
language/it/modules/portal_topposters_module.php
Normal file
41
language/it/modules/portal_topposters_module.php
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Topposters [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'TOPPOSTERS' => 'Top Poster',
|
||||||
|
'TOPPOSTERS_CONFIG' => 'Impostazioni top poster',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'NUM_TOPPOSTERS' => 'Numero di top poster',
|
||||||
|
'NUM_TOPPOSTERS_EXP' => 'Specificare quanti utenti mostrare nel blocco top poster.',
|
||||||
|
));
|
||||||
45
language/it/modules/portal_user_menu_module.php
Normal file
45
language/it/modules/portal_user_menu_module.php
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - User Menu [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'USER_MENU' => 'Menù utente',
|
||||||
|
'UM_LOG_ME_IN' => 'Ricordami',
|
||||||
|
'UM_HIDE_ME' => 'Nascondimi',
|
||||||
|
'UM_REGISTER_NOW' => 'Registrati!',
|
||||||
|
'UM_MAIN_SUBSCRIBED'=> 'Sottoscritti',
|
||||||
|
'UM_BOOKMARKS' => 'Segnalibri',
|
||||||
|
'M_MENU' => 'Menù',
|
||||||
|
'M_ACP' => 'PCA',
|
||||||
|
'USER_MENU_SETTINGS' => 'Impostazioni menù utente',
|
||||||
|
'USER_MENU_REGISTER' => 'Mostra link registrazione in menù utente',
|
||||||
|
));
|
||||||
43
language/it/modules/portal_welcome_module.php
Normal file
43
language/it/modules/portal_welcome_module.php
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Welcome
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_WELCOME' => 'Messaggio di benvenuto',
|
||||||
|
|
||||||
|
// ACP
|
||||||
|
'ACP_PORTAL_WELCOME_SETTINGS' => 'Impostazioni messaggio di benvenuto',
|
||||||
|
'ACP_PORTAL_WELCOME_MESSAGE_SHORT' => 'Il messaggio inserito è troppo breve.',
|
||||||
|
'ACP_PORTAL_WELCOME_PREVIEW' => 'Anteprima messaggio di benvenuto',
|
||||||
|
'ACP_PORTAL_WELCOME_MESSAGE' => 'Messaggio di benvenuto',
|
||||||
|
'ACP_PORTAL_WELCOME_MESSAGE_EXP' => 'Il messaggio di benvenuto può essere cambiato nel campo di testo.<br />Sono permessi BBCode, immagini e indirizzi.',
|
||||||
|
));
|
||||||
36
language/it/modules/portal_whois_online_module.php
Normal file
36
language/it/modules/portal_whois_online_module.php
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 - Who is online [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL_WHOIS_ONLINE' => 'Chi c\'è in linea',
|
||||||
|
));
|
||||||
41
language/it/portal.php
Normal file
41
language/it/portal.php
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 [Italian]
|
||||||
|
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
|
||||||
|
// Common
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
'PORTAL' => 'Portale',
|
||||||
|
'VIEWING_PORTAL' => 'Pagina portale',
|
||||||
|
'BACK' => 'Indietro',
|
||||||
|
'B3P_WRONG_METHOD_CALL' => 'Chiamata non corretta al metodo %s',
|
||||||
|
));
|
||||||
117
language/it/portal_acp.php
Normal file
117
language/it/portal_acp.php
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package Board3 Portal v2.1 [Italian]
|
||||||
|
* @copyright (c) 2014 Board3 Group ( www.board3.de )
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT CHANGE
|
||||||
|
*/
|
||||||
|
if (!defined('IN_PHPBB'))
|
||||||
|
{
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($lang) || !is_array($lang))
|
||||||
|
{
|
||||||
|
$lang = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEVELOPERS PLEASE NOTE
|
||||||
|
//
|
||||||
|
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||||
|
//
|
||||||
|
// Placeholders can now contain order information, e.g. instead of
|
||||||
|
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||||
|
// translators to re-order the output of data while ensuring it remains correct
|
||||||
|
//
|
||||||
|
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||||
|
// equally where a string contains only two placeholders which are used to wrap text
|
||||||
|
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||||
|
|
||||||
|
$lang = array_merge($lang, array(
|
||||||
|
// Portal Modules
|
||||||
|
'ACP_PORTAL_MODULES_EXP' => 'Il proprio portale può essere gestito da qui. Si consiglia di disabilitarlo qualora vengano disattivati tutti i moduli.',
|
||||||
|
|
||||||
|
'MODULE_POS_TOP' => 'Cima',
|
||||||
|
'MODULE_POS_LEFT' => 'Colonna sinistra',
|
||||||
|
'MODULE_POS_RIGHT' => 'Colonna destra',
|
||||||
|
'MODULE_POS_CENTER' => 'Colonna centrale',
|
||||||
|
'MODULE_POS_BOTTOM' => 'Fondo',
|
||||||
|
'ADD_MODULE' => 'Aggiungi modulo',
|
||||||
|
'CHOOSE_MODULE' => 'Scegli modulo',
|
||||||
|
'CHOOSE_MODULE_EXP' => 'Scegli un modulo dal menu a tendina',
|
||||||
|
'SUCCESS_ADD' => 'Il modulo è stato aggiunto.',
|
||||||
|
'SUCCESS_DELETE' => 'Il modulo è stato rimosso.',
|
||||||
|
'NO_MODULES' => 'Nessun modulo rilevato.',
|
||||||
|
'MOVE_RIGHT' => 'Sposta a destra',
|
||||||
|
'MOVE_LEFT' => 'Sposta a sinistra',
|
||||||
|
'B3P_FILE_NOT_FOUND' => 'Il file richiesto non è stato trovato',
|
||||||
|
'UNABLE_TO_MOVE' => 'Impossibile spostare il blocco nella colonna scelta.',
|
||||||
|
'UNABLE_TO_MOVE_ROW' => 'Imposssibile spostare il blocco nella riga scelta.',
|
||||||
|
'UNABLE_TO_ADD_MODULE' => 'Impossibile aggiungere il modulo nella colonna scelta.',
|
||||||
|
'DELETE_MODULE_CONFIRM' => 'Sei sicuro di voler rimuovere il modulo "%1$s"?',
|
||||||
|
'MODULE_RESET_SUCCESS' => 'Le impostazioni del modulo sono state ripristinate.',
|
||||||
|
'MODULE_RESET_CONFIRM' => 'Sei sicuro di voler ripristinare le impostazioni del modulo "%1$s"?',
|
||||||
|
'MODULE_NOT_EXISTS' => 'Il modulo selezionato non esiste.',
|
||||||
|
|
||||||
|
'MODULE_OPTIONS' => 'Opzioni modulo',
|
||||||
|
'MODULE_NAME' => 'Nome modulo',
|
||||||
|
'MODULE_NAME_EXP' => 'Inserire il nome del modulo da mostrare nella configurazione modulo.',
|
||||||
|
'MODULE_IMAGE' => 'Immagine modulo',
|
||||||
|
'MODULE_IMAGE_EXP' => 'Inserire il nome del file dell\'immagine modulo. Le immagini devono trovarsi in tutte le cartelle styles/{propriostile}/theme/images/portal/',
|
||||||
|
'MODULE_PERMISSIONS' => 'Permessi modulo',
|
||||||
|
'MODULE_PERMISSIONS_EXP' => 'Selezionare i gruppi autorizzati alla visione del modulo. Per rendere il modulo visibile a tutti i gruppi è sufficiente non selezionare alcun gruppo.<br />Selezionare/Deselezionare più gruppi tenendo premuto <samp>CTRL</samp> mentre si clicca.',
|
||||||
|
'MODULE_IMAGE_WIDTH' => 'Larghezza immagine modulo',
|
||||||
|
'MODULE_IMAGE_WIDTH_EXP' => 'Inserire la larghezza dell\'immagine modulo in pixel',
|
||||||
|
'MODULE_IMAGE_HEIGHT' => 'Altezza immagine modulo',
|
||||||
|
'MODULE_IMAGE_HEIGHT_EXP' => 'Inserire l\'altezza dell\'immagine modulo in pixel',
|
||||||
|
'MODULE_RESET' => 'Remposta modulo',
|
||||||
|
'MODULE_RESET_EXP' => 'Il modulo sarà ripristinato ai valori originali!',
|
||||||
|
'MODULE_STATUS' => 'Abilita modulo',
|
||||||
|
'MODULE_ADD_ONCE' => 'Questo modulo può essere aggiunto una sola volta.',
|
||||||
|
'MODULE_IMAGE_ERROR' => 'Errore nel controllo dell\'immagine modulo:',
|
||||||
|
'UNKNOWN_MODULE_METHOD' => 'Il metodo modulo del modulo %1$s non può essere risolto.',
|
||||||
|
|
||||||
|
// general
|
||||||
|
'ACP_PORTAL_CONFIG_INFO' => 'Impostazioni generali',
|
||||||
|
'ACP_PORTAL_GENERAL_TITLE' => 'Gestione portale',
|
||||||
|
'ACP_PORTAL_GENERAL_TITLE_EXP' => 'Grazie per aver scelto Board3 Portal! Qui è possibile gestire il proprio portale. Le opzioni in basso permettono di personalizzare le diverse impostazioni generali.',
|
||||||
|
'PORTAL_ENABLE' => 'Abilita portale',
|
||||||
|
'PORTAL_ENABLE_EXP' => 'Abilita o disabilita l\'intero portale',
|
||||||
|
'PORTAL_LEFT_COLUMN' => 'Abilita colonna sinistra',
|
||||||
|
'PORTAL_LEFT_COLUMN_EXP' => 'Impostare su "No" per nascondere la colonna sinistra',
|
||||||
|
'PORTAL_RIGHT_COLUMN' => 'Enable right column',
|
||||||
|
'PORTAL_RIGHT_COLUMN_EXP' => 'Impostare su "No" per nascondere la colonna destra',
|
||||||
|
'PORTAL_VERSION_CHECK' => 'Versioncheck on Portal',
|
||||||
|
'PORTAL_DISPLAY_JUMPBOX' => 'Mostra jumpbox',
|
||||||
|
'PORTAL_DISPLAY_JUMPBOX_EXP' => 'Mostra la jumpbox nel portale. La jumpbox sarà mostrata se abilitata nelle impostazioni della board.',
|
||||||
|
'ACP_PORTAL_COLUMN_WIDTH_SETTINGS' => 'Impostazioni larghezza colonna sinistra e destra',
|
||||||
|
'PORTAL_LEFT_COLUMN_WIDTH' => 'Larghezza colonna sinistra',
|
||||||
|
'PORTAL_LEFT_COLUMN_WIDTH_EXP' => 'Cambia la larghezza della colonna destra (in pixel); il valore consigliato è 180',
|
||||||
|
'PORTAL_RIGHT_COLUMN_WIDTH' => 'Larghezza colonna destra',
|
||||||
|
'PORTAL_RIGHT_COLUMN_WIDTH_EXP' => 'Cambia la larghezza della colonna destra (in pixel); il valore consigliato è 180',
|
||||||
|
|
||||||
|
'LINK_ADDED' => 'Il collegamento è stato aggiunto',
|
||||||
|
'LINK_UPDATED' => 'Il collegamento è stato aggiornato',
|
||||||
|
|
||||||
|
// Install
|
||||||
|
'PORTAL_BASIC_INSTALL' => 'Aggiunta moduli di base',
|
||||||
|
'PORTAL_BASIC_UNINSTALL' => 'Rimozione dei moduli dal database',
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A copy of Handyman` s MOD version check, to view it on the portal overview
|
||||||
|
*/
|
||||||
|
'ANNOUNCEMENT_TOPIC' => 'Annuncio rilascio',
|
||||||
|
'CURRENT_VERSION' => 'Versione corrente',
|
||||||
|
'DOWNLOAD_LATEST' => 'Scarica ultima versione',
|
||||||
|
'LATEST_VERSION' => 'Ultima versione',
|
||||||
|
'NO_INFO' => 'Impossibile contattare il server per il controllo versione',
|
||||||
|
'NOT_UP_TO_DATE' => '%s non è aggiornato',
|
||||||
|
'RELEASE_ANNOUNCEMENT' => 'Topic annuncio',
|
||||||
|
'UP_TO_DATE' => '%s è aggiornato',
|
||||||
|
'VERSION_CHECK' => 'Estensione controllo versione',
|
||||||
|
));
|
||||||
Reference in New Issue
Block a user