freeCodeCamp/tools/challenge-parser/translation-parser/__mocks__/mock-comments.js

17 lines
501 B
JavaScript

const SIMPLE_TRANSLATION = {
'Add your code below this line': {
chinese: '(Chinese) Add your code below this line (Chinese)'
},
'Add your code above this line': {
chinese: '(Chinese) Add your code above this line (Chinese)'
},
'change code below this line': {
chinese: '(Chinese) change code below this line (Chinese)'
},
'change code above this line': {
chinese: '(Chinese) change code above this line (Chinese)'
}
};
exports.SIMPLE_TRANSLATION = SIMPLE_TRANSLATION;