mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
Fix quotations not working in localisation
This commit is contained in:
parent
e39b441c16
commit
528b475429
2 changed files with 4 additions and 2 deletions
|
@ -268,8 +268,10 @@ export default class Utils {
|
|||
}
|
||||
|
||||
getLocalizedMessage(text: string): string | false {
|
||||
console.log(chrome.i18n.getMessage("forceChannelCheckPopup"));
|
||||
const valNewH = text.replace(/__MSG_(\w+)__/g, function(match, v1) {
|
||||
return v1 ? chrome.i18n.getMessage(v1).replace("\n", "<br/>") : "";
|
||||
return v1 ? chrome.i18n.getMessage(v1).replaceAll("<", "<")
|
||||
.replaceAll('"', """).replaceAll("\n", "<br/>") : "";
|
||||
});
|
||||
|
||||
if(valNewH != text) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"target": "es2021",
|
||||
"noImplicitAny": false,
|
||||
"sourceMap": false,
|
||||
"outDir": "dist/js",
|
||||
|
|
Loading…
Reference in a new issue