mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Phrasing enhancement: "User fired SQL queries" => "User-generated SQL queries"
This commit is contained in:
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: HeidiSQL\n"
|
"Project-Id-Version: HeidiSQL\n"
|
||||||
"POT-Creation-Date: 2012-11-05 21:40\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 <anse@heidisql.com>\n"
|
"Last-Translator: Ansgar Becker <anse@heidisql.com>\n"
|
||||||
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/"
|
"Language-Team: English (http://www.transifex.com/projects/p/heidisql/"
|
||||||
"language/en/)\n"
|
"language/en/)\n"
|
||||||
@ -2672,8 +2672,8 @@ msgstr "Errors"
|
|||||||
|
|
||||||
#. optionsform..pagecontrolMain..tabLogging..chkLogEventUserFiredSQL..Caption
|
#. optionsform..pagecontrolMain..tabLogging..chkLogEventUserFiredSQL..Caption
|
||||||
#: options.dfm:294
|
#: options.dfm:294
|
||||||
msgid "User fired SQL queries"
|
msgid "User-generated SQL queries"
|
||||||
msgstr "User fired SQL queries"
|
msgstr "User-generated SQL queries"
|
||||||
|
|
||||||
#. optionsform..pagecontrolMain..tabLogging..chkLogEventSQL..Caption
|
#. optionsform..pagecontrolMain..tabLogging..chkLogEventSQL..Caption
|
||||||
#: options.dfm:303
|
#: options.dfm:303
|
||||||
|
@ -315,12 +315,12 @@ object optionsform: Toptionsform
|
|||||||
TabOrder = 6
|
TabOrder = 6
|
||||||
OnClick = Modified
|
OnClick = Modified
|
||||||
end
|
end
|
||||||
object chkLogEventUserFiredSQL: TCheckBox
|
object chkLogEventUserGeneratedSQL: TCheckBox
|
||||||
Left = 202
|
Left = 202
|
||||||
Top = 113
|
Top = 113
|
||||||
Width = 240
|
Width = 240
|
||||||
Height = 17
|
Height = 17
|
||||||
Caption = 'User fired SQL queries'
|
Caption = 'User-generated SQL queries'
|
||||||
TabOrder = 7
|
TabOrder = 7
|
||||||
OnClick = Modified
|
OnClick = Modified
|
||||||
end
|
end
|
||||||
|
@ -70,7 +70,7 @@ type
|
|||||||
editLogDir: TButtonedEdit;
|
editLogDir: TButtonedEdit;
|
||||||
lblLogLevel: TLabel;
|
lblLogLevel: TLabel;
|
||||||
chkLogEventErrors: TCheckBox;
|
chkLogEventErrors: TCheckBox;
|
||||||
chkLogEventUserFiredSQL: TCheckBox;
|
chkLogEventUserGeneratedSQL: TCheckBox;
|
||||||
chkLogEventSQL: TCheckBox;
|
chkLogEventSQL: TCheckBox;
|
||||||
chkLogEventInfo: TCheckBox;
|
chkLogEventInfo: TCheckBox;
|
||||||
chkLogEventDebug: TCheckBox;
|
chkLogEventDebug: TCheckBox;
|
||||||
@ -236,7 +236,7 @@ begin
|
|||||||
AppSettings.WriteInt(asLogsqlwidth, updownLogSnip.Position);
|
AppSettings.WriteInt(asLogsqlwidth, updownLogSnip.Position);
|
||||||
AppSettings.WriteString(asSessionLogsDirectory, editLogDir.Text);
|
AppSettings.WriteString(asSessionLogsDirectory, editLogDir.Text);
|
||||||
AppSettings.WriteBool(asLogErrors, chkLogEventErrors.Checked);
|
AppSettings.WriteBool(asLogErrors, chkLogEventErrors.Checked);
|
||||||
AppSettings.WriteBool(asLogUserSQL, chkLogEventUserFiredSQL.Checked);
|
AppSettings.WriteBool(asLogUserSQL, chkLogEventUserGeneratedSQL.Checked);
|
||||||
AppSettings.WriteBool(asLogSQL, chkLogEventSQL.Checked);
|
AppSettings.WriteBool(asLogSQL, chkLogEventSQL.Checked);
|
||||||
AppSettings.WriteBool(asLogInfos, chkLogEventInfo.Checked);
|
AppSettings.WriteBool(asLogInfos, chkLogEventInfo.Checked);
|
||||||
AppSettings.WriteBool(asLogDebug, chkLogEventDebug.Checked);
|
AppSettings.WriteBool(asLogDebug, chkLogEventDebug.Checked);
|
||||||
@ -459,7 +459,7 @@ begin
|
|||||||
chkLogToFile.Checked := AppSettings.ReadBool(asLogToFile);
|
chkLogToFile.Checked := AppSettings.ReadBool(asLogToFile);
|
||||||
editLogDir.Text := AppSettings.ReadString(asSessionLogsDirectory);
|
editLogDir.Text := AppSettings.ReadString(asSessionLogsDirectory);
|
||||||
chkLogEventErrors.Checked := AppSettings.ReadBool(asLogErrors);
|
chkLogEventErrors.Checked := AppSettings.ReadBool(asLogErrors);
|
||||||
chkLogEventUserFiredSQL.Checked := AppSettings.ReadBool(asLogUserSQL);
|
chkLogEventUserGeneratedSQL.Checked := AppSettings.ReadBool(asLogUserSQL);
|
||||||
chkLogEventSQL.Checked := AppSettings.ReadBool(asLogSQL);
|
chkLogEventSQL.Checked := AppSettings.ReadBool(asLogSQL);
|
||||||
chkLogEventInfo.Checked := AppSettings.ReadBool(asLogInfos);
|
chkLogEventInfo.Checked := AppSettings.ReadBool(asLogInfos);
|
||||||
chkLogEventDebug.Checked := AppSettings.ReadBool(asLogDebug);
|
chkLogEventDebug.Checked := AppSettings.ReadBool(asLogDebug);
|
||||||
|
Reference in New Issue
Block a user