Skip to content

Commit

Permalink
Add Dutch translations (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
daanhaitsma authored Apr 4, 2020
1 parent 6eefae4 commit 92e289c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Available Modules:
Available Locales:
- english (default)
- hungarian
- dutch

Note on the image upload API endpoint:
- Image is uploaded by `multipart/form-data`
Expand Down
20 changes: 20 additions & 0 deletions src/editor/locales/dutch.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
locale_name: 'Dutch',
locale_shorthand: ['nl', 'dutch'],
// Translations:
justifyCenter: 'Gecentreerd uitlijnen',
justifyLeft: 'Links uitlijnen',
justifyRight: 'Rechts uitlijnen',
bold: 'Vet',
code: 'Code',
headings: 'Titels (h1-h6)',
link: 'Hyperlink',
image: 'Afbeelding invoegen',
italic: 'Cursief',
orderedList: 'Nummering (1, 2, 3, ...)',
unorderedList: 'Opsomming',
removeFormat: 'Opmaak verwijderen.\nMaakt titels, vetgedrukt, cursief, onderstreept etc. ongedaan.',
separator: null,
table: 'Tabel invoegen',
underline: 'Onderstrepen'
}
2 changes: 2 additions & 0 deletions src/editor/locales/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import dutch from './dutch';
import hungarian from './hungarian';
import english from './english';

export default {
dutch,
hungarian,
english
}

0 comments on commit 92e289c

Please sign in to comment.