blob: a8034e8377645794efb91433710c87556c9c94db [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 */
11return array_replace_recursive(require __DIR__.'/en.php', [
12 'months' => ['ינואר', 'פברואר', 'מרץ', 'אפריל', 'מאי', 'יוני', 'יולי', 'אוגוסט', 'ספטמבר', 'אוקטובר', 'נובמבר', 'דצמבר'],
13 'months_short' => ['ינו׳', 'פבר׳', 'מרץ', 'אפר׳', 'מאי', 'יוני', 'יולי', 'אוג׳', 'ספט׳', 'אוק׳', 'נוב׳', 'דצמ׳'],
14 'weekdays' => ['יום ראשון', 'יום שני', 'יום שלישי', 'יום רביעי', 'יום חמישי', 'יום שישי', 'יום שבת'],
15 'weekdays_short' => ['יום א׳', 'יום ב׳', 'יום ג׳', 'יום ד׳', 'יום ה׳', 'יום ו׳', 'שבת'],
16 'weekdays_min' => ['א׳', 'ב׳', 'ג׳', 'ד׳', 'ה׳', 'ו׳', 'ש׳'],
17 'meridiem' => ['לפנה״צ', 'אחה״צ'],
18 'formats' => [
19 'LT' => 'H:mm',
20 'LTS' => 'H:mm:ss',
21 'L' => 'D.M.YYYY',
22 'LL' => 'D בMMM YYYY',
23 'LLL' => 'D בMMMM YYYY H:mm',
24 'LLLL' => 'dddd, D בMMMM YYYY H:mm',
25 ],
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
55 'ago' => 'לפני :time',
56 'from_now' => 'בעוד :time',
57]);