mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 13:59:31 +02:00
* Improved localisation by Maxim Ganetsky
git-svn-id: trunk@21011 -
This commit is contained in:
parent
ea95a7e23c
commit
b60d4f0c55
@ -273,6 +273,9 @@ const
|
||||
SYNS_LangUnreal = 'Unreal';
|
||||
SYNS_LangTeX = 'TeX';
|
||||
|
||||
{$IFDEF SYN_LAZARUS}
|
||||
resourcestring
|
||||
{$ENDIF}
|
||||
|
||||
SYNS_emcNone = 'No Action';
|
||||
SYNS_emcStartSelection = 'Selection';
|
||||
|
@ -95,6 +95,9 @@ type
|
||||
class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
|
||||
end;
|
||||
|
||||
var
|
||||
MMoveName: Array [Boolean] of String;
|
||||
|
||||
implementation
|
||||
|
||||
const
|
||||
@ -102,8 +105,6 @@ const
|
||||
{ TEditorMouseOptionsFrame }
|
||||
|
||||
procedure TEditorMouseOptionsFrame.ContextTreeChange(Sender: TObject; Node: TTreeNode);
|
||||
const
|
||||
MMoveName: Array [Boolean] of String = (dlgMouseOptMoveMouseFalse, dlgMouseOptMoveMouseTrue);
|
||||
var
|
||||
act: TSynEditMouseAction;
|
||||
i, j: Integer;
|
||||
@ -472,6 +473,9 @@ begin
|
||||
ActionGrid.ColWidths[9] := ActionGrid.ColWidths[8] * 3;
|
||||
ActionGridHeaderSized(nil, true, 0);
|
||||
|
||||
MMoveName[false] := dlgMouseOptMoveMouseFalse;
|
||||
MMoveName[true] := dlgMouseOptMoveMouseTrue;
|
||||
|
||||
FSort1 := 1; // Button
|
||||
FSort2 := 2; // CCount
|
||||
FSort3 := 3; // Cdir
|
||||
|
Loading…
Reference in New Issue
Block a user