blob: ffa592ecf90bff345de947affc9db5732bec4229 [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 * - JD Isaacks
16 * - Fadion Dashi
17 */
18return [
19 'year' => ':count vit|:count vjet',
20 'a_year' => 'një vit|:count vite',
21 'y' => ':count v.',
22 'month' => ':count muaj',
23 'a_month' => 'një muaj|:count muaj',
24 'm' => ':count muaj',
25 'week' => ':count javë',
26 'a_week' => ':count javë|:count javë',
27 'w' => ':count j.',
28 'day' => ':count ditë',
29 'a_day' => 'një ditë|:count ditë',
30 'd' => ':count d.',
31 'hour' => ':count orë',
32 'a_hour' => 'një orë|:count orë',
33 'h' => ':count o.',
34 'minute' => ':count minutë|:count minuta',
35 'a_minute' => 'një minutë|:count minuta',
36 'min' => ':count min.',
37 'second' => ':count sekondë|:count sekonda',
38 'a_second' => 'disa sekonda|:count sekonda',
39 's' => ':count s.',
40 'ago' => ':time më parë',
41 'from_now' => 'në :time',
42 'after' => ':time pas',
43 'before' => ':time para',
44 'diff_now' => 'tani',
45 'diff_today' => 'Sot',
46 'diff_today_regexp' => 'Sot(?:\\s+në)?',
47 'diff_yesterday' => 'dje',
48 'diff_yesterday_regexp' => 'Dje(?:\\s+në)?',
49 'diff_tomorrow' => 'nesër',
50 'diff_tomorrow_regexp' => 'Nesër(?:\\s+në)?',
51 'diff_before_yesterday' => 'pardje',
52 'diff_after_tomorrow' => 'pasnesër',
53 'formats' => [
54 'LT' => 'HH:mm',
55 'LTS' => 'HH:mm:ss',
56 'L' => 'DD/MM/YYYY',
57 'LL' => 'D MMMM YYYY',
58 'LLL' => 'D MMMM YYYY HH:mm',
59 'LLLL' => 'dddd, D MMMM YYYY HH:mm',
60 ],
61 'calendar' => [
62 'sameDay' => '[Sot në] LT',
63 'nextDay' => '[Nesër në] LT',
64 'nextWeek' => 'dddd [në] LT',
65 'lastDay' => '[Dje në] LT',
66 'lastWeek' => 'dddd [e kaluar në] LT',
67 'sameElse' => 'L',
68 ],
69 'ordinal' => ':number.',
70 'meridiem' => ['PD', 'MD'],
71 'months' => ['janar', 'shkurt', 'mars', 'prill', 'maj', 'qershor', 'korrik', 'gusht', 'shtator', 'tetor', 'nëntor', 'dhjetor'],
72 'months_short' => ['jan', 'shk', 'mar', 'pri', 'maj', 'qer', 'kor', 'gus', 'sht', 'tet', 'nën', 'dhj'],
73 'weekdays' => ['e diel', 'e hënë', 'e martë', 'e mërkurë', 'e enjte', 'e premte', 'e shtunë'],
74 'weekdays_short' => ['die', 'hën', 'mar', 'mër', 'enj', 'pre', 'sht'],
75 'weekdays_min' => ['d', 'h', 'ma', 'më', 'e', 'p', 'sh'],
76 'first_day_of_week' => 1,
77 'day_of_first_week_of_year' => 4,
78 'list' => [', ', ' dhe '],
79];