2018-05-17 02:28:31 +02:00
|
|
|
/**
|
|
|
|
* Replace i18n texts
|
|
|
|
*/
|
|
|
|
|
2018-05-20 13:26:38 +02:00
|
|
|
export const pattern = /%i18n:([a-z0-9_\-@\.]+?)%/g;
|
2018-05-17 02:28:31 +02:00
|
|
|
|
2018-06-18 02:54:53 +02:00
|
|
|
export const replacement = (ctx: any, _: any, key: string) => {
|
2018-05-17 02:28:31 +02:00
|
|
|
const client = '/src/client/app/';
|
|
|
|
let name = null;
|
|
|
|
|
2018-08-25 15:42:26 +02:00
|
|
|
if (key.startsWith('@')) {
|
2018-05-17 02:28:31 +02:00
|
|
|
name = ctx.src.substr(ctx.src.indexOf(client) + client.length);
|
|
|
|
key = key.substr(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = name ? `${name}|${key}` : key;
|
|
|
|
|
2018-05-20 13:26:38 +02:00
|
|
|
return `%i18n:${path}%`;
|
2018-05-17 02:28:31 +02:00
|
|
|
};
|