blob: b4c1706f9115e41ce1d1fc579b91df3a8c3d9cc5 [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 * Unknown default region, use the first alphabetically.
14 */
15return [
16 'formats' => [
17 'LT' => 'HH.mm',
18 'LTS' => 'HH.mm:ss',
19 'L' => 'DD-MM-YY',
20 'LL' => 'MMMM [di] DD, YYYY',
21 'LLL' => 'DD MMM HH.mm',
22 'LLLL' => 'MMMM DD, YYYY HH.mm',
23 ],
24 'months' => ['yanüari', 'febrüari', 'mart', 'aprel', 'mei', 'yüni', 'yüli', 'ougùstùs', 'sèptèmber', 'oktober', 'novèmber', 'desèmber'],
25 'months_short' => ['yan', 'feb', 'mar', 'apr', 'mei', 'yün', 'yül', 'oug', 'sèp', 'okt', 'nov', 'des'],
26 'weekdays' => ['djadomingo', 'djaluna', 'djamars', 'djawebs', 'djarason', 'djabierne', 'djasabra'],
27 'weekdays_short' => ['do', 'lu', 'ma', 'we', 'ra', 'bi', 'sa'],
28 'weekdays_min' => ['do', 'lu', 'ma', 'we', 'ra', 'bi', 'sa'],
29 'first_day_of_week' => 1,
30 'day_of_first_week_of_year' => 1,
31 'year' => ':count aña',
32 'month' => ':count luna',
33 'week' => ':count siman',
34 'day' => ':count dia',
35 'hour' => ':count ora',
36 'minute' => ':count minüt',
37 'second' => ':count sekònde',
38 'list' => [', ', ' i '],
39];