39 lines
No EOL
970 B
PHP
39 lines
No EOL
970 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'] = 'Standaard agenda';
|
|
$labels['time_format'] = 'Tijdsformaat';
|
|
$labels['timeslots'] = 'Timeslots per uur';
|
|
$labels['first_day'] = 'Eerste weekdag';
|
|
|
|
// calendar
|
|
$labels['calendar'] = 'Agenda';
|
|
$labels['day'] = 'Dag';
|
|
$labels['week'] = 'Week';
|
|
$labels['month'] = 'Maand';
|
|
$labels['new_event'] = 'Nieuw evenement';
|
|
$labels['edit_event'] = 'Wijzig evenement';
|
|
$labels['save'] = 'Bewaar';
|
|
$labels['remove'] = 'Verwijder';
|
|
$labels['cancel'] = 'Terug';
|
|
$labels['title'] = 'Samenvatting';
|
|
$labels['description'] = 'Beschrijving';
|
|
$labels['all-day'] = 'hele dag';
|
|
$labels['export'] = 'Exporteer naar ICS';
|
|
$labels['category'] = 'Categorie';
|
|
$labels['location'] = 'Locatie';
|
|
?>
|