blob: 7c4b92a55d85ed27dba22074020d85307a2bb2cb [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 * - François B
15 * - Karamell
16 */
17return [
18 'year' => '{1}:count jahki|:count jagit',
19 'a_year' => '{1}okta jahki|:count jagit',
20 'y' => ':count j.',
21 'month' => '{1}:count mánnu|:count mánut',
22 'a_month' => '{1}okta mánnu|:count mánut',
23 'm' => ':count mán.',
24 'week' => '{1}:count vahkku|:count vahkku',
25 'a_week' => '{1}okta vahkku|:count vahkku',
26 'w' => ':count v.',
27 'day' => '{1}:count beaivi|:count beaivvit',
28 'a_day' => '{1}okta beaivi|:count beaivvit',
29 'd' => ':count b.',
30 'hour' => '{1}:count diimmu|:count diimmut',
31 'a_hour' => '{1}okta diimmu|:count diimmut',
32 'h' => ':count d.',
33 'minute' => '{1}:count minuhta|:count minuhtat',
34 'a_minute' => '{1}okta minuhta|:count minuhtat',
35 'min' => ':count min.',
36 'second' => '{1}:count sekunddat|:count sekunddat',
37 'a_second' => '{1}moadde sekunddat|:count sekunddat',
38 's' => ':count s.',
39 'ago' => 'maŋit :time',
40 'from_now' => ':time geažes',
41 'diff_yesterday' => 'ikte',
42 'diff_yesterday_regexp' => 'ikte(?:\\s+ti)?',
43 'diff_today' => 'otne',
44 'diff_today_regexp' => 'otne(?:\\s+ti)?',
45 'diff_tomorrow' => 'ihttin',
46 'diff_tomorrow_regexp' => 'ihttin(?:\\s+ti)?',
47 'formats' => [
48 'LT' => 'HH:mm',
49 'LTS' => 'HH:mm:ss',
50 'L' => 'DD.MM.YYYY',
51 'LL' => 'MMMM D. [b.] YYYY',
52 'LLL' => 'MMMM D. [b.] YYYY [ti.] HH:mm',
53 'LLLL' => 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm',
54 ],
55 'calendar' => [
56 'sameDay' => '[otne ti] LT',
57 'nextDay' => '[ihttin ti] LT',
58 'nextWeek' => 'dddd [ti] LT',
59 'lastDay' => '[ikte ti] LT',
60 'lastWeek' => '[ovddit] dddd [ti] LT',
61 'sameElse' => 'L',
62 ],
63 'ordinal' => ':number.',
64 'months' => ['ođđajagemánnu', 'guovvamánnu', 'njukčamánnu', 'cuoŋománnu', 'miessemánnu', 'geassemánnu', 'suoidnemánnu', 'borgemánnu', 'čakčamánnu', 'golggotmánnu', 'skábmamánnu', 'juovlamánnu'],
65 'months_short' => ['ođđj', 'guov', 'njuk', 'cuo', 'mies', 'geas', 'suoi', 'borg', 'čakč', 'golg', 'skáb', 'juov'],
66 'weekdays' => ['sotnabeaivi', 'vuossárga', 'maŋŋebárga', 'gaskavahkku', 'duorastat', 'bearjadat', 'lávvardat'],
67 'weekdays_short' => ['sotn', 'vuos', 'maŋ', 'gask', 'duor', 'bear', 'láv'],
68 'weekdays_min' => ['s', 'v', 'm', 'g', 'd', 'b', 'L'],
69 'first_day_of_week' => 1,
70 'day_of_first_week_of_year' => 4,
71 'list' => [', ', ' ja '],
72 'meridiem' => ['i.b.', 'e.b.'],
73];