blob: 4b0b5410b6771fb3f0f56270222baf709181252f [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - szl_PL locale Przemyslaw Buczkowski libc-alpha@sourceware.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['styczyń', 'luty', 'merc', 'kwjeciyń', 'moj', 'czyrwjyń', 'lipjyń', 'siyrpjyń', 'wrzesiyń', 'październik', 'listopad', 'grudziyń'],
21 'months_short' => ['sty', 'lut', 'mer', 'kwj', 'moj', 'czy', 'lip', 'siy', 'wrz', 'paź', 'lis', 'gru'],
22 'weekdays' => ['niydziela', 'pyńdziŏek', 'wtŏrek', 'strzŏda', 'sztwortek', 'pjōntek', 'sobŏta'],
23 'weekdays_short' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'],
24 'weekdays_min' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'year' => ':count rok',
29 'y' => ':count rok',
30 'a_year' => ':count rok',
31
32 'month' => ':count mjeśůnc',
33 'm' => ':count mjeśůnc',
34 'a_month' => ':count mjeśůnc',
35
36 'week' => ':count Tydźyń',
37 'w' => ':count Tydźyń',
38 'a_week' => ':count Tydźyń',
39
40 'day' => ':count dźyń',
41 'd' => ':count dźyń',
42 'a_day' => ':count dźyń',
43
44 'hour' => ':count godzina',
45 'h' => ':count godzina',
46 'a_hour' => ':count godzina',
47
48 'minute' => ':count Minuta',
49 'min' => ':count Minuta',
50 'a_minute' => ':count Minuta',
51
52 'second' => ':count Sekůnda',
53 's' => ':count Sekůnda',
54 'a_second' => ':count Sekůnda',
55]);