mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-09 01:09:51 +03:00
upload translations
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 = {}
|
||||
|
||||
Reference in New Issue
Block a user