blob: 05139331e7ae71a061ab95458fef4e305571182f [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 * - Reşat SABIQ tilde.birlik@gmail.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'Mayıs', 'İyun', 'İyul', 'Avgust', 'Sentâbr', 'Oktâbr', 'Noyabr', 'Dekabr'],
21 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'],
22 'weekdays' => ['Bazar', 'Bazarertesi', 'Salı', 'Çarşembe', 'Cumaaqşamı', 'Cuma', 'Cumaertesi'],
23 'weekdays_short' => ['Baz', 'Ber', 'Sal', 'Çar', 'Caq', 'Cum', 'Cer'],
24 'weekdays_min' => ['Baz', 'Ber', 'Sal', 'Çar', 'Caq', 'Cum', 'Cer'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27 'meridiem' => ['ÜE', 'ÜS'],
28
29 'year' => ':count yıl',
30 'y' => ':count yıl',
31 'a_year' => ':count yıl',
32
33 'month' => ':count ay',
34 'm' => ':count ay',
35 'a_month' => ':count ay',
36
37 'week' => ':count afta',
38 'w' => ':count afta',
39 'a_week' => ':count afta',
40
41 'day' => ':count kün',
42 'd' => ':count kün',
43 'a_day' => ':count kün',
44
45 'hour' => ':count saat',
46 'h' => ':count saat',
47 'a_hour' => ':count saat',
48
49 'minute' => ':count daqqa',
50 'min' => ':count daqqa',
51 'a_minute' => ':count daqqa',
52
53 'second' => ':count ekinci',
54 's' => ':count ekinci',
55 'a_second' => ':count ekinci',
56]);