pnp4nagios/lib/kohana/system/i18n/nl_NL/calendar.php
2017-05-20 15:26:21 +02:00

59 lines
1.3 KiB
PHP

<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
// Two letter days
'su' => 'zo',
'mo' => 'ma',
'tu' => 'di',
'we' => 'wo',
'th' => 'do',
'fr' => 'vr',
'sa' => 'za',
// Short day names
'sun' => 'zon',
'mon' => 'maa',
'tue' => 'din',
'wed' => 'woe',
'thu' => 'don',
'fri' => 'vri',
'sat' => 'zat',
// Long day names
'sunday' => 'zondag',
'monday' => 'maandag',
'tuesday' => 'dinsdag',
'wednesday' => 'woensdag',
'thursday' => 'donderdag',
'friday' => 'vrijdag',
'saturday' => 'zaterdag',
// Short month names
'jan' => 'jan',
'feb' => 'feb',
'mar' => 'maa',
'apr' => 'apr',
'may' => 'mei',
'jun' => 'jun',
'jul' => 'jul',
'aug' => 'aug',
'sep' => 'sep',
'oct' => 'okt',
'nov' => 'nov',
'dec' => 'dec',
// Long month names
'january' => 'januari',
'february' => 'februari',
'march' => 'maart',
'april' => 'april',
'mayl' => 'mei',
'june' => 'juni',
'july' => 'juli',
'august' => 'augustus',
'september' => 'september',
'october' => 'oktober',
'november' => 'november',
'december' => 'december',
);