diff --git a/README.md b/README.md index 6e18760..5c39a71 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/src/editor/locales/dutch.js b/src/editor/locales/dutch.js new file mode 100644 index 0000000..1a15ea0 --- /dev/null +++ b/src/editor/locales/dutch.js @@ -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' +} \ No newline at end of file diff --git a/src/editor/locales/index.js b/src/editor/locales/index.js index 03368c6..7fa8453 100644 --- a/src/editor/locales/index.js +++ b/src/editor/locales/index.js @@ -1,7 +1,9 @@ +import dutch from './dutch'; import hungarian from './hungarian'; import english from './english'; export default { + dutch, hungarian, english } \ No newline at end of file