blob: 7c2efba2dbc1e68eab23b3d7a1bba1b9f6760680 [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 * - Josh Soref
15 * - François B
16 * - Mia Nordentoft
17 * - JD Isaacks
18 */
19return [
20 'year' => ':count jaro|:count jaroj',
21 'a_year' => 'jaro|:count jaroj',
22 'y' => ':count j.',
23 'month' => ':count monato|:count monatoj',
24 'a_month' => 'monato|:count monatoj',
25 'm' => ':count mo.',
26 'week' => ':count semajno|:count semajnoj',
27 'a_week' => 'semajno|:count semajnoj',
28 'w' => ':count sem.',
29 'day' => ':count tago|:count tagoj',
30 'a_day' => 'tago|:count tagoj',
31 'd' => ':count t.',
32 'hour' => ':count horo|:count horoj',
33 'a_hour' => 'horo|:count horoj',
34 'h' => ':count h.',
35 'minute' => ':count minuto|:count minutoj',
36 'a_minute' => 'minuto|:count minutoj',
37 'min' => ':count min.',
38 'second' => ':count sekundo|:count sekundoj',
39 'a_second' => 'sekundoj|:count sekundoj',
40 's' => ':count sek.',
41 'ago' => 'antaŭ :time',
42 'from_now' => 'post :time',
43 'after' => ':time poste',
44 'before' => ':time antaŭe',
45 'diff_yesterday' => 'Hieraŭ',
46 'diff_yesterday_regexp' => 'Hieraŭ(?:\\s+je)?',
47 'diff_today' => 'Hodiaŭ',
48 'diff_today_regexp' => 'Hodiaŭ(?:\\s+je)?',
49 'diff_tomorrow' => 'Morgaŭ',
50 'diff_tomorrow_regexp' => 'Morgaŭ(?:\\s+je)?',
51 'formats' => [
52 'LT' => 'HH:mm',
53 'LTS' => 'HH:mm:ss',
54 'L' => 'YYYY-MM-DD',
55 'LL' => 'D[-a de] MMMM, YYYY',
56 'LLL' => 'D[-a de] MMMM, YYYY HH:mm',
57 'LLLL' => 'dddd, [la] D[-a de] MMMM, YYYY HH:mm',
58 ],
59 'calendar' => [
60 'sameDay' => '[Hodiaŭ je] LT',
61 'nextDay' => '[Morgaŭ je] LT',
62 'nextWeek' => 'dddd [je] LT',
63 'lastDay' => '[Hieraŭ je] LT',
64 'lastWeek' => '[pasinta] dddd [je] LT',
65 'sameElse' => 'L',
66 ],
67 'ordinal' => ':numbera',
68 'meridiem' => ['a.t.m.', 'p.t.m.'],
69 'months' => ['januaro', 'februaro', 'marto', 'aprilo', 'majo', 'junio', 'julio', 'aŭgusto', 'septembro', 'oktobro', 'novembro', 'decembro'],
70 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aŭg', 'sep', 'okt', 'nov', 'dec'],
71 'weekdays' => ['dimanĉo', 'lundo', 'mardo', 'merkredo', 'ĵaŭdo', 'vendredo', 'sabato'],
72 'weekdays_short' => ['dim', 'lun', 'mard', 'merk', 'ĵaŭ', 'ven', 'sab'],
73 'weekdays_min' => ['di', 'lu', 'ma', 'me', 'ĵa', 've', 'sa'],
74 'first_day_of_week' => 1,
75 'day_of_first_week_of_year' => 1,
76 'list' => [', ', ' kaj '],
77];