💥 Careful: This package is no longer maintained and is only here for historic reasons. This means you should very likely not use it. You have been warned. 💥
Load gettext PO files as i18next format directly in webpack
npm install i18next-po-loader --save-dev
{
test: /\.po$/,
loaders: ['i18next-po-loader']
}
i18next.init({
nsSeparator: false,
keySeparator: false,
lng: 'en',
resources: {
de: {translation: require('./translations/de.po')}
}
})