From 104f7c84bcdac6ed10b49bb5d7bf37444c5c4b6e Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 2 Apr 2015 17:00:05 +0000 Subject: [PATCH] Phrasing enhancement: "User fired SQL queries" => "User-generated SQL queries" --- out/locale/en/LC_MESSAGES/default.po | 6 +++--- source/options.dfm | 4 ++-- source/options.pas | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/out/locale/en/LC_MESSAGES/default.po b/out/locale/en/LC_MESSAGES/default.po index edd31f07..146c6c71 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: 2015-04-02 11:53+0100\n" +"PO-Revision-Date: 2015-04-02 18:59+0100\n" "Last-Translator: Ansgar Becker \n" "Language-Team: English (http://www.transifex.com/projects/p/heidisql/" "language/en/)\n" @@ -2672,8 +2672,8 @@ msgstr "Errors" #. optionsform..pagecontrolMain..tabLogging..chkLogEventUserFiredSQL..Caption #: options.dfm:294 -msgid "User fired SQL queries" -msgstr "User fired SQL queries" +msgid "User-generated SQL queries" +msgstr "User-generated SQL queries" #. optionsform..pagecontrolMain..tabLogging..chkLogEventSQL..Caption #: options.dfm:303 diff --git a/source/options.dfm b/source/options.dfm index ce480219..a0b6dad2 100644 --- a/source/options.dfm +++ b/source/options.dfm @@ -315,12 +315,12 @@ object optionsform: Toptionsform TabOrder = 6 OnClick = Modified end - object chkLogEventUserFiredSQL: TCheckBox + object chkLogEventUserGeneratedSQL: TCheckBox Left = 202 Top = 113 Width = 240 Height = 17 - Caption = 'User fired SQL queries' + Caption = 'User-generated SQL queries' TabOrder = 7 OnClick = Modified end diff --git a/source/options.pas b/source/options.pas index e895ffc2..26361066 100644 --- a/source/options.pas +++ b/source/options.pas @@ -70,7 +70,7 @@ type editLogDir: TButtonedEdit; lblLogLevel: TLabel; chkLogEventErrors: TCheckBox; - chkLogEventUserFiredSQL: TCheckBox; + chkLogEventUserGeneratedSQL: TCheckBox; chkLogEventSQL: TCheckBox; chkLogEventInfo: TCheckBox; chkLogEventDebug: TCheckBox; @@ -236,7 +236,7 @@ begin AppSettings.WriteInt(asLogsqlwidth, updownLogSnip.Position); AppSettings.WriteString(asSessionLogsDirectory, editLogDir.Text); AppSettings.WriteBool(asLogErrors, chkLogEventErrors.Checked); - AppSettings.WriteBool(asLogUserSQL, chkLogEventUserFiredSQL.Checked); + AppSettings.WriteBool(asLogUserSQL, chkLogEventUserGeneratedSQL.Checked); AppSettings.WriteBool(asLogSQL, chkLogEventSQL.Checked); AppSettings.WriteBool(asLogInfos, chkLogEventInfo.Checked); AppSettings.WriteBool(asLogDebug, chkLogEventDebug.Checked); @@ -459,7 +459,7 @@ begin chkLogToFile.Checked := AppSettings.ReadBool(asLogToFile); editLogDir.Text := AppSettings.ReadString(asSessionLogsDirectory); chkLogEventErrors.Checked := AppSettings.ReadBool(asLogErrors); - chkLogEventUserFiredSQL.Checked := AppSettings.ReadBool(asLogUserSQL); + chkLogEventUserGeneratedSQL.Checked := AppSettings.ReadBool(asLogUserSQL); chkLogEventSQL.Checked := AppSettings.ReadBool(asLogSQL); chkLogEventInfo.Checked := AppSettings.ReadBool(asLogInfos); chkLogEventDebug.Checked := AppSettings.ReadBool(asLogDebug);