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 invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
			
		 
	
		
		
			
				
				
					
						
						
						
							// Sinhalese [si]
  
						
						
						
							import  dayjs  from  '../index' ; 
 
						
						
						
							var  locale  =  { 
 
						
						
						
							  name :  'si' , 
 
						
						
						
							  weekdays :  'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්  . split ( '_' ) , 
 
						
						
						
							  months :  'දුරුතු_නවම්_මැදින්_බක්_වෙසක්_පොසොන්_ඇසළ_නිකිණි_බිනර_වප්_ඉල්_උඳුවප්' . split ( '_' ) , 
 
						
						
						
							  weekdaysShort :  'ඉරි_සඳු_අඟ_බදා_බ්  . split ( '_' ) , 
 
						
						
						
							  monthsShort :  'දුරු_නව_මැදි_බක්_වෙස_පොසො_ඇස_නිකි_බින_වප්_ඉල්_උඳු' . split ( '_' ) , 
 
						
						
						
							  weekdaysMin :  'ඉ_ස_අ_බ_බ්  . split ( '_' ) , 
 
						
						
						
							  ordinal :  function  ordinal ( n )  { 
 
						
						
						
							    return  n ; 
 
						
						
						
							  } , 
 
						
						
						
							  formats :  { 
 
						
						
						
							    LT :  'a h:mm' , 
 
						
						
						
							    LTS :  'a h:mm:ss' , 
 
						
						
						
							    L :  'YYYY/MM/DD' , 
 
						
						
						
							    LL :  'YYYY MMMM D' , 
 
						
						
						
							    LLL :  'YYYY MMMM D, a h:mm' , 
 
						
						
						
							    LLLL :  'YYYY MMMM D [වැනි] dddd, a h:mm:ss' 
 
						
						
						
							  } , 
 
						
						
						
							  relativeTime :  { 
 
						
						
						
							    future :  '%sකින්' , 
 
						
						
						
							    past :  '%sකට පෙර' , 
 
						
						
						
							    s :  'තත්පර කිහිපය' , 
 
						
						
						
							    m :  'විනාඩිය' , 
 
						
						
						
							    mm :  'විනාඩි %d' , 
 
						
						
						
							    h :  'පැය' , 
 
						
						
						
							    hh :  'පැය %d' , 
 
						
						
						
							    d :  'දිනය' , 
 
						
						
						
							    dd :  'දින %d' , 
 
						
						
						
							    M :  'මාසය' , 
 
						
						
						
							    MM :  'මාස %d' , 
 
						
						
						
							    y :  'වසර' , 
 
						
						
						
							    yy :  'වසර %d' 
 
						
						
						
							  } 
 
						
						
						
							} ; 
 
						
						
						
							dayjs . locale ( locale ,  null ,  true ) ; 
 
						
						
						
							export  default  locale ;