2017-12-17 05:35:30 +00:00
|
|
|
/**
|
|
|
|
* Replace i18n texts
|
|
|
|
*/
|
|
|
|
|
2018-03-28 16:20:40 +00:00
|
|
|
import locale from '../../locales';
|
2017-12-17 05:35:30 +00:00
|
|
|
|
|
|
|
export default class Replacer {
|
|
|
|
private lang: string;
|
|
|
|
|
|
|
|
public pattern = /"%i18n:(.+?)%"|'%i18n:(.+?)%'|%i18n:(.+?)%/g;
|
|
|
|
|
|
|
|
constructor(lang: string) {
|
|
|
|
this.lang = lang;
|
|
|
|
|
|
|
|
this.get = this.get.bind(this);
|
|
|
|
this.replacement = this.replacement.bind(this);
|
|
|
|
}
|
|
|
|
|
2018-04-14 16:20:46 +00:00
|
|
|
private get(path: string, key: string) {
|
2018-02-10 01:27:05 +00:00
|
|
|
const texts = locale[this.lang];
|
|
|
|
|
|
|
|
if (texts == null) {
|
|
|
|
console.warn(`lang '${this.lang}' is not supported`);
|
|
|
|
return key; // Fallback
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:32:59 +00:00
|
|
|
let text = texts;
|
2017-12-17 05:35:30 +00:00
|
|
|
|
2018-04-14 16:20:46 +00:00
|
|
|
if (path) {
|
|
|
|
if (text.hasOwnProperty(path)) {
|
|
|
|
text = text[path];
|
|
|
|
} else {
|
|
|
|
console.warn(`path '${path}' not found in '${this.lang}'`);
|
|
|
|
return key; // Fallback
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-17 05:35:30 +00:00
|
|
|
// Check the key existance
|
|
|
|
const error = key.split('.').some(k => {
|
2018-02-10 01:32:59 +00:00
|
|
|
if (text.hasOwnProperty(k)) {
|
|
|
|
text = text[k];
|
2017-12-17 05:35:30 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (error) {
|
2018-04-14 16:20:46 +00:00
|
|
|
console.warn(`key '${key}' not found in '${path}' of '${this.lang}'`);
|
2017-12-17 05:35:30 +00:00
|
|
|
return key; // Fallback
|
|
|
|
} else {
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-14 16:04:40 +00:00
|
|
|
public replacement(ctx, match, a, b, c) {
|
|
|
|
const client = 'misskey/src/client/app/';
|
2018-04-14 20:22:16 +00:00
|
|
|
let name = null;
|
2018-04-14 16:04:40 +00:00
|
|
|
|
|
|
|
let key = a || b || c;
|
|
|
|
if (key[0] == '@') {
|
2018-04-14 20:22:16 +00:00
|
|
|
name = ctx.src.substr(ctx.src.indexOf(client) + client.length);
|
2018-04-14 16:20:46 +00:00
|
|
|
key = key.substr(1);
|
2018-04-14 16:04:40 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 21:16:50 +00:00
|
|
|
if (ctx && ctx.lang) this.lang = ctx.lang;
|
|
|
|
|
2017-12-17 05:35:30 +00:00
|
|
|
if (match[0] == '"') {
|
2018-04-14 16:20:46 +00:00
|
|
|
return '"' + this.get(name, key).replace(/"/g, '\\"') + '"';
|
2017-12-17 05:35:30 +00:00
|
|
|
} else if (match[0] == "'") {
|
2018-04-14 16:20:46 +00:00
|
|
|
return '\'' + this.get(name, key).replace(/'/g, '\\\'') + '\'';
|
2017-12-17 05:35:30 +00:00
|
|
|
} else {
|
2018-04-14 16:20:46 +00:00
|
|
|
return this.get(name, key);
|
2017-12-17 05:35:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|