blob: bcbe044e3b81d425f214d4d6bb8c585266a41a2d [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 * - tgfjt
16 * - JD Isaacks
17 */
18return [
19 'year' => '{1}setaun|]1,Inf[:count taun',
20 'month' => '{1}sewulan|]1,Inf[:count wulan',
21 'week' => '{1}sakminggu|]1,Inf[:count minggu',
22 'day' => '{1}sedinten|]1,Inf[:count dinten',
23 'hour' => '{1}setunggal jam|]1,Inf[:count jam',
24 'minute' => '{1}setunggal menit|]1,Inf[:count menit',
25 'second' => '{1}sawetawis detik|]1,Inf[:count detik',
26 'ago' => ':time ingkang kepengker',
27 'from_now' => 'wonten ing :time',
28 'diff_today' => 'Dinten',
29 'diff_yesterday' => 'Kala',
30 'diff_yesterday_regexp' => 'Kala(?:\\s+wingi)?(?:\\s+pukul)?',
31 'diff_tomorrow' => 'Mbenjang',
32 'diff_tomorrow_regexp' => 'Mbenjang(?:\\s+pukul)?',
33 'diff_today_regexp' => 'Dinten(?:\\s+puniko)?(?:\\s+pukul)?',
34 'formats' => [
35 'LT' => 'HH.mm',
36 'LTS' => 'HH.mm.ss',
37 'L' => 'DD/MM/YYYY',
38 'LL' => 'D MMMM YYYY',
39 'LLL' => 'D MMMM YYYY [pukul] HH.mm',
40 'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm',
41 ],
42 'calendar' => [
43 'sameDay' => '[Dinten puniko pukul] LT',
44 'nextDay' => '[Mbenjang pukul] LT',
45 'nextWeek' => 'dddd [pukul] LT',
46 'lastDay' => '[Kala wingi pukul] LT',
47 'lastWeek' => 'dddd [kepengker pukul] LT',
48 'sameElse' => 'L',
49 ],
50 'meridiem' => function ($hour) {
51 if ($hour < 11) {
52 return 'enjing';
53 }
54 if ($hour < 15) {
55 return 'siyang';
56 }
57 if ($hour < 19) {
58 return 'sonten';
59 }
60
61 return 'ndalu';
62 },
63 'months' => ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'Nopember', 'Desember'],
64 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ags', 'Sep', 'Okt', 'Nop', 'Des'],
65 'weekdays' => ['Minggu', 'Senen', 'Seloso', 'Rebu', 'Kemis', 'Jemuwah', 'Septu'],
66 'weekdays_short' => ['Min', 'Sen', 'Sel', 'Reb', 'Kem', 'Jem', 'Sep'],
67 'weekdays_min' => ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sp'],
68 'first_day_of_week' => 1,
69 'day_of_first_week_of_year' => 1,
70 'list' => [', ', ' lan '],
71];