Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add German language option #220

Merged
merged 3 commits into from
Jan 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions locales/de/translation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"&File": "&Datei",
"Force &Reload": "Force &Reload",
"&Quit": "&Quit",
"&Edit": "&Bearbeiten",
"Undo": "Undo",
"Redo": "Redo",
"Cut": "Cut",
"Copy": "Kopieren",
"Paste": "einfügen",
"Select All": "Select All",
"Language": "Sprache",
"en": "English (en)",
"es": "Español (es)",
"hi": "हिंदी (hi)",
"it": "Italiano (it)",
"pt": "Portugues (pt)",
"de": "Deutsch (de)",
"Tab": "Tab",
"Add New Tab": "Neue Registerkarte hinzufügen",
"Edit Active Tab": "Aktive Registerkarte bearbeiten",
"Close Active Tab": "Aktive Registerkarte schließen",
"Open Tab DevTools": "Öffnen Sie die Registerkarte DevTools",
"Restore Tab": "Registerkarte Wiederherstellen",
"Go to Next Tab": "Go to Next Tab",
"Go to Previous Tab": "Go to Previous Tab",
"Go to First Tab": "Go to First Tab",
"Go to Last Tab": "Go to Last Tab",
"&View": "&View",
"Toggle Fullscreen": "Vollbild umschalten",
"Toggle Tab Bar": "Toggle Tab Bar",
"Themes": "Themes",
"Theme Manager": "Theme Manager",
"&Settings": "&Einstellungen",
"&Help": "&Hilfe",
"&About": "&Über",
"Check For &Updates": "Check For &Updates",
"Links": "Links",
"Report Bugs/Issues": "Report Bugs/Issues",
"Website": "Website",
"Repository": "Repository",
"Open &DevTools": "Öffnen DevTools"
}
Empty file.
2 changes: 1 addition & 1 deletion src/lang.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
languages: ["en", "es", "hi", "it", "pt"],
languages: ["en", "es", "hi", "it", "pt", "de"],
fallbackLang: "en",
namespace: "translation",
};