clarify that the initially selected field separator is a guess

This commit is contained in:
llama 2025-05-11 22:34:43 +08:00
parent 5080451829
commit 76a5a298e1
No known key found for this signature in database
GPG key ID: 0B7543854B9413C3
2 changed files with 4 additions and 1 deletions

View file

@ -15,6 +15,7 @@ importing-colon = Colon
importing-comma = Comma
importing-empty-first-field = Empty first field: { $val }
importing-field-separator = Field separator
importing-field-separator-guessed = Field separator (guessed)
importing-field-mapping = Field mapping
importing-field-of-file-is = Field <b>{ $val }</b> of file is:
importing-fields-separated-by = Fields separated by: { $val }

View file

@ -65,7 +65,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<SettingTitle
on:click={() => openHelpModal(Object.keys(settings).indexOf("delimiter"))}
>
{settings.delimiter.title}
{$metadata.forceDelimiter
? settings.delimiter.title
: tr.importingFieldSeparatorGuessed()}
</SettingTitle>
</EnumSelectorRow>