From 81c91b6b60caa9f8c2aca7e3e4938bd5fd33dae7 Mon Sep 17 00:00:00 2001 From: Adrian Feld Date: Wed, 9 Aug 2017 14:44:32 +0200 Subject: [PATCH 1/2] Create lang.de.js First Step for German Language Support --- src/languages/lang.de.js | 81 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/languages/lang.de.js diff --git a/src/languages/lang.de.js b/src/languages/lang.de.js new file mode 100644 index 00000000..a4faf00c --- /dev/null +++ b/src/languages/lang.de.js @@ -0,0 +1,81 @@ +/** + Adrian Feld +*/ +export default { + // Top Menu + dashboard: "Dashboard", + sysCleaner: "System Cleaner", + startupApps: "Startup Apps", + services: "Services", + process: "Processes", + uninstaller: "Uninstaller", + resources: "Resources", + // Dashboard Page + cpu: "CPU", + memory: "SPEICHER", + disk: "DISK", + download: "DOWNLOAD", + upload: "UPLOAD", + systemInfo: "SYSTEM INFO", + hostname: "Hostname", + platform: "Platform", + distribution: "Distribution", + kernelRel: "Kernel Release", + cpuModel: "CPU Model", + cpuSpeed: "CPU Speed", + cpuCores: "CPU Cores", + // System Cleaner Page + packageCache: "Package Cache", + crashReports: "Crash Reports", + systemLogs: "System Logs", + appCache: "App Cache", + trash: "Trash", + systemScan: "System Scan", + clean: "Säubern", + selectAll: "Alles auswählen", + // Startup Apps Page + startupTitle: "System Startup Applikationen", + addStartup: "Hinzufügen Autostart", + noStartup: "Keine Autostart Programme gefunden.", + app: "Applikation", + appName: "App Name", + appComment: "App Comment", + appCommand: "Command", + add: "Add", + cancel: "Cancel", + // Services Page + serviceTitle: "System Services", + noService: "Kein Service gefunden", + // Process Page + endProcess: "End Process", + refresh: "Refresh", + // Uninstaller Page + uninstallerTitle: "System Installed Packages", + noPackage: "No package found.", + uninstallSelecteds: "Uninstall Selecteds", + // Resources Page + cpuHistory: "CPU History", + memHistory: "Memory History", + networkHistory: "Network History", + swap: "Swap", + // Settings + settings: "Settings", + appSettings: "Application Settings", + appLanguage: "App Language", + appTheme: "App Theme", + // Global + search: "Search", + downloadUpdate: "Download Update", + updateMsg: "There are updates currently available.", + // Messages + opFail: "Operation failed.", + sysCleanFail: "System reingung fehlgeschlagen.", + sysCleanSuc: "System gereinigt.", + appCacheWarning: "Lösche Applikationen \' caches can cause problems. Please be careful.", + uninstallFail: "Uninstall failed.", + packageUninstalled: " packages uninstalled.", + anotherProc: "Another process continues.", + changedLang: "Restart the program for the changes to take effect.", + permitted: 'Operation not permitted.', + update: 'Update' +} From aef3f85fefa46d5526eb534c6a138b4d64ba1b8e Mon Sep 17 00:00:00 2001 From: Adrian Feld Date: Wed, 9 Aug 2017 14:54:27 +0200 Subject: [PATCH 2/2] Update lang.de.js Translation almost complette. Beware some words are not translated because they are "Germanised" (eg. Applikation etc.) --- src/languages/lang.de.js | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/languages/lang.de.js b/src/languages/lang.de.js index a4faf00c..54cb636f 100644 --- a/src/languages/lang.de.js +++ b/src/languages/lang.de.js @@ -6,10 +6,10 @@ export default { dashboard: "Dashboard", sysCleaner: "System Cleaner", startupApps: "Startup Apps", - services: "Services", - process: "Processes", + services: "Dienste", + process: "Prozesse", uninstaller: "Uninstaller", - resources: "Resources", + resources: "Ressourcen", // Dashboard Page cpu: "CPU", memory: "SPEICHER", @@ -39,43 +39,43 @@ export default { noStartup: "Keine Autostart Programme gefunden.", app: "Applikation", appName: "App Name", - appComment: "App Comment", - appCommand: "Command", - add: "Add", - cancel: "Cancel", + appComment: "App Kommentar", + appCommand: "Befehl", + add: "Hinzufügen", + cancel: "Abbruch", // Services Page serviceTitle: "System Services", noService: "Kein Service gefunden", // Process Page endProcess: "End Process", - refresh: "Refresh", + refresh: "aktualisieren", // Uninstaller Page uninstallerTitle: "System Installed Packages", - noPackage: "No package found.", - uninstallSelecteds: "Uninstall Selecteds", + noPackage: "Kein Paket gefunden.", + uninstallSelecteds: "Uninstall Gewählte", // Resources Page - cpuHistory: "CPU History", - memHistory: "Memory History", - networkHistory: "Network History", + cpuHistory: "CPU Verlauf", + memHistory: "Speicher Verlauf", + networkHistory: "Netzwerk Verlauf", swap: "Swap", // Settings - settings: "Settings", - appSettings: "Application Settings", - appLanguage: "App Language", + settings: "Einstellungen", + appSettings: "Programm Einstellungen", + appLanguage: "App Sprache", appTheme: "App Theme", // Global - search: "Search", + search: "Suche", downloadUpdate: "Download Update", - updateMsg: "There are updates currently available.", + updateMsg: "Es sind aktuelle Updates verfügbar.", // Messages opFail: "Operation failed.", sysCleanFail: "System reingung fehlgeschlagen.", sysCleanSuc: "System gereinigt.", appCacheWarning: "Lösche Applikationen \' caches can cause problems. Please be careful.", - uninstallFail: "Uninstall failed.", - packageUninstalled: " packages uninstalled.", - anotherProc: "Another process continues.", + uninstallFail: "Deinstallation fehlgeschlagen.", + packageUninstalled: " Pakete deinstalliert.", + anotherProc: "Ein weiterer Prozess läuft.", changedLang: "Restart the program for the changes to take effect.", - permitted: 'Operation not permitted.', + permitted: 'Operation unzulässig.', update: 'Update' }