From ec843d5616bf948351ca0bee947cd50e3f2caaad Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Tue, 6 Oct 2015 18:46:46 +0000 Subject: [PATCH] Revert translation of drop down values, which get used as SQL keywords in maintenance dialog. See http://www.heidisql.com/forum.php?t=19510 --- source/tabletools.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tabletools.pas b/source/tabletools.pas index 0cf83793..2a402e14 100644 --- a/source/tabletools.pas +++ b/source/tabletools.pas @@ -303,9 +303,9 @@ begin // CHECKSUM available since MySQL 4.1.1 idx := comboOperation.ItemIndex; if idx = -1 then idx := 0; - comboOperation.Items.CommaText := _('Check')+','+_('Analyze')+','+_('Checksum')+','+_('Optimize')+','+_('Repair'); + comboOperation.Items.CommaText := 'Check,Analyze,Checksum,Optimize,Repair'; if Mainform.ActiveConnection.ServerVersionInt < 40101 then - comboOperation.Items.Text := StringReplace(comboOperation.Items.Text, _('Checksum'), _('Checksum')+' ('+_(SUnsupported)+')', [rfReplaceAll]); + comboOperation.Items.Text := StringReplace(comboOperation.Items.Text, 'Checksum', 'Checksum ('+_(SUnsupported)+')', [rfReplaceAll]); comboOperation.ItemIndex := idx; comboOperation.OnChange(Sender);