2017-01-02 11:02:13 +01:00
|
|
|
<?php
|
2017-08-12 10:41:10 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-01-02 11:02:13 +01:00
|
|
|
/**
|
|
|
|
* config.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2017-02-06 13:20:51 +01:00
|
|
|
'locale' => 'pl, Polish, polski, pl_PL, pl_PL.utf8, pl_PL.UTF-8',
|
2017-01-02 11:02:13 +01:00
|
|
|
'month' => '%B %Y',
|
2017-01-04 14:52:14 +01:00
|
|
|
'month_and_day' => '%e %B %Y',
|
2017-08-23 19:50:07 +02:00
|
|
|
'date_time' => '%e %B %Y o %T',
|
2017-01-02 11:02:13 +01:00
|
|
|
'specific_day' => '%e %B %Y',
|
2017-01-02 12:21:45 +01:00
|
|
|
'week_in_year' => 'Tydzień %W, %Y',
|
2017-01-02 11:02:13 +01:00
|
|
|
'quarter_of_year' => '%B %Y',
|
|
|
|
'year' => '%Y',
|
|
|
|
'half_year' => '%B %Y',
|
|
|
|
|
2017-02-19 12:10:49 +01:00
|
|
|
];
|