Create portal_clendar_module.php

Preliminary Italian translation for portal_calendar_module.php .
This commit is contained in:
Mauron
2015-01-17 05:38:14 +01:00
parent 8cd2e08464
commit 387f6bf9a7

View 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' => 'Calendar settings',
'ACP_PORTAL_CALENDAR_EXP' => 'This is where you customize the calendar block.',
'ACP_PORTAL_EVENTS' => 'Calendar events',
'PORTAL_CALENDAR_TODAY_COLOR' => 'Active day color',
'PORTAL_CALENDAR_TODAY_COLOR_EXP' => 'HEX or named colors are allowed such as #FFFFFF for white, or color names like violet.',
'PORTAL_CALENDAR_SUNDAY_COLOR' => 'Color for sunday',
'PORTAL_CALENDAR_SUNDAY_COLOR_EXP' => 'HEX or named colors are allowed such as #FFFFFF for white, or color names like violet.',
'PORTAL_LONG_MONTH' => 'Show full month names',
'PORTAL_LONG_MONTH_EXP' => 'If disabled the months will be shortened e.g. Aug. instead of August.',
'PORTAL_SUNDAY_FIRST' => 'First day of the week',
'PORTAL_SUNDAY_FIRST_EXP' => 'If disabled the calendar will show Mo. --> Su., else Su. --> Sa.',
'PORTAL_DISPLAY_EVENTS' => 'Display events',
'PORTAL_DISPLAY_EVENTS_EXP' => 'Display events that have been created in the calendar block',
'PORTAL_EVENTS_MANAGE' => 'Manage events',
'NO_EVENT_TITLE' => 'You havent specified a title for the event.',
'NO_EVENT_START' => 'You havent specified a start time for the event.',
'ADD_EVENT' => 'Add new event',
'EVENT_UPDATED' => 'Event updated successfully.',
'EVENT_ADDED' => 'Event added successfully.',
'NO_EVENT' => 'No event specified.',
'EVENT_TITLE' => 'Event title',
'EVENT_DESC' => 'Event description',
'EVENT_LINK' => 'Event link',
'EVENT_LINK_EXP' => 'Enter the link to a topic or website with the announcement or discussion topic of the event.',
'NO_EVENTS' => 'No events',
'ACP_PORTAL_CALENDAR_START_INCORRECT' => 'The start time you entered was incorrect. Please follow the instructions carefully.',
'ACP_PORTAL_CALENDAR_END_INCORRECT' => 'The end time you entered was incorrect. Please follow the instructions carefully.',
'ACP_PORTAL_CALENDAR_EVENT_PAST' => 'The event start time needs to be in the future.',
'ACP_PORTAL_EVENT_START_DATE' => 'Event start date',
'ACP_PORTAL_EVENT_START_DATE_EXP' => 'Enter the date and time the event starts. The date has to be in a similar format: MM/DD/YYYY 3:00 PM',
'ACP_PORTAL_EVENT_END_DATE' => 'Event end date',
'ACP_PORTAL_EVENT_END_DATE_EXP' => 'Enter the date and time the event ends. The date has to be in a similar format: MM/DD/YYYY 3:00 PM',
'ACP_PORTAL_CALENDAR_EVENT_START_FIRST' => 'The end of the event has to be after the start of the event.',
'ACP_PORTAL_CALENDAR_PERMISSION' => 'Event permissions',
'ACP_PORTAL_CALENDAR_PERMISSION_EXP' => 'Select the groups that should be authorized to view the event. If you want all users to be able to view the event, dont select anything.<br />Select/Deselect multiple groups by holding <samp>CTRL</samp> and clicking.',
'PORTAL_EVENTS_URL_NEW_WINDOW' => 'Open external event links in a new window',
// Logs
'LOG_PORTAL_EVENT_UPDATED' => '<strong>Evento aggiornato</strong><br />&raquo; %s',
'LOG_PORTAL_EVENT_ADDED' => '<strong>Evento aggiunto</strong><br />&raquo; %s',
'LOG_PORTAL_EVENT_REMOVED' => '<strong>Evento rimosso</strong><br />&raquo; %s',
));