Skip to content

Commit

Permalink
feat: translate categories browser tab title (#2739)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuchenpirat authored Nov 20, 2023
1 parent b7cc5c0 commit 05fec0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/pages/admin/maintenance/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
},
});
Expand Down
6 changes: 4 additions & 2 deletions frontend/pages/g/_groupSlug/recipes/categories/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ export default defineComponent({
actions,
};
},
head: {
title: "Categories",
head() {
return {
title: this.$tc("category.categories"),
};
},
});
</script>

0 comments on commit 05fec0b

Please sign in to comment.