You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
496 B
JavaScript
30 lines
496 B
JavaScript
8 years ago
|
const path = require('path');
|
||
|
const fs = require('fs');
|
||
|
|
||
|
function normalizeLocaleName(locale) {
|
||
|
if (/^en-/.test(locale)) {
|
||
|
return 'en';
|
||
|
}
|
||
|
|
||
|
return locale;
|
||
|
}
|
||
|
|
||
|
function getLocaleMessages(locale) {
|
||
|
const onDiskLocale = locale.replace('-', '_');
|
||
8 years ago
|
|
||
|
const targetFile = path.join(
|
||
|
__dirname,
|
||
|
'..',
|
||
|
'_locales',
|
||
|
onDiskLocale,
|
||
|
'messages.json'
|
||
|
);
|
||
8 years ago
|
|
||
|
return JSON.parse(fs.readFileSync(targetFile, 'utf-8'))
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
normalizeLocaleName,
|
||
|
getLocaleMessages
|
||
|
}
|