Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/library/dayjs/locale/en-au.js
12923 views
1
// English (Australia) [en-au]
2
3
const locale = {
4
name: 'en-au',
5
weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
6
months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
7
weekStart: 1,
8
weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
9
monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
10
weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
11
ordinal: n => n,
12
formats: {
13
LT: 'h:mm A',
14
LTS: 'h:mm:ss A',
15
L: 'DD/MM/YYYY',
16
LL: 'D MMMM YYYY',
17
LLL: 'D MMMM YYYY h:mm A',
18
LLLL: 'dddd, D MMMM YYYY h:mm A'
19
},
20
relativeTime: {
21
future: 'in %s',
22
past: '%s ago',
23
s: 'a few seconds',
24
m: 'a minute',
25
mm: '%d minutes',
26
h: 'an hour',
27
hh: '%d hours',
28
d: 'a day',
29
dd: '%d days',
30
M: 'a month',
31
MM: '%d months',
32
y: 'a year',
33
yy: '%d years'
34
}
35
}
36
37
38
export default locale
39
40