Skip to content

Commit 431d1c4

Browse files
guillaumerosefreenerd
authored andcommitted
Add french translation (#69)
1 parent 2560fd0 commit 431d1c4

File tree

3 files changed

+413
-0
lines changed

3 files changed

+413
-0
lines changed

instructions.js

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

45
module.exports = {
56
get: function(language) {
@@ -8,6 +9,8 @@ module.exports = {
89
return instructionsEn;
910
case 'de':
1011
return instructionsDe;
12+
case 'fr':
13+
return instructionsFr;
1114
default:
1215
throw 'invalid language ' + language;
1316
}

0 commit comments

Comments
 (0)