blob: 5d1e4cecc635147047cd2c0e15a897e81167505f [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 * - Sardinian Translators Team Massimeddu Cireddu massimeddu@gmail.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD. MM. YY',
19 ],
20 'months' => ['Ghennàrgiu', 'Freàrgiu', 'Martzu', 'Abrile', 'Maju', 'Làmpadas', 'Argiolas//Trìulas', 'Austu', 'Cabudanni', 'Santugaine//Ladàmine', 'Onniasantu//Santandria', 'Nadale//Idas'],
21 'months_short' => ['Ghe', 'Fre', 'Mar', 'Abr', 'Maj', 'Làm', 'Arg', 'Aus', 'Cab', 'Lad', 'Onn', 'Nad'],
22 'weekdays' => ['Domìnigu', 'Lunis', 'Martis', 'Mèrcuris', 'Giòbia', 'Chenàbura', 'Sàbadu'],
23 'weekdays_short' => ['Dom', 'Lun', 'Mar', 'Mèr', 'Giò', 'Che', 'Sàb'],
24 'weekdays_min' => ['Dom', 'Lun', 'Mar', 'Mèr', 'Giò', 'Che', 'Sàb'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'minute' => ':count mementu', // less reliable
29 'min' => ':count mementu', // less reliable
30 'a_minute' => ':count mementu', // less reliable
31
32 'year' => ':count annu',
33 'y' => ':count annu',
34 'a_year' => ':count annu',
35
36 'month' => ':count mese',
37 'm' => ':count mese',
38 'a_month' => ':count mese',
39
40 'week' => ':count chida',
41 'w' => ':count chida',
42 'a_week' => ':count chida',
43
44 'day' => ':count dí',
45 'd' => ':count dí',
46 'a_day' => ':count dí',
47
48 'hour' => ':count ora',
49 'h' => ':count ora',
50 'a_hour' => ':count ora',
51
52 'second' => ':count secundu',
53 's' => ':count secundu',
54 'a_second' => ':count secundu',
55]);