mirror of
https://github.com/gotson/komga.git
synced 2025-12-29 03:43:43 +01:00
refactor: add warning and info about book import feature
This commit is contained in:
parent
8a92b84fd0
commit
c8ffc15b76
2 changed files with 11 additions and 1 deletions
|
|
@ -582,6 +582,9 @@
|
|||
"error_analyze_first": "Book needs to be analyzed first",
|
||||
"error_only_import_no_errors": "Can only import books without errors",
|
||||
"error_choose_series": "Choose a series"
|
||||
}
|
||||
},
|
||||
"warning_early_feature": "Book Import is still an early feature, and must be used with caution. Make sure your source\n and destination files\n are backed up before using the Import feature.",
|
||||
"info_part1": "This screen lets you import files that are outside your existing libraries. You can only import files into\n existing Series, in which case Komga will move or copy the files into the directory of the chosen Series.",
|
||||
"info_part2": "If you choose a number for a book, and a book already exists with that number, then\n you will be able to compare the 2 books. If you decide to import the book, Komga will upgrade the existing book\n with the new one, effectively replacing the old file with the new."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
<template>
|
||||
<v-container fluid class="pa-6">
|
||||
<v-alert type="warning" text>{{ $t('book_import.warning_early_feature') }}</v-alert>
|
||||
|
||||
<v-alert type="info" text class="body-2">
|
||||
<div>{{ $t('book_import.info_part1') }}</div>
|
||||
<div class="mt-2">{{ $t('book_import.info_part2') }}</div>
|
||||
</v-alert>
|
||||
|
||||
<v-row align="center">
|
||||
<v-col>
|
||||
<v-text-field
|
||||
|
|
|
|||
Loading…
Reference in a new issue