ar_TN.php
6 years ago
ca_ES.php
6 years ago
cs_CZ.php
6 years ago
da_DK.php
6 years ago
de_DE.php
6 years ago
en_GB.php
6 years ago
en_US.php
6 years ago
es_ES.php
6 years ago
fr_FR.php
6 years ago
hu_HU.php
6 years ago
id_ID.php
6 years ago
it_IT.php
6 years ago
ja_JP.php
6 years ago
ko_KR.php
6 years ago
lv_LV.php
6 years ago
nl_NL.php
6 years ago
no_NO.php
6 years ago
oc_LNC.php
6 years ago
pl_PL.php
6 years ago
pt_BR.php
6 years ago
pt_PT.php
6 years ago
ro_RO.php
6 years ago
ru_RU.php
6 years ago
se_SV.php
6 years ago
th_TH.php
6 years ago
tr_TR.php
6 years ago
uk_UA.php
6 years ago
vi_VN.php
6 years ago
zh_CN.php
6 years ago
zh_TW.php
6 years ago
tr_TR.php
65 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Turkish (tr-TR) language support |
| 4 | * @author Engin Dumlu <engindumlu@gmail.com> |
| 5 | * @github https://github.com/roadrunner |
| 6 | */ |
| 7 | |
| 8 | return array( |
| 9 | "months" => explode('_', 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'), |
| 10 | "monthsNominative" => explode('_', 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'), |
| 11 | "monthsShort" => explode('_', 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'), |
| 12 | "weekdays" => explode('_', 'Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi_Pazar'), |
| 13 | "weekdaysShort" => explode('_', 'Pts_Sal_Çar_Per_Cum_Cts_Paz'), |
| 14 | "calendar" => array( |
| 15 | "sameDay" => '[Bugün]', |
| 16 | "nextDay" => '[Yarın]', |
| 17 | "lastDay" => '[Dün]', |
| 18 | "lastWeek" => '[Geçen hafta] l', |
| 19 | "sameElse" => 'l', |
| 20 | "withTime" => 'H:i', |
| 21 | "default" => 'd/m/Y', |
| 22 | ), |
| 23 | "relativeTime" => array( |
| 24 | "future" => '%s sonra', |
| 25 | "past" => '%s önce', |
| 26 | "s" => 'birkaç saniye', |
| 27 | "ss" => '%d saniye', |
| 28 | "m" => 'bir dakika', |
| 29 | "mm" => '%d dakika', |
| 30 | "h" => 'bir saat', |
| 31 | "hh" => '%d saat', |
| 32 | "d" => 'bir gün', |
| 33 | "dd" => '%d gün', |
| 34 | "M" => 'bir ay', |
| 35 | "MM" => '%d ay', |
| 36 | "y" => 'bir yıl', |
| 37 | "yy" => '%d yıl', |
| 38 | ), |
| 39 | "ordinal" => function ($number) { |
| 40 | $n = $number % 100; |
| 41 | $ends = array('inci', 'inci', 'üncü', 'üncü', 'inci', 'ıncı', 'inci', 'inci', 'uncu', 'uncu'); |
| 42 | |
| 43 | if ($number > 0 && $n == 0) { |
| 44 | return $number . 'uncu'; |
| 45 | } |
| 46 | |
| 47 | return $number . '[' . $ends[$number % 10] . ']'; |
| 48 | }, |
| 49 | "week" => array( |
| 50 | "dow" => 1, // `Pazartesi` is the first day of the week. |
| 51 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 52 | ), |
| 53 | "customFormats" => array( |
| 54 | "LT" => "G:i", // 20:30 |
| 55 | "L" => "d/m/Y", // 04/09/1986 |
| 56 | "l" => "j/n/Y", // 4/9/1986 |
| 57 | "LL" => "jS F Y", // 4 Septembre 1986 |
| 58 | "ll" => "j M Y", // 4 Sep 1986 |
| 59 | "LLL" => "jS F Y G:i", // 4 Septembre 1986 20:30 |
| 60 | "lll" => "j M Y G:i", // 4 Sep 1986 20:30 |
| 61 | "LLLL" => "l, jS F Y G:i", // Jeudi, 4 Septembre 1986 20:30 |
| 62 | "llll" => "D, j M Y G:i", // Jeu, 4 Sep 1986 20:30 |
| 63 | ), |
| 64 | ); |
| 65 |