File tree 3 files changed +0
-5
lines changed
3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change 133
133
Allow X ala X partial parsing</ label >
134
134
< label > < input type ="checkbox " id ="separate-repeated-modifiers " />
135
135
Allow separate repeated modifiers</ label >
136
- < label > < input type ="checkbox " id ="hardcoded-anu-la " checked />
137
- Use hardcoded "anu la" translation</ label >
138
136
</ details >
139
137
< div >
140
138
< button id ="reset-button "> Reset to default</ button >
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export type Settings = {
9
9
tense : Redundancy ;
10
10
xAlaXPartialParsing : boolean ;
11
11
separateRepeatedModifiers : boolean ;
12
- hardcodedAnuLa : boolean ;
13
12
} ;
14
13
// the default value may change, also change `index.html`
15
14
export const defaultSettings : Readonly < Settings > = Object . freeze ( {
@@ -20,7 +19,6 @@ export const defaultSettings: Readonly<Settings> = Object.freeze({
20
19
tense : "both" ,
21
20
xAlaXPartialParsing : false ,
22
21
separateRepeatedModifiers : false ,
23
- hardcodedAnuLa : true ,
24
22
} ) ;
25
23
// this global constant is mutable
26
24
export const settings : Settings = Object . seal ( { ...defaultSettings } ) ;
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ const UPDATERS: Readonly<{ [K in keyof Settings]: Updater<Settings[K]> }> = {
46
46
tense : REDUNDANCY_UPDATER ,
47
47
xAlaXPartialParsing : BOOL_UPDATER ,
48
48
separateRepeatedModifiers : BOOL_UPDATER ,
49
- hardcodedAnuLa : BOOL_UPDATER ,
50
49
} ;
51
50
const KEYS = Object . keys ( UPDATERS ) as ReadonlyArray < keyof Settings > ;
52
51
You can’t perform that action at this time.
0 commit comments