Rename the locale settings to locale

I was trying to make it easier for people, but on second thought, en-GB
is definitely not representative of Europe, so having this split was
confusing.
master
Tom Hacohen 6 years ago
parent 3b7fadcc69
commit a4fca53541

@ -42,18 +42,18 @@ class Settings extends React.PureComponent<PropsTypeInner> {
<> <>
<AppBarOverride title="Settings" /> <AppBarOverride title="Settings" />
<Container> <Container>
<h1>Localization</h1> <h1>Date & Time</h1>
<FormControl style={{width: '10em'}}> <FormControl style={{width: '15em'}}>
<InputLabel> <InputLabel>
Time & Date Style Locale
</InputLabel> </InputLabel>
<Select <Select
name="locale" name="locale"
value={settings.locale} value={settings.locale}
onChange={this.handleChange} onChange={this.handleChange}
> >
<MenuItem value="en-gb">European</MenuItem> <MenuItem value="en-gb">English (United Kingdom)</MenuItem>
<MenuItem value="en-us">American</MenuItem> <MenuItem value="en-us">English (United States)</MenuItem>
</Select> </Select>
</FormControl> </FormControl>
</Container> </Container>

Loading…
Cancel
Save