diff options
author | Jan <jan@dwrox.net> | 2020-07-07 09:11:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 09:11:42 +0200 |
commit | d368bee7791f6828014b5d9b5962e1c305c7c6c8 (patch) | |
tree | 032afb823cf7043847792bb01563fa72f6639af3 | |
parent | e4742dbc995a10b5a1eef84ca65ced725cbd95a7 (diff) |
Add translation for server timeout
in German and English translations
-rw-r--r-- | app/features/settings/components/ServerTimeoutField.js | 2 | ||||
-rw-r--r-- | app/i18n/lang/de.json | 1 | ||||
-rw-r--r-- | app/i18n/lang/en.json | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/app/features/settings/components/ServerTimeoutField.js b/app/features/settings/components/ServerTimeoutField.js index 3e2d50a..613721f 100644 --- a/app/features/settings/components/ServerTimeoutField.js +++ b/app/features/settings/components/ServerTimeoutField.js @@ -77,7 +77,7 @@ class ServerTimeoutField extends Component<Props, State> { <Form onSubmit = { this._onServerTimeoutSubmit }> <FieldTextStateless invalidMessage - = { 'Invalid Timeout' } + = { t('settings.invalidServerTimeout') } isInvalid = { !this.state.isValid } isValidationHidden = { this.state.isValid } label = { t('settings.serverTimeout') } diff --git a/app/i18n/lang/de.json b/app/i18n/lang/de.json index d6dac8e..8bc0156 100644 --- a/app/i18n/lang/de.json +++ b/app/i18n/lang/de.json @@ -32,6 +32,7 @@ "startWithAudioMuted": "Ohne Audio starten", "startWithVideoMuted": "Ohne Video starten", "invalidServer": "Falsche Server URL oder der Server unterstützt keine externe API", + "invalidServerTimeout": "Üngültiger Wert für die Server Wartezeit", "serverUrl": "Server URL", "serverTimeout": "Server Timeout (in Sekunden)" } diff --git a/app/i18n/lang/en.json b/app/i18n/lang/en.json index 08a3632..20e42de 100644 --- a/app/i18n/lang/en.json +++ b/app/i18n/lang/en.json @@ -32,6 +32,7 @@ "startWithAudioMuted": "Start with Audio muted", "startWithVideoMuted": "Start with Video muted", "invalidServer": "Invalid Server URL or external API not enabled", + "invalidServerTimeout": "Invalid value for Server Timeout", "serverUrl": "Server URL", "serverTimeout": "Server Timeout (in seconds)" } |