mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-03 20:31:43 -05:00
10 lines
224 B
React
10 lines
224 B
React
|
var ReactIntl = require('react-intl');
|
||
|
|
||
|
var customLanguages = require('../../custom-locales.json');
|
||
|
|
||
|
for (var locale in customLanguages) {
|
||
|
ReactIntl.addLocaleData(customLanguages[locale]);
|
||
|
}
|
||
|
|
||
|
module.exports = ReactIntl;
|