mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-01 16:14:21 -05:00
translate hardcoded strings
This commit is contained in:
@@ -121,7 +121,7 @@
|
||||
<template #icon>
|
||||
{{ $globals.icons.database }}
|
||||
</template>
|
||||
Import
|
||||
{{ $t('general.import') }}}
|
||||
</BaseButton>
|
||||
<BaseButton
|
||||
color="info"
|
||||
|
||||
@@ -392,6 +392,11 @@ export default defineComponent({
|
||||
getMigrationReports,
|
||||
};
|
||||
},
|
||||
head() {
|
||||
return {
|
||||
title: this.$tc("settings.migrations"),
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
@@ -181,7 +181,7 @@ export default defineComponent({
|
||||
const optionsSections: OptionSection[] = [
|
||||
{
|
||||
id: 1,
|
||||
text: "Recipe Events",
|
||||
text: i18n.tc("events.recipe-events"),
|
||||
options: [
|
||||
{
|
||||
text: i18n.t("general.create") as string,
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<v-container v-if="report">
|
||||
<BaseCardSectionTitle :title="report.name"> </BaseCardSectionTitle>
|
||||
|
||||
<v-card-text> Report Id: {{ id }} </v-card-text>
|
||||
<v-card-text> {{ $t('group.report-with-id', { id:id }) }} </v-card-text>
|
||||
|
||||
<v-data-table :headers="itemHeaders" :items="report.entries" :items-per-page="50" show-expand>
|
||||
<template #item.success="{ item }">
|
||||
|
||||
Reference in New Issue
Block a user