blob: 16cfb28aa26079c9680881f793d8a81d207983c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to dates.
*/
export type DateDefinition = LocaleEntry<{
/**
* The translations for months (January - December).
*/
month: DateEntryDefinition;
/**
* The translations for weekdays (Sunday - Saturday).
*/
weekday: DateEntryDefinition;
}>;
/**
* The possible definitions related to date entries.
*/
export interface DateEntryDefinition {
/**
* The long name of the entry.
*/
wide: string[];
/**
* The short name/abbreviation of the entry.
*/
abbr: string[];
/**
* The wide name of the entry when used in context. If absent wide will be used instead.
* It is used to specify a word in context, which may differ from a stand-alone word.
*/
wide_context?: string[];
/**
* The short name/abbreviation name of the entry when used in context. If absent abbr will be used instead.
* It is used to specify a word in context, which may differ from a stand-alone word.
*/
abbr_context?: string[];
}
|