scratch-www/src/lib/intl.jsx

10 lines
224 B
React
Raw Normal View History

var ReactIntl = require('react-intl');
var customLanguages = require('../../custom-locales.json');
for (var locale in customLanguages) {
ReactIntl.addLocaleData(customLanguages[locale]);
}
module.exports = ReactIntl;