2015-12-24 08:20:47 +01:00
|
|
|
<?php
|
2017-08-12 10:41:14 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2016-03-07 20:45:59 +01:00
|
|
|
/**
|
|
|
|
|
* config.php
|
2016-04-01 16:46:11 +02:00
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
2016-03-07 20:45:59 +01:00
|
|
|
*
|
2016-10-05 06:52:15 +02:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
|
*
|
|
|
|
|
* See the LICENSE file for details.
|
2016-03-07 20:45:59 +01:00
|
|
|
*/
|
2015-12-24 08:20:47 +01:00
|
|
|
|
|
|
|
|
return [
|
2017-02-06 13:11:28 +01:00
|
|
|
'locale' => 'nl, Dutch, nl_NL, nl_NL.utf8, nl_NL.UTF-8',
|
2016-02-07 08:49:02 +01:00
|
|
|
'month' => '%B %Y',
|
|
|
|
|
'month_and_day' => '%e %B %Y',
|
2016-03-07 20:45:59 +01:00
|
|
|
'date_time' => '%e %B %Y, @ %T',
|
2016-02-07 08:49:02 +01:00
|
|
|
'specific_day' => '%e %B %Y',
|
|
|
|
|
'week_in_year' => 'week %W, %Y',
|
|
|
|
|
'quarter_of_year' => '%B %Y',
|
|
|
|
|
'year' => '%Y',
|
|
|
|
|
'half_year' => '%B %Y',
|
2016-04-23 12:14:24 +02:00
|
|
|
|
2017-09-03 10:41:22 +02:00
|
|
|
];
|