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 2560fd0 commit 431d1c4Copy full SHA for 431d1c4
instructions.js
@@ -1,5 +1,6 @@
1
var instructionsDe = require('./instructions/de.json');
2
var instructionsEn = require('./instructions/en.json');
3
+var instructionsFr = require('./instructions/fr.json');
4
5
module.exports = {
6
get: function(language) {
@@ -8,6 +9,8 @@ module.exports = {
8
9
return instructionsEn;
10
case 'de':
11
return instructionsDe;
12
+ case 'fr':
13
+ return instructionsFr;
14
default:
15
throw 'invalid language ' + language;
16
}
0 commit comments