feat: Removed Cross-Version Disclaimer from Backup Page (#2597)

* removed cross-version disclaimer from backup text

* grammar tweak
This commit is contained in:
Michael Genson 2023-10-07 14:23:26 -05:00 committed by GitHub
parent a98e863bca
commit b86c4e5865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -573,8 +573,7 @@
"import-summary": "Import Summary",
"partial-backup": "Partial Backup",
"unable-to-delete-backup": "Unable to Delete Backup.",
"experimental-description": "Backups a total snapshots of the database and data directory of the site. This includes all data and cannot be set to exclude subsets of data. You can think off this as a snapshot of Mealie at a specific time. Currently, {not-crossed-version} (data migrations are not done automatically). These serve as a database agnostic way to export and import data or backup the site to an external location.",
"not-crossed-version": "this backup mechanism is not cross-version and therefore cannot be used to migrate data between versions",
"experimental-description": "Backups are total snapshots of the database and data directory of the site. This includes all data and cannot be set to exclude subsets of data. You can think off this as a snapshot of Mealie at a specific time. These serve as a database agnostic way to export and import data, or back up the site to an external location.",
"backup-restore": "Backup Restore",
"back-restore-description": "Restoring this backup will overwrite all the current data in your database and in the data directory and replace them with the contents of this backup. {cannot-be-undone} If the restoration is successful, you will be logged out.",
"cannot-be-undone": "This action cannot be undone - use with caution.",

View File

@ -57,11 +57,7 @@
<section>
<BaseCardSectionTitle :title="$tc('settings.backup-and-exports')">
<v-card-text class="py-0 px-1">
<i18n path="settings.backup.experimental-description">
<template #not-crossed-version>
<b> {{ $t('settings.backup.not-crossed-version') }} </b>
</template>
</i18n>
<i18n path="settings.backup.experimental-description" />
</v-card-text>
</BaseCardSectionTitle>
<BaseButton @click="createBackup"> {{ $t("settings.backup.create-heading") }} </BaseButton>