diff --git a/out/locale/en/LC_MESSAGES/default.po b/out/locale/en/LC_MESSAGES/default.po index ce2c31d40..162666018 100644 --- a/out/locale/en/LC_MESSAGES/default.po +++ b/out/locale/en/LC_MESSAGES/default.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: HeidiSQL\n" "POT-Creation-Date: 2012-11-05 21:40\n" -"PO-Revision-Date: 2022-12-06 19:09+0100\n" +"PO-Revision-Date: 2022-12-11 12:51+0100\n" "Last-Translator: Ansgar Becker \n" "Language-Team: English (http://www.transifex.com/projects/p/heidisql/language/en/)\n" "Language: en\n" @@ -1732,6 +1732,9 @@ msgstr "Cut|Cuts the selection and puts it on the Clipboard" msgid "&Undo" msgstr "&Undo" +msgid "Undo|Revert last modification" +msgstr "Undo|Revert last modification" + #. MainForm..ActionList1..actAboutBox..Caption #: main.dfm:1931 msgid "About..." @@ -6752,3 +6755,27 @@ msgstr "Auto-disabling wordwrap for large text" msgid "%d tab(s) took longer than expected to restore. Closing and reopening these should fix that: %s" msgstr "%d tab(s) took longer than expected to restore. Closing and reopening these should fix that: %s" + +msgid "Library:" +msgstr "Library:" + +msgid "Move line up" +msgstr "Move line up" + +msgid "Move line down" +msgstr "Move line down" + +msgid "New query tab in background" +msgstr "New query tab in background" + +msgid "Follow foreign key" +msgstr "Follow foreign key" + +msgid "Follow foreign key to the linked table" +msgstr "Follow foreign key to the linked table" + +msgid "Copy with tabs to spaces" +msgstr "Copy with tabs to spaces" + +msgid "Connection properties" +msgstr "Connection properties" diff --git a/source/main.dfm b/source/main.dfm index 30b6db299..406555ab6 100644 --- a/source/main.dfm +++ b/source/main.dfm @@ -2079,6 +2079,9 @@ object MainForm: TMainForm object MainMenuEdit: TMenuItem Caption = 'Edit' Hint = 'Edit commands' + object Undo1: TMenuItem + Action = actUndo + end object CopyItem: TMenuItem Action = actCopy end @@ -2428,6 +2431,7 @@ object MainForm: TMainForm Category = 'Various' Caption = '&Undo' Enabled = False + Hint = 'Undo|Revert last modification' ImageIndex = 40 ImageName = 'icons8-undo' ShortCut = 32776 diff --git a/source/main.pas b/source/main.pas index 85965be08..e6021c40b 100644 --- a/source/main.pas +++ b/source/main.pas @@ -778,6 +778,7 @@ TMainForm = class(TExtForm) Movelineup1: TMenuItem; menuToggleAll: TMenuItem; menuCloseTabOnDblClick: TMenuItem; + Undo1: TMenuItem; procedure actCreateDBObjectExecute(Sender: TObject); procedure menuConnectionsPopup(Sender: TObject); procedure actExitApplicationExecute(Sender: TObject);