mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 09:05:49 -05:00
17 lines
501 B
JavaScript
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;
|