feat: translate categories browser tab title (#2739)

This commit is contained in:
Kuchenpirat 2023-11-20 16:31:27 +01:00 committed by GitHub
parent b7cc5c0666
commit 05fec0b36e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -243,7 +243,7 @@ export default defineComponent({
},
head() {
return {
title: this.$t("settings.site-settings") as string,
title: this.$t("admin.maintenance.page-title") as string,
};
},
});

View File

@ -30,8 +30,10 @@ export default defineComponent({
actions,
};
},
head: {
title: "Categories",
head() {
return {
title: this.$tc("category.categories"),
};
},
});
</script>