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.
// Armenian [hy-am]
import dayjs from '../index' ;
var locale = {
name : 'hy-am' ,
weekdays : 'կիրա կի_երկո ւշա բթի_երեք շա բթի_չո րեք շա բթի_հ ինգ շա բթի_ո ւրբա թ_շա բա թ' . split ( '_' ) ,
months : 'հ ո ւնվա րի_փետրվա րի_մա րտի_ա պրիլի_մա յիս ի_հ ո ւնիս ի_հ ո ւլիս ի_օ գ ո ս տո ս ի_ս եպտեմբերի_հ ո կտեմբերի_նո յեմբերի_դեկտեմբերի' . split ( '_' ) ,
weekStart : 1 ,
weekdaysShort : 'կրկ_երկ_երք _չրք _հ նգ _ո ւրբ_շբթ' . split ( '_' ) ,
monthsShort : 'հ նվ_փտր_մրտ_ա պր_մյս _հ նս _հ լս _օ գ ս _ս պտ_հ կտ_նմբ_դկտ' . split ( '_' ) ,
weekdaysMin : 'կրկ_երկ_երք _չրք _հ նգ _ո ւրբ_շբթ' . split ( '_' ) ,
ordinal : function ordinal ( n ) {
return n ;
} ,
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 հետո' ,
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 ;