case 3987

This commit is contained in:
2021-09-29 20:22:50 +00:00
parent 67ce070580
commit b925badccc
3 changed files with 35 additions and 14 deletions

View File

@@ -364,13 +364,17 @@ export default {
const t = this.appBar.title.split(":");
return t[1] + " " + this.$ay.t(t[0]);
}
if (this.appBar.isMain) {
//if ismain then it's a translation key
return this.$ay.t(this.appBar.title);
} else {
//if not ismain then it's a record name
return this.appBar.title;
}
// if (this.appBar.isMain) {
// //if ismain then it's a translation key
// //return this.$ay.t(this.appBar.title);
// //update, no it's not, gzmenu now translatest it ahead of time so this has changed (build alpha 132)
// return this.appBar.title;
// } else {
// //if not ismain then it's a record name
// return this.appBar.title;
// }
//due to changes at gzmenu in build alpha 132 the remaining possiblities are all to just show the title as is no translation
return this.appBar.title;
}
},
props: {