2017-05-16 18:00:56 +03:00
|
|
|
/**
|
|
|
|
* Replace i18n texts
|
|
|
|
*/
|
|
|
|
|
2017-12-17 07:35:30 +02:00
|
|
|
import Replacer from '../../../src/common/build/i18n';
|
2017-05-16 18:00:56 +03:00
|
|
|
|
2017-12-17 07:35:30 +02:00
|
|
|
export default lang => {
|
|
|
|
const replacer = new Replacer(lang);
|
2017-10-25 14:29:14 +03:00
|
|
|
|
|
|
|
return {
|
2018-02-15 19:53:54 +02:00
|
|
|
//enforce: 'post',
|
2018-02-10 10:01:32 +02:00
|
|
|
test: /\.(vue|js|ts)$/,
|
2017-10-25 14:29:14 +03:00
|
|
|
exclude: /node_modules/,
|
2018-02-15 19:53:54 +02:00
|
|
|
loader: 'replace',
|
2018-02-15 16:07:19 +02:00
|
|
|
query: {
|
2018-02-15 19:53:54 +02:00
|
|
|
search: replacer.pattern.toString(),
|
2018-02-15 16:07:19 +02:00
|
|
|
replace: replacer.replacement
|
|
|
|
}
|
2017-10-25 14:29:14 +03:00
|
|
|
};
|
|
|
|
};
|