case 3997

This commit is contained in:
2021-10-08 22:31:38 +00:00
parent 4c0364b8cc
commit fa2cc1aef0

View File

@@ -360,20 +360,6 @@ export default {
if (this.appBar.title == null || this.appBar.title == "") {
return null;
}
if (this.appBar.title.includes(":")) {
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);
// //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;
}
},