blob: 6ba227161bf636d82c8755961fc0e2e35e237d46 [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 * - Information from Michael Wolf Andrzej Krzysztofowicz ankry@mif.pg.gda.pl
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'LT' => 'HH:mm',
19 'LTS' => 'HH:mm:ss',
20 'L' => 'DD.MM.YYYY',
21 'LL' => 'DD. MMMM YYYY',
22 'LLL' => 'DD. MMMM, HH:mm [hodź.]',
23 'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [hodź.]',
24 ],
25 'months' => ['januara', 'februara', 'měrca', 'apryla', 'meje', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'],
26 'months_short' => ['Jan', 'Feb', 'Měr', 'Apr', 'Mej', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'],
27 'weekdays' => ['Njedźela', 'Póndźela', 'Wutora', 'Srjeda', 'Štvórtk', 'Pjatk', 'Sobota'],
28 'weekdays_short' => ['Nj', 'Pó', 'Wu', 'Sr', 'Št', 'Pj', 'So'],
29 'weekdays_min' => ['Nj', 'Pó', 'Wu', 'Sr', 'Št', 'Pj', 'So'],
30 'first_day_of_week' => 1,
31 'day_of_first_week_of_year' => 4,
32
33 'year' => ':count lěto',
34 'y' => ':count lěto',
35 'a_year' => ':count lěto',
36
37 'month' => ':count měsac',
38 'm' => ':count měsac',
39 'a_month' => ':count měsac',
40
41 'week' => ':count tydźeń',
42 'w' => ':count tydźeń',
43 'a_week' => ':count tydźeń',
44
45 'day' => ':count dźeń',
46 'd' => ':count dźeń',
47 'a_day' => ':count dźeń',
48
49 'hour' => ':count hodźina',
50 'h' => ':count hodźina',
51 'a_hour' => ':count hodźina',
52
53 'minute' => ':count chwila',
54 'min' => ':count chwila',
55 'a_minute' => ':count chwila',
56
57 'second' => ':count druhi',
58 's' => ':count druhi',
59 'a_second' => ':count druhi',
60]);