mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
SiteMenu translatable
This commit is contained in:
parent
7a2ff1b01e
commit
01830b6ca2
3 changed files with 11 additions and 5 deletions
|
@ -54,31 +54,31 @@ export default {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "mdi-calendar-week",
|
icon: "mdi-calendar-week",
|
||||||
title: this.$i18n.t("meal-plan.dinner-this-week"),
|
title: this.$t("meal-plan.dinner-this-week"),
|
||||||
nav: "/meal-plan/this-week",
|
nav: "/meal-plan/this-week",
|
||||||
restricted: true,
|
restricted: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "mdi-calendar-today",
|
icon: "mdi-calendar-today",
|
||||||
title: this.$i18n.t("meal-plan.dinner-today"),
|
title: this.$t("meal-plan.dinner-today"),
|
||||||
nav: "/meal-plan/today",
|
nav: "/meal-plan/today",
|
||||||
restricted: true,
|
restricted: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "mdi-calendar-multiselect",
|
icon: "mdi-calendar-multiselect",
|
||||||
title: this.$i18n.t("meal-plan.planner"),
|
title: this.$t("meal-plan.planner"),
|
||||||
nav: "/meal-plan/planner",
|
nav: "/meal-plan/planner",
|
||||||
restricted: true,
|
restricted: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "mdi-account",
|
icon: "mdi-account",
|
||||||
title: "Logout",
|
title: this.$t('auth.logout'),
|
||||||
restricted: true,
|
restricted: true,
|
||||||
nav: "/logout",
|
nav: "/logout",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "mdi-cog",
|
icon: "mdi-cog",
|
||||||
title: this.$i18n.t("general.settings"),
|
title: this.$t("general.settings"),
|
||||||
nav: "/admin",
|
nav: "/admin",
|
||||||
restricted: true,
|
restricted: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -175,5 +175,8 @@
|
||||||
"title": "Chowdown",
|
"title": "Chowdown",
|
||||||
"description": "Migrate data from Chowdown"
|
"description": "Migrate data from Chowdown"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"auth": {
|
||||||
|
"logout": "Logout"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -175,5 +175,8 @@
|
||||||
"title": "Chowdown",
|
"title": "Chowdown",
|
||||||
"description": "Importer des recettes depuis Chowdown"
|
"description": "Importer des recettes depuis Chowdown"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"auth": {
|
||||||
|
"logout": "Déconnexion"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue