blob: a26e35062c7aba8274a4d81f76a586c7b4500e14 [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 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010011
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020012return array_replace_recursive(require __DIR__.'/en.php', [
13 'months' => ['ינואר', 'פברואר', 'מרץ', 'אפריל', 'מאי', 'יוני', 'יולי', 'אוגוסט', 'ספטמבר', 'אוקטובר', 'נובמבר', 'דצמבר'],
14 'months_short' => ['ינו׳', 'פבר׳', 'מרץ', 'אפר׳', 'מאי', 'יוני', 'יולי', 'אוג׳', 'ספט׳', 'אוק׳', 'נוב׳', 'דצמ׳'],
15 'weekdays' => ['יום ראשון', 'יום שני', 'יום שלישי', 'יום רביעי', 'יום חמישי', 'יום שישי', 'יום שבת'],
16 'weekdays_short' => ['יום א׳', 'יום ב׳', 'יום ג׳', 'יום ד׳', 'יום ה׳', 'יום ו׳', 'שבת'],
17 'weekdays_min' => ['א׳', 'ב׳', 'ג׳', 'ד׳', 'ה׳', 'ו׳', 'ש׳'],
18 'meridiem' => ['לפנה״צ', 'אחה״צ'],
19 'formats' => [
20 'LT' => 'H:mm',
21 'LTS' => 'H:mm:ss',
22 'L' => 'D.M.YYYY',
23 'LL' => 'D בMMM YYYY',
24 'LLL' => 'D בMMMM YYYY H:mm',
25 'LLLL' => 'dddd, D בMMMM YYYY H:mm',
26 ],
27
28 'year' => ':count שנה',
29 'y' => ':count שנה',
30 'a_year' => ':count שנה',
31
32 'month' => ':count חודש',
33 'm' => ':count חודש',
34 'a_month' => ':count חודש',
35
36 'week' => ':count שבוע',
37 'w' => ':count שבוע',
38 'a_week' => ':count שבוע',
39
40 'day' => ':count יום',
41 'd' => ':count יום',
42 'a_day' => ':count יום',
43
44 'hour' => ':count שעה',
45 'h' => ':count שעה',
46 'a_hour' => ':count שעה',
47
48 'minute' => ':count דקה',
49 'min' => ':count דקה',
50 'a_minute' => ':count דקה',
51
52 'second' => ':count שניה',
53 's' => ':count שניה',
54 'a_second' => ':count שניה',
55
56 'ago' => 'לפני :time',
57 'from_now' => 'בעוד :time',
58]);