This commit is contained in:
2022-02-14 18:30:41 +00:00
parent 529dc504e1
commit edcfe6b486
5 changed files with 53 additions and 48 deletions

View File

@@ -297,7 +297,11 @@ export default {
//translate each and replace and return the string translated
// (fetch and cache any missing strings)
async translateStringWithMultipleKeysAsync(s) {
if (s == null) {
return s;
}
let ret = s;
const found = s.match(/LT:[\w]*/gm);
if (found == null) {
return ret;