PHP Classes

File: infrastructure/libraries/Moment/Locales/tr_TR.php

Recommend this page to a friend!
  Classes of Maicon gonçalez   Potato Service   infrastructure/libraries/Moment/Locales/tr_TR.php   Download  
File: infrastructure/libraries/Moment/Locales/tr_TR.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Potato Service
Framework that extracts route details from classes
Author: By
Last change:
Date: 1 year ago
Size: 2,418 bytes
 

Contents

Class file image Download
<?php
/**
 * Turkish (tr-TR) language support
 * @author Engin Dumlu <engindumlu@gmail.com>
 * @github https://github.com/roadrunner
 */

return array(
   
"months" => explode('_', 'Ocak_?ubat_Mart_Nisan_May?s_Haziran_Temmuz_A?ustos_Eylül_Ekim_Kas?m_Aral?k'),
   
"monthsNominative" => explode('_', 'Ocak_?ubat_Mart_Nisan_May?s_Haziran_Temmuz_A?ustos_Eylül_Ekim_Kas?m_Aral?k'),
   
"monthsShort" => explode('_', 'Oca_?ub_Mar_Nis_May_Haz_Tem_A?u_Eyl_Eki_Kas_Ara'),
   
"weekdays" => explode('_', 'Pazartesi_Sal?_Çar?amba_Per?embe_Cuma_Cumartesi_Pazar'),
   
"weekdaysShort" => explode('_', 'Pts_Sal_Çar_Per_Cum_Cts_Paz'),
   
"calendar" => array(
       
"sameDay" => '[Bugün]',
       
"nextDay" => '[Yar?n]',
       
"lastDay" => '[Dün]',
       
"lastWeek" => '[Geçen hafta] l',
       
"sameElse" => 'l',
       
"withTime" => 'H:i',
       
"default" => 'd/m/Y',
    ),
   
"relativeTime" => array(
       
"future" => '%s sonra',
       
"past" => '%s önce',
       
"s" => 'birkaç saniye',
       
"ss" => '%d saniye',
       
"m" => 'bir dakika',
       
"mm" => '%d dakika',
       
"h" => 'bir saat',
       
"hh" => '%d saat',
       
"d" => 'bir gün',
       
"dd" => '%d gün',
       
"M" => 'bir ay',
       
"MM" => '%d ay',
       
"y" => 'bir y?l',
       
"yy" => '%d y?l',
    ),
   
"ordinal" => function ($number) {
       
$n = $number % 100;
       
$ends = array('inci', 'inci', 'üncü', 'üncü', 'inci', '?nc?', 'inci', 'inci', 'uncu', 'uncu');

        if (
$number > 0 && $n == 0) {
            return
$number . 'uncu';
        }

        return
$number . '[' . $ends[$number % 10] . ']';
    },
   
"week" => array(
       
"dow" => 1, // `Pazartesi` is the first day of the week.
       
"doy" => 4 // The week that contains Jan 4th is the first week of the year.
   
),
   
"customFormats" => array(
       
"LT" => "G:i", // 20:30
       
"L" => "d/m/Y", // 04/09/1986
       
"l" => "j/n/Y", // 4/9/1986
       
"LL" => "jS F Y", // 4 Septembre 1986
       
"ll" => "j M Y", // 4 Sep 1986
       
"LLL" => "jS F Y G:i", // 4 Septembre 1986 20:30
       
"lll" => "j M Y G:i", // 4 Sep 1986 20:30
       
"LLLL" => "l, jS F Y G:i", // Jeudi, 4 Septembre 1986 20:30
       
"llll" => "D, j M Y G:i", // Jeu, 4 Sep 1986 20:30
   
),
);