blob: 48715f5c595a84897c8eb9fcac47d031c2982b33 [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 * - ryanhart2
16 */
17return [
18 'year' => ':count ປີ',
19 'y' => ':count ປີ',
20 'month' => ':count ເດືອນ',
21 'm' => ':count ດ. ',
22 'week' => ':count ອາທິດ',
23 'w' => ':count ອທ. ',
24 'day' => ':count ມື້',
25 'd' => ':count ມື້',
26 'hour' => ':count ຊົ່ວໂມງ',
27 'h' => ':count ຊມ. ',
28 'minute' => ':count ນາທີ',
29 'min' => ':count ນທ. ',
30 'second' => '{1}ບໍ່ເທົ່າໃດວິນາທີ|]1,Inf[:count ວິນາທີ',
31 's' => ':count ວິ. ',
32 'ago' => ':timeຜ່ານມາ',
33 'from_now' => 'ອີກ :time',
34 'diff_now' => 'ຕອນນີ້',
35 'diff_today' => 'ມື້ນີ້ເວລາ',
36 'diff_yesterday' => 'ມື້ວານນີ້ເວລາ',
37 'diff_tomorrow' => 'ມື້ອື່ນເວລາ',
38 'formats' => [
39 'LT' => 'HH:mm',
40 'LTS' => 'HH:mm:ss',
41 'L' => 'DD/MM/YYYY',
42 'LL' => 'D MMMM YYYY',
43 'LLL' => 'D MMMM YYYY HH:mm',
44 'LLLL' => 'ວັນdddd D MMMM YYYY HH:mm',
45 ],
46 'calendar' => [
47 'sameDay' => '[ມື້ນີ້ເວລາ] LT',
48 'nextDay' => '[ມື້ອື່ນເວລາ] LT',
49 'nextWeek' => '[ວັນ]dddd[ໜ້າເວລາ] LT',
50 'lastDay' => '[ມື້ວານນີ້ເວລາ] LT',
51 'lastWeek' => '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',
52 'sameElse' => 'L',
53 ],
54 'ordinal' => 'ທີ່:number',
55 'meridiem' => ['ຕອນເຊົ້າ', 'ຕອນແລງ'],
56 'months' => ['ມັງກອນ', 'ກຸມພາ', 'ມີນາ', 'ເມສາ', 'ພຶດສະພາ', 'ມິຖຸນາ', 'ກໍລະກົດ', 'ສິງຫາ', 'ກັນຍາ', 'ຕຸລາ', 'ພະຈິກ', 'ທັນວາ'],
57 'months_short' => ['ມັງກອນ', 'ກຸມພາ', 'ມີນາ', 'ເມສາ', 'ພຶດສະພາ', 'ມິຖຸນາ', 'ກໍລະກົດ', 'ສິງຫາ', 'ກັນຍາ', 'ຕຸລາ', 'ພະຈິກ', 'ທັນວາ'],
58 'weekdays' => ['ອາທິດ', 'ຈັນ', 'ອັງຄານ', 'ພຸດ', 'ພະຫັດ', 'ສຸກ', 'ເສົາ'],
59 'weekdays_short' => ['ທິດ', 'ຈັນ', 'ອັງຄານ', 'ພຸດ', 'ພະຫັດ', 'ສຸກ', 'ເສົາ'],
60 'weekdays_min' => ['ທ', 'ຈ', 'ອຄ', 'ພ', 'ພຫ', 'ສກ', 'ສ'],
61 'list' => [', ', 'ແລະ '],
62];