Skip to content

Commit

Permalink
Fix wrong finish message in log result, when doing something differen…
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Nov 14, 2022
1 parent dc40863 commit f33ccc7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion out/locale/en/LC_MESSAGES/default.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: HeidiSQL\n"
"POT-Creation-Date: 2012-11-05 21:40\n"
"PO-Revision-Date: 2022-10-31 17:24+0100\n"
"PO-Revision-Date: 2022-11-14 19:43+0100\n"
"Last-Translator: Ansgar Becker <anse@heidisql.com>\n"
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/language/en/)\n"
"Language: en\n"
Expand Down Expand Up @@ -5345,6 +5345,9 @@ msgstr "Unhandled tree level"
msgid "Export finished"
msgstr "Export finished"

msgid "%s finished"
msgstr "%s finished"

#: table_editor.pas:380
msgid "%s Index \"%s\" does not contain any column. You can add columns using drag''n drop from the columns list."
msgstr "%s Index \"%s\" does not contain any column. You can add columns using drag''n drop from the columns list."
Expand Down
2 changes: 1 addition & 1 deletion source/tabletools.pas
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ procedure TfrmTableTools.Execute(Sender: TObject);
end;
FModifiedDbs.Clear;

AddNotes('', '', _('Export finished'), '');
AddNotes('', '', f_('%s finished', [tabsTools.ActivePage.Caption]), '');
btnCloseOrCancel.Caption := _('Close');
btnCloseOrCancel.ModalResult := mrCancel;
MainForm.ShowStatusMsg;
Expand Down

0 comments on commit f33ccc7

Please sign in to comment.