blob: f764d36f676af9f512069da9c4ef2d39cde16c76 [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 * - http://www.uyip.org/ Pablo Saratxaga pablo@mandrakesoft.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['יאַנואַר', 'פֿעברואַר', 'מערץ', 'אַפּריל', 'מיי', 'יוני', 'יולי', 'אויגוסט', 'סעפּטעמבער', 'אקטאבער', 'נאוועמבער', 'דעצעמבער'],
21 'months_short' => ['יאַנ', 'פֿעב', 'מאַר', 'אַפּר', 'מײַ ', 'יונ', 'יול', 'אױג', 'סעפּ', 'אָקט', 'נאָװ', 'דעצ'],
22 'weekdays' => ['זונטיק', 'מאָנטיק', 'דינסטיק', 'מיטװאָך', 'דאָנערשטיק', 'פֿרײַטיק', 'שבת'],
23 'weekdays_short' => ['זונ\'', 'מאָנ\'', 'דינ\'', 'מיט\'', 'דאָנ\'', 'פֿרײַ\'', 'שבת'],
24 'weekdays_min' => ['זונ\'', 'מאָנ\'', 'דינ\'', 'מיט\'', 'דאָנ\'', 'פֿרײַ\'', 'שבת'],
25 'day_of_first_week_of_year' => 1,
26
27 'year' => ':count יאר',
28 'y' => ':count יאר',
29 'a_year' => ':count יאר',
30
31 'month' => ':count חודש',
32 'm' => ':count חודש',
33 'a_month' => ':count חודש',
34
35 'week' => ':count וואָך',
36 'w' => ':count וואָך',
37 'a_week' => ':count וואָך',
38
39 'day' => ':count טאָג',
40 'd' => ':count טאָג',
41 'a_day' => ':count טאָג',
42
43 'hour' => ':count שעה',
44 'h' => ':count שעה',
45 'a_hour' => ':count שעה',
46
47 'minute' => ':count מינוט',
48 'min' => ':count מינוט',
49 'a_minute' => ':count מינוט',
50
51 'second' => ':count סעקונדע',
52 's' => ':count סעקונדע',
53 'a_second' => ':count סעקונדע',
54]);