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.
// Belarusian [be]
import dayjs from '../index' ;
var locale = {
name : 'be' ,
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'
}
} ;
dayjs . locale ( locale , null , true ) ;
export default locale ;