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.
39 lines
1.1 KiB
39 lines
1.1 KiB
// siSwati [ss] |
|
import dayjs from '../index'; |
|
var locale = { |
|
name: 'ss', |
|
weekdays: 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split('_'), |
|
months: "Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split('_'), |
|
weekStart: 1, |
|
weekdaysShort: 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'), |
|
monthsShort: 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'), |
|
weekdaysMin: 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'), |
|
ordinal: function ordinal(n) { |
|
return n; |
|
}, |
|
formats: { |
|
LT: 'h:mm A', |
|
LTS: 'h:mm:ss A', |
|
L: 'DD/MM/YYYY', |
|
LL: 'D MMMM YYYY', |
|
LLL: 'D MMMM YYYY h:mm A', |
|
LLLL: 'dddd, D MMMM YYYY h:mm A' |
|
}, |
|
relativeTime: { |
|
future: 'nga %s', |
|
past: 'wenteka nga %s', |
|
s: 'emizuzwana lomcane', |
|
m: 'umzuzu', |
|
mm: '%d emizuzu', |
|
h: 'lihora', |
|
hh: '%d emahora', |
|
d: 'lilanga', |
|
dd: '%d emalanga', |
|
M: 'inyanga', |
|
MM: '%d tinyanga', |
|
y: 'umnyaka', |
|
yy: '%d iminyaka' |
|
} |
|
}; |
|
dayjs.locale(locale, null, true); |
|
export default locale; |