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 ""
|
||||
"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 <anse@heidisql.com>\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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user