Skip to content

Commit b50655e

Browse files
authored
Added Dutch translation (#72)
1 parent 431d1c4 commit b50655e

File tree

3 files changed

+414
-0
lines changed

3 files changed

+414
-0
lines changed

instructions.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
var instructionsDe = require('./instructions/de.json');
22
var instructionsEn = require('./instructions/en.json');
33
var instructionsFr = require('./instructions/fr.json');
4+
var instructionsNl = require('./instructions/nl.json');
45

56
module.exports = {
67
get: function(language) {
@@ -11,6 +12,8 @@ module.exports = {
1112
return instructionsDe;
1213
case 'fr':
1314
return instructionsFr;
15+
case 'nl':
16+
return instructionsNl;
1417
default:
1518
throw 'invalid language ' + language;
1619
}

0 commit comments

Comments
 (0)