blob: f8630d53b53b0225f4763c82417e5f276f1c6206 [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 * - leyluj
15 * - Josh Soref
16 * - ryanhart2
17 */
18return [
19 'year' => 'mwaka :count|miaka :count',
20 'a_year' => 'mwaka mmoja|miaka :count',
21 'y' => 'mwaka :count|miaka :count',
22 'month' => 'mwezi :count|miezi :count',
23 'a_month' => 'mwezi mmoja|miezi :count',
24 'm' => 'mwezi :count|miezi :count',
25 'week' => 'wiki :count',
26 'a_week' => 'wiki mmoja|wiki :count',
27 'w' => 'w. :count',
28 'day' => 'siku :count',
29 'a_day' => 'siku moja|masiku :count',
30 'd' => 'si. :count',
31 'hour' => 'saa :count|masaa :count',
32 'a_hour' => 'saa limoja|masaa :count',
33 'h' => 'saa :count|masaa :count',
34 'minute' => 'dakika :count',
35 'a_minute' => 'dakika moja|dakika :count',
36 'min' => 'd. :count',
37 'second' => 'sekunde :count',
38 'a_second' => 'hivi punde|sekunde :count',
39 's' => 'se. :count',
40 'ago' => 'tokea :time',
41 'from_now' => ':time baadaye',
42 'after' => ':time baada',
43 'before' => ':time kabla',
44 'diff_now' => 'sasa hivi',
45 'diff_today' => 'leo',
46 'diff_today_regexp' => 'leo(?:\\s+saa)?',
47 'diff_yesterday' => 'jana',
48 'diff_tomorrow' => 'kesho',
49 'diff_tomorrow_regexp' => 'kesho(?:\\s+saa)?',
50 'formats' => [
51 'LT' => 'HH:mm',
52 'LTS' => 'HH:mm:ss',
53 'L' => 'DD.MM.YYYY',
54 'LL' => 'D MMMM YYYY',
55 'LLL' => 'D MMMM YYYY HH:mm',
56 'LLLL' => 'dddd, D MMMM YYYY HH:mm',
57 ],
58 'calendar' => [
59 'sameDay' => '[leo saa] LT',
60 'nextDay' => '[kesho saa] LT',
61 'nextWeek' => '[wiki ijayo] dddd [saat] LT',
62 'lastDay' => '[jana] LT',
63 'lastWeek' => '[wiki iliyopita] dddd [saat] LT',
64 'sameElse' => 'L',
65 ],
66 'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
67 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
68 'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],
69 'weekdays_short' => ['Jpl', 'Jtat', 'Jnne', 'Jtan', 'Alh', 'Ijm', 'Jmos'],
70 'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'],
71 'first_day_of_week' => 1,
72 'day_of_first_week_of_year' => 1,
73 'list' => [', ', ' na '],
74];