mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
137 lines
5.6 KiB
JavaScript
137 lines
5.6 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
import * as I18n from 'i18n/i18n.jsx';
|
|
|
|
import AdminSettings from './admin_settings.jsx';
|
|
import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
|
|
import SettingsGroup from './settings_group.jsx';
|
|
import DropdownSetting from './dropdown_setting.jsx';
|
|
import MultiSelectSetting from './multiselect_settings.jsx';
|
|
|
|
export default class LocalizationSettings extends AdminSettings {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.getConfigFromState = this.getConfigFromState.bind(this);
|
|
|
|
this.renderSettings = this.renderSettings.bind(this);
|
|
this.canSave = this.canSave.bind(this);
|
|
|
|
const locales = I18n.getAllLanguages();
|
|
|
|
this.state = Object.assign(this.state, {
|
|
hasErrors: false,
|
|
languages: Object.keys(locales).map((l) => {
|
|
return {value: locales[l].value, text: locales[l].name};
|
|
})
|
|
});
|
|
}
|
|
|
|
canSave() {
|
|
return this.state.availableLocales.join(',').indexOf(this.state.defaultClientLocale) !== -1 || this.state.availableLocales.length === 0;
|
|
}
|
|
|
|
getConfigFromState(config) {
|
|
config.LocalizationSettings.DefaultServerLocale = this.state.defaultServerLocale;
|
|
config.LocalizationSettings.DefaultClientLocale = this.state.defaultClientLocale;
|
|
config.LocalizationSettings.AvailableLocales = this.state.availableLocales.join(',');
|
|
|
|
return config;
|
|
}
|
|
|
|
getStateFromConfig(config) {
|
|
return {
|
|
defaultServerLocale: config.LocalizationSettings.DefaultServerLocale,
|
|
defaultClientLocale: config.LocalizationSettings.DefaultClientLocale,
|
|
availableLocales: config.LocalizationSettings.AvailableLocales ? config.LocalizationSettings.AvailableLocales.split(',') : []
|
|
};
|
|
}
|
|
|
|
renderTitle() {
|
|
return (
|
|
<h3>
|
|
<FormattedMessage
|
|
id='admin.general.localization'
|
|
defaultMessage='Localization'
|
|
/>
|
|
</h3>
|
|
);
|
|
}
|
|
|
|
renderSettings() {
|
|
return (
|
|
<SettingsGroup>
|
|
<DropdownSetting
|
|
id='defaultServerLocale'
|
|
values={this.state.languages}
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.general.localization.serverLocaleTitle'
|
|
defaultMessage='Default Server Language:'
|
|
/>
|
|
}
|
|
value={this.state.defaultServerLocale}
|
|
onChange={this.handleChange}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.general.localization.serverLocaleDescription'
|
|
defaultMessage='Default language for system messages and logs. Changing this will require a server restart before taking effect.'
|
|
/>
|
|
}
|
|
/>
|
|
<DropdownSetting
|
|
id='defaultClientLocale'
|
|
values={this.state.languages}
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.general.localization.clientLocaleTitle'
|
|
defaultMessage='Default Client Language:'
|
|
/>
|
|
}
|
|
value={this.state.defaultClientLocale}
|
|
onChange={this.handleChange}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.general.localization.clientLocaleDescription'
|
|
defaultMessage="Default language for newly created users and pages where the user hasn't logged in."
|
|
/>
|
|
}
|
|
/>
|
|
<MultiSelectSetting
|
|
id='availableLocales'
|
|
values={this.state.languages}
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.general.localization.availableLocalesTitle'
|
|
defaultMessage='Available Languages:'
|
|
/>
|
|
}
|
|
selected={this.state.availableLocales}
|
|
onChange={this.handleChange}
|
|
helpText={
|
|
<FormattedHTMLMessage
|
|
id='admin.general.localization.availableLocalesDescription'
|
|
defaultMessage='Set which languages are available for users in Account Settings (leave this field blank to have all supported languages available).<br /><br />Would like to help with translations? Join the <a href="http://translate.mattermost.com/" target="_blank">Mattermost Translation Server</a> to contribute.'
|
|
/>
|
|
}
|
|
noResultText={
|
|
<FormattedMessage
|
|
id='admin.general.localization.availableLocalesNoResults'
|
|
defaultMessage='No results found'
|
|
/>
|
|
}
|
|
notPresent={
|
|
<FormattedMessage
|
|
id='admin.general.localization.availableLocalesNotPresent'
|
|
defaultMessage='The default client language must be included in the available list'
|
|
/>
|
|
}
|
|
/>
|
|
</SettingsGroup>
|
|
);
|
|
}
|
|
}
|