You can not select more than 25 topics 
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long. 
		
		
		
		
		
			
	
	
		
			
	
		
			This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
		 
	
		
		
			
				
				
					
						
						
						
							// Turkish [tr]
  
						
						
						
							import  dayjs  from  '../index' ; 
 
						
						
						
							var  locale  =  { 
 
						
						
						
							  name :  'tr' , 
 
						
						
						
							  weekdays :  'Pazar_Pazartesi_Salı  . split ( '_' ) , 
 
						
						
						
							  weekdaysShort :  'Paz_Pts_Sal_Çar_Per_Cum_Cts' . split ( '_' ) , 
 
						
						
						
							  weekdaysMin :  'Pz_Pt_Sa_Ça_Pe_Cu_Ct' . split ( '_' ) , 
 
						
						
						
							  months :  'Ocak_Şubat_Mart_Nisan_Mayı ı ı  . split ( '_' ) , 
 
						
						
						
							  monthsShort :  'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara' . split ( '_' ) , 
 
						
						
						
							  weekStart :  1 , 
 
						
						
						
							  formats :  { 
 
						
						
						
							    LT :  'HH:mm' , 
 
						
						
						
							    LTS :  'HH:mm:ss' , 
 
						
						
						
							    L :  'DD.MM.YYYY' , 
 
						
						
						
							    LL :  'D MMMM YYYY' , 
 
						
						
						
							    LLL :  'D MMMM YYYY HH:mm' , 
 
						
						
						
							    LLLL :  'dddd, D MMMM YYYY HH:mm' 
 
						
						
						
							  } , 
 
						
						
						
							  relativeTime :  { 
 
						
						
						
							    future :  '%s sonra' , 
 
						
						
						
							    past :  '%s önce' , 
 
						
						
						
							    s :  'birkaç 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ı  , 
 
						
						
						
							    yy :  '%d yı  
 
						
						
						
							  } , 
 
						
						
						
							  ordinal :  function  ordinal ( n )  { 
 
						
						
						
							    return  n  +  "." ; 
 
						
						
						
							  } 
 
						
						
						
							} ; 
 
						
						
						
							dayjs . locale ( locale ,  null ,  true ) ; 
 
						
						
						
							export  default  locale ;