diff --git a/ftl/core/importing.ftl b/ftl/core/importing.ftl index bf3162809..c0bc724f3 100644 --- a/ftl/core/importing.ftl +++ b/ftl/core/importing.ftl @@ -67,6 +67,12 @@ importing-packaged-anki-deckcollection-apkg-colpkg-zip = Packaged Anki Deck/Coll importing-pauker-18-lesson-paugz = Pauker 1.8 Lesson (*.pau.gz) # the '|' character importing-pipe = Pipe +# Warning displayed when the csv import preview table is clipped (some columns were hidden) +# $count is intended to be a large number (1000 and above) +importing-preview-truncated = + { $count -> + *[other] Only the first { $count } columns are shown. If this doesn't seem right, try changing the field separator. + } importing-rows-had-num1d-fields-expected-num2d = '{ $row }' had { $found } fields, expected { $expected } importing-selected-file-was-not-in-utf8 = Selected file was not in UTF-8 format. Please see the importing section of the manual. importing-semicolon = Semicolon diff --git a/ts/routes/import-csv/Preview.svelte b/ts/routes/import-csv/Preview.svelte index c5ae37879..5f0829450 100644 --- a/ts/routes/import-csv/Preview.svelte +++ b/ts/routes/import-csv/Preview.svelte @@ -3,12 +3,34 @@ Copyright: Ankitects Pty Ltd and contributors License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html -->