blob: a543f1a67a981153ebdd1ef94d582bae3cf91b46 [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 * - JD Isaacks
17 */
18return [
19 'year' => 'urte bat|:count urte',
20 'y' => 'Urte 1|:count urte',
21 'month' => 'hilabete bat|:count hilabete',
22 'm' => 'Hile 1|:count hile',
23 'week' => 'Aste 1|:count aste',
24 'w' => 'Aste 1|:count aste',
25 'day' => 'egun bat|:count egun',
26 'd' => 'Egun 1|:count egun',
27 'hour' => 'ordu bat|:count ordu',
28 'h' => 'Ordu 1|:count ordu',
29 'minute' => 'minutu bat|:count minutu',
30 'min' => 'Minutu 1|:count minutu',
31 'second' => 'segundo batzuk|:count segundo',
32 's' => 'Segundu 1|:count segundu',
33 'ago' => 'duela :time',
34 'from_now' => ':time barru',
35 'after' => ':time geroago',
36 'before' => ':time lehenago',
37 'diff_now' => 'orain',
38 'diff_today' => 'gaur',
39 'diff_yesterday' => 'atzo',
40 'diff_tomorrow' => 'bihar',
41 'formats' => [
42 'LT' => 'HH:mm',
43 'LTS' => 'HH:mm:ss',
44 'L' => 'YYYY-MM-DD',
45 'LL' => 'YYYY[ko] MMMM[ren] D[a]',
46 'LLL' => 'YYYY[ko] MMMM[ren] D[a] HH:mm',
47 'LLLL' => 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
48 ],
49 'calendar' => [
50 'sameDay' => '[gaur] LT[etan]',
51 'nextDay' => '[bihar] LT[etan]',
52 'nextWeek' => 'dddd LT[etan]',
53 'lastDay' => '[atzo] LT[etan]',
54 'lastWeek' => '[aurreko] dddd LT[etan]',
55 'sameElse' => 'L',
56 ],
57 'ordinal' => ':number.',
58 'months' => ['urtarrila', 'otsaila', 'martxoa', 'apirila', 'maiatza', 'ekaina', 'uztaila', 'abuztua', 'iraila', 'urria', 'azaroa', 'abendua'],
59 'months_short' => ['urt.', 'ots.', 'mar.', 'api.', 'mai.', 'eka.', 'uzt.', 'abu.', 'ira.', 'urr.', 'aza.', 'abe.'],
60 'weekdays' => ['igandea', 'astelehena', 'asteartea', 'asteazkena', 'osteguna', 'ostirala', 'larunbata'],
61 'weekdays_short' => ['ig.', 'al.', 'ar.', 'az.', 'og.', 'ol.', 'lr.'],
62 'weekdays_min' => ['ig', 'al', 'ar', 'az', 'og', 'ol', 'lr'],
63 'first_day_of_week' => 1,
64 'day_of_first_week_of_year' => 1,
65 'list' => [', ', ' eta '],
66 'meridiem' => ['g', 'a'],
67];