38 lines
No EOL
948 B
PHP
38 lines
No EOL
948 B
PHP
<?php
|
|
/**
|
|
* RoundCube Calendar
|
|
*
|
|
* Plugin to add a calendar to RoundCube.
|
|
*
|
|
* @version 0.2 BETA 2
|
|
* @author Lazlo Westerhof
|
|
* @url http://rc-calendar.lazlo.me
|
|
* @licence GNU GPL
|
|
* @copyright (c) 2010 Lazlo Westerhof - Netherlands
|
|
*
|
|
**/
|
|
|
|
$labels = array();
|
|
|
|
// config
|
|
$labels['default_view'] = 'Visualizzazine di default';
|
|
$labels['time_format'] = 'Formato ora';
|
|
$labels['timeslots'] = 'Timeslots per ora';
|
|
$labels['first_day'] = 'Inizio settimana';
|
|
|
|
// calendar
|
|
$labels['calendar'] = 'Calendario';
|
|
$labels['day'] = 'Giorno';
|
|
$labels['week'] = 'Settimana';
|
|
$labels['month'] = 'Mese';
|
|
$labels['new_event'] = 'Nuovo evento';
|
|
$labels['edit_event'] = 'Modifica evento';
|
|
$labels['save'] = 'Salva';
|
|
$labels['remove'] = 'Elimina';
|
|
$labels['cancel'] = 'Annulla';
|
|
$labels['title'] = 'Oggetto';
|
|
$labels['description'] = 'Descrizione';
|
|
$labels['all-day'] = 'Giorno intero';
|
|
$labels['export'] = 'Esporta in ICS';
|
|
$labels['category'] = 'Categoria';
|
|
?>
|