blob: da790ac85268fdf318dd78647b6ca8733c6c6f7e [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 * - Kruy Vanna
15 * - Sereysethy Touch
16 * - JD Isaacks
17 * - Sovichet Tep
18 */
19return [
20 'year' => '{1}មួយឆ្នាំ|]1,Inf[:count ឆ្នាំ',
21 'y' => ':count ឆ្នាំ',
22 'month' => '{1}មួយខែ|]1,Inf[:count ខែ',
23 'm' => ':count ខែ',
24 'week' => ':count សប្ដាហ៍',
25 'w' => ':count សប្ដាហ៍',
26 'day' => '{1}មួយថ្ងៃ|]1,Inf[:count ថ្ងៃ',
27 'd' => ':count ថ្ងៃ',
28 'hour' => '{1}មួយម៉ោង|]1,Inf[:count ម៉ោង',
29 'h' => ':count ម៉ោង',
30 'minute' => '{1}មួយនាទី|]1,Inf[:count នាទី',
31 'min' => ':count នាទី',
32 'second' => '{1}ប៉ុន្មានវិនាទី|]1,Inf[:count វិនាទី',
33 's' => ':count វិនាទី',
34 'ago' => ':timeមុន',
35 'from_now' => ':timeទៀត',
36 'after' => 'នៅ​ក្រោយ :time',
37 'before' => 'នៅ​មុន :time',
38 'diff_now' => 'ឥឡូវ',
39 'diff_today' => 'ថ្ងៃនេះ',
40 'diff_today_regexp' => 'ថ្ងៃនេះ(?:\\s+ម៉ោង)?',
41 'diff_yesterday' => 'ម្សិលមិញ',
42 'diff_yesterday_regexp' => 'ម្សិលមិញ(?:\\s+ម៉ោង)?',
43 'diff_tomorrow' => 'ថ្ងៃ​ស្អែក',
44 'diff_tomorrow_regexp' => 'ស្អែក(?:\\s+ម៉ោង)?',
45 'formats' => [
46 'LT' => 'HH:mm',
47 'LTS' => 'HH:mm:ss',
48 'L' => 'DD/MM/YYYY',
49 'LL' => 'D MMMM YYYY',
50 'LLL' => 'D MMMM YYYY HH:mm',
51 'LLLL' => 'dddd, D MMMM YYYY HH:mm',
52 ],
53 'calendar' => [
54 'sameDay' => '[ថ្ងៃនេះ ម៉ោង] LT',
55 'nextDay' => '[ស្អែក ម៉ោង] LT',
56 'nextWeek' => 'dddd [ម៉ោង] LT',
57 'lastDay' => '[ម្សិលមិញ ម៉ោង] LT',
58 'lastWeek' => 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',
59 'sameElse' => 'L',
60 ],
61 'ordinal' => 'ទី:number',
62 'meridiem' => ['ព្រឹក', 'ល្ងាច'],
63 'months' => ['មករា', 'កុម្ភៈ', 'មីនា', 'មេសា', 'ឧសភា', 'មិថុនា', 'កក្កដា', 'សីហា', 'កញ្ញា', 'តុលា', 'វិច្ឆិកា', 'ធ្នូ'],
64 'months_short' => ['មករា', 'កុម្ភៈ', 'មីនា', 'មេសា', 'ឧសភា', 'មិថុនា', 'កក្កដា', 'សីហា', 'កញ្ញា', 'តុលា', 'វិច្ឆិកា', 'ធ្នូ'],
65 'weekdays' => ['អាទិត្យ', 'ច័ន្ទ', 'អង្គារ', 'ពុធ', 'ព្រហស្បតិ៍', 'សុក្រ', 'សៅរ៍'],
66 'weekdays_short' => ['អា', 'ច', 'អ', 'ព', 'ព្រ', 'សុ', 'ស'],
67 'weekdays_min' => ['អា', 'ច', 'អ', 'ព', 'ព្រ', 'សុ', 'ស'],
68 'first_day_of_week' => 1,
69 'day_of_first_week_of_year' => 4,
70 'list' => [', ', 'និង '],
71];