2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-11 17:42:35 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import { observer } from 'mobx-react';
|
2017-01-24 17:20:10 +01:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import { LocaleStore } from '~/i18n';
|
|
|
|
import { FeaturesStore, FEATURES } from '../Features';
|
2016-12-11 17:42:35 +01:00
|
|
|
|
2017-05-11 14:02:27 +02:00
|
|
|
import Dropdown from '../Form/Dropdown';
|
2016-12-11 17:42:35 +01:00
|
|
|
|
|
|
|
@observer
|
|
|
|
export default class LanguageSelector extends Component {
|
2017-01-24 17:20:10 +01:00
|
|
|
features = FeaturesStore.get();
|
2016-12-11 17:42:35 +01:00
|
|
|
store = LocaleStore.get();
|
|
|
|
|
|
|
|
render () {
|
2017-01-24 17:20:10 +01:00
|
|
|
if (!this.features.active[FEATURES.LANGUAGE]) {
|
2016-12-11 17:42:35 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-05-11 14:02:27 +02:00
|
|
|
<Dropdown
|
2016-12-11 17:42:35 +01:00
|
|
|
hint={
|
|
|
|
<FormattedMessage
|
|
|
|
id='settings.parity.languages.hint'
|
2017-01-18 13:05:01 +01:00
|
|
|
defaultMessage='the language this interface is displayed with'
|
|
|
|
/>
|
2016-12-11 17:42:35 +01:00
|
|
|
}
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='settings.parity.languages.label'
|
2017-01-18 13:05:01 +01:00
|
|
|
defaultMessage='UI language'
|
|
|
|
/>
|
2016-12-11 17:42:35 +01:00
|
|
|
}
|
|
|
|
value={ this.store.locale }
|
2017-01-18 13:05:01 +01:00
|
|
|
onChange={ this.onChange }
|
2017-05-11 14:02:27 +02:00
|
|
|
options={
|
|
|
|
this.store.locales.map((locale) => {
|
|
|
|
return {
|
|
|
|
key: locale,
|
|
|
|
value: locale,
|
|
|
|
text: locale,
|
|
|
|
content: <FormattedMessage id={ `languages.${locale}` } />
|
|
|
|
};
|
|
|
|
})
|
|
|
|
}
|
|
|
|
/>
|
2016-12-11 17:42:35 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-12 17:06:53 +02:00
|
|
|
onChange = (event, locale) => {
|
|
|
|
this.store.setLocale(locale);
|
2016-12-11 17:42:35 +01:00
|
|
|
}
|
|
|
|
}
|