mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-02 08:05:58 +09:00
Fix bug
This commit is contained in:
parent
6029b1ca58
commit
53f8428d4d
@ -7,7 +7,7 @@ import locale from '../../locales';
|
||||
export default class Replacer {
|
||||
private lang: string;
|
||||
|
||||
public pattern = /"%i18n:(.+?)%"|'%i18n:(.+?)%'|%i18n:(.+?)%/g;
|
||||
public pattern = /%i18n:(.+?)%/g;
|
||||
|
||||
constructor(lang: string) {
|
||||
this.lang = lang;
|
||||
@ -65,12 +65,6 @@ export default class Replacer {
|
||||
|
||||
if (ctx && ctx.lang) this.lang = ctx.lang;
|
||||
|
||||
if (match[0] == '"') {
|
||||
return '"' + this.get(name, key).replace(/"/g, '\\"') + '"';
|
||||
} else if (match[0] == "'") {
|
||||
return '\'' + this.get(name, key).replace(/'/g, '\\\'') + '\'';
|
||||
} else {
|
||||
return this.get(name, key);
|
||||
}
|
||||
return this.get(name, key).replace(/'/g, '\\x27').replace(/"/g, '\\x22');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user