mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Follow up to e66121a1c3cfe00c3ddbaca27ac11a052f4f4f6a: extend warning message to point the user in the right direction. See https://www.heidisql.com/forum.php?t=37505#p37514
This commit is contained in:
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: HeidiSQL\n"
|
||||
"POT-Creation-Date: 2012-11-05 21:40\n"
|
||||
"PO-Revision-Date: 2021-01-17 14:36+0100\n"
|
||||
"PO-Revision-Date: 2021-01-22 08:03+0100\n"
|
||||
"Last-Translator: Ansgar Becker <anse@heidisql.com>\n"
|
||||
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/language/en/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -6649,6 +6649,9 @@ msgstr "Really auto-detect file encoding?"
|
||||
msgid "Auto detecting the encoding of a file is highly discouraged. You may experience data loss if the detection fails."
|
||||
msgstr "Auto detecting the encoding of a file is highly discouraged. You may experience data loss if the detection fails."
|
||||
|
||||
msgid "To avoid this message select the correct encoding before pressing Open."
|
||||
msgstr "To avoid this message select the correct encoding before pressing Open."
|
||||
|
||||
msgid "keyword"
|
||||
msgstr "keyword"
|
||||
|
||||
|
@ -3856,7 +3856,8 @@ begin
|
||||
Encoding := GetEncodingByName(Dialog.Encodings[Dialog.EncodingIndex]);
|
||||
if Encoding = nil then begin
|
||||
ProceedResult := MessageDialog(_('Really auto-detect file encoding?') + SLineBreak + SLineBreak +
|
||||
_('Auto detecting the encoding of a file is highly discouraged. You may experience data loss if the detection fails.'),
|
||||
_('Auto detecting the encoding of a file is highly discouraged. You may experience data loss if the detection fails.') + SLineBreak + SLineBreak +
|
||||
_('To avoid this message select the correct encoding before pressing Open.'),
|
||||
mtConfirmation, [mbYes, mbCancel]);
|
||||
end else begin
|
||||
ProceedResult := mrYes;
|
||||
|
Reference in New Issue
Block a user