blob: 868a3279df25e2b2dc8198bc3c8a39e4fcfc601b [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 * - JD Isaacks
16 * - Cătălin Georgescu
17 * - Valentin Ivaşcu (oriceon)
18 */
19return [
20 'year' => ':count an|:count ani|:count ani',
21 'a_year' => 'un an|:count ani|:count ani',
22 'y' => ':count a.',
23 'month' => ':count lună|:count luni|:count luni',
24 'a_month' => 'o lună|:count luni|:count luni',
25 'm' => ':count l.',
26 'week' => ':count săptămână|:count săptămâni|:count săptămâni',
27 'a_week' => 'o săptămână|:count săptămâni|:count săptămâni',
28 'w' => ':count săp.',
29 'day' => ':count zi|:count zile|:count zile',
30 'a_day' => 'o zi|:count zile|:count zile',
31 'd' => ':count z.',
32 'hour' => ':count oră|:count ore|:count ore',
33 'a_hour' => 'o oră|:count ore|:count ore',
34 'h' => ':count o.',
35 'minute' => ':count minut|:count minute|:count minute',
36 'a_minute' => 'un minut|:count minute|:count minute',
37 'min' => ':count m.',
38 'second' => ':count secundă|:count secunde|:count secunde',
39 'a_second' => 'câteva secunde|:count secunde|:count secunde',
40 's' => ':count sec.',
41 'ago' => ':time în urmă',
42 'from_now' => 'peste :time',
43 'after' => 'peste :time',
44 'before' => 'acum :time',
45 'diff_now' => 'acum',
46 'diff_today' => 'azi',
47 'diff_today_regexp' => 'azi(?:\\s+la)?',
48 'diff_yesterday' => 'ieri',
49 'diff_yesterday_regexp' => 'ieri(?:\\s+la)?',
50 'diff_tomorrow' => 'mâine',
51 'diff_tomorrow_regexp' => 'mâine(?:\\s+la)?',
52 'formats' => [
53 'LT' => 'H:mm',
54 'LTS' => 'H:mm:ss',
55 'L' => 'DD.MM.YYYY',
56 'LL' => 'D MMMM YYYY',
57 'LLL' => 'D MMMM YYYY H:mm',
58 'LLLL' => 'dddd, D MMMM YYYY H:mm',
59 ],
60 'calendar' => [
61 'sameDay' => '[azi la] LT',
62 'nextDay' => '[mâine la] LT',
63 'nextWeek' => 'dddd [la] LT',
64 'lastDay' => '[ieri la] LT',
65 'lastWeek' => '[fosta] dddd [la] LT',
66 'sameElse' => 'L',
67 ],
68 'months' => ['ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie', 'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'],
69 'months_short' => ['ian.', 'feb.', 'mar.', 'apr.', 'mai', 'iun.', 'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'],
70 'weekdays' => ['duminică', 'luni', 'marți', 'miercuri', 'joi', 'vineri', 'sâmbătă'],
71 'weekdays_short' => ['dum', 'lun', 'mar', 'mie', 'joi', 'vin', 'sâm'],
72 'weekdays_min' => ['du', 'lu', 'ma', 'mi', 'jo', 'vi', 'sâ'],
73 'first_day_of_week' => 1,
74 'day_of_first_week_of_year' => 1,
75 'list' => [', ', ' și '],
76 'meridiem' => ['a.m.', 'p.m.'],
77];