-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create german.js * Add german translation
- Loading branch information
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
locale_name: 'Deutsch', | ||
locale_shorthand: ['de', 'deutsch'], | ||
// Translations: | ||
justifyCenter: 'Zentriert', | ||
justifyLeft: 'Linksbündig', | ||
justifyRight: 'Rechtsbündig', | ||
bold: 'Fett', | ||
code: 'Programmcode', | ||
headings: 'Überschriften (h1-h6)', | ||
link: 'Link', | ||
image: 'Bild einfügen', | ||
italic: 'Kursiv', | ||
orderedList: 'Nummerierung (1, 2, 3, ...)', | ||
unorderedList: 'Aufzählung', | ||
removeFormat: 'Formatierung entfernen.\nEntfernt Überschriften, fett, kursiv, unterstrichen, usw.', | ||
separator: 'Querstrich', | ||
table: 'Tabelle einfügen', | ||
underline: 'Unterstrichen' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import dutch from './dutch'; | ||
import hungarian from './hungarian'; | ||
import german from './german'; | ||
import english from './english'; | ||
|
||
export default { | ||
dutch, | ||
hungarian, | ||
german, | ||
english | ||
} |