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
// Scottish Gaelic [gd] |
|
import dayjs from '../index'; |
|
var locale = { |
|
name: 'gd', |
|
weekdays: 'Didòmhnaich_Diluain_Dimàirt_Diciadain_Diardaoin_Dihaoine_Disathairne'.split('_'), |
|
months: 'Am Faoilleach_An Gearran_Am Màrt_An Giblean_An Cèitean_An t-Ògmhios_An t-Iuchar_An Lùnastal_An t-Sultain_An Dàmhair_An t-Samhain_An Dùbhlachd'.split('_'), |
|
weekStart: 1, |
|
weekdaysShort: 'Did_Dil_Dim_Dic_Dia_Dih_Dis'.split('_'), |
|
monthsShort: 'Faoi_Gear_Màrt_Gibl_Cèit_Ògmh_Iuch_Lùn_Sult_Dàmh_Samh_Dùbh'.split('_'), |
|
weekdaysMin: 'Dò_Lu_Mà_Ci_Ar_Ha_Sa'.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: 'ann an %s', |
|
past: 'bho chionn %s', |
|
s: 'beagan diogan', |
|
m: 'mionaid', |
|
mm: '%d mionaidean', |
|
h: 'uair', |
|
hh: '%d uairean', |
|
d: 'latha', |
|
dd: '%d latha', |
|
M: 'mìos', |
|
MM: '%d mìosan', |
|
y: 'bliadhna', |
|
yy: '%d bliadhna' |
|
} |
|
}; |
|
dayjs.locale(locale, null, true); |
|
export default locale; |