upload translations

This commit is contained in:
proddy
2022-08-27 13:02:04 +02:00
parent c8848a9e76
commit 7122e878a5
7 changed files with 75 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ const de: Translation = {
PASSWORD: 'Passwort',
DASHBOARD: 'Armaturenbrett',
SETTINGS: 'Einstellungen',
SAVED: 'gespeichert',
HELP: 'Hilfe',
LOGGED_IN: 'Eingeloggt als {name}',
PLEASE_SIGNIN: 'Bitte einloggen, um fortzufahren',
@@ -142,7 +143,11 @@ const de: Translation = {
HELP_INFORMATION_7: 'um eine neue Funktion anzufordern oder einen Fehler zu melden',
HELP_INFORMATION_8: 'Überzeugen Sie sich auch',
HELP_INFORMATION_9: 'und hängen Sie Ihre Systemdetails für eine schnellere Antwort an',
HELP_INFORMATION_10: 'EMS-ESP wird immer ein kostenloses Open-Source-Projekt sein. Bitte erwägen Sie, es mit einem '
HELP_INFORMATION_10: 'EMS-ESP wird immer ein kostenloses Open-Source-Projekt sein. Bitte erwägen Sie, es mit einem',
UPLOAD: 'Hochladen',
ABORTED: 'abgebrochen',
FAILED: 'gescheitert',
SUCCESSFUL: 'erfolgreich'
};
export default de;

View File

@@ -9,6 +9,7 @@ const en: BaseTranslation = {
PASSWORD: 'Password',
DASHBOARD: 'Dashboard',
SETTINGS: 'Settings',
SAVED: 'saved',
HELP: 'Help',
LOGGED_IN: 'Logged in as {name}',
PLEASE_SIGNIN: 'Please sign in to continue',
@@ -142,7 +143,11 @@ const en: BaseTranslation = {
HELP_INFORMATION_7: 'for requesting a new feature or reporting a bug',
HELP_INFORMATION_8: 'Make sure you also',
HELP_INFORMATION_9: 'and attach your system details for a faster response',
HELP_INFORMATION_10: 'EMS-ESP will always be a free and open-source project. Please consider supporting it with a '
HELP_INFORMATION_10: 'EMS-ESP will always be a free and open-source project. Please consider supporting it with a',
UPLOAD: 'Upload',
ABORTED: 'aborted',
FAILED: 'failed',
SUCCESSFUL: 'successful'
};
export default en;

View File

@@ -46,6 +46,10 @@ type RootTranslation = {
* Settings
*/
SETTINGS: string
/**
* saved
*/
SAVED: string
/**
* Help
*/
@@ -572,9 +576,25 @@ type RootTranslation = {
*/
HELP_INFORMATION_9: string
/**
* EMS-ESP will always be a free and open-source project. Please consider supporting it with a
* EMS-ESP will always be a free and open-source project. Please consider supporting it with a
*/
HELP_INFORMATION_10: string
/**
* Upload
*/
UPLOAD: string
/**
* aborted
*/
ABORTED: string
/**
* failed
*/
FAILED: string
/**
* successful
*/
SUCCESSFUL: string
}
export type TranslationFunctions = {
@@ -610,6 +630,10 @@ export type TranslationFunctions = {
* Settings
*/
SETTINGS: () => LocalizedString
/**
* saved
*/
SAVED: () => LocalizedString
/**
* Help
*/
@@ -1125,9 +1149,25 @@ export type TranslationFunctions = {
*/
HELP_INFORMATION_9: () => LocalizedString
/**
* EMS-ESP will always be a free and open-source project. Please consider supporting it with a
* EMS-ESP will always be a free and open-source project. Please consider supporting it with a
*/
HELP_INFORMATION_10: () => LocalizedString
/**
* Upload
*/
UPLOAD: () => LocalizedString
/**
* aborted
*/
ABORTED: () => LocalizedString
/**
* failed
*/
FAILED: () => LocalizedString
/**
* successful
*/
SUCCESSFUL: () => LocalizedString
}
export type Formatters = {}