We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 431d1c4 commit b50655eCopy full SHA for b50655e
instructions.js
@@ -1,6 +1,7 @@
1
var instructionsDe = require('./instructions/de.json');
2
var instructionsEn = require('./instructions/en.json');
3
var instructionsFr = require('./instructions/fr.json');
4
+var instructionsNl = require('./instructions/nl.json');
5
6
module.exports = {
7
get: function(language) {
@@ -11,6 +12,8 @@ module.exports = {
11
12
return instructionsDe;
13
case 'fr':
14
return instructionsFr;
15
+ case 'nl':
16
+ return instructionsNl;
17
default:
18
throw 'invalid language ' + language;
19
}
0 commit comments