FIX: Bug [0000552] Missing acceleration keys and bad Tab order in dialog "Configuration/Options" (patch by pktfag)

This commit is contained in:
Alexander Koblov 2012-09-01 13:00:44 +00:00
commit 7300cbbd18
68 changed files with 1794 additions and 1680 deletions

View file

@ -107,9 +107,9 @@ object frmOptions: TfrmOptions
BorderSpacing.Right = 8
BorderSpacing.InnerBorder = 2
Caption = '&OK'
Default = True
Kind = bkOK
ModalResult = 1
NumGlyphs = 0
OnClick = btnOKClick
TabOrder = 0
end
@ -123,10 +123,9 @@ object frmOptions: TfrmOptions
BorderSpacing.Right = 8
BorderSpacing.InnerBorder = 2
Cancel = True
Caption = 'Cancel'
Caption = '&Cancel'
Kind = bkCancel
ModalResult = 2
NumGlyphs = 0
OnClick = btnCancelClick
TabOrder = 1
end
@ -140,8 +139,7 @@ object frmOptions: TfrmOptions
Anchors = [akTop, akRight]
BorderSpacing.Right = 8
BorderSpacing.InnerBorder = 2
Caption = 'Apply'
NumGlyphs = 0
Caption = '&Apply'
OnClick = btnApplyClick
TabOrder = 2
end

View file

@ -1,5 +1,5 @@
TFRMOPTIONS.CAPTION=Options
TFRMOPTIONS.LBLEMPTYEDITOR.CAPTION=Please select one of the subpages, this page does not contain any settings.
TFRMOPTIONS.BTNOK.CAPTION=&OK
TFRMOPTIONS.BTNCANCEL.CAPTION=Cancel
TFRMOPTIONS.BTNAPPLY.CAPTION=Apply
TFRMOPTIONS.BTNCANCEL.CAPTION=&Cancel
TFRMOPTIONS.BTNAPPLY.CAPTION=&Apply

View file

@ -11,14 +11,14 @@ object frmEditHotkey: TfrmEditHotkey
OnCreate = FormCreate
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '0.9.31'
LCLVersion = '1.1'
object lblShortcuts: TLabel
AnchorSideLeft.Control = pnlShortcuts
AnchorSideTop.Control = Owner
Left = 8
Height = 22
Height = 13
Top = 6
Width = 69
Width = 50
BorderSpacing.Top = 6
Caption = 'Shortcuts:'
ParentColor = False
@ -30,7 +30,7 @@ object frmEditHotkey: TfrmEditHotkey
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 8
Height = 0
Height = 1
Top = 28
Width = 442
Anchors = [akTop, akLeft, akRight]
@ -52,7 +52,7 @@ object frmEditHotkey: TfrmEditHotkey
AnchorSideRight.Side = asrBottom
Left = 8
Height = 1
Top = 32
Top = 33
Width = 442
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
@ -72,7 +72,8 @@ object frmEditHotkey: TfrmEditHotkey
Top = 39
Width = 247
BorderSpacing.Top = 6
Caption = 'Parameters (each in a separate line):'
Caption = '&Parameters (each in a separate line):'
FocusControl = edtParameters
ParentColor = False
end
object edtParameters: TMemo
@ -83,8 +84,8 @@ object frmEditHotkey: TfrmEditHotkey
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = btnShowCommandHelp
Left = 8
Height = 272
Top = 61
Height = 331
Top = 53
Width = 442
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight, akBottom]
@ -99,8 +100,8 @@ object frmEditHotkey: TfrmEditHotkey
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = cgHKControls
Left = 8
Height = 10
Top = 337
Height = 23
Top = 388
Width = 442
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
@ -114,8 +115,8 @@ object frmEditHotkey: TfrmEditHotkey
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = btnOK
Left = 8
Height = 68
Top = 347
Height = 4
Top = 411
Width = 442
Anchors = [akLeft, akRight, akBottom]
AutoFill = True
@ -182,7 +183,6 @@ object frmEditHotkey: TfrmEditHotkey
Top = 6
Width = 22
Anchors = [akTop, akRight]
NumGlyphs = 0
OnClick = btnAddShortcutClick
ShowHint = True
ParentShowHint = False
@ -197,7 +197,6 @@ object frmEditHotkey: TfrmEditHotkey
Top = 6
Width = 22
Anchors = [akTop, akRight]
NumGlyphs = 0
OnClick = btnRemoveShortcutClick
ShowHint = True
ParentShowHint = False

View file

@ -1,5 +1,5 @@
TFRMEDITHOTKEY.LBLSHORTCUTS.CAPTION=Shortcuts:
TFRMEDITHOTKEY.LBLPARAMETERS.CAPTION=Parameters (each in a separate line):
TFRMEDITHOTKEY.LBLPARAMETERS.CAPTION=&Parameters (each in a separate line):
TFRMEDITHOTKEY.CGHKCONTROLS.CAPTION=Only for these controls
TFRMEDITHOTKEY.BTNOK.CAPTION=&OK
TFRMEDITHOTKEY.BTNCANCEL.CAPTION=&Cancel

View file

@ -3,6 +3,7 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Width = 901
ClientHeight = 642
ClientWidth = 901
DesignTop = 27
object lbxMultiArc: TListBox[0]
Left = 0
Height = 642
@ -11,7 +12,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Align = alLeft
ItemHeight = 0
OnSelectionChange = lbxMultiArcSelectionChange
ScrollWidth = 53
TabOrder = 0
TopIndex = -1
end
object splMultiArc: TSplitter[1]
Left = 55
@ -46,19 +49,20 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
TabOrder = 0
object tbArchiverGeneral: TTabSheet
Caption = 'General'
ClientHeight = 558
ClientWidth = 833
ClientHeight = 553
ClientWidth = 835
object lblDescription: TLabel
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Height = 18
Top = 10
Width = 809
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 10
BorderSpacing.Right = 10
Caption = 'Description:'
Caption = 'De&scription:'
FocusControl = edtDescription
ParentColor = False
end
object edtDescription: TEdit
@ -68,9 +72,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 32
Width = 809
Height = 28
Top = 28
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 0
end
@ -79,14 +83,15 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 63
Width = 809
Height = 18
Top = 58
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 2
BorderSpacing.Right = 10
Caption = 'Archiver:'
Caption = 'Arc&hiver:'
FocusControl = fneArchiver
ParentColor = False
end
object lblArchiveExtension: TLabel
@ -94,14 +99,15 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 116
Width = 809
Height = 18
Top = 106
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 2
BorderSpacing.Right = 10
Caption = 'Extension:'
Caption = 'E&xtension:'
FocusControl = edtArchiveExtension
ParentColor = False
end
object edtArchiveExtension: TEdit
@ -111,25 +117,26 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 138
Width = 809
Height = 28
Top = 124
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 1
TabOrder = 2
end
object lblArchiveList: TLabel
AnchorSideTop.Control = edtArchiveExtension
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 169
Width = 809
Height = 18
Top = 154
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 2
BorderSpacing.Right = 10
Caption = 'List:'
Caption = '&List:'
FocusControl = edtArchiveList
ParentColor = False
end
object edtArchiveList: TEdit
@ -139,25 +146,26 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 191
Width = 809
Height = 28
Top = 172
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 2
TabOrder = 3
end
object lblArchiveExtract: TLabel
AnchorSideTop.Control = memArchiveListFormat
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 410
Width = 809
Height = 18
Top = 376
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 2
BorderSpacing.Right = 10
Caption = 'Extract:'
Caption = 'Ex&tract:'
FocusControl = edtArchiveExtract
ParentColor = False
end
object edtArchiveExtract: TEdit
@ -167,25 +175,26 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 432
Width = 809
Height = 28
Top = 394
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 3
TabOrder = 7
end
object lblArchiveAdd: TLabel
AnchorSideTop.Control = edtArchiveExtract
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 463
Width = 809
Height = 18
Top = 424
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 2
BorderSpacing.Right = 10
Caption = 'Add:'
Caption = 'Add&ing:'
FocusControl = edtArchiveAdd
ParentColor = False
end
object edtArchiveAdd: TEdit
@ -195,25 +204,26 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 485
Width = 809
Height = 28
Top = 442
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
TabOrder = 8
end
object lblArchiveListFormat: TLabel
AnchorSideTop.Control = edtArchiveListEnd
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 326
Width = 809
Height = 18
Top = 296
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 2
BorderSpacing.Right = 10
Caption = 'Listing format:'
Caption = 'Listing for&mat:'
FocusControl = memArchiveListFormat
ParentColor = False
end
object memArchiveListFormat: TMemo
@ -222,8 +232,8 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Side = asrBottom
Left = 10
Height = 60
Top = 348
Width = 809
Top = 314
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Right = 10
@ -231,7 +241,7 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
''
)
ScrollBars = ssAutoBoth
TabOrder = 5
TabOrder = 6
WordWrap = False
end
object fneArchiver: TFileNameEdit
@ -240,17 +250,17 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 85
Width = 787
Height = 28
Top = 76
Width = 789
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 0
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 6
TabOrder = 1
end
object lblArchiveListStart: TLabel
AnchorSideLeft.Control = lblDescription
@ -259,12 +269,13 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 222
Width = 809
Height = 18
Top = 202
Width = 811
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 2
Caption = 'Listing start (optional):'
Caption = 'Listin&g start (optional):'
FocusControl = edtArchiveListStart
ParentColor = False
end
object edtArchiveListStart: TEdit
@ -274,11 +285,11 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 244
Width = 809
Height = 28
Top = 220
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 7
TabOrder = 4
end
object lblArchiveListEnd: TLabel
AnchorSideLeft.Control = lblDescription
@ -287,11 +298,12 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 22
Top = 273
Width = 809
Height = 18
Top = 248
Width = 811
Anchors = [akTop, akLeft, akRight]
Caption = 'Listing finish (optional):'
Caption = 'Listing &finish (optional):'
FocusControl = edtArchiveListEnd
ParentColor = False
end
object edtArchiveListEnd: TEdit
@ -301,11 +313,11 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideRight.Control = lblDescription
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 295
Width = 809
Height = 28
Top = 266
Width = 811
Anchors = [akTop, akLeft, akRight]
TabOrder = 8
TabOrder = 5
end
end
object tbArchiverAdditional: TTabSheet
@ -314,14 +326,14 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Caption = 'Additional'
ChildSizing.LeftRightSpacing = 10
ChildSizing.TopBottomSpacing = 10
ClientHeight = 387
ClientWidth = 633
ClientHeight = 553
ClientWidth = 835
OnShow = tbArchiverAdditionalShow
object stgArchiverCommands: TStringGrid
Left = 10
Height = 314
Height = 469
Top = 10
Width = 613
Width = 815
Align = alClient
AutoFillColumns = True
ColCount = 2
@ -332,14 +344,14 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
OnPrepareCanvas = stgArchiverCommandsPrepareCanvas
ColWidths = (
64
549
749
)
end
object gbArchiverOptions: TGroupBox
Left = 10
Height = 51
Top = 326
Width = 613
Height = 62
Top = 481
Width = 815
Align = alBottom
Anchors = [akLeft, akRight]
AutoSize = True
@ -347,16 +359,16 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Caption = 'Options'
ChildSizing.LeftRightSpacing = 10
ChildSizing.TopBottomSpacing = 8
ClientHeight = 29
ClientWidth = 609
ClientHeight = 39
ClientWidth = 811
TabOrder = 1
object chkMultiArcOutput: TCheckBox
AnchorSideTop.Control = gbArchiverOptions
Left = 10
Height = 17
Height = 23
Top = 8
Width = 118
Caption = 'Show console output'
Width = 162
Caption = 'S&how console output'
TabOrder = 0
end
object chkMultiArcDebug: TCheckBox
@ -364,12 +376,12 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbArchiverOptions
AnchorSideRight.Side = asrBottom
Left = 521
Height = 17
Left = 697
Height = 23
Top = 8
Width = 78
Width = 104
Anchors = [akTop, akRight]
Caption = 'Debug mode'
Caption = 'De&bug mode'
TabOrder = 1
end
end
@ -396,9 +408,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Width = 100
Anchors = [akTop, akRight]
BorderSpacing.Right = 10
Caption = 'Apply'
Caption = 'A&pply'
OnClick = btnMultiArcApplyClick
TabOrder = 0
TabOrder = 5
end
object btnMultiArcRename: TBitBtn
AnchorSideTop.Control = btnMultiArcApply
@ -410,9 +422,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Width = 100
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Rename'
Caption = '&Rename'
OnClick = btnMultiArcRenameClick
TabOrder = 1
TabOrder = 4
end
object btnMultiArcDelete: TBitBtn
AnchorSideTop.Control = btnMultiArcApply
@ -424,9 +436,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Width = 100
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Delete'
Caption = 'D&elete'
OnClick = btnMultiArcDeleteClick
TabOrder = 2
TabOrder = 3
end
object btnMultiArcAdd: TBitBtn
AnchorSideTop.Control = btnMultiArcApply
@ -438,9 +450,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Width = 100
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Add'
Caption = 'A&dd'
OnClick = btnMultiArcAddClick
TabOrder = 3
TabOrder = 2
end
object chkMultiArcEnabled: TCheckBox
AnchorSideLeft.Control = pnlMultiArcButtons
@ -448,15 +460,15 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnAutoConfig
Left = 10
Height = 25
Top = 13
Height = 23
Top = 14
Width = 260
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Right = 6
Caption = 'Enabled'
Caption = 'E&nabled'
OnChange = chkMultiArcEnabledChange
TabOrder = 4
TabOrder = 0
end
object btnAutoConfig: TBitBtn
AnchorSideTop.Control = btnMultiArcApply
@ -467,9 +479,9 @@ inherited frmOptionsArchivers: TfrmOptionsArchivers
Width = 131
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Auto Configure'
Caption = 'A&uto Configure'
OnClick = btnAutoConfigClick
TabOrder = 5
TabOrder = 1
end
end
end

View file

@ -1,20 +1,20 @@
TFRMOPTIONSARCHIVERS.TBARCHIVERGENERAL.CAPTION=General
TFRMOPTIONSARCHIVERS.LBLDESCRIPTION.CAPTION=Description:
TFRMOPTIONSARCHIVERS.LBLARCHIVER.CAPTION=Archiver:
TFRMOPTIONSARCHIVERS.LBLARCHIVEEXTENSION.CAPTION=Extension:
TFRMOPTIONSARCHIVERS.LBLARCHIVELIST.CAPTION=List:
TFRMOPTIONSARCHIVERS.LBLARCHIVEEXTRACT.CAPTION=Extract:
TFRMOPTIONSARCHIVERS.LBLARCHIVEADD.CAPTION=Add:
TFRMOPTIONSARCHIVERS.LBLARCHIVELISTFORMAT.CAPTION=Listing format:
TFRMOPTIONSARCHIVERS.LBLARCHIVELISTSTART.CAPTION=Listing start (optional):
TFRMOPTIONSARCHIVERS.LBLARCHIVELISTEND.CAPTION=Listing finish (optional):
TFRMOPTIONSARCHIVERS.LBLDESCRIPTION.CAPTION=De&scription:
TFRMOPTIONSARCHIVERS.LBLARCHIVER.CAPTION=Arc&hiver:
TFRMOPTIONSARCHIVERS.LBLARCHIVEEXTENSION.CAPTION=E&xtension:
TFRMOPTIONSARCHIVERS.LBLARCHIVELIST.CAPTION=&List:
TFRMOPTIONSARCHIVERS.LBLARCHIVEEXTRACT.CAPTION=Ex&tract:
TFRMOPTIONSARCHIVERS.LBLARCHIVEADD.CAPTION=Add&ing:
TFRMOPTIONSARCHIVERS.LBLARCHIVELISTFORMAT.CAPTION=Listing for&mat:
TFRMOPTIONSARCHIVERS.LBLARCHIVELISTSTART.CAPTION=Listin&g start (optional):
TFRMOPTIONSARCHIVERS.LBLARCHIVELISTEND.CAPTION=Listing &finish (optional):
TFRMOPTIONSARCHIVERS.TBARCHIVERADDITIONAL.CAPTION=Additional
TFRMOPTIONSARCHIVERS.GBARCHIVEROPTIONS.CAPTION=Options
TFRMOPTIONSARCHIVERS.CHKMULTIARCOUTPUT.CAPTION=Show console output
TFRMOPTIONSARCHIVERS.CHKMULTIARCDEBUG.CAPTION=Debug mode
TFRMOPTIONSARCHIVERS.BTNMULTIARCAPPLY.CAPTION=Apply
TFRMOPTIONSARCHIVERS.BTNMULTIARCRENAME.CAPTION=Rename
TFRMOPTIONSARCHIVERS.BTNMULTIARCDELETE.CAPTION=Delete
TFRMOPTIONSARCHIVERS.BTNMULTIARCADD.CAPTION=Add
TFRMOPTIONSARCHIVERS.CHKMULTIARCENABLED.CAPTION=Enabled
TFRMOPTIONSARCHIVERS.BTNAUTOCONFIG.CAPTION=Auto Configure
TFRMOPTIONSARCHIVERS.CHKMULTIARCOUTPUT.CAPTION=S&how console output
TFRMOPTIONSARCHIVERS.CHKMULTIARCDEBUG.CAPTION=De&bug mode
TFRMOPTIONSARCHIVERS.BTNMULTIARCAPPLY.CAPTION=A&pply
TFRMOPTIONSARCHIVERS.BTNMULTIARCRENAME.CAPTION=&Rename
TFRMOPTIONSARCHIVERS.BTNMULTIARCDELETE.CAPTION=D&elete
TFRMOPTIONSARCHIVERS.BTNMULTIARCADD.CAPTION=A&dd
TFRMOPTIONSARCHIVERS.CHKMULTIARCENABLED.CAPTION=E&nabled
TFRMOPTIONSARCHIVERS.BTNAUTOCONFIG.CAPTION=A&uto Configure

View file

@ -3,13 +3,14 @@ inherited frmOptionsAutoRefresh: TfrmOptionsAutoRefresh
Width = 501
ClientHeight = 228
ClientWidth = 501
DesignTop = 27
object gbAutoRefreshEnable: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 85
Height = 82
Top = 6
Width = 489
Anchors = [akTop, akLeft, akRight]
@ -20,23 +21,23 @@ inherited frmOptionsAutoRefresh: TfrmOptionsAutoRefresh
ChildSizing.TopBottomSpacing = 5
ChildSizing.VerticalSpacing = 3
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 63
ClientHeight = 59
ClientWidth = 485
TabOrder = 0
object cbWatchFileNameChange: TCheckBox
Left = 10
Height = 25
Height = 23
Top = 5
Width = 318
Caption = 'When files are &created, deleted or renamed'
Width = 309
Caption = 'When &files are created, deleted or renamed'
OnChange = OnAutoRefreshOptionChanged
TabOrder = 0
end
object cbWatchAttributesChange: TCheckBox
Left = 10
Height = 25
Top = 33
Width = 318
Height = 23
Top = 31
Width = 309
Caption = 'When &size, date or attributes change'
OnChange = OnAutoRefreshOptionChanged
TabOrder = 1
@ -49,8 +50,8 @@ inherited frmOptionsAutoRefresh: TfrmOptionsAutoRefresh
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 121
Top = 97
Height = 117
Top = 94
Width = 489
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -58,16 +59,16 @@ inherited frmOptionsAutoRefresh: TfrmOptionsAutoRefresh
Caption = 'Disable auto-refresh'
ChildSizing.TopBottomSpacing = 5
ChildSizing.VerticalSpacing = 3
ClientHeight = 99
ClientHeight = 94
ClientWidth = 485
TabOrder = 1
object cbWatchOnlyForeground: TCheckBox
AnchorSideLeft.Control = gbAutoRefreshDisable
AnchorSideTop.Control = gbAutoRefreshDisable
Left = 10
Height = 25
Height = 23
Top = 5
Width = 288
Width = 269
BorderSpacing.Left = 10
Caption = 'When application is in the &background'
TabOrder = 0
@ -77,9 +78,9 @@ inherited frmOptionsAutoRefresh: TfrmOptionsAutoRefresh
AnchorSideTop.Control = cbWatchOnlyForeground
AnchorSideTop.Side = asrBottom
Left = 10
Height = 25
Top = 33
Width = 350
Height = 23
Top = 31
Width = 339
Caption = 'For the following &paths and their subdirectories:'
OnChange = cbWatchExcludeDirsChange
TabOrder = 1
@ -91,8 +92,8 @@ inherited frmOptionsAutoRefresh: TfrmOptionsAutoRefresh
AnchorSideRight.Control = gbAutoRefreshDisable
AnchorSideRight.Side = asrBottom
Left = 30
Height = 29
Top = 61
Height = 28
Top = 57
Width = 447
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 20

View file

@ -1,5 +1,5 @@
TFRMOPTIONSAUTOREFRESH.GBAUTOREFRESHENABLE.CAPTION=Refresh file list
TFRMOPTIONSAUTOREFRESH.CBWATCHFILENAMECHANGE.CAPTION=When files are &created, deleted or renamed
TFRMOPTIONSAUTOREFRESH.CBWATCHFILENAMECHANGE.CAPTION=When &files are created, deleted or renamed
TFRMOPTIONSAUTOREFRESH.CBWATCHATTRIBUTESCHANGE.CAPTION=When &size, date or attributes change
TFRMOPTIONSAUTOREFRESH.GBAUTOREFRESHDISABLE.CAPTION=Disable auto-refresh
TFRMOPTIONSAUTOREFRESH.CBWATCHONLYFOREGROUND.CAPTION=When application is in the &background

View file

@ -11,14 +11,14 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 130
Height = 93
Top = 6
Width = 654
Anchors = [akTop, akLeft, akRight]
AutoSize = True
ChildSizing.LeftRightSpacing = 8
ChildSizing.TopBottomSpacing = 6
ClientHeight = 105
ClientHeight = 75
ClientWidth = 650
TabOrder = 0
object cbOnlyOnce: TCheckBox
@ -27,12 +27,12 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
AnchorSideRight.Control = gbMisc1
AnchorSideRight.Side = asrBottom
Left = 8
Height = 27
Height = 17
Top = 6
Width = 634
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
Caption = 'Allow only one copy of DC at a time'
Caption = 'A&llow only one copy of DC at a time'
TabOrder = 0
end
object cbMinimizeToTray: TCheckBox
@ -42,8 +42,8 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
AnchorSideRight.Control = gbMisc1
AnchorSideRight.Side = asrBottom
Left = 8
Height = 27
Top = 39
Height = 17
Top = 29
Width = 634
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
@ -57,12 +57,12 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
AnchorSideRight.Control = gbMisc1
AnchorSideRight.Side = asrBottom
Left = 8
Height = 27
Top = 72
Height = 17
Top = 52
Width = 634
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
Caption = 'Always show tray icon'
Caption = 'Al&ways show tray icon'
OnChange = cbAlwaysShowTrayIconChange
TabOrder = 2
end
@ -74,24 +74,25 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 121
Top = 136
Height = 85
Top = 99
Width = 654
Anchors = [akTop, akLeft, akRight]
AutoSize = True
ClientHeight = 96
ClientHeight = 67
ClientWidth = 650
TabOrder = 1
object lblDrivesBlackList: TLabel
AnchorSideLeft.Control = gbMisc2
AnchorSideTop.Control = gbMisc2
Left = 8
Height = 22
Height = 13
Top = 2
Width = 115
Width = 70
BorderSpacing.Left = 8
BorderSpacing.Top = 2
Caption = 'Drives blacklist'
Caption = 'Drives &blacklist'
FocusControl = edtDrivesBlackList
ParentColor = False
end
object edtDrivesBlackList: TEdit
@ -101,9 +102,9 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
AnchorSideRight.Control = gbMisc2
AnchorSideRight.Side = asrBottom
Left = 8
Height = 31
Height = 21
Hint = 'Here you can enter one or more drives or mount points, separated by ";".'
Top = 30
Top = 21
Width = 634
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
@ -122,7 +123,7 @@ inherited frmOptionsBehavior: TfrmOptionsBehavior
Top = 65
Width = 314
BorderSpacing.Bottom = 4
Caption = 'Automatically hide unmounted devices'
Caption = 'Automatically &hide unmounted devices'
TabOrder = 1
end
end

View file

@ -1,6 +1,6 @@
TFRMOPTIONSBEHAVIOR.CBONLYONCE.CAPTION=Allow only one copy of DC at a time
TFRMOPTIONSBEHAVIOR.CBONLYONCE.CAPTION=A&llow only one copy of DC at a time
TFRMOPTIONSBEHAVIOR.CBMINIMIZETOTRAY.CAPTION=Mo&ve icon to system tray when minimized
TFRMOPTIONSBEHAVIOR.CBALWAYSSHOWTRAYICON.CAPTION=Always show tray icon
TFRMOPTIONSBEHAVIOR.LBLDRIVESBLACKLIST.CAPTION=Drives blacklist
TFRMOPTIONSBEHAVIOR.CBALWAYSSHOWTRAYICON.CAPTION=Al&ways show tray icon
TFRMOPTIONSBEHAVIOR.LBLDRIVESBLACKLIST.CAPTION=Drives &blacklist
TFRMOPTIONSBEHAVIOR.EDTDRIVESBLACKLIST.HINT=Here you can enter one or more drives or mount points, separated by ";".
TFRMOPTIONSBEHAVIOR.CBBLACKLISTUNMOUNTEDDEVICES.CAPTION=Automatically hide unmounted devices
TFRMOPTIONSBEHAVIOR.CBBLACKLISTUNMOUNTEDDEVICES.CAPTION=Automatically &hide unmounted devices

View file

@ -3,6 +3,7 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
Width = 659
ClientHeight = 344
ClientWidth = 659
DesignTop = 20
object grpAutosizeColumns: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = gbShowGrid
@ -11,21 +12,21 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
AnchorSideRight.Side = asrBottom
Left = 6
Height = 105
Top = 102
Top = 82
Width = 647
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
Caption = 'Auto-size columns'
ClientHeight = 83
ClientHeight = 87
ClientWidth = 643
TabOrder = 0
TabOrder = 1
object chkAutoFillColumns: TCheckBox
AnchorSideTop.Side = asrBottom
Left = 8
Height = 25
Height = 17
Top = 8
Width = 141
Caption = 'Auto fill columns'
Width = 95
Caption = 'A&uto fill columns'
TabOrder = 0
end
object lblAutoSizeColumn: TLabel
@ -33,10 +34,11 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
AnchorSideTop.Control = cmbAutoSizeColumn
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Top = 46
Width = 120
Caption = 'Auto size column:'
Height = 13
Top = 39
Width = 84
Caption = 'Auto si&ze column:'
FocusControl = cmbAutoSizeColumn
ParentColor = False
end
object cmbAutoSizeColumn: TComboBox
@ -46,15 +48,15 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = grpAutosizeColumns
AnchorSideRight.Side = asrBottom
Left = 140
Height = 29
Top = 43
Width = 493
Left = 104
Height = 21
Top = 35
Width = 529
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 12
BorderSpacing.Top = 10
BorderSpacing.Right = 10
ItemHeight = 21
ItemHeight = 13
Items.Strings = (
'First'
'Last'
@ -69,7 +71,7 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 90
Height = 70
Top = 6
Width = 647
Anchors = [akTop, akLeft, akRight]
@ -78,17 +80,17 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
Caption = 'Show grid'
ChildSizing.LeftRightSpacing = 12
ChildSizing.TopBottomSpacing = 6
ClientHeight = 68
ClientHeight = 52
ClientWidth = 643
TabOrder = 1
TabOrder = 0
object cbGridVertLine: TCheckBox
AnchorSideLeft.Control = gbShowGrid
AnchorSideTop.Control = gbShowGrid
Left = 12
Height = 25
Height = 17
Top = 6
Width = 114
Caption = 'Vertical lines'
Width = 77
Caption = '&Vertical lines'
TabOrder = 0
end
object cbGridHorzLine: TCheckBox
@ -96,11 +98,11 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
AnchorSideTop.Control = cbGridVertLine
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 37
Width = 132
Height = 17
Top = 29
Width = 90
BorderSpacing.Top = 6
Caption = 'Horizontal lines'
Caption = '&Horizontal lines'
TabOrder = 1
end
end
@ -111,8 +113,8 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 59
Top = 213
Height = 47
Top = 193
Width = 647
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -121,15 +123,15 @@ inherited frmOptionsColumnsView: TfrmOptionsColumnsView
ChildSizing.TopBottomSpacing = 6
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 37
ClientHeight = 29
ClientWidth = 643
TabOrder = 2
object cbCutTextToColWidth: TCheckBox
Left = 6
Height = 25
Height = 17
Top = 6
Width = 193
Caption = 'Cut text to column width'
Width = 136
Caption = 'Cut &text to column width'
TabOrder = 0
end
end

View file

@ -1,7 +1,7 @@
TFRMOPTIONSCOLUMNSVIEW.GRPAUTOSIZECOLUMNS.CAPTION=Auto-size columns
TFRMOPTIONSCOLUMNSVIEW.CHKAUTOFILLCOLUMNS.CAPTION=Auto fill columns
TFRMOPTIONSCOLUMNSVIEW.LBLAUTOSIZECOLUMN.CAPTION=Auto size column:
TFRMOPTIONSCOLUMNSVIEW.CHKAUTOFILLCOLUMNS.CAPTION=A&uto fill columns
TFRMOPTIONSCOLUMNSVIEW.LBLAUTOSIZECOLUMN.CAPTION=Auto si&ze column:
TFRMOPTIONSCOLUMNSVIEW.GBSHOWGRID.CAPTION=Show grid
TFRMOPTIONSCOLUMNSVIEW.CBGRIDVERTLINE.CAPTION=Vertical lines
TFRMOPTIONSCOLUMNSVIEW.CBGRIDHORZLINE.CAPTION=Horizontal lines
TFRMOPTIONSCOLUMNSVIEW.CBCUTTEXTTOCOLWIDTH.CAPTION=Cut text to column width
TFRMOPTIONSCOLUMNSVIEW.CBGRIDVERTLINE.CAPTION=&Vertical lines
TFRMOPTIONSCOLUMNSVIEW.CBGRIDHORZLINE.CAPTION=&Horizontal lines
TFRMOPTIONSCOLUMNSVIEW.CBCUTTEXTTOCOLWIDTH.CAPTION=Cut &text to column width

View file

@ -5,13 +5,14 @@ inherited frmOptionsConfiguration: TfrmOptionsConfiguration
ChildSizing.TopBottomSpacing = 6
ClientHeight = 339
ClientWidth = 594
DesignTop = 27
object gbLocConfigFiles: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 114
Height = 85
Top = 6
Width = 582
Anchors = [akTop, akLeft, akRight]
@ -22,34 +23,34 @@ inherited frmOptionsConfiguration: TfrmOptionsConfiguration
ChildSizing.VerticalSpacing = 5
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 92
ClientHeight = 67
ClientWidth = 578
TabOrder = 0
object rbProgramDir: TRadioButton
Left = 10
Height = 25
Height = 17
Top = 5
Width = 268
Width = 193
BorderSpacing.CellAlignHorizontal = ccaLeftTop
Caption = 'Program directory (portable version)'
Caption = 'P&rogram directory (portable version)'
Checked = True
TabOrder = 0
TabStop = True
end
object rbUserHomeDir: TRadioButton
Left = 10
Height = 25
Top = 35
Width = 162
Height = 17
Top = 27
Width = 115
BorderSpacing.CellAlignHorizontal = ccaLeftTop
Caption = 'User home directory'
Caption = '&User home directory'
TabOrder = 1
end
object lblCmdLineConfigDir: TLabel
Left = 10
Height = 22
Top = 65
Width = 144
Height = 13
Top = 49
Width = 98
BorderSpacing.CellAlignHorizontal = ccaLeftTop
Caption = 'Set on command line'
ParentColor = False
@ -63,76 +64,76 @@ inherited frmOptionsConfiguration: TfrmOptionsConfiguration
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 165
Top = 162
Height = 121
Top = 133
Width = 582
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 6
Caption = 'Save on exit'
ChildSizing.TopBottomSpacing = 5
ClientHeight = 143
ClientHeight = 103
ClientWidth = 578
TabOrder = 1
TabOrder = 3
object cbDirHistory: TCheckBox
AnchorSideLeft.Control = chkSaveConfiguration
AnchorSideTop.Control = chkSearchReplaceHistory
AnchorSideTop.Side = asrBottom
Left = 10
Height = 25
Top = 59
Width = 136
Height = 17
Top = 43
Width = 98
BorderSpacing.Top = 2
Caption = 'Directory history'
TabOrder = 0
Caption = '&Directory history'
TabOrder = 2
end
object cbCmdLineHistory: TCheckBox
AnchorSideLeft.Control = chkSaveConfiguration
AnchorSideTop.Control = cbDirHistory
AnchorSideTop.Side = asrBottom
Left = 10
Height = 25
Top = 86
Width = 175
Height = 17
Top = 62
Width = 120
BorderSpacing.Top = 2
Caption = 'Command line history'
TabOrder = 1
Caption = 'Co&mmand line history'
TabOrder = 3
end
object cbFileMaskHistory: TCheckBox
AnchorSideLeft.Control = chkSaveConfiguration
AnchorSideTop.Control = cbCmdLineHistory
AnchorSideTop.Side = asrBottom
Left = 10
Height = 25
Top = 113
Width = 141
Height = 17
Top = 81
Width = 97
BorderSpacing.Top = 2
Caption = 'File mask history'
TabOrder = 2
Caption = '&File mask history'
TabOrder = 4
end
object chkSaveConfiguration: TCheckBox
AnchorSideLeft.Control = gbSaveOnExit
AnchorSideTop.Control = gbSaveOnExit
Left = 10
Height = 25
Height = 17
Top = 5
Width = 153
Width = 108
BorderSpacing.Left = 10
Caption = 'Save configuration'
Caption = 'Sa&ve configuration'
OnChange = chkSaveConfigurationChange
TabOrder = 3
TabOrder = 0
end
object chkSearchReplaceHistory: TCheckBox
AnchorSideLeft.Control = chkSaveConfiguration
AnchorSideTop.Control = chkSaveConfiguration
AnchorSideTop.Side = asrBottom
Left = 10
Height = 25
Top = 32
Width = 184
Height = 17
Top = 24
Width = 129
BorderSpacing.Top = 2
Caption = 'Search/Replace history'
TabOrder = 4
Caption = 'Searc&h/Replace history'
TabOrder = 1
end
end
object btnConfigEdit: TBitBtn[2]
@ -141,14 +142,13 @@ inherited frmOptionsConfiguration: TfrmOptionsConfiguration
AnchorSideTop.Side = asrBottom
Left = 10
Height = 30
Top = 126
Top = 97
Width = 116
BorderSpacing.Left = 10
BorderSpacing.Top = 6
Caption = 'Edit'
NumGlyphs = 0
Caption = '&Edit'
OnClick = btnConfigEditClick
TabOrder = 2
TabOrder = 1
end
object btnConfigApply: TBitBtn[3]
AnchorSideLeft.Control = btnConfigEdit
@ -157,14 +157,13 @@ inherited frmOptionsConfiguration: TfrmOptionsConfiguration
AnchorSideTop.Side = asrBottom
Left = 136
Height = 30
Top = 126
Top = 97
Width = 116
BorderSpacing.Left = 10
BorderSpacing.Top = 6
Caption = 'Apply'
Caption = 'A&pply'
Enabled = False
NumGlyphs = 0
OnClick = btnConfigApplyClick
TabOrder = 3
TabOrder = 2
end
end

View file

@ -1,12 +1,12 @@
TFRMOPTIONSCONFIGURATION.GBLOCCONFIGFILES.CAPTION=Location of configuration files
TFRMOPTIONSCONFIGURATION.RBPROGRAMDIR.CAPTION=Program directory (portable version)
TFRMOPTIONSCONFIGURATION.RBUSERHOMEDIR.CAPTION=User home directory
TFRMOPTIONSCONFIGURATION.RBPROGRAMDIR.CAPTION=P&rogram directory (portable version)
TFRMOPTIONSCONFIGURATION.RBUSERHOMEDIR.CAPTION=&User home directory
TFRMOPTIONSCONFIGURATION.LBLCMDLINECONFIGDIR.CAPTION=Set on command line
TFRMOPTIONSCONFIGURATION.GBSAVEONEXIT.CAPTION=Save on exit
TFRMOPTIONSCONFIGURATION.CBDIRHISTORY.CAPTION=Directory history
TFRMOPTIONSCONFIGURATION.CBCMDLINEHISTORY.CAPTION=Command line history
TFRMOPTIONSCONFIGURATION.CBFILEMASKHISTORY.CAPTION=File mask history
TFRMOPTIONSCONFIGURATION.CHKSAVECONFIGURATION.CAPTION=Save configuration
TFRMOPTIONSCONFIGURATION.CHKSEARCHREPLACEHISTORY.CAPTION=Search/Replace history
TFRMOPTIONSCONFIGURATION.BTNCONFIGEDIT.CAPTION=Edit
TFRMOPTIONSCONFIGURATION.BTNCONFIGAPPLY.CAPTION=Apply
TFRMOPTIONSCONFIGURATION.CBDIRHISTORY.CAPTION=&Directory history
TFRMOPTIONSCONFIGURATION.CBCMDLINEHISTORY.CAPTION=Co&mmand line history
TFRMOPTIONSCONFIGURATION.CBFILEMASKHISTORY.CAPTION=&File mask history
TFRMOPTIONSCONFIGURATION.CHKSAVECONFIGURATION.CAPTION=Sa&ve configuration
TFRMOPTIONSCONFIGURATION.CHKSEARCHREPLACEHISTORY.CAPTION=Searc&h/Replace history
TFRMOPTIONSCONFIGURATION.BTNCONFIGEDIT.CAPTION=&Edit
TFRMOPTIONSCONFIGURATION.BTNCONFIGAPPLY.CAPTION=A&pply

View file

@ -3,14 +3,16 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
Width = 730
ClientHeight = 372
ClientWidth = 730
DesignTop = 20
object lblConfigColumns: TLabel[0]
AnchorSideTop.Control = cbbFileSystem
AnchorSideTop.Side = asrCenter
Left = 7
Height = 22
Top = 3
Width = 229
Caption = 'Configure columns for file system:'
Height = 13
Top = 6
Width = 167
Caption = 'Con&figure columns for file system:'
FocusControl = cbbFileSystem
ParentColor = False
end
object cbbFileSystem: TComboBox[1]
@ -18,14 +20,14 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 240
Height = 29
Left = 178
Height = 24
Top = 0
Width = 484
Width = 546
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 4
BorderSpacing.Right = 6
ItemHeight = 21
ItemHeight = 0
ItemIndex = 0
Items.Strings = (
'General'
@ -42,8 +44,8 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = pnlButtons
Left = 6
Height = 279
Top = 35
Height = 284
Top = 30
Width = 718
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 6
@ -52,7 +54,9 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
BorderSpacing.Bottom = 6
ItemHeight = 0
OnDblClick = btnEditColumnsSetClick
ScrollWidth = 716
TabOrder = 1
TopIndex = -1
end
object pnlButtons: TPanel[3]
AnchorSideRight.Control = Owner
@ -88,7 +92,7 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
Top = 7
Width = 116
BorderSpacing.Left = 6
Caption = 'Edit'
Caption = '&Edit'
OnClick = btnEditColumnsSetClick
TabOrder = 1
end
@ -100,7 +104,7 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
Width = 112
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Delete'
Caption = '&Delete'
OnClick = btnDelColumnsSetClick
TabOrder = 2
end
@ -113,7 +117,7 @@ inherited frmOptionsCustomColumns: TfrmOptionsCustomColumns
Width = 111
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Copy'
Caption = 'C&opy'
OnClick = btnCopyColumnsSetClick
TabOrder = 3
end

View file

@ -1,6 +1,6 @@
TFRMOPTIONSCUSTOMCOLUMNS.LBLCONFIGCOLUMNS.CAPTION=Configure columns for file system:
TFRMOPTIONSCUSTOMCOLUMNS.LBLCONFIGCOLUMNS.CAPTION=Con&figure columns for file system:
TFRMOPTIONSCUSTOMCOLUMNS.CBBFILESYSTEM.TEXT=General
TFRMOPTIONSCUSTOMCOLUMNS.BTNNEWCOLUMNSSET.CAPTION=&New
TFRMOPTIONSCUSTOMCOLUMNS.BTNEDITCOLUMNSSET.CAPTION=Edit
TFRMOPTIONSCUSTOMCOLUMNS.BTNDELCOLUMNSSET.CAPTION=Delete
TFRMOPTIONSCUSTOMCOLUMNS.BTNCOPYCOLUMNSSET.CAPTION=Copy
TFRMOPTIONSCUSTOMCOLUMNS.BTNEDITCOLUMNSSET.CAPTION=&Edit
TFRMOPTIONSCUSTOMCOLUMNS.BTNDELCOLUMNSSET.CAPTION=&Delete
TFRMOPTIONSCUSTOMCOLUMNS.BTNCOPYCOLUMNSSET.CAPTION=C&opy

View file

@ -1,12 +1,13 @@
inherited frmOptionsDragDrop: TfrmOptionsDragDrop
Width = 454
ClientWidth = 454
DesignTop = 20
object cbShowConfirmationDialog: TCheckBox[0]
Left = 8
Height = 25
Height = 20
Top = 8
Width = 269
Caption = 'Show confirmation dialog after drop'
Width = 194
Caption = '&Show confirmation dialog after drop'
TabOrder = 0
end
end

View file

@ -1 +1 @@
TFRMOPTIONSDRAGDROP.CBSHOWCONFIRMATIONDIALOG.CAPTION=Show confirmation dialog after drop
TFRMOPTIONSDRAGDROP.CBSHOWCONFIRMATIONDIALOG.CAPTION=&Show confirmation dialog after drop

View file

@ -5,7 +5,7 @@ inherited frmOptionsDrivesListButton: TfrmOptionsDrivesListButton
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 113
Height = 85
Top = 6
Width = 308
Anchors = [akTop, akLeft, akRight]
@ -17,32 +17,32 @@ inherited frmOptionsDrivesListButton: TfrmOptionsDrivesListButton
ChildSizing.VerticalSpacing = 4
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 91
ClientHeight = 67
ClientWidth = 304
TabOrder = 0
object cbShowLabel: TCheckBox
Left = 10
Height = 25
Height = 17
Top = 4
Width = 141
Caption = 'Show label'
Width = 98
Caption = 'Show &label'
TabOrder = 0
end
object cbShowFileSystem: TCheckBox
AnchorSideTop.Side = asrBottom
Left = 10
Height = 25
Top = 33
Width = 141
Caption = 'Show file system'
Height = 17
Top = 25
Width = 98
Caption = 'Show &file system'
TabOrder = 1
end
object cbShowFreeSpace: TCheckBox
Left = 10
Height = 25
Top = 62
Width = 141
Caption = 'Show free space'
Height = 17
Top = 46
Width = 98
Caption = 'Show fr&ee space'
TabOrder = 2
end
end

View file

@ -1,4 +1,4 @@
TFRMOPTIONSDRIVESLISTBUTTON.GBDRIVESLIST.CAPTION=Drives list
TFRMOPTIONSDRIVESLISTBUTTON.CBSHOWLABEL.CAPTION=Show label
TFRMOPTIONSDRIVESLISTBUTTON.CBSHOWFILESYSTEM.CAPTION=Show file system
TFRMOPTIONSDRIVESLISTBUTTON.CBSHOWFREESPACE.CAPTION=Show free space
TFRMOPTIONSDRIVESLISTBUTTON.CBSHOWLABEL.CAPTION=Show &label
TFRMOPTIONSDRIVESLISTBUTTON.CBSHOWFILESYSTEM.CAPTION=Show &file system
TFRMOPTIONSDRIVESLISTBUTTON.CBSHOWFREESPACE.CAPTION=Show fr&ee space

View file

@ -1,17 +1,16 @@
inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Height = 357
Width = 606
Width = 680
ClientHeight = 357
ClientWidth = 606
DesignLeft = 334
DesignTop = 116
ClientWidth = 680
DesignLeft = 322
DesignTop = 122
object pnlTop: TPanel[0]
Left = 0
Height = 24
Top = 0
Width = 606
Width = 680
Align = alTop
AutoSize = True
BevelOuter = bvNone
ChildSizing.HorizontalSpacing = 3
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
@ -19,7 +18,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 4
ClientHeight = 24
ClientWidth = 606
ClientWidth = 680
Constraints.MaxWidth = 1000
ParentShowHint = False
ShowHint = True
@ -29,7 +28,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 21
Top = 3
Width = 319
Width = 356
BorderSpacing.Top = 3
ItemHeight = 13
OnChange = cmbLanguageChange
@ -38,10 +37,11 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
end
object stFileExtensions: TStaticText
AnchorSideBottom.Side = asrBottom
Left = 322
Left = 359
Height = 21
Top = 3
Width = 284
Width = 321
AutoSize = True
TabOrder = 1
end
end
@ -49,18 +49,18 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 133
Top = 24
Width = 606
Width = 680
Align = alTop
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
ClientHeight = 133
ClientWidth = 606
ClientWidth = 680
TabOrder = 1
inline ColorPreview: TSynEdit
Left = 211
Height = 132
Top = 1
Width = 395
Width = 469
Align = alClient
BorderSpacing.Left = 1
BorderSpacing.Top = 1
@ -399,6 +399,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Lines.Strings = (
'ColorPreview'
)
VisibleSpecialChars = [vscSpace, vscTabAtLast]
BracketHighlightStyle = sbhsBoth
BracketMatchColor.Background = clNone
BracketMatchColor.Foreground = clNone
@ -452,6 +453,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
ItemHeight = 0
OnDrawItem = ColorElementTreeDrawItem
OnSelectionChange = ColorElementTreeSelectionChange
ScrollWidth = 203
Style = lbOwnerDrawFixed
TabOrder = 2
end
@ -467,12 +469,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 200
Top = 157
Width = 606
Width = 680
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
BevelOuter = bvNone
ClientHeight = 200
ClientWidth = 606
ClientWidth = 680
Constraints.MinHeight = 200
TabOrder = 2
OnResize = pnlElementAttributesResize
@ -481,11 +483,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Control = ForegroundColorBox
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 48
Width = 57
Height = 13
Top = 49
Width = 56
BorderSpacing.Left = 6
Caption = 'Foreground'
Caption = 'Fo&reground'
FocusControl = ForegroundColorBox
ParentColor = False
Visible = False
end
@ -494,11 +497,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Control = BackGroundColorBox
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 73
Width = 57
Height = 13
Top = 74
Width = 56
BorderSpacing.Left = 6
Caption = 'Background'
Caption = 'Bac&kground'
FocusControl = BackGroundColorBox
ParentColor = False
Visible = False
end
@ -509,9 +513,9 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 6
Height = 17
Top = 47
Width = 76
Width = 74
BorderSpacing.Left = 6
Caption = 'Foreground'
Caption = 'Fo&reground'
OnChange = GeneralCheckBoxOnChange
TabOrder = 0
end
@ -521,7 +525,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = pnlElementAttributes
AnchorSideRight.Side = asrBottom
Left = 88
Left = 86
Height = 22
Top = 44
Width = 200
@ -540,7 +544,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = pnlElementAttributes
AnchorSideRight.Side = asrBottom
Left = 88
Left = 86
Height = 22
Top = 69
Width = 200
@ -561,9 +565,9 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 6
Height = 17
Top = 72
Width = 76
Width = 74
BorderSpacing.Left = 6
Caption = 'Background'
Caption = 'Bac&kground'
OnChange = GeneralCheckBoxOnChange
TabOrder = 2
end
@ -573,7 +577,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = pnlElementAttributes
AnchorSideRight.Side = asrBottom
Left = 88
Left = 86
Height = 22
Top = 94
Width = 200
@ -594,9 +598,9 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 6
Height = 17
Top = 97
Width = 69
Width = 67
BorderSpacing.Left = 6
Caption = 'Text-mark'
Caption = '&Text-mark'
OnChange = GeneralCheckBoxOnChange
TabOrder = 4
end
@ -604,7 +608,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 17
Top = 0
Width = 606
Width = 680
Caption = 'Element Attributes'
Align = alTop
Font.Style = [fsBold]
@ -617,13 +621,13 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 6
Height = 36
Top = 143
Width = 131
Width = 125
AutoSize = True
BorderSpacing.Left = 6
BorderSpacing.Top = 3
BevelOuter = bvNone
ClientHeight = 36
ClientWidth = 131
ClientWidth = 125
TabOrder = 6
object TextUnderlineRadioPanel: TPanel
AnchorSideLeft.Control = TextUnderlineCheckBox
@ -633,12 +637,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 19
Top = 17
Width = 131
Width = 125
AutoSize = True
BevelInner = bvLowered
BevelOuter = bvNone
ClientHeight = 19
ClientWidth = 131
ClientWidth = 125
TabOrder = 0
object TextUnderlineRadioOn: TRadioButton
Tag = 3
@ -648,10 +652,10 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 4
Height = 17
Top = 1
Width = 34
Width = 32
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'On'
Caption = 'O&n'
Checked = True
OnChange = TextStyleRadioOnChange
TabOrder = 0
@ -663,13 +667,13 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TextUnderlineRadioOn
AnchorSideRight.Control = TextUnderlineRadioInvert
Left = 41
Left = 39
Height = 17
Top = 1
Width = 36
Width = 34
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'Off'
Caption = 'O&ff'
OnChange = TextStyleRadioOnChange
TabOrder = 1
end
@ -680,12 +684,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Control = TextUnderlineRadioPanel
AnchorSideRight.Control = TextUnderlineRadioPanel
AnchorSideRight.Side = asrBottom
Left = 80
Left = 76
Height = 17
Top = 1
Width = 50
Width = 48
BorderSpacing.Left = 3
Caption = 'Invert'
Caption = 'In&vert'
OnChange = TextStyleRadioOnChange
TabOrder = 2
end
@ -696,8 +700,8 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 17
Top = 0
Width = 65
Caption = 'Underline'
Width = 63
Caption = '&Underline'
OnChange = GeneralCheckBoxOnChange
TabOrder = 1
end
@ -706,15 +710,15 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Control = pnlUnderline
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = pnlUnderline
Left = 143
Left = 137
Height = 36
Top = 143
Width = 131
Width = 125
AutoSize = True
BorderSpacing.Left = 6
BevelOuter = bvNone
ClientHeight = 36
ClientWidth = 131
ClientWidth = 125
TabOrder = 7
object TextBoldRadioPanel: TPanel
AnchorSideLeft.Control = TextBoldCheckBox
@ -724,12 +728,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 19
Top = 17
Width = 131
Width = 125
AutoSize = True
BevelInner = bvLowered
BevelOuter = bvNone
ClientHeight = 19
ClientWidth = 131
ClientWidth = 125
TabOrder = 0
object TextBoldRadioInvert: TRadioButton
Tag = 2
@ -738,12 +742,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Control = TextBoldRadioPanel
AnchorSideRight.Control = TextBoldRadioPanel
AnchorSideRight.Side = asrBottom
Left = 80
Left = 76
Height = 17
Top = 1
Width = 50
Width = 48
BorderSpacing.Left = 3
Caption = 'Invert'
Caption = 'In&vert'
OnChange = TextStyleRadioOnChange
TabOrder = 2
end
@ -755,10 +759,10 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 4
Height = 17
Top = 1
Width = 34
Width = 32
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'On'
Caption = 'O&n'
Checked = True
OnChange = TextStyleRadioOnChange
TabOrder = 0
@ -770,13 +774,13 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TextBoldRadioPanel
AnchorSideRight.Control = TextBoldRadioInvert
Left = 41
Left = 39
Height = 17
Top = 1
Width = 36
Width = 34
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'Off'
Caption = 'O&ff'
OnChange = TextStyleRadioOnChange
TabOrder = 1
end
@ -787,8 +791,8 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 17
Top = 0
Width = 40
Caption = 'Bold'
Width = 38
Caption = '&Bold'
OnChange = GeneralCheckBoxOnChange
TabOrder = 1
end
@ -797,15 +801,15 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Control = pnlBold
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = pnlUnderline
Left = 280
Left = 268
Height = 36
Top = 143
Width = 131
Width = 125
AutoSize = True
BorderSpacing.Left = 6
BevelOuter = bvNone
ClientHeight = 36
ClientWidth = 131
ClientWidth = 125
TabOrder = 8
object TextItalicRadioPanel: TPanel
AnchorSideLeft.Control = TextItalicCheckBox
@ -815,12 +819,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 19
Top = 17
Width = 131
Width = 125
AutoSize = True
BevelInner = bvLowered
BevelOuter = bvNone
ClientHeight = 19
ClientWidth = 131
ClientWidth = 125
TabOrder = 0
object TextItalicRadioInvert: TRadioButton
Tag = 2
@ -829,12 +833,12 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Control = TextItalicRadioPanel
AnchorSideRight.Control = TextItalicRadioPanel
AnchorSideRight.Side = asrBottom
Left = 80
Left = 76
Height = 17
Top = 1
Width = 50
Width = 48
BorderSpacing.Left = 3
Caption = 'Invert'
Caption = 'In&vert'
OnChange = TextStyleRadioOnChange
TabOrder = 2
end
@ -846,10 +850,10 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 4
Height = 17
Top = 1
Width = 34
Width = 32
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'On'
Caption = 'O&n'
Checked = True
OnChange = TextStyleRadioOnChange
TabOrder = 0
@ -861,13 +865,13 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TextItalicRadioPanel
AnchorSideRight.Control = TextItalicRadioInvert
Left = 41
Left = 39
Height = 17
Top = 1
Width = 36
Width = 34
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'Off'
Caption = 'O&ff'
OnChange = TextStyleRadioOnChange
TabOrder = 1
end
@ -878,8 +882,8 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 17
Top = 0
Width = 43
Caption = 'Italic'
Width = 41
Caption = '&Italic'
OnChange = GeneralCheckBoxOnChange
TabOrder = 1
end
@ -888,7 +892,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Control = FrameEdgesBox
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = FrameEdgesBox
Left = 191
Left = 189
Height = 21
Top = 119
Width = 97
@ -910,7 +914,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Control = FrameColorBox
AnchorSideTop.Control = FrameColorBox
AnchorSideTop.Side = asrBottom
Left = 88
Left = 86
Height = 21
Top = 119
Width = 97
@ -934,7 +938,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideTop.Side = asrBottom
AnchorSideBottom.Control = pnlElementAttributes
AnchorSideBottom.Side = asrBottom
Left = 88
Left = 86
Height = 1
Top = 179
Width = 50
@ -949,28 +953,28 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
AnchorSideLeft.Control = pnlItalic
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = pnlUnderline
Left = 417
Height = 36
Left = 399
Height = 42
Top = 143
Width = 131
Width = 129
AutoSize = True
BorderSpacing.Left = 6
BevelOuter = bvNone
ClientHeight = 36
ClientWidth = 131
ClientHeight = 42
ClientWidth = 129
TabOrder = 12
object TextStrikeOutRadioPanel: TPanel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 0
Height = 19
Top = 17
Width = 131
Top = 23
Width = 129
AutoSize = True
BevelInner = bvLowered
BevelOuter = bvNone
ClientHeight = 19
ClientWidth = 131
ClientWidth = 129
TabOrder = 0
object TextStrikeOutRadioInvert: TRadioButton
Tag = 2
@ -979,9 +983,9 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 80
Height = 17
Top = 1
Width = 50
Width = 48
BorderSpacing.Left = 3
Caption = 'Invert'
Caption = 'In&vert'
OnChange = TextStyleRadioOnChange
TabOrder = 2
end
@ -990,10 +994,10 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 4
Height = 17
Top = 1
Width = 34
Width = 32
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'On'
Caption = 'O&n'
Checked = True
OnChange = TextStyleRadioOnChange
TabOrder = 0
@ -1005,10 +1009,10 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 41
Height = 17
Top = 1
Width = 36
Width = 34
BorderSpacing.Left = 3
BorderSpacing.Right = 3
Caption = 'Off'
Caption = 'O&ff'
OnChange = TextStyleRadioOnChange
TabOrder = 1
end
@ -1017,8 +1021,8 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 0
Height = 17
Top = 0
Width = 68
Caption = 'Strike Out'
Width = 66
Caption = '&Strike Out'
OnChange = GeneralCheckBoxOnChange
TabOrder = 1
end
@ -1027,7 +1031,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 3
Height = 24
Top = 17
Width = 600
Width = 674
AutoSize = True
BorderSpacing.Left = 3
BorderSpacing.Right = 3
@ -1041,7 +1045,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 1
Top = 0
AutoSize = True
Caption = 'Use (and edit) global scheme settings'
Caption = 'Use (and edit) &global scheme settings'
Down = True
Grouped = True
OnClick = tbtnGlobalClick
@ -1052,7 +1056,7 @@ inherited frmOptionsEditorColors: TfrmOptionsEditorColors
Left = 198
Top = 0
AutoSize = True
Caption = 'Use local scheme settings'
Caption = 'Use &local scheme settings'
Grouped = True
OnClick = tbtnGlobalClick
Style = tbsCheck

View file

@ -1,24 +1,24 @@
TFRMOPTIONSEDITORCOLORS.FOREGROUNDLABEL.CAPTION=Foreground
TFRMOPTIONSEDITORCOLORS.BACKGROUNDLABEL.CAPTION=Background
TFRMOPTIONSEDITORCOLORS.FOREGROUNDUSEDEFAULTCHECKBOX.CAPTION=Foreground
TFRMOPTIONSEDITORCOLORS.BACKGROUNDUSEDEFAULTCHECKBOX.CAPTION=Background
TFRMOPTIONSEDITORCOLORS.FRAMECOLORUSEDEFAULTCHECKBOX.CAPTION=Text-mark
TFRMOPTIONSEDITORCOLORS.FOREGROUNDLABEL.CAPTION=Fo&reground
TFRMOPTIONSEDITORCOLORS.BACKGROUNDLABEL.CAPTION=Bac&kground
TFRMOPTIONSEDITORCOLORS.FOREGROUNDUSEDEFAULTCHECKBOX.CAPTION=Fo&reground
TFRMOPTIONSEDITORCOLORS.BACKGROUNDUSEDEFAULTCHECKBOX.CAPTION=Bac&kground
TFRMOPTIONSEDITORCOLORS.FRAMECOLORUSEDEFAULTCHECKBOX.CAPTION=&Text-mark
TFRMOPTIONSEDITORCOLORS.BVLATTRIBUTESECTION.CAPTION=Element Attributes
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINERADIOON.CAPTION=On
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINERADIOOFF.CAPTION=Off
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINERADIOINVERT.CAPTION=Invert
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINECHECKBOX.CAPTION=Underline
TFRMOPTIONSEDITORCOLORS.TEXTBOLDRADIOINVERT.CAPTION=Invert
TFRMOPTIONSEDITORCOLORS.TEXTBOLDRADIOON.CAPTION=On
TFRMOPTIONSEDITORCOLORS.TEXTBOLDRADIOOFF.CAPTION=Off
TFRMOPTIONSEDITORCOLORS.TEXTBOLDCHECKBOX.CAPTION=Bold
TFRMOPTIONSEDITORCOLORS.TEXTITALICRADIOINVERT.CAPTION=Invert
TFRMOPTIONSEDITORCOLORS.TEXTITALICRADIOON.CAPTION=On
TFRMOPTIONSEDITORCOLORS.TEXTITALICRADIOOFF.CAPTION=Off
TFRMOPTIONSEDITORCOLORS.TEXTITALICCHECKBOX.CAPTION=Italic
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTRADIOINVERT.CAPTION=Invert
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTRADIOON.CAPTION=On
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTRADIOOFF.CAPTION=Off
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTCHECKBOX.CAPTION=Strike Out
TFRMOPTIONSEDITORCOLORS.TBTNGLOBAL.CAPTION=Use (and edit) global scheme settings
TFRMOPTIONSEDITORCOLORS.TBTNLOCAL.CAPTION=Use local scheme settings
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINERADIOON.CAPTION=O&n
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINERADIOOFF.CAPTION=O&ff
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINERADIOINVERT.CAPTION=In&vert
TFRMOPTIONSEDITORCOLORS.TEXTUNDERLINECHECKBOX.CAPTION=&Underline
TFRMOPTIONSEDITORCOLORS.TEXTBOLDRADIOINVERT.CAPTION=In&vert
TFRMOPTIONSEDITORCOLORS.TEXTBOLDRADIOON.CAPTION=O&n
TFRMOPTIONSEDITORCOLORS.TEXTBOLDRADIOOFF.CAPTION=O&ff
TFRMOPTIONSEDITORCOLORS.TEXTBOLDCHECKBOX.CAPTION=&Bold
TFRMOPTIONSEDITORCOLORS.TEXTITALICRADIOINVERT.CAPTION=In&vert
TFRMOPTIONSEDITORCOLORS.TEXTITALICRADIOON.CAPTION=O&n
TFRMOPTIONSEDITORCOLORS.TEXTITALICRADIOOFF.CAPTION=O&ff
TFRMOPTIONSEDITORCOLORS.TEXTITALICCHECKBOX.CAPTION=&Italic
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTRADIOINVERT.CAPTION=In&vert
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTRADIOON.CAPTION=O&n
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTRADIOOFF.CAPTION=O&ff
TFRMOPTIONSEDITORCOLORS.TEXTSTRIKEOUTCHECKBOX.CAPTION=&Strike Out
TFRMOPTIONSEDITORCOLORS.TBTNGLOBAL.CAPTION=Use (and edit) &global scheme settings
TFRMOPTIONSEDITORCOLORS.TBTNLOCAL.CAPTION=Use &local scheme settings

View file

@ -3,13 +3,14 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
Width = 734
ClientHeight = 602
ClientWidth = 734
DesignTop = 27
object gbUserInterface: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 338
Height = 299
Top = 6
Width = 722
Anchors = [akTop, akLeft, akRight]
@ -22,16 +23,17 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
ChildSizing.VerticalSpacing = 4
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 316
ClientHeight = 276
ClientWidth = 718
TabOrder = 0
object lblProgressKind: TLabel
Left = 10
Height = 22
Height = 18
Top = 4
Width = 401
Width = 371
BorderSpacing.Bottom = 10
Caption = 'Show operations progress initially in'
Caption = 'Show operations progress &initially in'
FocusControl = cbProgressKind
ParentColor = False
end
object cbProgressKind: TComboBox
@ -40,46 +42,46 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideTop.Control = lblProgressKind
AnchorSideTop.Side = asrCenter
AnchorSideRight.Side = asrBottom
Left = 415
Height = 29
Top = 1
Width = 286
Left = 385
Height = 30
Top = -2
Width = 316
Anchors = [akTop, akLeft, akRight]
ItemHeight = 21
ItemHeight = 0
Style = csDropDownList
TabOrder = 0
end
object cbDropReadOnlyFlag: TCheckBox
Left = 10
Height = 27
Top = 36
Width = 401
Caption = 'Drop readonly flag'
Height = 23
Top = 32
Width = 371
Caption = 'D&rop readonly flag'
TabOrder = 1
end
object cbRenameSelOnlyName: TCheckBox
AnchorSideTop.Side = asrBottom
Left = 10
Height = 27
Top = 67
Width = 401
Caption = 'Select file name without extension when renaming'
Height = 23
Top = 59
Width = 371
Caption = 'Select &file name without extension when renaming'
TabOrder = 2
end
object cbShowCopyTabSelectPanel: TCheckBox
Left = 10
Height = 27
Top = 98
Width = 401
Caption = 'Show tab select panel in copy/move dialog'
Height = 23
Top = 86
Width = 371
Caption = 'Sho&w tab select panel in copy/move dialog'
TabOrder = 3
end
object cbDeleteToTrash: TCheckBox
Left = 10
Height = 27
Top = 129
Width = 401
Caption = 'Delete to recycle bin (Shift key reverses this setting)'
Height = 23
Top = 113
Width = 371
Caption = 'Dele&te to recycle bin (Shift key reverses this setting)'
OnChange = cbDeleteToTrashChange
TabOrder = 4
end
@ -91,49 +93,49 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideRight.Side = asrBottom
Left = 10
Height = 2
Top = 160
Top = 140
Width = 698
Anchors = [akTop, akLeft, akRight]
end
object lblConfirmations: TLabel
Left = 10
Height = 22
Top = 166
Width = 401
Height = 18
Top = 146
Width = 371
BorderSpacing.Top = 10
Caption = 'Show confirmation window for:'
ParentColor = False
end
object cbCopyConfirmation: TCheckBox
Left = 10
Height = 27
Top = 192
Width = 401
Caption = 'Copy operation'
Height = 23
Top = 168
Width = 371
Caption = 'Cop&y operation'
TabOrder = 5
end
object cbMoveConfirmation: TCheckBox
Left = 10
Height = 27
Top = 223
Width = 401
Caption = 'Move operation'
Height = 23
Top = 195
Width = 371
Caption = '&Move operation'
TabOrder = 6
end
object cbDeleteConfirmation: TCheckBox
Left = 10
Height = 27
Top = 254
Width = 401
Caption = 'Delete operation'
Height = 23
Top = 222
Width = 371
Caption = '&Delete operation'
TabOrder = 7
end
object cbDeleteToTrashConfirmation: TCheckBox
Left = 10
Height = 27
Top = 285
Width = 401
Caption = 'Delete to trash operation'
Height = 23
Top = 249
Width = 371
Caption = 'D&elete to trash operation'
TabOrder = 8
end
end
@ -144,8 +146,8 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 152
Top = 350
Height = 137
Top = 311
Width = 722
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -157,16 +159,17 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
ChildSizing.VerticalSpacing = 4
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 130
ClientHeight = 114
ClientWidth = 718
TabOrder = 1
object lblBufferSize: TLabel
Left = 10
Height = 22
Height = 18
Top = 4
Width = 428
Width = 393
BorderSpacing.Bottom = 10
Caption = 'Buffer size for file operations (in KB):'
Caption = '&Buffer size for file operations (in KB):'
FocusControl = edtBufferSize
ParentColor = False
end
object edtBufferSize: TEdit
@ -175,19 +178,20 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideTop.Control = lblBufferSize
AnchorSideTop.Side = asrCenter
AnchorSideBottom.Side = asrCenter
Left = 442
Height = 29
Top = 1
Left = 407
Height = 28
Top = -1
Width = 80
TabOrder = 0
end
object lblWipePassNumber: TLabel
Left = 10
Height = 22
Top = 36
Width = 428
Height = 18
Top = 32
Width = 393
BorderSpacing.Bottom = 10
Caption = 'Number of wipe passes:'
Caption = '&Number of wipe passes:'
FocusControl = seWipePassNumber
ParentColor = False
end
object seWipePassNumber: TSpinEdit
@ -195,26 +199,26 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblWipePassNumber
AnchorSideTop.Side = asrCenter
Left = 442
Height = 29
Top = 33
Left = 407
Height = 28
Top = 27
Width = 50
TabOrder = 1
end
object cbProcessComments: TCheckBox
Left = 10
Height = 27
Top = 68
Width = 428
Caption = 'Process comments with files/folders'
Height = 23
Top = 60
Width = 393
Caption = '&Process comments with files/folders'
TabOrder = 2
end
object cbSkipFileOpError: TCheckBox
Left = 10
Height = 27
Top = 99
Width = 428
Caption = 'Skip file operations errors and write them to log window'
Height = 23
Top = 87
Width = 393
Caption = 'S&kip file operations errors and write them to log window'
TabOrder = 3
end
end
@ -225,8 +229,8 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 123
Top = 508
Height = 112
Top = 454
Width = 722
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -236,17 +240,17 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
ChildSizing.TopBottomSpacing = 4
ChildSizing.HorizontalSpacing = 4
ChildSizing.VerticalSpacing = 4
ClientHeight = 101
ClientHeight = 89
ClientWidth = 718
TabOrder = 2
object rbUseMmapInSearch: TRadioButton
AnchorSideLeft.Control = gbFileSearch
AnchorSideTop.Control = gbFileSearch
Left = 10
Height = 27
Height = 23
Top = 4
Width = 344
Caption = 'Use memory mapping for search text in files'
Width = 308
Caption = 'Use memory mapping for search te&xt in files'
TabOrder = 0
end
object rbUseStreamInSearch: TRadioButton
@ -254,11 +258,11 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideTop.Control = rbUseMmapInSearch
AnchorSideTop.Side = asrBottom
Left = 10
Height = 27
Top = 37
Width = 270
Height = 23
Top = 33
Width = 245
BorderSpacing.Top = 6
Caption = 'Use stream for search text in files'
Caption = '&Use stream for search text in files'
Checked = True
TabOrder = 1
TabStop = True
@ -268,11 +272,11 @@ inherited frmOptionsFileOperations: TfrmOptionsFileOperations
AnchorSideTop.Control = rbUseStreamInSearch
AnchorSideTop.Side = asrBottom
Left = 10
Height = 27
Top = 70
Width = 227
Height = 23
Top = 62
Width = 201
BorderSpacing.Top = 6
Caption = 'Search for part of file name'
Caption = '&Search for part of file name'
TabOrder = 2
end
end

View file

@ -1,20 +1,20 @@
TFRMOPTIONSFILEOPERATIONS.GBUSERINTERFACE.CAPTION=User interface
TFRMOPTIONSFILEOPERATIONS.LBLPROGRESSKIND.CAPTION=Show operations progress initially in
TFRMOPTIONSFILEOPERATIONS.CBDROPREADONLYFLAG.CAPTION=Drop readonly flag
TFRMOPTIONSFILEOPERATIONS.CBRENAMESELONLYNAME.CAPTION=Select file name without extension when renaming
TFRMOPTIONSFILEOPERATIONS.CBSHOWCOPYTABSELECTPANEL.CAPTION=Show tab select panel in copy/move dialog
TFRMOPTIONSFILEOPERATIONS.CBDELETETOTRASH.CAPTION=Delete to recycle bin (Shift key reverses this setting)
TFRMOPTIONSFILEOPERATIONS.LBLPROGRESSKIND.CAPTION=Show operations progress &initially in
TFRMOPTIONSFILEOPERATIONS.CBDROPREADONLYFLAG.CAPTION=D&rop readonly flag
TFRMOPTIONSFILEOPERATIONS.CBRENAMESELONLYNAME.CAPTION=Select &file name without extension when renaming
TFRMOPTIONSFILEOPERATIONS.CBSHOWCOPYTABSELECTPANEL.CAPTION=Sho&w tab select panel in copy/move dialog
TFRMOPTIONSFILEOPERATIONS.CBDELETETOTRASH.CAPTION=Dele&te to recycle bin (Shift key reverses this setting)
TFRMOPTIONSFILEOPERATIONS.LBLCONFIRMATIONS.CAPTION=Show confirmation window for:
TFRMOPTIONSFILEOPERATIONS.CBCOPYCONFIRMATION.CAPTION=Copy operation
TFRMOPTIONSFILEOPERATIONS.CBMOVECONFIRMATION.CAPTION=Move operation
TFRMOPTIONSFILEOPERATIONS.CBDELETECONFIRMATION.CAPTION=Delete operation
TFRMOPTIONSFILEOPERATIONS.CBDELETETOTRASHCONFIRMATION.CAPTION=Delete to trash operation
TFRMOPTIONSFILEOPERATIONS.CBCOPYCONFIRMATION.CAPTION=Cop&y operation
TFRMOPTIONSFILEOPERATIONS.CBMOVECONFIRMATION.CAPTION=&Move operation
TFRMOPTIONSFILEOPERATIONS.CBDELETECONFIRMATION.CAPTION=&Delete operation
TFRMOPTIONSFILEOPERATIONS.CBDELETETOTRASHCONFIRMATION.CAPTION=D&elete to trash operation
TFRMOPTIONSFILEOPERATIONS.GBEXECUTINGOPERATIONS.CAPTION=Executing operations
TFRMOPTIONSFILEOPERATIONS.LBLBUFFERSIZE.CAPTION=Buffer size for file operations (in KB):
TFRMOPTIONSFILEOPERATIONS.LBLWIPEPASSNUMBER.CAPTION=Number of wipe passes:
TFRMOPTIONSFILEOPERATIONS.CBPROCESSCOMMENTS.CAPTION=Process comments with files/folders
TFRMOPTIONSFILEOPERATIONS.CBSKIPFILEOPERROR.CAPTION=Skip file operations errors and write them to log window
TFRMOPTIONSFILEOPERATIONS.LBLBUFFERSIZE.CAPTION=&Buffer size for file operations (in KB):
TFRMOPTIONSFILEOPERATIONS.LBLWIPEPASSNUMBER.CAPTION=&Number of wipe passes:
TFRMOPTIONSFILEOPERATIONS.CBPROCESSCOMMENTS.CAPTION=&Process comments with files/folders
TFRMOPTIONSFILEOPERATIONS.CBSKIPFILEOPERROR.CAPTION=S&kip file operations errors and write them to log window
TFRMOPTIONSFILEOPERATIONS.GBFILESEARCH.CAPTION=File search
TFRMOPTIONSFILEOPERATIONS.RBUSEMMAPINSEARCH.CAPTION=Use memory mapping for search text in files
TFRMOPTIONSFILEOPERATIONS.RBUSESTREAMINSEARCH.CAPTION=Use stream for search text in files
TFRMOPTIONSFILEOPERATIONS.CBPARTIALNAMESEARCH.CAPTION=Search for part of file name
TFRMOPTIONSFILEOPERATIONS.RBUSEMMAPINSEARCH.CAPTION=Use memory mapping for search te&xt in files
TFRMOPTIONSFILEOPERATIONS.RBUSESTREAMINSEARCH.CAPTION=&Use stream for search text in files
TFRMOPTIONSFILEOPERATIONS.CBPARTIALNAMESEARCH.CAPTION=&Search for part of file name

View file

@ -3,64 +3,71 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
Width = 644
ClientHeight = 493
ClientWidth = 644
DesignTop = 20
object lblTextColor: TLabel[0]
AnchorSideTop.Control = cbTextColor
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 12
Width = 55
Caption = 'Text Color:'
Height = 13
Top = 13
Width = 54
Caption = 'T&ext Color:'
FocusControl = cbTextColor
ParentColor = False
end
object lblBackgroundColor: TLabel[1]
AnchorSideTop.Control = cbBackColor
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 42
Width = 61
Caption = 'Background:'
Height = 13
Top = 43
Width = 60
Caption = 'Bac&kground:'
FocusControl = cbBackColor
ParentColor = False
end
object lblBackgroundColor2: TLabel[2]
AnchorSideTop.Control = cbBackColor2
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 72
Width = 70
Caption = 'Background 2:'
Height = 13
Top = 73
Width = 69
Caption = 'Backg&round 2:'
FocusControl = cbBackColor2
ParentColor = False
end
object lblMarkColor: TLabel[3]
AnchorSideTop.Control = cbMarkColor
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 102
Width = 56
Caption = 'Mark Color:'
Height = 13
Top = 103
Width = 55
Caption = '&Mark Color:'
FocusControl = cbMarkColor
ParentColor = False
end
object lblCursorColor: TLabel[4]
AnchorSideTop.Control = cbCursorColor
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 132
Width = 65
Caption = 'Cursor Color:'
Height = 13
Top = 133
Width = 64
Caption = 'C&ursor Color:'
FocusControl = cbCursorColor
ParentColor = False
end
object lblCursorText: TLabel[5]
AnchorSideTop.Control = cbCursorText
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 162
Width = 62
Caption = 'Cursor Text:'
Height = 13
Top = 163
Width = 61
Caption = 'Cursor Te&xt:'
FocusControl = cbCursorText
ParentColor = False
end
object cbTextColor: TColorBox[6]
@ -190,7 +197,7 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
BorderSpacing.Top = 8
ItemHeight = 16
OnChange = cbColorBoxChange
TabOrder = 11
TabOrder = 10
end
object btnMarkColor: TButton[14]
AnchorSideLeft.Control = btnForeColor
@ -238,7 +245,7 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
BorderSpacing.InnerBorder = 4
Caption = '>>'
OnClick = btnCursorTextClick
TabOrder = 12
TabOrder = 11
end
object btnBackColor2: TButton[17]
AnchorSideLeft.Control = btnForeColor
@ -273,7 +280,7 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
Caption = 'Example'
ClientHeight = 117
ClientWidth = 230
TabOrder = 13
TabOrder = 20
object pbExample: TPaintBox
Left = 6
Height = 105
@ -290,20 +297,20 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
Left = 6
Height = 17
Top = 211
Width = 129
Width = 127
BorderSpacing.Top = 6
Caption = 'Use Inverted Selection'
Caption = 'U&se Inverted Selection'
OnChange = cbColorBoxChange
TabOrder = 14
TabOrder = 12
end
object tbInactivePanelBrightness: TTrackBar[20]
AnchorSideLeft.Control = lblInactivePanelBrightness
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblInactivePanelBrightness
AnchorSideTop.Side = asrCenter
Left = 172
Height = 42
Top = 241
Left = 171
Height = 27
Top = 248
Width = 200
Max = 100
PageSize = 10
@ -312,18 +319,19 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
TickStyle = tsNone
BorderSpacing.Left = 8
BorderSpacing.Top = 6
TabOrder = 15
TabOrder = 14
end
object lblInactivePanelBrightness: TLabel[21]
AnchorSideLeft.Control = cbbUseFrameCursor
AnchorSideTop.Control = cbbUseFrameCursor
AnchorSideTop.Side = asrBottom
Left = 6
Height = 14
Height = 13
Top = 255
Width = 158
Width = 157
BorderSpacing.Top = 5
Caption = 'Brightness level of inactive panel'
Caption = '&Brightness level of inactive panel'
FocusControl = tbInactivePanelBrightness
ParentColor = False
end
object cbbUseFrameCursor: TCheckBox[22]
@ -333,11 +341,11 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
Left = 6
Height = 17
Top = 233
Width = 106
Width = 104
BorderSpacing.Top = 5
Caption = 'Use Frame Cursor'
Caption = 'Use &Frame Cursor'
OnChange = cbColorBoxChange
TabOrder = 16
TabOrder = 13
end
object lblIndColor: TLabel[23]
AnchorSideLeft.Control = cbbUseGradientInd
@ -345,10 +353,11 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideTop.Side = asrCenter
AnchorSideRight.Side = asrCenter
Left = 6
Height = 14
Top = 336
Width = 101
Caption = 'Indicator Fore Color:'
Height = 13
Top = 329
Width = 100
Caption = '&Indicator Fore Color:'
FocusControl = cbIndColor
ParentColor = False
end
object lblIndBackColor: TLabel[24]
@ -356,10 +365,11 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideTop.Control = cbIndBackColor
AnchorSideTop.Side = asrCenter
Left = 6
Height = 14
Top = 366
Width = 101
Caption = 'Indicator Back Color:'
Height = 13
Top = 358
Width = 100
Caption = 'In&dicator Back Color:'
FocusControl = cbIndBackColor
ParentColor = False
end
object cbIndColor: TColorBox[25]
@ -370,13 +380,13 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideRight.Side = asrBottom
Left = 160
Height = 22
Top = 332
Top = 324
Width = 200
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbPrettyNames]
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 5
ItemHeight = 16
TabOrder = 10
TabOrder = 16
end
object cbIndBackColor: TColorBox[26]
AnchorSideLeft.Control = cbIndColor
@ -385,14 +395,14 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideRight.Control = cbIndColor
AnchorSideRight.Side = asrBottom
Left = 160
Height = 24
Top = 361
Height = 22
Top = 353
Width = 200
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbPrettyNames]
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 7
ItemHeight = 16
TabOrder = 17
TabOrder = 18
end
object btnIndColor: TButton[27]
AnchorSideLeft.Control = btnCursorText
@ -403,12 +413,12 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideBottom.Side = asrBottom
Left = 366
Height = 22
Top = 332
Top = 324
Width = 28
Anchors = [akTop, akLeft, akRight, akBottom]
Caption = '>>'
OnClick = btnIndColorClick
TabOrder = 18
TabOrder = 17
end
object btnIndBackColor: TButton[28]
AnchorSideLeft.Control = btnIndColor
@ -418,8 +428,8 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideBottom.Control = cbIndBackColor
AnchorSideBottom.Side = asrBottom
Left = 366
Height = 24
Top = 361
Height = 22
Top = 353
Width = 28
Anchors = [akTop, akLeft, akRight, akBottom]
Caption = '>>'
@ -432,12 +442,12 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideTop.Side = asrBottom
Left = 6
Height = 17
Top = 310
Width = 128
Top = 302
Width = 126
BorderSpacing.Top = 6
Caption = 'Use Gradient Indicator'
Caption = 'Use &Gradient Indicator'
OnChange = cbbUseGradientIndChange
TabOrder = 20
TabOrder = 15
end
object dbFreeSpaceIndicator: TDividerBevel[30]
AnchorSideLeft.Control = lblInactivePanelBrightness
@ -447,7 +457,7 @@ inherited frmOptionsFilePanelsColors: TfrmOptionsFilePanelsColors
AnchorSideRight.Side = asrBottom
Left = 6
Height = 17
Top = 287
Top = 279
Width = 388
Caption = 'Drive Free Space Indicator'
Anchors = [akTop, akLeft, akRight]

View file

@ -1,9 +1,9 @@
TFRMOPTIONSFILEPANELSCOLORS.LBLTEXTCOLOR.CAPTION=Text Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLBACKGROUNDCOLOR.CAPTION=Background:
TFRMOPTIONSFILEPANELSCOLORS.LBLBACKGROUNDCOLOR2.CAPTION=Background 2:
TFRMOPTIONSFILEPANELSCOLORS.LBLMARKCOLOR.CAPTION=Mark Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLCURSORCOLOR.CAPTION=Cursor Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLCURSORTEXT.CAPTION=Cursor Text:
TFRMOPTIONSFILEPANELSCOLORS.LBLTEXTCOLOR.CAPTION=T&ext Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLBACKGROUNDCOLOR.CAPTION=Bac&kground:
TFRMOPTIONSFILEPANELSCOLORS.LBLBACKGROUNDCOLOR2.CAPTION=Backg&round 2:
TFRMOPTIONSFILEPANELSCOLORS.LBLMARKCOLOR.CAPTION=&Mark Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLCURSORCOLOR.CAPTION=C&ursor Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLCURSORTEXT.CAPTION=Cursor Te&xt:
TFRMOPTIONSFILEPANELSCOLORS.BTNFORECOLOR.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.BTNBACKCOLOR.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.BTNMARKCOLOR.CAPTION=>>
@ -11,12 +11,12 @@ TFRMOPTIONSFILEPANELSCOLORS.BTNCURSORCOLOR.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.BTNCURSORTEXT.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.BTNBACKCOLOR2.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.GBEXAMPLE.CAPTION=Example
TFRMOPTIONSFILEPANELSCOLORS.CBBUSEINVERTEDSELECTION.CAPTION=Use Inverted Selection
TFRMOPTIONSFILEPANELSCOLORS.LBLINACTIVEPANELBRIGHTNESS.CAPTION=Brightness level of inactive panel
TFRMOPTIONSFILEPANELSCOLORS.CBBUSEFRAMECURSOR.CAPTION=Use Frame Cursor
TFRMOPTIONSFILEPANELSCOLORS.LBLINDCOLOR.CAPTION=Indicator Fore Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLINDBACKCOLOR.CAPTION=Indicator Back Color:
TFRMOPTIONSFILEPANELSCOLORS.CBBUSEINVERTEDSELECTION.CAPTION=U&se Inverted Selection
TFRMOPTIONSFILEPANELSCOLORS.LBLINACTIVEPANELBRIGHTNESS.CAPTION=&Brightness level of inactive panel
TFRMOPTIONSFILEPANELSCOLORS.CBBUSEFRAMECURSOR.CAPTION=Use &Frame Cursor
TFRMOPTIONSFILEPANELSCOLORS.LBLINDCOLOR.CAPTION=&Indicator Fore Color:
TFRMOPTIONSFILEPANELSCOLORS.LBLINDBACKCOLOR.CAPTION=In&dicator Back Color:
TFRMOPTIONSFILEPANELSCOLORS.BTNINDCOLOR.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.BTNINDBACKCOLOR.CAPTION=>>
TFRMOPTIONSFILEPANELSCOLORS.CBBUSEGRADIENTIND.CAPTION=Use Gradient Indicator
TFRMOPTIONSFILEPANELSCOLORS.CBBUSEGRADIENTIND.CAPTION=Use &Gradient Indicator
TFRMOPTIONSFILEPANELSCOLORS.DBFREESPACEINDICATOR.CAPTION=Drive Free Space Indicator

View file

@ -9,7 +9,7 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 200
Height = 151
Top = 6
Width = 628
Anchors = [akTop, akLeft, akRight]
@ -21,16 +21,17 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
ChildSizing.HorizontalSpacing = 6
ChildSizing.VerticalSpacing = 12
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 178
ClientHeight = 133
ClientWidth = 624
TabOrder = 0
object lblSortMethod: TLabel
AnchorSideTop.Side = asrCenter
Left = 12
Height = 22
Height = 13
Top = 8
Width = 130
Caption = 'Sort &method:'
Width = 91
Caption = '&Sort method:'
FocusControl = cbSortMethod
ParentColor = False
end
object cbSortMethod: TComboBox
@ -40,13 +41,13 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbSorting
AnchorSideRight.Side = asrBottom
Left = 152
Height = 29
Top = 5
Width = 460
Left = 113
Height = 21
Top = 4
Width = 499
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 13
Items.Strings = (
'Alphabetical, considering accents'
'Natural sorting: alphabetical and numbers'
@ -56,10 +57,11 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
end
object lblCaseSensitivity: TLabel
Left = 12
Height = 22
Top = 42
Width = 130
Caption = 'Case sensitivity:'
Height = 13
Top = 33
Width = 91
Caption = 'Case s&ensitivity:'
FocusControl = cbCaseSensitivity
ParentColor = False
end
object cbCaseSensitivity: TComboBox
@ -69,13 +71,13 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbSorting
AnchorSideRight.Side = asrBottom
Left = 152
Height = 29
Top = 39
Width = 460
Left = 113
Height = 21
Top = 29
Width = 499
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 13
Items.Strings = (
'not case sensitive'
'according to locale settings (aAbBcC)'
@ -86,10 +88,11 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
end
object lblSortFolderMode: TLabel
Left = 12
Height = 22
Top = 76
Width = 130
Caption = 'Sorting directories:'
Height = 13
Top = 58
Width = 91
Caption = 'So&rting directories:'
FocusControl = cbSortFolderMode
ParentColor = False
end
object cbSortFolderMode: TComboBox
@ -99,13 +102,13 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbSorting
AnchorSideRight.Side = asrBottom
Left = 152
Height = 29
Top = 73
Width = 460
Left = 113
Height = 21
Top = 54
Width = 499
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 13
Items.Strings = (
'sort by name and show first'
'sort like files and show first'
@ -116,10 +119,11 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
end
object lblNewFilesPosition: TLabel
Left = 12
Height = 22
Top = 110
Width = 130
Caption = 'Insert new files'
Height = 13
Top = 83
Width = 91
Caption = '&Insert new files'
FocusControl = cbNewFilesPosition
ParentColor = False
end
object cbNewFilesPosition: TComboBox
@ -129,22 +133,23 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbSorting
AnchorSideRight.Side = asrBottom
Left = 152
Height = 29
Top = 107
Width = 460
Left = 113
Height = 21
Top = 79
Width = 499
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 13
Style = csDropDownList
TabOrder = 3
end
object lblUpdatedFilesPosition: TLabel
Left = 12
Height = 22
Top = 144
Width = 130
Caption = 'Move updated files'
Height = 13
Top = 108
Width = 91
Caption = '&Move updated files'
FocusControl = cbUpdatedFilesPosition
ParentColor = False
end
object cbUpdatedFilesPosition: TComboBox
@ -154,13 +159,13 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbSorting
AnchorSideRight.Side = asrBottom
Left = 152
Height = 29
Top = 141
Width = 460
Left = 113
Height = 21
Top = 104
Width = 499
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 13
Style = csDropDownList
TabOrder = 4
end
@ -172,8 +177,8 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 247
Top = 317
Height = 173
Top = 268
Width = 628
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -183,63 +188,63 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
ChildSizing.VerticalSpacing = 4
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 225
ClientHeight = 155
ClientWidth = 624
TabOrder = 1
TabOrder = 2
object cbSpaceMovesDown: TCheckBox
Left = 6
Height = 27
Height = 17
Top = 6
Width = 589
Caption = 'When selecting files with <SPACEBAR>, move down to next file (as with <INSERT>)'
Width = 424
Caption = '&When selecting files with <SPACEBAR>, move down to next file (as with <INSERT>)'
TabOrder = 0
end
object cbDirBrackets: TCheckBox
Left = 6
Height = 27
Top = 37
Width = 589
Caption = 'Show square brackets around directories'
Height = 17
Top = 27
Width = 424
Caption = 'S&how square brackets around directories'
TabOrder = 1
end
object cbShowSystemFiles: TCheckBox
Left = 6
Height = 27
Top = 68
Width = 589
Caption = 'Show system and hidden files'
Height = 17
Top = 48
Width = 424
Caption = 'Show s&ystem and hidden files'
TabOrder = 2
end
object cbListFilesInThread: TCheckBox
Left = 6
Height = 27
Top = 99
Width = 589
Caption = 'Load file list in separate thread'
Height = 17
Top = 69
Width = 424
Caption = 'Load &file list in separate thread'
TabOrder = 3
end
object cbLoadIconsSeparately: TCheckBox
Left = 6
Height = 27
Top = 130
Width = 589
Caption = 'Load icons after file list'
Height = 17
Top = 90
Width = 424
Caption = 'Load icons af&ter file list'
TabOrder = 4
end
object cbDelayLoadingTabs: TCheckBox
Left = 6
Height = 27
Top = 161
Width = 589
Caption = 'Don''t load file list until a tab is activated'
Height = 17
Top = 111
Width = 424
Caption = 'Do&n''t load file list until a tab is activated'
TabOrder = 5
end
object cbHighlightUpdatedFiles: TCheckBox
Left = 6
Height = 27
Top = 192
Width = 589
Caption = 'Highlight new and updated files'
Height = 17
Top = 132
Width = 424
Caption = 'Hi&ghlight new and updated files'
TabOrder = 6
end
end
@ -251,26 +256,27 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideRight.Side = asrBottom
Left = 6
Height = 99
Top = 212
Top = 163
Width = 628
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
Caption = 'Formatting'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ClientHeight = 77
ClientHeight = 81
ClientWidth = 624
TabOrder = 2
TabOrder = 1
object lblDateTimeFormat: TLabel
AnchorSideLeft.Control = gbFormatting
AnchorSideTop.Control = cbDateTimeFormat
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Top = 9
Width = 148
Height = 13
Top = 10
Width = 106
BorderSpacing.Left = 8
Caption = 'Date and time format:'
Caption = '&Date and time format:'
FocusControl = cbDateTimeFormat
ParentColor = False
end
object lblDateTimeExample: TLabel
@ -278,10 +284,10 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbFormatting
AnchorSideRight.Side = asrBottom
Left = 522
Height = 14
Top = 9
Width = 96
Left = 523
Height = 13
Top = 10
Width = 95
Anchors = [akTop, akRight]
BorderSpacing.Top = 6
BorderSpacing.Right = 6
@ -295,15 +301,15 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = gbFormatting
AnchorSideRight.Control = lblDateTimeExample
Left = 164
Height = 29
Left = 122
Height = 21
Top = 6
Width = 391
Width = 393
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 8
BorderSpacing.Top = 6
BorderSpacing.Right = 8
ItemHeight = 21
ItemHeight = 13
Items.Strings = (
'yyyy/mm/dd hh:mm:ss'
'yyyy/mm/dd hh:mm'
@ -322,11 +328,11 @@ inherited frmOptionsFilesViews: TfrmOptionsFilesViews
AnchorSideTop.Control = cbDateTimeFormat
AnchorSideTop.Side = asrBottom
Left = 6
Height = 27
Top = 41
Width = 169
Height = 17
Top = 33
Width = 117
BorderSpacing.Top = 6
Caption = 'Short file size format'
Caption = 'Short file si&ze format'
TabOrder = 1
end
end

View file

@ -1,17 +1,17 @@
TFRMOPTIONSFILESVIEWS.GBSORTING.CAPTION=Sorting
TFRMOPTIONSFILESVIEWS.LBLSORTMETHOD.CAPTION=Sort &method:
TFRMOPTIONSFILESVIEWS.LBLCASESENSITIVITY.CAPTION=Case sensitivity:
TFRMOPTIONSFILESVIEWS.LBLSORTFOLDERMODE.CAPTION=Sorting directories:
TFRMOPTIONSFILESVIEWS.LBLNEWFILESPOSITION.CAPTION=Insert new files
TFRMOPTIONSFILESVIEWS.LBLUPDATEDFILESPOSITION.CAPTION=Move updated files
TFRMOPTIONSFILESVIEWS.CBSPACEMOVESDOWN.CAPTION=When selecting files with <SPACEBAR>, move down to next file (as with <INSERT>)
TFRMOPTIONSFILESVIEWS.CBDIRBRACKETS.CAPTION=Show square brackets around directories
TFRMOPTIONSFILESVIEWS.CBSHOWSYSTEMFILES.CAPTION=Show system and hidden files
TFRMOPTIONSFILESVIEWS.CBLISTFILESINTHREAD.CAPTION=Load file list in separate thread
TFRMOPTIONSFILESVIEWS.CBLOADICONSSEPARATELY.CAPTION=Load icons after file list
TFRMOPTIONSFILESVIEWS.CBDELAYLOADINGTABS.CAPTION=Don't load file list until a tab is activated
TFRMOPTIONSFILESVIEWS.CBHIGHLIGHTUPDATEDFILES.CAPTION=Highlight new and updated files
TFRMOPTIONSFILESVIEWS.LBLSORTMETHOD.CAPTION=&Sort method:
TFRMOPTIONSFILESVIEWS.LBLCASESENSITIVITY.CAPTION=Case s&ensitivity:
TFRMOPTIONSFILESVIEWS.LBLSORTFOLDERMODE.CAPTION=So&rting directories:
TFRMOPTIONSFILESVIEWS.LBLNEWFILESPOSITION.CAPTION=&Insert new files
TFRMOPTIONSFILESVIEWS.LBLUPDATEDFILESPOSITION.CAPTION=&Move updated files
TFRMOPTIONSFILESVIEWS.CBSPACEMOVESDOWN.CAPTION=&When selecting files with <SPACEBAR>, move down to next file (as with <INSERT>)
TFRMOPTIONSFILESVIEWS.CBDIRBRACKETS.CAPTION=S&how square brackets around directories
TFRMOPTIONSFILESVIEWS.CBSHOWSYSTEMFILES.CAPTION=Show s&ystem and hidden files
TFRMOPTIONSFILESVIEWS.CBLISTFILESINTHREAD.CAPTION=Load &file list in separate thread
TFRMOPTIONSFILESVIEWS.CBLOADICONSSEPARATELY.CAPTION=Load icons af&ter file list
TFRMOPTIONSFILESVIEWS.CBDELAYLOADINGTABS.CAPTION=Do&n't load file list until a tab is activated
TFRMOPTIONSFILESVIEWS.CBHIGHLIGHTUPDATEDFILES.CAPTION=Hi&ghlight new and updated files
TFRMOPTIONSFILESVIEWS.GBFORMATTING.CAPTION=Formatting
TFRMOPTIONSFILESVIEWS.LBLDATETIMEFORMAT.CAPTION=Date and time format:
TFRMOPTIONSFILESVIEWS.LBLDATETIMEFORMAT.CAPTION=&Date and time format:
TFRMOPTIONSFILESVIEWS.LBLDATETIMEEXAMPLE.CAPTION=Incorrect format
TFRMOPTIONSFILESVIEWS.CBSHORTFILESIZEFORMAT.CAPTION=Short file size format
TFRMOPTIONSFILESVIEWS.CBSHORTFILESIZEFORMAT.CAPTION=Short file si&ze format

View file

@ -3,6 +3,7 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
Width = 759
ClientHeight = 356
ClientWidth = 759
DesignTop = 20
object gbFileTypesColors: TGroupBox[0]
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
@ -24,40 +25,44 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideTop.Control = edtCategoryName
AnchorSideTop.Side = asrCenter
Left = 12
Height = 14
Top = 140
Width = 79
Caption = 'Category name:'
Height = 13
Top = 142
Width = 77
Caption = 'Category &name:'
FocusControl = edtCategoryName
ParentColor = False
end
object lblCategoryMask: TLabel
AnchorSideTop.Control = edtCategoryMask
AnchorSideTop.Side = asrCenter
Left = 12
Height = 14
Top = 169
Width = 77
Caption = 'Category mask:'
Height = 13
Top = 173
Width = 76
Caption = 'Category &mask:'
FocusControl = edtCategoryMask
ParentColor = False
end
object lblCategoryColor: TLabel
AnchorSideTop.Control = cbCategoryColor
AnchorSideTop.Side = asrCenter
Left = 12
Height = 14
Top = 228
Width = 76
Caption = 'Category color:'
Height = 13
Top = 236
Width = 75
Caption = 'Category co&lor:'
FocusControl = cbCategoryColor
ParentColor = False
end
object lblCategoryAttr: TLabel
AnchorSideTop.Control = edtCategoryAttr
AnchorSideTop.Side = asrCenter
Left = 12
Height = 14
Top = 198
Width = 100
Caption = 'Category attributes:'
Height = 13
Top = 204
Width = 97
Caption = 'Category a&ttributes:'
FocusControl = edtCategoryAttr
ParentColor = False
end
object edtCategoryName: TEdit
@ -66,7 +71,7 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideRight.Control = lbCategories
AnchorSideRight.Side = asrBottom
Left = 174
Height = 21
Height = 23
Top = 137
Width = 557
Anchors = [akTop, akLeft, akRight]
@ -78,8 +83,8 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnSearchTemplate
Left = 174
Height = 21
Top = 166
Height = 23
Top = 168
Width = 528
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 8
@ -91,8 +96,8 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnCategoryColor
Left = 174
Height = 22
Top = 224
Height = 25
Top = 230
Width = 523
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbPrettyNames]
Anchors = [akTop, akLeft, akRight]
@ -107,14 +112,13 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideRight.Control = btnDeleteCategory
Left = 389
Height = 32
Top = 258
Top = 267
Width = 110
Anchors = [akTop, akRight]
BorderSpacing.Left = 6
BorderSpacing.Top = 12
BorderSpacing.Right = 6
Caption = 'Add'
NumGlyphs = 0
Caption = 'A&dd'
OnClick = btnAddCategoryClick
TabOrder = 7
end
@ -124,13 +128,12 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideRight.Control = btnApplyCategory
Left = 505
Height = 32
Top = 258
Top = 267
Width = 110
Anchors = [akTop, akRight]
BorderSpacing.Top = 12
BorderSpacing.Right = 6
Caption = 'Delete'
NumGlyphs = 0
Caption = 'D&elete'
OnClick = btnDeleteCategoryClick
TabOrder = 8
end
@ -142,8 +145,8 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideBottom.Control = cbCategoryColor
AnchorSideBottom.Side = asrBottom
Left = 703
Height = 22
Top = 224
Height = 25
Top = 230
Width = 28
Anchors = [akTop, akRight, akBottom]
BorderSpacing.InnerBorder = 4
@ -168,8 +171,10 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
OnDragDrop = lbCategoriesDragDrop
OnDragOver = lbCategoriesDragOver
OnDrawItem = lbCategoriesDrawItem
ScrollWidth = 717
Style = lbOwnerDrawFixed
TabOrder = 0
TopIndex = -1
end
object btnApplyCategory: TBitBtn
AnchorSideTop.Control = cbCategoryColor
@ -178,12 +183,11 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideRight.Side = asrBottom
Left = 621
Height = 32
Top = 258
Top = 267
Width = 110
Anchors = [akTop, akRight]
BorderSpacing.Top = 12
Caption = 'Apply'
NumGlyphs = 0
Caption = 'A&pply'
OnClick = btnApplyCategoryClick
TabOrder = 9
end
@ -193,8 +197,8 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideRight.Control = lbCategories
AnchorSideRight.Side = asrBottom
Left = 174
Height = 21
Top = 195
Height = 23
Top = 199
Width = 557
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 8
@ -207,9 +211,9 @@ inherited frmOptionsFileTypesColors: TfrmOptionsFileTypesColors
AnchorSideBottom.Control = edtCategoryMask
AnchorSideBottom.Side = asrBottom
Left = 708
Height = 21
Height = 23
Hint = 'Template...'
Top = 166
Top = 168
Width = 23
Anchors = [akTop, akRight, akBottom]
Glyph.Data = {

View file

@ -1,10 +1,10 @@
TFRMOPTIONSFILETYPESCOLORS.GBFILETYPESCOLORS.CAPTION=File types colors (sort by drag&&drop)
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYNAME.CAPTION=Category name:
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYMASK.CAPTION=Category mask:
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYCOLOR.CAPTION=Category color:
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYATTR.CAPTION=Category attributes:
TFRMOPTIONSFILETYPESCOLORS.BTNADDCATEGORY.CAPTION=Add
TFRMOPTIONSFILETYPESCOLORS.BTNDELETECATEGORY.CAPTION=Delete
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYNAME.CAPTION=Category &name:
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYMASK.CAPTION=Category &mask:
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYCOLOR.CAPTION=Category co&lor:
TFRMOPTIONSFILETYPESCOLORS.LBLCATEGORYATTR.CAPTION=Category a&ttributes:
TFRMOPTIONSFILETYPESCOLORS.BTNADDCATEGORY.CAPTION=A&dd
TFRMOPTIONSFILETYPESCOLORS.BTNDELETECATEGORY.CAPTION=D&elete
TFRMOPTIONSFILETYPESCOLORS.BTNCATEGORYCOLOR.CAPTION=>>
TFRMOPTIONSFILETYPESCOLORS.BTNAPPLYCATEGORY.CAPTION=Apply
TFRMOPTIONSFILETYPESCOLORS.BTNAPPLYCATEGORY.CAPTION=A&pply
TFRMOPTIONSFILETYPESCOLORS.BTNSEARCHTEMPLATE.HINT=Template...

View file

@ -5,32 +5,35 @@ inherited frmOptionsFonts: TfrmOptionsFonts
ClientWidth = 703
object lblMainFont: TLabel[0]
Left = 6
Height = 22
Height = 13
Top = 8
Width = 66
Caption = 'Main font'
Width = 45
Caption = 'Main &font'
FocusControl = edtMainFont
ParentColor = False
end
object lblEditorFont: TLabel[1]
AnchorSideTop.Control = edtMainFont
AnchorSideTop.Side = asrBottom
Left = 6
Height = 22
Top = 75
Width = 72
Height = 13
Top = 58
Width = 51
BorderSpacing.Top = 10
Caption = 'Editor font'
Caption = '&Editor font'
FocusControl = edtEditorFont
ParentColor = False
end
object lblViewerFont: TLabel[2]
AnchorSideTop.Control = edtEditorFont
AnchorSideTop.Side = asrBottom
Left = 6
Height = 22
Top = 142
Width = 77
Height = 13
Top = 108
Width = 55
BorderSpacing.Top = 10
Caption = 'Viewer font'
Caption = '&Viewer font'
FocusControl = edtViewerFont
ParentColor = False
end
object btnSelMainFnt: TButton[3]
@ -40,22 +43,22 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideBottom.Control = edtMainFontSize
AnchorSideBottom.Side = asrBottom
Left = 655
Height = 29
Top = 36
Height = 21
Top = 27
Width = 40
Anchors = [akTop, akRight, akBottom]
BorderSpacing.Right = 8
Caption = '...'
OnClick = btnSelMainFntClick
TabOrder = 0
TabOrder = 2
end
object edtMainFontSize: TSpinEdit[4]
AnchorSideTop.Control = edtMainFont
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnSelMainFnt
Left = 596
Height = 29
Top = 36
Height = 21
Top = 27
Width = 55
Anchors = [akTop, akRight]
BorderSpacing.Right = 4
@ -71,14 +74,14 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtMainFontSize
Left = 6
Height = 29
Top = 36
Height = 21
Top = 27
Width = 586
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Right = 4
OnExit = edtMainFontExit
TabOrder = 2
TabOrder = 0
end
object btnSelEditFnt: TButton[6]
AnchorSideTop.Control = edtEditorFontSize
@ -87,14 +90,14 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideBottom.Control = edtEditorFontSize
AnchorSideBottom.Side = asrBottom
Left = 655
Height = 29
Top = 103
Height = 21
Top = 77
Width = 40
Anchors = [akTop, akRight, akBottom]
BorderSpacing.InnerBorder = 4
Caption = '...'
OnClick = btnSelEditFntClick
TabOrder = 3
TabOrder = 5
end
object edtEditorFont: TEdit[7]
AnchorSideLeft.Control = lblEditorFont
@ -102,29 +105,29 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtEditorFontSize
Left = 6
Height = 29
Top = 103
Height = 21
Top = 77
Width = 586
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Right = 4
OnExit = edtEditorFontExit
TabOrder = 4
TabOrder = 3
end
object edtEditorFontSize: TSpinEdit[8]
AnchorSideTop.Control = edtEditorFont
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnSelEditFnt
Left = 596
Height = 29
Top = 103
Height = 21
Top = 77
Width = 55
Anchors = [akTop, akRight]
BorderSpacing.Right = 4
MaxValue = 25
MinValue = 6
OnChange = edtEditorFontSizeChange
TabOrder = 5
TabOrder = 4
Value = 14
end
object btnSelViewFnt: TButton[9]
@ -134,14 +137,14 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideBottom.Control = edtViewerFontSize
AnchorSideBottom.Side = asrBottom
Left = 655
Height = 29
Top = 170
Height = 21
Top = 127
Width = 40
Anchors = [akTop, akRight, akBottom]
BorderSpacing.InnerBorder = 4
Caption = '...'
OnClick = btnSelViewFntClick
TabOrder = 6
TabOrder = 8
end
object edtViewerFont: TEdit[10]
AnchorSideLeft.Control = lblViewerFont
@ -149,29 +152,29 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtViewerFontSize
Left = 6
Height = 29
Top = 170
Height = 21
Top = 127
Width = 585
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Right = 4
OnExit = edtViewerFontExit
TabOrder = 7
TabOrder = 6
end
object edtViewerFontSize: TSpinEdit[11]
AnchorSideTop.Control = edtViewerFont
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnSelViewFnt
Left = 595
Height = 29
Top = 170
Height = 21
Top = 127
Width = 56
Anchors = [akTop, akRight]
BorderSpacing.Right = 4
MaxValue = 25
MinValue = 6
OnChange = edtViewerFontSizeChange
TabOrder = 8
TabOrder = 7
Value = 14
end
object lblLogFont: TLabel[12]
@ -179,11 +182,12 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Control = edtViewerBookFont
AnchorSideTop.Side = asrBottom
Left = 6
Height = 22
Top = 276
Width = 56
Height = 13
Top = 208
Width = 40
BorderSpacing.Top = 10
Caption = 'Log font'
Caption = '&Log font'
FocusControl = edtLogFont
ParentColor = False
end
object edtLogFont: TEdit[13]
@ -192,14 +196,14 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtLogFontSize
Left = 6
Height = 29
Top = 304
Height = 21
Top = 227
Width = 585
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Right = 4
OnExit = edtLogFontExit
TabOrder = 9
TabOrder = 12
end
object btnSelLogFnt: TButton[14]
AnchorSideTop.Control = edtLogFontSize
@ -208,29 +212,29 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideBottom.Control = edtLogFontSize
AnchorSideBottom.Side = asrBottom
Left = 655
Height = 29
Top = 304
Height = 21
Top = 227
Width = 40
Anchors = [akTop, akRight, akBottom]
BorderSpacing.InnerBorder = 4
Caption = '...'
OnClick = btnSelLogFntClick
TabOrder = 10
TabOrder = 14
end
object edtLogFontSize: TSpinEdit[15]
AnchorSideTop.Control = edtLogFont
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnSelLogFnt
Left = 595
Height = 29
Top = 304
Height = 21
Top = 227
Width = 56
Anchors = [akTop, akRight]
BorderSpacing.Right = 4
MaxValue = 25
MinValue = 6
OnChange = edtLogFontSizeChange
TabOrder = 11
TabOrder = 13
Value = 14
end
object lblViewerBookFont: TLabel[16]
@ -238,11 +242,12 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Control = edtViewerFont
AnchorSideTop.Side = asrBottom
Left = 6
Height = 22
Top = 209
Width = 118
Height = 13
Top = 158
Width = 80
BorderSpacing.Top = 10
Caption = 'Viewer Book Font'
Caption = 'Viewer&Book Font'
FocusControl = edtViewerBookFont
ParentColor = False
end
object edtViewerBookFont: TEdit[17]
@ -251,28 +256,28 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtViewerBookFontSize
Left = 6
Height = 29
Top = 237
Height = 21
Top = 177
Width = 585
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Right = 4
OnExit = edtViewerBookFontExit
TabOrder = 12
TabOrder = 9
end
object edtViewerBookFontSize: TSpinEdit[18]
AnchorSideTop.Control = edtViewerBookFont
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnSelViewerBookFnt
Left = 595
Height = 29
Top = 237
Height = 21
Top = 177
Width = 56
Anchors = [akTop, akRight]
BorderSpacing.Right = 4
MinValue = 6
OnChange = edtViewerBookFontSizeChange
TabOrder = 13
TabOrder = 10
Value = 18
end
object btnSelViewerBookFnt: TButton[19]
@ -282,13 +287,13 @@ inherited frmOptionsFonts: TfrmOptionsFonts
AnchorSideBottom.Control = edtViewerBookFontSize
AnchorSideBottom.Side = asrBottom
Left = 655
Height = 29
Top = 237
Height = 21
Top = 177
Width = 40
Anchors = [akTop, akRight, akBottom]
Caption = '...'
OnClick = btnSelViewerBookFntClick
TabOrder = 14
TabOrder = 11
end
object dlgFnt: TFontDialog[20]
MinFontSize = 0

View file

@ -1,10 +1,10 @@
TFRMOPTIONSFONTS.LBLMAINFONT.CAPTION=Main font
TFRMOPTIONSFONTS.LBLEDITORFONT.CAPTION=Editor font
TFRMOPTIONSFONTS.LBLVIEWERFONT.CAPTION=Viewer font
TFRMOPTIONSFONTS.LBLMAINFONT.CAPTION=Main &font
TFRMOPTIONSFONTS.LBLEDITORFONT.CAPTION=&Editor font
TFRMOPTIONSFONTS.LBLVIEWERFONT.CAPTION=&Viewer font
TFRMOPTIONSFONTS.BTNSELMAINFNT.CAPTION=...
TFRMOPTIONSFONTS.BTNSELEDITFNT.CAPTION=...
TFRMOPTIONSFONTS.BTNSELVIEWFNT.CAPTION=...
TFRMOPTIONSFONTS.LBLLOGFONT.CAPTION=Log font
TFRMOPTIONSFONTS.LBLLOGFONT.CAPTION=&Log font
TFRMOPTIONSFONTS.BTNSELLOGFNT.CAPTION=...
TFRMOPTIONSFONTS.LBLVIEWERBOOKFONT.CAPTION=Viewer Book Font
TFRMOPTIONSFONTS.LBLVIEWERBOOKFONT.CAPTION=Viewer&Book Font
TFRMOPTIONSFONTS.BTNSELVIEWERBOOKFNT.CAPTION=...

View file

@ -3,40 +3,44 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
Width = 808
ClientHeight = 513
ClientWidth = 808
DesignTop = 20
object lblCategories: TLabel[0]
AnchorSideLeft.Control = lbxCategories
AnchorSideTop.Control = Owner
Left = 317
Height = 22
Height = 13
Top = 6
Width = 75
Width = 55
BorderSpacing.Top = 6
Caption = 'Categories:'
Caption = 'C&ategories:'
FocusControl = lbxCategories
ParentColor = False
end
object lblCommands: TLabel[1]
AnchorSideLeft.Control = lbSCFilesList
AnchorSideTop.Control = edtFilter
Left = 6
Height = 22
Top = 88
Width = 81
Height = 13
Top = 79
Width = 57
BorderSpacing.Top = 6
Caption = 'Commands:'
Caption = 'Co&mmands:'
FocusControl = stgCommands
ParentColor = False
end
object lbFilter: TLabel[2]
AnchorSideTop.Control = edtFilter
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = edtFilter
Left = 660
Height = 22
Top = 85
Width = 35
Left = 670
Height = 13
Top = 78
Width = 25
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
BorderSpacing.Right = 4
Caption = 'Filter'
Caption = '&Filter'
FocusControl = edtFilter
ParentColor = False
end
object lbxCategories: TListBox[3]
@ -48,14 +52,16 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
AnchorSideRight.Side = asrBottom
Left = 317
Height = 50
Top = 28
Top = 19
Width = 485
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Right = 6
ItemHeight = 0
OnSelectionChange = lbxCategoriesSelectionChange
ScrollWidth = 483
TabOrder = 1
TopIndex = -1
end
object edtFilter: TEdit[4]
AnchorSideTop.Control = lbxCategories
@ -63,8 +69,8 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
AnchorSideRight.Control = stgCommands
AnchorSideRight.Side = asrBottom
Left = 699
Height = 29
Top = 82
Height = 23
Top = 73
Width = 103
Anchors = [akTop, akRight]
BorderSpacing.Top = 4
@ -79,8 +85,8 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 253
Top = 115
Height = 268
Top = 100
Width = 796
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Right = 6
@ -107,7 +113,7 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
Left = 6
Height = 137
Top = 372
Width = 662
Width = 700
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 4
BorderSpacing.Right = 8
@ -150,10 +156,10 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = stgHotkeys
AnchorSideBottom.Side = asrBottom
Left = 676
Left = 714
Height = 137
Top = 372
Width = 126
Width = 88
Anchors = [akTop, akRight, akBottom]
AutoSize = True
BevelOuter = bvNone
@ -165,17 +171,17 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 137
ClientWidth = 126
ClientWidth = 88
TabOrder = 5
object btnAddHotKey: TButton
AnchorSideRight.Side = asrBottom
Left = 0
Height = 42
Top = 0
Width = 126
Width = 88
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'Add hotkey'
Caption = 'Add &hotkey'
Enabled = False
OnClick = btnAddHotKeyClick
TabOrder = 0
@ -184,10 +190,10 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
Left = 0
Height = 42
Top = 48
Width = 126
Width = 88
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'Edit hotkey'
Caption = '&Edit hotkey'
Enabled = False
OnClick = btnEditHotkeyClick
TabOrder = 1
@ -197,10 +203,10 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
Left = 0
Height = 41
Top = 96
Width = 126
Width = 88
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'Delete hotkey'
Caption = '&Delete hotkey'
Enabled = False
OnClick = btnDeleteHotKeyClick
TabOrder = 2
@ -212,22 +218,25 @@ inherited frmOptionsHotkeys: TfrmOptionsHotkeys
AnchorSideTop.Side = asrBottom
Left = 6
Height = 50
Top = 28
Top = 19
Width = 305
BorderSpacing.Left = 6
ItemHeight = 0
OnSelectionChange = lbSCFilesListSelectionChange
ScrollWidth = 303
TabOrder = 0
TopIndex = -1
end
object lblSCFiles: TLabel[9]
AnchorSideLeft.Control = lbSCFilesList
AnchorSideTop.Control = Owner
Left = 6
Height = 22
Height = 13
Top = 6
Width = 94
Width = 68
BorderSpacing.Top = 6
Caption = 'Shortcut files:'
Caption = '&Shortcut files:'
FocusControl = lbSCFilesList
ParentColor = False
end
end

View file

@ -1,10 +1,10 @@
TFRMOPTIONSHOTKEYS.LBLCATEGORIES.CAPTION=Categories:
TFRMOPTIONSHOTKEYS.LBLCOMMANDS.CAPTION=Commands:
TFRMOPTIONSHOTKEYS.LBFILTER.CAPTION=Filter
TFRMOPTIONSHOTKEYS.LBLCATEGORIES.CAPTION=C&ategories:
TFRMOPTIONSHOTKEYS.LBLCOMMANDS.CAPTION=Co&mmands:
TFRMOPTIONSHOTKEYS.LBFILTER.CAPTION=&Filter
TFRMOPTIONSHOTKEYS.STGHOTKEYS.COLUMNS[0].TITLE.CAPTION=Hotkey
TFRMOPTIONSHOTKEYS.STGHOTKEYS.COLUMNS[1].TITLE.CAPTION=Parameters
TFRMOPTIONSHOTKEYS.STGHOTKEYS.COLUMNS[2].TITLE.CAPTION=Controls
TFRMOPTIONSHOTKEYS.BTNADDHOTKEY.CAPTION=Add hotkey
TFRMOPTIONSHOTKEYS.BTNEDITHOTKEY.CAPTION=Edit hotkey
TFRMOPTIONSHOTKEYS.BTNDELETEHOTKEY.CAPTION=Delete hotkey
TFRMOPTIONSHOTKEYS.LBLSCFILES.CAPTION=Shortcut files:
TFRMOPTIONSHOTKEYS.BTNADDHOTKEY.CAPTION=Add &hotkey
TFRMOPTIONSHOTKEYS.BTNEDITHOTKEY.CAPTION=&Edit hotkey
TFRMOPTIONSHOTKEYS.BTNDELETEHOTKEY.CAPTION=&Delete hotkey
TFRMOPTIONSHOTKEYS.LBLSCFILES.CAPTION=&Shortcut files:

View file

@ -1,7 +1,7 @@
inherited frmOptionsIcons: TfrmOptionsIcons
Height = 329
Height = 389
Width = 478
ClientHeight = 329
ClientHeight = 389
ClientWidth = 478
DesignLeft = 244
DesignTop = 121
@ -18,11 +18,11 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Around = 6
Caption = ' Icon &size '
Caption = ' Icon size '
ChildSizing.TopBottomSpacing = 8
ClientHeight = 64
ClientWidth = 462
TabOrder = 0
TabOrder = 2
object cbIconsSize: TComboBox
AnchorSideLeft.Control = gbIconsSize
AnchorSideTop.Control = pnlIconExample
@ -86,7 +86,7 @@ inherited frmOptionsIcons: TfrmOptionsIcons
ChildSizing.TopBottomSpacing = 8
ClientHeight = 127
ClientWidth = 462
TabOrder = 1
TabOrder = 0
object rbIconsShowAll: TRadioButton
AnchorSideLeft.Control = gbShowIconsMode
AnchorSideTop.Control = rbIconsShowAllAndExe
@ -94,12 +94,12 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Left = 10
Height = 17
Top = 31
Width = 31
Width = 29
BorderSpacing.Left = 10
BorderSpacing.Top = 6
Caption = '&All'
Caption = 'A&ll'
Checked = True
TabOrder = 3
TabOrder = 1
TabStop = True
end
object rbIconsShowStandard: TRadioButton
@ -109,11 +109,11 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Left = 10
Height = 17
Top = 54
Width = 115
Width = 113
BorderSpacing.Left = 10
BorderSpacing.Top = 6
Caption = '&Only standard icons'
TabOrder = 1
Caption = 'Only &standard icons'
TabOrder = 2
end
object rbIconsShowNone: TRadioButton
AnchorSideLeft.Control = gbShowIconsMode
@ -122,12 +122,12 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Left = 10
Height = 17
Top = 77
Width = 60
Width = 58
BorderSpacing.Left = 10
BorderSpacing.Top = 6
Caption = '&No icons'
OnChange = rbIconsShowNoneChange
TabOrder = 2
TabOrder = 3
end
object rbIconsShowAllAndExe: TRadioButton
AnchorSideLeft.Control = gbShowIconsMode
@ -135,7 +135,7 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Left = 10
Height = 17
Top = 8
Width = 171
Width = 169
BorderSpacing.Left = 10
Caption = 'All associated + &EXE/LNK (slow)'
TabOrder = 0
@ -147,10 +147,10 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Left = 10
Height = 17
Top = 102
Width = 179
Width = 177
BorderSpacing.Left = 10
BorderSpacing.Top = 8
Caption = 'Show overlay i&cons, e.g. for links'
Caption = 'Show o&verlay icons, e.g. for links'
TabOrder = 4
end
end
@ -171,7 +171,7 @@ inherited frmOptionsIcons: TfrmOptionsIcons
ChildSizing.TopBottomSpacing = 8
ClientHeight = 61
ClientWidth = 462
TabOrder = 2
TabOrder = 1
object edtIconsExcludeDirs: TEdit
AnchorSideLeft.Control = cbIconsExclude
AnchorSideTop.Control = cbIconsExclude
@ -186,7 +186,7 @@ inherited frmOptionsIcons: TfrmOptionsIcons
BorderSpacing.Left = 20
BorderSpacing.Right = 8
BorderSpacing.Bottom = 15
TabOrder = 0
TabOrder = 1
end
object cbIconsExclude: TCheckBox
AnchorSideLeft.Control = gbDisableSpecialIcons
@ -194,11 +194,11 @@ inherited frmOptionsIcons: TfrmOptionsIcons
Left = 10
Height = 17
Top = 8
Width = 250
Width = 248
BorderSpacing.Left = 10
Caption = 'For the following &paths and their subdirectories:'
OnChange = cbIconsExcludeChange
TabOrder = 1
TabOrder = 0
end
end
end

View file

@ -1,10 +1,10 @@
TFRMOPTIONSICONS.GBICONSSIZE.CAPTION= Icon &size
TFRMOPTIONSICONS.GBICONSSIZE.CAPTION= Icon size
TFRMOPTIONSICONS.CBICONSSIZE.TEXT=16x16
TFRMOPTIONSICONS.GBSHOWICONSMODE.CAPTION= Show icons to the left of the filename
TFRMOPTIONSICONS.RBICONSSHOWALL.CAPTION=&All
TFRMOPTIONSICONS.RBICONSSHOWSTANDARD.CAPTION=&Only standard icons
TFRMOPTIONSICONS.RBICONSSHOWALL.CAPTION=A&ll
TFRMOPTIONSICONS.RBICONSSHOWSTANDARD.CAPTION=Only &standard icons
TFRMOPTIONSICONS.RBICONSSHOWNONE.CAPTION=&No icons
TFRMOPTIONSICONS.RBICONSSHOWALLANDEXE.CAPTION=All associated + &EXE/LNK (slow)
TFRMOPTIONSICONS.CBICONSSHOWOVERLAY.CAPTION=Show overlay i&cons, e.g. for links
TFRMOPTIONSICONS.CBICONSSHOWOVERLAY.CAPTION=Show o&verlay icons, e.g. for links
TFRMOPTIONSICONS.GBDISABLESPECIALICONS.CAPTION=Disable special icons
TFRMOPTIONSICONS.CBICONSEXCLUDE.CAPTION=For the following &paths and their subdirectories:

View file

@ -3,16 +3,18 @@ inherited frmOptionsIgnoreList: TfrmOptionsIgnoreList
Width = 644
ClientHeight = 325
ClientWidth = 644
DesignTop = 27
object lblSaveIn: TLabel[0]
Tag = 304
AnchorSideLeft.Control = memIgnoreList
AnchorSideTop.Control = fneSaveIn
AnchorSideTop.Side = asrCenter
Left = 10
Height = 22
Top = 248
Width = 54
Height = 13
Top = 258
Width = 39
Caption = '&Save in:'
FocusControl = fneSaveIn
ParentColor = False
end
object chkIgnoreEnable: TCheckBox[1]
@ -22,7 +24,7 @@ inherited frmOptionsIgnoreList: TfrmOptionsIgnoreList
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 10
Height = 25
Height = 17
Top = 8
Width = 624
Anchors = [akTop, akLeft, akRight]
@ -41,8 +43,8 @@ inherited frmOptionsIgnoreList: TfrmOptionsIgnoreList
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = fneSaveIn
Left = 10
Height = 196
Top = 39
Height = 213
Top = 31
Width = 624
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 6
@ -61,17 +63,17 @@ inherited frmOptionsIgnoreList: TfrmOptionsIgnoreList
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 472
Height = 31
Top = 284
Width = 162
Left = 512
Height = 30
Top = 285
Width = 122
Anchors = [akRight, akBottom]
AutoSize = True
BorderSpacing.Bottom = 10
Caption = '&Add selected names'
Caption = 'A&dd selected names'
Constraints.MinHeight = 30
OnClick = btnAddSelClick
TabOrder = 3
TabOrder = 4
end
object btnAddSelWithPath: TButton[4]
Tag = 302
@ -80,16 +82,16 @@ inherited frmOptionsIgnoreList: TfrmOptionsIgnoreList
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 10
Height = 31
Top = 284
Width = 256
Height = 30
Top = 285
Width = 187
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Bottom = 10
Caption = 'Add selected names with &full path'
Constraints.MinHeight = 30
OnClick = btnAddSelWithPathClick
TabOrder = 2
TabOrder = 3
end
object fneSaveIn: TFileNameEdit[5]
AnchorSideLeft.Control = lblSaveIn
@ -97,19 +99,19 @@ inherited frmOptionsIgnoreList: TfrmOptionsIgnoreList
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = btnAddSel
Left = 72
Height = 29
Top = 245
Width = 536
Left = 57
Height = 21
Top = 254
Width = 551
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 0
NumGlyphs = 1
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Left = 8
BorderSpacing.Bottom = 10
MaxLength = 0
TabOrder = 4
TabOrder = 2
end
end

View file

@ -1,4 +1,4 @@
TFRMOPTIONSIGNORELIST.LBLSAVEIN.CAPTION=&Save in:
TFRMOPTIONSIGNORELIST.CHKIGNOREENABLE.CAPTION=&Ignore (don't show) the following files and folders:
TFRMOPTIONSIGNORELIST.BTNADDSEL.CAPTION=&Add selected names
TFRMOPTIONSIGNORELIST.BTNADDSEL.CAPTION=A&dd selected names
TFRMOPTIONSIGNORELIST.BTNADDSELWITHPATH.CAPTION=Add selected names with &full path

View file

@ -5,13 +5,14 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
ChildSizing.TopBottomSpacing = 6
ClientHeight = 223
ClientWidth = 429
DesignTop = 20
object gbTyping: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 132
Height = 103
Top = 6
Width = 417
Anchors = [akTop, akLeft, akRight]
@ -22,15 +23,16 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
ChildSizing.VerticalSpacing = 12
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 110
ClientHeight = 85
ClientWidth = 413
TabOrder = 0
object lblNoModifier: TLabel
Left = 8
Height = 22
Height = 13
Top = 8
Width = 106
Caption = 'Letters'
Width = 84
Caption = '&Letters'
FocusControl = cbNoModifier
ParentColor = False
end
object cbNoModifier: TComboBox
@ -40,13 +42,13 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbTyping
AnchorSideRight.Side = asrBottom
Left = 124
Height = 29
Top = 5
Width = 281
Left = 102
Height = 24
Top = 2
Width = 303
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 0
Items.Strings = (
'None'
'Command Line'
@ -58,18 +60,20 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
end
object lblAlt: TLabel
Left = 8
Height = 22
Top = 42
Width = 106
Caption = 'Alt+Letters'
Height = 13
Top = 33
Width = 84
Caption = 'Alt+L&etters'
FocusControl = cbAlt
ParentColor = False
end
object lblCtrlAlt: TLabel
Left = 8
Height = 22
Top = 76
Width = 106
Caption = 'Ctrl+Alt+Letters'
Height = 13
Top = 58
Width = 84
Caption = 'Ctrl+Alt+Le&tters'
FocusControl = cbCtrlAlt
ParentColor = False
end
object cbAlt: TComboBox
@ -79,13 +83,13 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbTyping
AnchorSideRight.Side = asrBottom
Left = 124
Height = 29
Top = 39
Width = 281
Left = 102
Height = 25
Top = 27
Width = 303
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 0
Style = csDropDownList
TabOrder = 1
end
@ -96,13 +100,13 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbTyping
AnchorSideRight.Side = asrBottom
Left = 124
Height = 29
Top = 73
Width = 281
Left = 102
Height = 25
Top = 52
Width = 303
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
ItemHeight = 21
ItemHeight = 0
Style = csDropDownList
TabOrder = 2
end
@ -113,11 +117,11 @@ inherited frmOptionsKeyboard: TfrmOptionsKeyboard
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 146
Width = 409
Height = 20
Top = 117
Width = 302
BorderSpacing.Top = 8
Caption = 'Left, Right arrows change directory (Lynx-like movement)'
Caption = 'Le&ft, Right arrows change directory (Lynx-like movement)'
TabOrder = 1
end
end

View file

@ -1,5 +1,5 @@
TFRMOPTIONSKEYBOARD.GBTYPING.CAPTION=Typing
TFRMOPTIONSKEYBOARD.LBLNOMODIFIER.CAPTION=Letters
TFRMOPTIONSKEYBOARD.LBLALT.CAPTION=Alt+Letters
TFRMOPTIONSKEYBOARD.LBLCTRLALT.CAPTION=Ctrl+Alt+Letters
TFRMOPTIONSKEYBOARD.CBLYNXLIKE.CAPTION=Left, Right arrows change directory (Lynx-like movement)
TFRMOPTIONSKEYBOARD.LBLNOMODIFIER.CAPTION=&Letters
TFRMOPTIONSKEYBOARD.LBLALT.CAPTION=Alt+L&etters
TFRMOPTIONSKEYBOARD.LBLCTRLALT.CAPTION=Ctrl+Alt+Le&tters
TFRMOPTIONSKEYBOARD.CBLYNXLIKE.CAPTION=Le&ft, Right arrows change directory (Lynx-like movement)

View file

@ -57,7 +57,7 @@ implementation
{$R *.lfm}
uses
uGlobs, uLng;
DCStrUtils, uGlobs, uLng;
const
KeyAction_None = 0;
@ -70,6 +70,7 @@ const
procedure TfrmOptionsKeyboard.Init;
begin
// Copy localized strings to each combo box.
ParseLineToList(rsOptLetters, cbNoModifier.Items);
cbAlt.Items.Assign(cbNoModifier.Items);
cbCtrlAlt.Items.Assign(cbNoModifier.Items);
end;

View file

@ -27,8 +27,8 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 6
Width = 100
Caption = 'Show main menu'
Width = 98
Caption = 'Show &main menu'
TabOrder = 0
end
object cbShowMainToolBar: TCheckBox
@ -37,7 +37,7 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 25
Width = 100
Width = 98
BorderSpacing.Top = 2
Caption = 'Show &button bar'
TabOrder = 1
@ -48,7 +48,7 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 63
Width = 113
Width = 111
BorderSpacing.Top = 2
Caption = 'Show &drive buttons'
OnChange = cbShowDiskPanelChange
@ -60,9 +60,9 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 120
Width = 129
Width = 127
BorderSpacing.Top = 2
Caption = 'Show d&rives list button'
Caption = 'Show drives list bu&tton'
TabOrder = 6
end
object cbShowCurDir: TCheckBox
@ -71,10 +71,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 215
Width = 130
Width = 128
BorderSpacing.Top = 2
Caption = 'Show &current directory'
TabOrder = 10
Caption = 'Show current director&y'
TabOrder = 11
end
object cbShowTabHeader: TCheckBox
AnchorSideTop.Control = cbShowCurDir
@ -82,10 +82,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 234
Width = 123
Width = 121
BorderSpacing.Top = 2
Caption = 'Show &tabstop header'
TabOrder = 11
Caption = 'S&how tabstop header'
TabOrder = 12
end
object cbShowStatusBar: TCheckBox
AnchorSideTop.Control = cbShowTabHeader
@ -93,10 +93,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 253
Width = 98
Width = 96
BorderSpacing.Top = 2
Caption = 'Show &status bar'
TabOrder = 12
TabOrder = 13
end
object cbShowCmdLine: TCheckBox
AnchorSideTop.Control = cbShowStatusBar
@ -104,10 +104,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 272
Width = 113
Width = 111
BorderSpacing.Top = 2
Caption = 'Show command &line'
TabOrder = 13
Caption = 'Show command l&ine'
TabOrder = 14
end
object cbShowKeysPanel: TCheckBox
AnchorSideTop.Control = cbShowCmdLine
@ -115,10 +115,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 291
Width = 148
Width = 146
BorderSpacing.Top = 2
Caption = 'Show &function key buttons'
TabOrder = 14
Caption = 'Show function &key buttons'
TabOrder = 15
end
object cbFlatDiskPanel: TCheckBox
AnchorSideLeft.Control = cbTwoDiskPanels
@ -127,9 +127,9 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 28
Height = 17
Top = 101
Width = 78
Width = 76
BorderSpacing.Top = 2
Caption = 'Flat buttons'
Caption = '&Flat buttons'
Enabled = False
TabOrder = 5
end
@ -140,10 +140,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 28
Height = 17
Top = 82
Width = 315
Width = 313
BorderSpacing.Left = 16
BorderSpacing.Top = 2
Caption = 'Show two drive button bars (fixed width, above file windows)'
Caption = 'Show two drive button bars (fi&xed width, above file windows)'
Enabled = False
TabOrder = 4
end
@ -153,10 +153,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 196
Width = 101
Width = 99
BorderSpacing.Top = 2
Caption = 'Sho&w folder tabs'
TabOrder = 9
TabOrder = 10
end
object cbFlatInterface: TCheckBox
AnchorSideTop.Control = cbShowKeysPanel
@ -164,10 +164,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 310
Width = 84
Width = 82
BorderSpacing.Top = 2
Caption = 'Flat interface'
TabOrder = 15
Caption = 'Flat i&nterface'
TabOrder = 16
end
object cbFlatToolBar: TCheckBox
AnchorSideLeft.Control = cbShowMainToolBar
@ -176,10 +176,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 28
Height = 17
Top = 44
Width = 78
Width = 76
BorderSpacing.Left = 16
BorderSpacing.Top = 2
Caption = 'Flat buttons'
Caption = 'Flat b&uttons'
TabOrder = 2
end
object cbLogWindow: TCheckBox
@ -188,10 +188,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 329
Width = 102
Width = 100
BorderSpacing.Top = 2
Caption = 'Show log window'
TabOrder = 16
Caption = 'Show lo&g window'
TabOrder = 17
end
object cbTermWindow: TCheckBox
AnchorSideTop.Control = cbLogWindow
@ -199,11 +199,11 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 348
Width = 126
Width = 124
BorderSpacing.Top = 2
Caption = 'Show terminal window'
Caption = 'Show te&rminal window'
OnChange = cbTermWindowChange
TabOrder = 17
TabOrder = 18
end
object cbFreespaceInd: TCheckBox
AnchorSideTop.Control = cbShowShortDriveFreeSpace
@ -211,10 +211,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 177
Width = 211
Width = 209
BorderSpacing.Top = 2
Caption = 'Show free space indicator on drive label'
TabOrder = 8
Caption = 'Show fr&ee space indicator on drive label'
TabOrder = 9
end
object cbProgInMenuBar: TCheckBox
AnchorSideTop.Control = cbTermWindow
@ -222,10 +222,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 367
Width = 192
Width = 190
BorderSpacing.Top = 2
Caption = 'Show common progress in menu bar'
TabOrder = 18
TabOrder = 19
end
object cbPanelOfOperations: TCheckBox
AnchorSideTop.Control = cbProgInMenuBar
@ -233,10 +233,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 386
Width = 207
Width = 205
BorderSpacing.Top = 2
Caption = 'Show panel of operation in background'
TabOrder = 19
TabOrder = 20
end
object cbShowDriveFreeSpace: TCheckBox
AnchorSideTop.Control = cbShowDrivesListButton
@ -244,9 +244,9 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 12
Height = 17
Top = 139
Width = 125
Width = 123
BorderSpacing.Top = 2
Caption = 'Show free space label'
Caption = 'Show free s&pace label'
OnChange = cbShowDriveFreeSpaceChange
TabOrder = 7
end
@ -257,10 +257,10 @@ inherited frmOptionsLayout: TfrmOptionsLayout
Left = 28
Height = 17
Top = 158
Width = 153
Width = 151
BorderSpacing.Top = 2
Caption = 'Show short free space label'
TabOrder = 20
Caption = 'Show short free space &label'
TabOrder = 8
end
end
end

View file

@ -1,22 +1,22 @@
TFRMOPTIONSLAYOUT.GBSCREENLAYOUT.CAPTION= Screen layout
TFRMOPTIONSLAYOUT.CBSHOWMAINMENU.CAPTION=Show main menu
TFRMOPTIONSLAYOUT.CBSHOWMAINMENU.CAPTION=Show &main menu
TFRMOPTIONSLAYOUT.CBSHOWMAINTOOLBAR.CAPTION=Show &button bar
TFRMOPTIONSLAYOUT.CBSHOWDISKPANEL.CAPTION=Show &drive buttons
TFRMOPTIONSLAYOUT.CBSHOWDRIVESLISTBUTTON.CAPTION=Show d&rives list button
TFRMOPTIONSLAYOUT.CBSHOWCURDIR.CAPTION=Show &current directory
TFRMOPTIONSLAYOUT.CBSHOWTABHEADER.CAPTION=Show &tabstop header
TFRMOPTIONSLAYOUT.CBSHOWDRIVESLISTBUTTON.CAPTION=Show drives list bu&tton
TFRMOPTIONSLAYOUT.CBSHOWCURDIR.CAPTION=Show current director&y
TFRMOPTIONSLAYOUT.CBSHOWTABHEADER.CAPTION=S&how tabstop header
TFRMOPTIONSLAYOUT.CBSHOWSTATUSBAR.CAPTION=Show &status bar
TFRMOPTIONSLAYOUT.CBSHOWCMDLINE.CAPTION=Show command &line
TFRMOPTIONSLAYOUT.CBSHOWKEYSPANEL.CAPTION=Show &function key buttons
TFRMOPTIONSLAYOUT.CBFLATDISKPANEL.CAPTION=Flat buttons
TFRMOPTIONSLAYOUT.CBTWODISKPANELS.CAPTION=Show two drive button bars (fixed width, above file windows)
TFRMOPTIONSLAYOUT.CBSHOWCMDLINE.CAPTION=Show command l&ine
TFRMOPTIONSLAYOUT.CBSHOWKEYSPANEL.CAPTION=Show function &key buttons
TFRMOPTIONSLAYOUT.CBFLATDISKPANEL.CAPTION=&Flat buttons
TFRMOPTIONSLAYOUT.CBTWODISKPANELS.CAPTION=Show two drive button bars (fi&xed width, above file windows)
TFRMOPTIONSLAYOUT.CBSHOWTABS.CAPTION=Sho&w folder tabs
TFRMOPTIONSLAYOUT.CBFLATINTERFACE.CAPTION=Flat interface
TFRMOPTIONSLAYOUT.CBFLATTOOLBAR.CAPTION=Flat buttons
TFRMOPTIONSLAYOUT.CBLOGWINDOW.CAPTION=Show log window
TFRMOPTIONSLAYOUT.CBTERMWINDOW.CAPTION=Show terminal window
TFRMOPTIONSLAYOUT.CBFREESPACEIND.CAPTION=Show free space indicator on drive label
TFRMOPTIONSLAYOUT.CBFLATINTERFACE.CAPTION=Flat i&nterface
TFRMOPTIONSLAYOUT.CBFLATTOOLBAR.CAPTION=Flat b&uttons
TFRMOPTIONSLAYOUT.CBLOGWINDOW.CAPTION=Show lo&g window
TFRMOPTIONSLAYOUT.CBTERMWINDOW.CAPTION=Show te&rminal window
TFRMOPTIONSLAYOUT.CBFREESPACEIND.CAPTION=Show fr&ee space indicator on drive label
TFRMOPTIONSLAYOUT.CBPROGINMENUBAR.CAPTION=Show common progress in menu bar
TFRMOPTIONSLAYOUT.CBPANELOFOPERATIONS.CAPTION=Show panel of operation in background
TFRMOPTIONSLAYOUT.CBSHOWDRIVEFREESPACE.CAPTION=Show free space label
TFRMOPTIONSLAYOUT.CBSHOWSHORTDRIVEFREESPACE.CAPTION=Show short free space label
TFRMOPTIONSLAYOUT.CBSHOWDRIVEFREESPACE.CAPTION=Show free s&pace label
TFRMOPTIONSLAYOUT.CBSHOWSHORTDRIVEFREESPACE.CAPTION=Show short free space &label

View file

@ -5,6 +5,7 @@ inherited frmOptionsLog: TfrmOptionsLog
ChildSizing.TopBottomSpacing = 6
ClientHeight = 369
ClientWidth = 394
DesignTop = 27
object gbLogFile: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
@ -17,27 +18,27 @@ inherited frmOptionsLog: TfrmOptionsLog
Anchors = [akTop, akLeft, akRight]
AutoSize = True
Caption = 'File operation log file'
ClientHeight = 37
ClientHeight = 36
ClientWidth = 378
TabOrder = 0
object cbLogFile: TCheckBox
AnchorSideTop.Control = fneLogFileName
AnchorSideTop.Side = asrCenter
Left = 10
Height = 25
Top = 6
Width = 136
Caption = '&Create a log file:'
Height = 23
Top = 7
Width = 132
Caption = 'C&reate a log file:'
TabOrder = 0
end
object fneLogFileName: TFileNameEdit
AnchorSideLeft.Control = cbLogFile
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = gbLogFile
Left = 152
Height = 29
Left = 148
Height = 28
Top = 4
Width = 200
Width = 204
DialogOptions = []
FilterIndex = 0
HideDirectories = False
@ -58,7 +59,7 @@ inherited frmOptionsLog: TfrmOptionsLog
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 163
Height = 154
Top = 69
Width = 382
Anchors = [akTop, akLeft, akRight]
@ -70,47 +71,47 @@ inherited frmOptionsLog: TfrmOptionsLog
ChildSizing.VerticalSpacing = 2
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 141
ClientHeight = 131
ClientWidth = 378
TabOrder = 1
object cbLogCpMvLn: TCheckBox
Left = 10
Height = 25
Height = 23
Top = 4
Width = 242
Caption = 'Copy/Move/Create link/symlink'
Width = 226
Caption = 'Cop&y/Move/Create link/symlink'
TabOrder = 0
end
object cbLogDelete: TCheckBox
Left = 10
Height = 25
Top = 31
Width = 242
Caption = 'Delete'
Height = 23
Top = 29
Width = 226
Caption = '&Delete'
TabOrder = 1
end
object cbLogDirOp: TCheckBox
Left = 10
Height = 25
Top = 58
Width = 242
Caption = 'Create/Delete directories'
Height = 23
Top = 54
Width = 226
Caption = 'Crea&te/Delete directories'
TabOrder = 2
end
object cbLogArcOp: TCheckBox
Left = 10
Height = 25
Top = 85
Width = 242
Caption = 'Pack/Unpack'
Height = 23
Top = 79
Width = 226
Caption = '&Pack/Unpack'
TabOrder = 3
end
object cbLogVFS: TCheckBox
Left = 10
Height = 25
Top = 112
Width = 242
Caption = 'File system plugins'
Height = 23
Top = 104
Width = 226
Caption = '&File system plugins'
TabOrder = 4
end
end
@ -121,8 +122,8 @@ inherited frmOptionsLog: TfrmOptionsLog
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 109
Top = 236
Height = 104
Top = 227
Width = 382
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -132,31 +133,31 @@ inherited frmOptionsLog: TfrmOptionsLog
ChildSizing.TopBottomSpacing = 4
ChildSizing.VerticalSpacing = 2
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 87
ClientHeight = 81
ClientWidth = 378
TabOrder = 2
object cbLogSuccess: TCheckBox
Left = 10
Height = 25
Height = 23
Top = 4
Width = 204
Width = 192
Caption = 'Log &successful operations'
TabOrder = 0
end
object cbLogErrors: TCheckBox
Left = 10
Height = 25
Top = 31
Width = 204
Height = 23
Top = 29
Width = 192
Caption = 'Log &errors'
TabOrder = 1
end
object cbLogInfo: TCheckBox
Left = 10
Height = 25
Top = 58
Width = 204
Caption = 'Log information messages'
Height = 23
Top = 54
Width = 192
Caption = 'Log &information messages'
TabOrder = 2
end
end

View file

@ -1,12 +1,12 @@
TFRMOPTIONSLOG.GBLOGFILE.CAPTION=File operation log file
TFRMOPTIONSLOG.CBLOGFILE.CAPTION=&Create a log file:
TFRMOPTIONSLOG.CBLOGFILE.CAPTION=C&reate a log file:
TFRMOPTIONSLOG.GBLOGFILEOP.CAPTION=Log operations
TFRMOPTIONSLOG.CBLOGCPMVLN.CAPTION=Copy/Move/Create link/symlink
TFRMOPTIONSLOG.CBLOGDELETE.CAPTION=Delete
TFRMOPTIONSLOG.CBLOGDIROP.CAPTION=Create/Delete directories
TFRMOPTIONSLOG.CBLOGARCOP.CAPTION=Pack/Unpack
TFRMOPTIONSLOG.CBLOGVFS.CAPTION=File system plugins
TFRMOPTIONSLOG.CBLOGCPMVLN.CAPTION=Cop&y/Move/Create link/symlink
TFRMOPTIONSLOG.CBLOGDELETE.CAPTION=&Delete
TFRMOPTIONSLOG.CBLOGDIROP.CAPTION=Crea&te/Delete directories
TFRMOPTIONSLOG.CBLOGARCOP.CAPTION=&Pack/Unpack
TFRMOPTIONSLOG.CBLOGVFS.CAPTION=&File system plugins
TFRMOPTIONSLOG.GBLOGFILESTATUS.CAPTION=Operation status
TFRMOPTIONSLOG.CBLOGSUCCESS.CAPTION=Log &successful operations
TFRMOPTIONSLOG.CBLOGERRORS.CAPTION=Log &errors
TFRMOPTIONSLOG.CBLOGINFO.CAPTION=Log information messages
TFRMOPTIONSLOG.CBLOGINFO.CAPTION=Log &information messages

View file

@ -3,13 +3,14 @@ inherited frmOptionsMisc: TfrmOptionsMisc
Width = 719
ClientHeight = 98
ClientWidth = 719
DesignTop = 27
object gbExtended: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 88
Height = 62
Top = 6
Width = 707
Anchors = [akTop, akLeft, akRight]
@ -18,23 +19,23 @@ inherited frmOptionsMisc: TfrmOptionsMisc
ChildSizing.LeftRightSpacing = 12
ChildSizing.TopBottomSpacing = 6
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 66
ClientHeight = 58
ClientWidth = 703
TabOrder = 0
object cbShowWarningMessages: TCheckBox
Left = 12
Height = 27
Height = 23
Top = 6
Width = 320
Caption = 'Show warning messages ("OK" button only)'
Width = 310
Caption = 'Show &warning messages ("OK" button only)'
TabOrder = 0
end
object cbSaveThumbnails: TCheckBox
Left = 12
Height = 27
Top = 33
Width = 320
Caption = 'Save thumbnails in cache'
Height = 23
Top = 29
Width = 310
Caption = '&Save thumbnails in cache'
TabOrder = 1
end
end

View file

@ -1,2 +1,2 @@
TFRMOPTIONSMISC.CBSHOWWARNINGMESSAGES.CAPTION=Show warning messages ("OK" button only)
TFRMOPTIONSMISC.CBSAVETHUMBNAILS.CAPTION=Save thumbnails in cache
TFRMOPTIONSMISC.CBSHOWWARNINGMESSAGES.CAPTION=Show &warning messages ("OK" button only)
TFRMOPTIONSMISC.CBSAVETHUMBNAILS.CAPTION=&Save thumbnails in cache

View file

@ -5,13 +5,14 @@ inherited frmOptionsMouse: TfrmOptionsMouse
ChildSizing.TopBottomSpacing = 6
ClientHeight = 253
ClientWidth = 426
DesignTop = 20
object gbSelection: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 88
Height = 68
Top = 6
Width = 414
Anchors = [akTop, akLeft, akRight]
@ -19,16 +20,16 @@ inherited frmOptionsMouse: TfrmOptionsMouse
Caption = 'Selection'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ClientHeight = 66
ClientHeight = 50
ClientWidth = 410
TabOrder = 1
TabOrder = 0
object cbSelectionByMouse: TCheckBox
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Height = 17
Top = 6
Width = 159
Caption = 'Selection by mouse'
Width = 110
Caption = '&Selection by mouse'
TabOrder = 0
end
object lblMouseMode: TLabel
@ -36,10 +37,11 @@ inherited frmOptionsMouse: TfrmOptionsMouse
AnchorSideTop.Control = cbMouseMode
AnchorSideTop.Side = asrCenter
Left = 6
Height = 22
Top = 34
Width = 43
Caption = 'Mode:'
Height = 13
Top = 27
Width = 30
Caption = '&Mode:'
FocusControl = cbMouseMode
ParentColor = False
end
object cbMouseMode: TComboBox
@ -49,14 +51,14 @@ inherited frmOptionsMouse: TfrmOptionsMouse
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = gbSelection
AnchorSideRight.Side = asrBottom
Left = 57
Height = 29
Top = 31
Width = 345
Left = 44
Height = 21
Top = 23
Width = 358
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 8
BorderSpacing.Right = 8
ItemHeight = 21
ItemHeight = 13
Style = csDropDownList
TabOrder = 1
end
@ -69,8 +71,8 @@ inherited frmOptionsMouse: TfrmOptionsMouse
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 121
Top = 98
Height = 93
Top = 78
Width = 414
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -78,20 +80,20 @@ inherited frmOptionsMouse: TfrmOptionsMouse
Caption = 'Scrolling'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ClientHeight = 99
ClientHeight = 75
ClientWidth = 410
TabOrder = 0
TabOrder = 1
object rbScrollLineByLineCursor: TRadioButton
AnchorSideLeft.Control = gbScrolling
AnchorSideTop.Control = gbScrolling
AnchorSideRight.Control = gbScrolling
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Height = 17
Top = 6
Width = 398
Anchors = [akTop, akLeft, akRight]
Caption = 'Line by line with cursor movement'
Caption = 'Line by line &with cursor movement'
Checked = True
TabOrder = 0
TabStop = True
@ -101,11 +103,11 @@ inherited frmOptionsMouse: TfrmOptionsMouse
AnchorSideTop.Control = seWheelScrollLines
AnchorSideTop.Side = asrCenter
Left = 6
Height = 25
Top = 37
Width = 106
Height = 17
Top = 29
Width = 71
BorderSpacing.Right = 6
Caption = 'Line by line'
Caption = '&Line by line'
TabOrder = 1
end
object rbScrollPageByPage: TRadioButton
@ -115,13 +117,13 @@ inherited frmOptionsMouse: TfrmOptionsMouse
AnchorSideRight.Control = gbScrolling
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 68
Height = 17
Top = 52
Width = 398
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
Caption = 'Page by page'
TabOrder = 2
Caption = '&Page by page'
TabOrder = 3
end
object seWheelScrollLines: TSpinEdit
AnchorSideLeft.Control = rbScrollLineByLine
@ -130,16 +132,16 @@ inherited frmOptionsMouse: TfrmOptionsMouse
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = gbScrolling
AnchorSideRight.Side = asrBottom
Left = 130
Height = 29
Top = 35
Width = 272
Left = 95
Height = 21
Top = 27
Width = 307
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 18
BorderSpacing.Top = 4
BorderSpacing.Right = 8
MinValue = 1
TabOrder = 3
TabOrder = 2
Value = 1
end
end

View file

@ -1,7 +1,7 @@
TFRMOPTIONSMOUSE.GBSELECTION.CAPTION=Selection
TFRMOPTIONSMOUSE.CBSELECTIONBYMOUSE.CAPTION=Selection by mouse
TFRMOPTIONSMOUSE.LBLMOUSEMODE.CAPTION=Mode:
TFRMOPTIONSMOUSE.CBSELECTIONBYMOUSE.CAPTION=&Selection by mouse
TFRMOPTIONSMOUSE.LBLMOUSEMODE.CAPTION=&Mode:
TFRMOPTIONSMOUSE.GBSCROLLING.CAPTION=Scrolling
TFRMOPTIONSMOUSE.RBSCROLLLINEBYLINECURSOR.CAPTION=Line by line with cursor movement
TFRMOPTIONSMOUSE.RBSCROLLLINEBYLINE.CAPTION=Line by line
TFRMOPTIONSMOUSE.RBSCROLLPAGEBYPAGE.CAPTION=Page by page
TFRMOPTIONSMOUSE.RBSCROLLLINEBYLINECURSOR.CAPTION=Line by line &with cursor movement
TFRMOPTIONSMOUSE.RBSCROLLLINEBYLINE.CAPTION=&Line by line
TFRMOPTIONSMOUSE.RBSCROLLPAGEBYPAGE.CAPTION=&Page by page

View file

@ -3,6 +3,7 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
Width = 604
ClientHeight = 376
ClientWidth = 604
DesignTop = 27
object pcPluginsTypes: TPageControl[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
@ -14,11 +15,11 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
ActivePage = tsWCX
Align = alTop
TabIndex = 0
TabOrder = 0
TabOrder = 6
OnChange = pcPluginsTypesChange
object tsWCX: TTabSheet
Caption = 'Packer plugins (.WCX)'
ClientHeight = 56
Caption = 'Pac&ker plugins (.WCX)'
ClientHeight = 58
ClientWidth = 596
OnShow = tsWCXShow
object lblWCXDescription: TLabel
@ -27,20 +28,21 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
AnchorSideRight.Control = tsWCX
AnchorSideRight.Side = asrBottom
Left = 10
Height = 16
Height = 13
Top = 12
Width = 576
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 12
BorderSpacing.Right = 10
Caption = 'Packer plugins are used to work with archives.'
Caption = 'Pack&er plugins are used to work with archives'
FocusControl = stgPlugins
ParentColor = False
WordWrap = True
end
end
object tsWFX: TTabSheet
Caption = 'File system plugins (.WFX)'
Caption = 'F&ile system plugins (.WFX)'
ClientHeight = 58
ClientWidth = 596
OnShow = tsWFXShow
@ -49,22 +51,23 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
AnchorSideRight.Control = tsWFX
AnchorSideRight.Side = asrBottom
Left = 10
Height = 14
Height = 13
Top = 12
Width = 576
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 12
BorderSpacing.Right = 10
Caption = 'File system plugins allow access to disks inaccessible by operating system or to external devices like Palm/PocketPC.'
Caption = 'Fi&le system plugins allow access to disks inaccessible by operating system or to external devices like Palm/PocketPC.'
FocusControl = stgPlugins
ParentColor = False
WordWrap = True
end
end
object tsWDX: TTabSheet
Caption = 'Content plugins (.WDX)'
ClientHeight = 58
ClientWidth = 596
Caption = 'Content pl&ugins (.WDX)'
ClientHeight = 45
ClientWidth = 598
OnShow = tsWDXShow
object lblWDXDescription: TLabel
AnchorSideLeft.Control = tsWDX
@ -72,22 +75,23 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
AnchorSideRight.Control = tsWDX
AnchorSideRight.Side = asrBottom
Left = 10
Height = 27
Height = 40
Top = 12
Width = 576
Width = 578
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 12
BorderSpacing.Right = 10
Caption = 'Content plugins allow to display extended file details like mp3 tags or image attributes in file lists, or use them in search and multi-rename tool'
Caption = 'Content plu&gins allow to display extended file details like mp3 tags or image attributes in file lists, or use them in search and multi-rename tool'
FocusControl = stgPlugins
ParentColor = False
WordWrap = True
end
end
object tsDSX: TTabSheet
Caption = 'Search plugins (.DSX)'
ClientHeight = 58
ClientWidth = 596
Caption = '&Search plugins (.DSX)'
ClientHeight = 45
ClientWidth = 598
OnShow = tsDSXShow
object lblDSXDescription: TLabel
AnchorSideLeft.Control = tsDSX
@ -95,22 +99,23 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
AnchorSideRight.Control = tsDSX
AnchorSideRight.Side = asrBottom
Left = 10
Height = 14
Height = 40
Top = 12
Width = 576
Width = 578
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 12
BorderSpacing.Right = 10
Caption = 'Search plugins allow to use alternative search algorithms or external tools (like "locate", etc.)'
Caption = 'Searc&h plugins allow to use alternative search algorithms or external tools (like "locate", etc.)'
FocusControl = stgPlugins
ParentColor = False
WordWrap = True
end
end
object tsWLX: TTabSheet
Caption = 'Viewer plugins (.WLX)'
ClientHeight = 58
ClientWidth = 596
Caption = '&Viewer plugins (.WLX)'
ClientHeight = 45
ClientWidth = 598
OnShow = tsWLXShow
object lblWLXDescription: TLabel
AnchorSideLeft.Control = tsWLX
@ -118,14 +123,15 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
AnchorSideRight.Control = tsWLX
AnchorSideRight.Side = asrBottom
Left = 10
Height = 14
Height = 40
Top = 12
Width = 576
Width = 578
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 12
BorderSpacing.Right = 10
Caption = 'Viewer plugins allow to display file formats like images, spreadsheets, databases etc. in Viewer (F3, Ctrl+Q)'
Caption = 'Vie&wer plugins allow to display file formats like images, spreadsheets, databases etc. in Viewer (F3, Ctrl+Q)'
FocusControl = stgPlugins
ParentColor = False
WordWrap = True
end
@ -173,7 +179,7 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goRowSelect, goThumbTracking, goSmoothScroll, goHeaderHotTracking, goHeaderPushedLook]
RowCount = 1
TabOrder = 1
TabOrder = 0
TitleStyle = tsNative
OnBeforeSelection = stgPluginsBeforeSelection
ColWidths = (
@ -194,7 +200,8 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
Anchors = [akRight, akBottom]
BorderSpacing.Right = 6
BorderSpacing.Bottom = 8
Caption = 'Add'
Cancel = True
Caption = 'A&dd'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
@ -231,8 +238,7 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
81FF818181FF818181FF818181FF818181FF818181FF818181FF818181FF7C8C
8CFF729F9FFF6AAEAFFF36E4ED8A09F3FF4502F3FF0F00000000
}
NumGlyphs = 0
TabOrder = 2
TabOrder = 1
end
object btnEnablePlugin: TBitBtn[3]
AnchorSideRight.Control = btnRemovePlugin
@ -245,10 +251,9 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
Anchors = [akRight, akBottom]
BorderSpacing.Right = 6
BorderSpacing.Bottom = 8
Caption = 'Enable'
NumGlyphs = 0
Caption = 'E&nable'
OnClick = btnEnablePluginClick
TabOrder = 3
TabOrder = 2
end
object btnRemovePlugin: TBitBtn[4]
AnchorSideRight.Control = btnTweakPlugin
@ -261,7 +266,7 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
Anchors = [akRight, akBottom]
BorderSpacing.Right = 6
BorderSpacing.Bottom = 8
Caption = 'Remove'
Caption = '&Remove'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000FFFFFF00FFFF
@ -298,9 +303,8 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
7CDA004A7BE300487847FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00
}
NumGlyphs = 0
OnClick = btnRemovePluginClick
TabOrder = 4
TabOrder = 3
end
object btnTweakPlugin: TBitBtn[5]
AnchorSideRight.Control = btnConfigPlugin
@ -313,7 +317,7 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
Anchors = [akRight, akBottom]
BorderSpacing.Right = 6
BorderSpacing.Bottom = 8
Caption = 'Tweak'
Caption = '&Tweak'
Glyph.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
@ -350,9 +354,8 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
99AC818181FF818181FF818181FF818181FF818181FF818181FF818181FF8181
81FF818181FF818181FF818181FF818181FF8181815600000000
}
NumGlyphs = 0
OnClick = btnTweakPluginClick
TabOrder = 5
TabOrder = 4
end
object btnConfigPlugin: TBitBtn[6]
AnchorSideRight.Control = stgPlugins
@ -366,9 +369,8 @@ inherited frmOptionsPlugins: TfrmOptionsPlugins
Anchors = [akRight, akBottom]
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
Caption = 'Configure'
NumGlyphs = 0
Caption = 'Con&figure'
OnClick = btnConfigPluginClick
TabOrder = 6
TabOrder = 5
end
end

View file

@ -1,19 +1,19 @@
TFRMOPTIONSPLUGINS.TSWCX.CAPTION=Packer plugins (.WCX)
TFRMOPTIONSPLUGINS.LBLWCXDESCRIPTION.CAPTION=Packer plugins are used to work with archives.
TFRMOPTIONSPLUGINS.TSWFX.CAPTION=File system plugins (.WFX)
TFRMOPTIONSPLUGINS.LBLWFXDESCRIPTION.CAPTION=File system plugins allow access to disks inaccessible by operating system or to external devices like Palm/PocketPC.
TFRMOPTIONSPLUGINS.TSWDX.CAPTION=Content plugins (.WDX)
TFRMOPTIONSPLUGINS.LBLWDXDESCRIPTION.CAPTION=Content plugins allow to display extended file details like mp3 tags or image attributes in file lists, or use them in search and multi-rename tool
TFRMOPTIONSPLUGINS.TSDSX.CAPTION=Search plugins (.DSX)
TFRMOPTIONSPLUGINS.LBLDSXDESCRIPTION.CAPTION=Search plugins allow to use alternative search algorithms or external tools (like "locate", etc.)
TFRMOPTIONSPLUGINS.TSWLX.CAPTION=Viewer plugins (.WLX)
TFRMOPTIONSPLUGINS.LBLWLXDESCRIPTION.CAPTION=Viewer plugins allow to display file formats like images, spreadsheets, databases etc. in Viewer (F3, Ctrl+Q)
TFRMOPTIONSPLUGINS.TSWCX.CAPTION=Pac&ker plugins (.WCX)
TFRMOPTIONSPLUGINS.LBLWCXDESCRIPTION.CAPTION=Pack&er plugins are used to work with archives
TFRMOPTIONSPLUGINS.TSWFX.CAPTION=F&ile system plugins (.WFX)
TFRMOPTIONSPLUGINS.LBLWFXDESCRIPTION.CAPTION=Fi&le system plugins allow access to disks inaccessible by operating system or to external devices like Palm/PocketPC.
TFRMOPTIONSPLUGINS.TSWDX.CAPTION=Content pl&ugins (.WDX)
TFRMOPTIONSPLUGINS.LBLWDXDESCRIPTION.CAPTION=Content plu&gins allow to display extended file details like mp3 tags or image attributes in file lists, or use them in search and multi-rename tool
TFRMOPTIONSPLUGINS.TSDSX.CAPTION=&Search plugins (.DSX)
TFRMOPTIONSPLUGINS.LBLDSXDESCRIPTION.CAPTION=Searc&h plugins allow to use alternative search algorithms or external tools (like "locate", etc.)
TFRMOPTIONSPLUGINS.TSWLX.CAPTION=&Viewer plugins (.WLX)
TFRMOPTIONSPLUGINS.LBLWLXDESCRIPTION.CAPTION=Vie&wer plugins allow to display file formats like images, spreadsheets, databases etc. in Viewer (F3, Ctrl+Q)
TFRMOPTIONSPLUGINS.STGPLUGINS.COLUMNS[0].TITLE.CAPTION=Active
TFRMOPTIONSPLUGINS.STGPLUGINS.COLUMNS[1].TITLE.CAPTION=Plugin
TFRMOPTIONSPLUGINS.STGPLUGINS.COLUMNS[2].TITLE.CAPTION=Registered for
TFRMOPTIONSPLUGINS.STGPLUGINS.COLUMNS[3].TITLE.CAPTION=File name
TFRMOPTIONSPLUGINS.BTNADDPLUGIN.CAPTION=Add
TFRMOPTIONSPLUGINS.BTNENABLEPLUGIN.CAPTION=Enable
TFRMOPTIONSPLUGINS.BTNREMOVEPLUGIN.CAPTION=Remove
TFRMOPTIONSPLUGINS.BTNTWEAKPLUGIN.CAPTION=Tweak
TFRMOPTIONSPLUGINS.BTNCONFIGPLUGIN.CAPTION=Configure
TFRMOPTIONSPLUGINS.BTNADDPLUGIN.CAPTION=A&dd
TFRMOPTIONSPLUGINS.BTNENABLEPLUGIN.CAPTION=E&nable
TFRMOPTIONSPLUGINS.BTNREMOVEPLUGIN.CAPTION=&Remove
TFRMOPTIONSPLUGINS.BTNTWEAKPLUGIN.CAPTION=&Tweak
TFRMOPTIONSPLUGINS.BTNCONFIGPLUGIN.CAPTION=Con&figure

View file

@ -5,6 +5,7 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
ChildSizing.TopBottomSpacing = 6
ClientHeight = 354
ClientWidth = 702
DesignTop = 27
object gbExactNameMatch: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
@ -12,7 +13,7 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 84
Height = 81
Top = 6
Width = 690
Anchors = [akTop, akLeft, akRight]
@ -20,16 +21,16 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
Caption = 'Exact name match'
ChildSizing.TopBottomSpacing = 4
ChildSizing.VerticalSpacing = 4
ClientHeight = 62
ClientHeight = 58
ClientWidth = 686
TabOrder = 0
object cbExactBeginning: TCheckBox
AnchorSideLeft.Control = gbExactNameMatch
AnchorSideTop.Control = gbExactNameMatch
Left = 10
Height = 25
Height = 23
Top = 6
Width = 392
Width = 376
BorderSpacing.Left = 10
BorderSpacing.Top = 6
Caption = '&Beginning (name must start with first typed character)'
@ -42,9 +43,9 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
AnchorSideBottom.Control = gbExactNameMatch
AnchorSideBottom.Side = asrBottom
Left = 10
Height = 21
Top = 35
Width = 399
Height = 19
Top = 33
Width = 382
Anchors = [akTop, akLeft, akBottom]
BorderSpacing.Bottom = 6
Caption = 'En&ding (last character before a typed dot . must match)'
@ -58,8 +59,8 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 109
Top = 90
Height = 104
Top = 87
Width = 690
Anchors = [akTop, akLeft, akRight]
AutoFill = True
@ -73,7 +74,7 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 87
ClientHeight = 81
ClientWidth = 686
Items.Strings = (
'Files'
@ -89,8 +90,8 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 84
Top = 199
Height = 81
Top = 191
Width = 690
Anchors = [akTop, akLeft, akRight]
AutoFill = True
@ -104,7 +105,7 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 62
ClientHeight = 58
ClientWidth = 686
Items.Strings = (
'Sensitive'
@ -119,8 +120,8 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 59
Top = 283
Height = 58
Top = 272
Width = 690
Anchors = [akTop, akLeft, akRight]
AutoFill = True
@ -134,6 +135,8 @@ inherited frmOptionsQuickSearchFilter: TfrmOptionsQuickSearchFilter
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 35
ClientWidth = 686
Items.Strings = (
'Hide filter panel when not focused'
)

View file

@ -41,6 +41,7 @@ type
rgpSearchCase: TRadioGroup;
rgpSearchItems: TRadioGroup;
protected
procedure Init; override;
procedure Load; override;
function Save: TOptionsEditorSaveFlags; override;
public
@ -53,7 +54,7 @@ implementation
{$R *.lfm}
uses
uGlobs, uLng, fQuickSearch;
DCStrUtils, uGlobs, uLng, fQuickSearch;
const
OPTION_AUTOHIDE_POSITION = 0;
@ -70,6 +71,14 @@ begin
Result := rsOptionsEditorQuickSearch;
end;
procedure TfrmOptionsQuickSearchFilter.Init;
begin
// Copy localized strings to each combo box.
ParseLineToList(rsOptSearchItems, rgpSearchItems.Items);
ParseLineToList(rsOptSearchCase, rgpSearchCase.Items);
ParseLineToList(rsOptSearchOpt, cgpOptions.Items);
end;
procedure TfrmOptionsQuickSearchFilter.Load;
begin
cbExactBeginning.Checked := qsmBeginning in gQuickSearchOptions.Match;

View file

@ -3,13 +3,14 @@ inherited frmOptionsTabs: TfrmOptionsTabs
Width = 673
ClientHeight = 369
ClientWidth = 673
DesignTop = 27
object gbTabs: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 342
Height = 258
Top = 6
Width = 661
Anchors = [akTop, akLeft, akRight]
@ -20,7 +21,7 @@ inherited frmOptionsTabs: TfrmOptionsTabs
BorderSpacing.Bottom = 6
Caption = 'Folder tabs headers'
ChildSizing.TopBottomSpacing = 6
ClientHeight = 320
ClientHeight = 240
ClientWidth = 657
TabOrder = 0
object lblChar: TLabel
@ -28,10 +29,10 @@ inherited frmOptionsTabs: TfrmOptionsTabs
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = edtTabsLimitLength
AnchorSideTop.Side = asrCenter
Left = 280
Height = 22
Top = 69
Width = 70
Left = 223
Height = 13
Top = 54
Width = 51
BorderSpacing.Left = 6
Caption = 'characters'
ParentColor = False
@ -41,20 +42,21 @@ inherited frmOptionsTabs: TfrmOptionsTabs
AnchorSideTop.Control = cmbTabsPosition
AnchorSideTop.Side = asrCenter
Left = 12
Height = 22
Top = 288
Width = 91
Height = 13
Top = 217
Width = 63
BorderSpacing.Top = 14
Caption = 'Tabs position'
Caption = 'Ta&bs position'
FocusControl = cmbTabsPosition
ParentColor = False
end
object cbTabsAlwaysVisible: TCheckBox
AnchorSideLeft.Control = gbTabs
AnchorSideTop.Control = gbTabs
Left = 12
Height = 25
Height = 17
Top = 6
Width = 355
Width = 253
BorderSpacing.Left = 12
BorderSpacing.Top = 6
Caption = '&Show tab header also when there is only one tab'
@ -65,9 +67,9 @@ inherited frmOptionsTabs: TfrmOptionsTabs
AnchorSideTop.Control = cbTabsAlwaysVisible
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 37
Width = 177
Height = 17
Top = 29
Width = 119
BorderSpacing.Top = 6
Caption = '&Tabs on multiple lines'
TabOrder = 1
@ -77,9 +79,9 @@ inherited frmOptionsTabs: TfrmOptionsTabs
AnchorSideTop.Control = cbTabsMultiLines
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 68
Width = 182
Height = 17
Top = 52
Width = 125
BorderSpacing.Top = 6
Caption = '&Limit tab title length to'
TabOrder = 2
@ -89,9 +91,9 @@ inherited frmOptionsTabs: TfrmOptionsTabs
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cbTabsLimitOption
AnchorSideTop.Side = asrCenter
Left = 194
Height = 29
Top = 66
Left = 137
Height = 21
Top = 50
Width = 80
TabOrder = 3
end
@ -100,92 +102,92 @@ inherited frmOptionsTabs: TfrmOptionsTabs
AnchorSideTop.Control = cbTabsConfirmCloseAll
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 130
Width = 277
Height = 17
Top = 98
Width = 198
BorderSpacing.Top = 6
Caption = 'Ctrl+&Up opens new tab in foreground'
TabOrder = 4
TabOrder = 5
end
object cbTabsConfirmCloseAll: TCheckBox
AnchorSideLeft.Control = cbTabsLimitOption
AnchorSideTop.Control = cbTabsLimitOption
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 99
Width = 172
Height = 17
Top = 75
Width = 119
BorderSpacing.Top = 6
Caption = '&Confirm close all tabs'
TabOrder = 5
Caption = 'Con&firm close all tabs'
TabOrder = 4
end
object cbTabsLockedAsterisk: TCheckBox
AnchorSideLeft.Control = cbTabsShowCloseButton
AnchorSideTop.Control = cbTabsShowCloseButton
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 223
Width = 269
Height = 17
Top = 167
Width = 188
BorderSpacing.Top = 6
Caption = 'Show locked tabs &with an asterisk *'
TabOrder = 6
TabOrder = 8
end
object cbTabsActivateOnClick: TCheckBox
AnchorSideLeft.Control = cbTabsLockedAsterisk
AnchorSideTop.Control = cbTabsLockedAsterisk
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 254
Width = 385
Height = 17
Top = 190
Width = 274
BorderSpacing.Top = 6
Caption = 'Activate target &panel when clicking on one of its Tabs'
TabOrder = 7
TabOrder = 9
end
object cbTabsShowCloseButton: TCheckBox
AnchorSideLeft.Control = cbTabsOpenNearCurrent
AnchorSideTop.Control = cbTabsOpenNearCurrent
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 192
Width = 178
Height = 17
Top = 144
Width = 125
BorderSpacing.Top = 6
Caption = 'Show tab close button'
TabOrder = 8
Caption = 'Show ta&b close button'
TabOrder = 7
end
object cmbTabsPosition: TComboBox
AnchorSideLeft.Control = lblTabsPosition
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cbTabsActivateOnClick
AnchorSideTop.Side = asrBottom
Left = 109
Height = 29
Top = 285
Left = 81
Height = 21
Top = 213
Width = 100
BorderSpacing.Left = 6
BorderSpacing.Top = 6
BorderSpacing.Bottom = 6
ItemHeight = 21
ItemHeight = 13
Items.Strings = (
'Top'
'Bottom'
)
Style = csDropDownList
TabOrder = 9
TabOrder = 10
end
object cbTabsOpenNearCurrent: TCheckBox
AnchorSideLeft.Control = cbTabsOpenForeground
AnchorSideTop.Control = cbTabsOpenForeground
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 161
Width = 241
Height = 17
Top = 121
Width = 173
BorderSpacing.Top = 6
Caption = 'Open &new tabs near current tab'
TabOrder = 10
TabOrder = 6
end
end
end

View file

@ -1,12 +1,12 @@
TFRMOPTIONSTABS.GBTABS.CAPTION=Folder tabs headers
TFRMOPTIONSTABS.LBLCHAR.CAPTION=characters
TFRMOPTIONSTABS.LBLTABSPOSITION.CAPTION=Tabs position
TFRMOPTIONSTABS.LBLTABSPOSITION.CAPTION=Ta&bs position
TFRMOPTIONSTABS.CBTABSALWAYSVISIBLE.CAPTION=&Show tab header also when there is only one tab
TFRMOPTIONSTABS.CBTABSMULTILINES.CAPTION=&Tabs on multiple lines
TFRMOPTIONSTABS.CBTABSLIMITOPTION.CAPTION=&Limit tab title length to
TFRMOPTIONSTABS.CBTABSOPENFOREGROUND.CAPTION=Ctrl+&Up opens new tab in foreground
TFRMOPTIONSTABS.CBTABSCONFIRMCLOSEALL.CAPTION=&Confirm close all tabs
TFRMOPTIONSTABS.CBTABSCONFIRMCLOSEALL.CAPTION=Con&firm close all tabs
TFRMOPTIONSTABS.CBTABSLOCKEDASTERISK.CAPTION=Show locked tabs &with an asterisk *
TFRMOPTIONSTABS.CBTABSACTIVATEONCLICK.CAPTION=Activate target &panel when clicking on one of its Tabs
TFRMOPTIONSTABS.CBTABSSHOWCLOSEBUTTON.CAPTION=Show tab close button
TFRMOPTIONSTABS.CBTABSSHOWCLOSEBUTTON.CAPTION=Show ta&b close button
TFRMOPTIONSTABS.CBTABSOPENNEARCURRENT.CAPTION=Open &new tabs near current tab

View file

@ -6,10 +6,11 @@ inherited frmOptionsTerminal: TfrmOptionsTerminal
object lblRunInTerm: TLabel[0]
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Height = 13
Top = 11
Width = 110
Caption = 'Run in terminal:'
Width = 75
Caption = 'Run in &terminal:'
FocusControl = edtRunInTerm
ParentColor = False
end
object edtRunInTerm: TEdit[1]
@ -17,10 +18,10 @@ inherited frmOptionsTerminal: TfrmOptionsTerminal
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 124
Height = 29
Left = 89
Height = 21
Top = 8
Width = 385
Width = 420
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Right = 10
@ -29,10 +30,11 @@ inherited frmOptionsTerminal: TfrmOptionsTerminal
object lblRunTerm: TLabel[2]
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Top = 46
Width = 93
Caption = 'Run terminal:'
Height = 13
Top = 40
Width = 64
Caption = 'Run t&erminal:'
FocusControl = edtRunTerm
ParentColor = False
end
object edtRunTerm: TEdit[3]
@ -41,10 +43,10 @@ inherited frmOptionsTerminal: TfrmOptionsTerminal
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtRunInTerm
AnchorSideRight.Side = asrBottom
Left = 124
Height = 29
Top = 43
Width = 385
Left = 89
Height = 21
Top = 35
Width = 420
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
TabOrder = 1

View file

@ -1,2 +1,2 @@
TFRMOPTIONSTERMINAL.LBLRUNINTERM.CAPTION=Run in terminal:
TFRMOPTIONSTERMINAL.LBLRUNTERM.CAPTION=Run terminal:
TFRMOPTIONSTERMINAL.LBLRUNINTERM.CAPTION=Run in &terminal:
TFRMOPTIONSTERMINAL.LBLRUNTERM.CAPTION=Run t&erminal:

View file

@ -9,7 +9,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 95
Height = 81
Top = 0
Width = 838
Anchors = [akTop, akLeft, akRight]
@ -19,7 +19,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
Caption = 'Appearance'
ChildSizing.LeftRightSpacing = 8
ChildSizing.TopBottomSpacing = 4
ClientHeight = 73
ClientHeight = 63
ClientWidth = 834
TabOrder = 0
object lblBarSize: TLabel
@ -27,10 +27,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Control = trbBarSize
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Top = 8
Width = 58
Caption = 'Ba&r size:'
Height = 13
Top = 13
Width = 41
Caption = '&Bar size:'
FocusControl = trbBarSize
ParentColor = False
end
@ -39,7 +39,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = trbBarSize
AnchorSideTop.Side = asrCenter
Left = 68
Left = 51
Height = 1
Top = 19
Width = 1
@ -50,7 +50,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Control = lblBarSizeValue
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = gbGroupBox
Left = 72
Left = 55
Height = 30
Top = 4
Width = 150
@ -69,12 +69,12 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = trbIconSize
AnchorSideTop.Side = asrCenter
Left = 237
Height = 22
Top = 8
Width = 63
Left = 220
Height = 13
Top = 13
Width = 46
BorderSpacing.Left = 15
Caption = 'Ic&on size:'
Caption = 'Icon si&ze:'
FocusControl = trbIconSize
ParentColor = False
end
@ -83,7 +83,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = trbIconSize
AnchorSideTop.Side = asrCenter
Left = 302
Left = 268
Height = 1
Top = 19
Width = 1
@ -95,7 +95,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = gbGroupBox
AnchorSideBottom.Side = asrBottom
Left = 306
Left = 272
Height = 30
Top = 4
Width = 150
@ -116,11 +116,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Control = trbIconSize
AnchorSideTop.Side = asrBottom
Left = 8
Height = 27
Height = 17
Top = 42
Width = 111
Width = 76
BorderSpacing.Top = 8
Caption = 'Flat b&uttons'
Caption = '&Flat buttons'
Checked = True
OnChange = cbFlatButtonsChange
State = cbChecked
@ -135,11 +135,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = pnlFullToolbarButtons
Left = 6
Height = 86
Top = 101
Height = 171
Top = 87
Width = 838
HorzScrollBar.Page = 834
VertScrollBar.Page = 82
VertScrollBar.Page = 167
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
TabOrder = 1
@ -150,8 +150,8 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = pnlEditToolbar
Left = 6
Height = 31
Top = 193
Height = 23
Top = 264
Width = 838
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
@ -159,7 +159,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
BorderSpacing.Right = 6
BorderSpacing.Bottom = 2
BevelOuter = bvNone
ClientHeight = 31
ClientHeight = 23
ClientWidth = 838
TabOrder = 2
object pnlToolbarButtons: TPanel
@ -167,10 +167,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = pnlFullToolbarButtons
AnchorSideBottom.Side = asrBottom
Left = 248
Height = 31
Left = 282
Height = 23
Top = 0
Width = 343
Width = 274
AutoSize = True
BevelOuter = bvNone
ChildSizing.HorizontalSpacing = 8
@ -180,34 +180,34 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
ChildSizing.ShrinkVertical = crsHomogenousChildResize
ChildSizing.Layout = cclTopToBottomThenLeftToRight
ChildSizing.ControlsPerLine = 1
ClientHeight = 31
ClientWidth = 343
ClientHeight = 23
ClientWidth = 274
TabOrder = 0
object btnInsertButton: TButton
Left = 0
Height = 31
Height = 23
Top = 0
Width = 145
Width = 113
AutoSize = True
Caption = '&Insert new button'
OnClick = btnInsertButtonClick
TabOrder = 0
end
object btnCloneButton: TButton
Left = 153
Height = 31
Left = 121
Height = 23
Top = 0
Width = 113
Width = 88
AutoSize = True
Caption = '&Clone button'
Caption = 'C&lone button'
OnClick = btnCloneButtonClick
TabOrder = 1
end
object btnDeleteButton: TButton
Left = 274
Height = 31
Left = 217
Height = 23
Top = 0
Width = 69
Width = 57
AutoSize = True
Caption = '&Delete'
OnClick = btnDeleteButtonClick
@ -222,8 +222,8 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 341
Top = 226
Height = 278
Top = 289
Width = 838
Anchors = [akLeft, akRight, akBottom]
AutoSize = True
@ -231,7 +231,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
BorderSpacing.Right = 6
BorderSpacing.Bottom = 6
BevelOuter = bvNone
ClientHeight = 341
ClientHeight = 278
ClientWidth = 838
TabOrder = 3
object rgToolItemType: TRadioGroup
@ -240,7 +240,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideBottom.Control = pnlEditToolbar
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 341
Height = 278
Top = 0
Width = 146
Anchors = [akTop, akLeft, akBottom]
@ -264,7 +264,7 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideRight.Control = pnlEditToolbar
AnchorSideRight.Side = asrBottom
Left = 152
Height = 341
Height = 278
Top = 0
Width = 680
Anchors = [akTop, akLeft, akRight]
@ -276,15 +276,16 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
ChildSizing.VerticalSpacing = 10
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 341
ClientHeight = 278
ClientWidth = 680
TabOrder = 1
object lblIconFile: TLabel
Left = 0
Height = 22
Height = 13
Top = 6
Width = 81
Caption = 'Icon:'
Width = 59
Caption = 'Ico&n:'
FocusControl = edtIconFileName
ParentColor = False
Visible = False
end
@ -294,10 +295,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Control = lblIconFile
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnOpenIcon
Left = 81
Height = 29
Top = 3
Width = 567
Left = 59
Height = 21
Top = 2
Width = 589
Anchors = [akTop, akLeft, akRight]
MaxLength = 259
OnChange = edtIconFileNameChange
@ -311,8 +312,8 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideBottom.Control = edtIconFileName
AnchorSideBottom.Side = asrBottom
Left = 648
Height = 29
Top = 3
Height = 21
Top = 2
Width = 32
Anchors = [akTop, akRight, akBottom]
Caption = '>>'
@ -323,10 +324,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblToolTip: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 22
Top = 38
Width = 81
Caption = 'Tooltip:'
Height = 13
Top = 29
Width = 59
Caption = '&Tooltip:'
FocusControl = edtToolTip
ParentColor = False
Visible = False
end
@ -337,10 +339,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = pnlEditControls
AnchorSideRight.Side = asrBottom
Left = 81
Height = 29
Top = 35
Width = 599
Left = 59
Height = 21
Top = 25
Width = 621
Anchors = [akTop, akLeft, akRight]
MaxLength = 259
TabOrder = 2
@ -349,10 +351,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblInternalCommand: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 22
Top = 70
Width = 81
Caption = 'Command:'
Height = 13
Top = 52
Width = 59
Caption = 'Co&mmand:'
FocusControl = cbInternalCommand
ParentColor = False
Visible = False
end
@ -363,14 +366,14 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = pnlEditControls
AnchorSideRight.Side = asrBottom
Left = 81
Height = 29
Top = 67
Width = 599
Left = 59
Height = 21
Top = 48
Width = 621
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight]
DropDownCount = 20
ItemHeight = 21
ItemHeight = 13
OnSelect = cbInternalCommandSelect
Style = csDropDownList
TabOrder = 3
@ -379,10 +382,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblInternalParameters: TLabel
Left = 0
Height = 100
Top = 102
Width = 81
Caption = 'Parameters:'
Top = 75
Width = 59
Caption = '&Parameters:'
Constraints.MinHeight = 100
FocusControl = edtInternalParameters
ParentColor = False
Visible = False
end
@ -394,11 +398,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = lblInternalParameters
AnchorSideBottom.Side = asrBottom
Left = 81
Left = 59
Height = 100
Hint = 'Enter command parameters, each in a separate line. Press F1 to see help on parameters.'
Top = 102
Width = 599
Top = 75
Width = 621
HelpType = htKeyword
Anchors = [akTop, akLeft, akRight, akBottom]
ParentShowHint = False
@ -411,10 +415,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblExternalCommand: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 22
Top = 212
Width = 81
Caption = 'Command:'
Height = 13
Top = 185
Width = 59
Caption = 'Comman&d:'
FocusControl = edtExternalCommand
ParentColor = False
Visible = False
end
@ -424,10 +429,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Control = lblExternalCommand
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnOpenFile
Left = 81
Height = 29
Top = 209
Width = 567
Left = 59
Height = 21
Top = 181
Width = 589
Anchors = [akTop, akLeft, akRight]
MaxLength = 259
TabOrder = 5
@ -440,8 +445,8 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideBottom.Control = edtExternalCommand
AnchorSideBottom.Side = asrBottom
Left = 648
Height = 29
Top = 209
Height = 21
Top = 181
Width = 32
Anchors = [akTop, akRight, akBottom]
BorderSpacing.InnerBorder = 4
@ -453,10 +458,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblExternalParameters: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 22
Top = 244
Width = 81
Caption = 'Parameters:'
Height = 13
Top = 208
Width = 59
Caption = 'Parameter&s:'
FocusControl = edtExternalParameters
ParentColor = False
Visible = False
end
@ -467,10 +473,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = pnlEditControls
AnchorSideRight.Side = asrBottom
Left = 81
Height = 29
Top = 241
Width = 599
Left = 59
Height = 21
Top = 204
Width = 621
Anchors = [akTop, akLeft, akRight]
MaxLength = 259
TabOrder = 7
@ -479,10 +485,11 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblStartPath: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 22
Top = 276
Width = 81
Caption = 'Start path:'
Height = 13
Top = 231
Width = 59
Caption = 'Start pat&h:'
FocusControl = edtStartPath
ParentColor = False
Visible = False
end
@ -493,10 +500,10 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = pnlEditControls
AnchorSideRight.Side = asrBottom
Left = 81
Height = 29
Top = 273
Width = 599
Left = 59
Height = 21
Top = 227
Width = 621
Anchors = [akTop, akLeft, akRight]
MaxLength = 259
TabOrder = 8
@ -505,9 +512,9 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
object lblHotkey: TLabel
AnchorSideTop.Side = asrCenter
Left = 0
Height = 22
Top = 308
Width = 81
Height = 13
Top = 254
Width = 59
Caption = 'Hot key:'
ParentColor = False
Visible = False
@ -516,9 +523,9 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Control = lblHotkey
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblHotkey
Left = 81
Left = 59
Height = 1
Top = 308
Top = 254
Width = 1
BorderSpacing.Right = 10
ParentColor = False
@ -529,12 +536,12 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblHotkey
AnchorSideTop.Side = asrCenter
Left = 92
Height = 31
Top = 304
Width = 102
Left = 70
Height = 23
Top = 249
Width = 80
AutoSize = True
Caption = 'Edit hotkey'
Caption = 'Edit hot&key'
OnClick = btnEditHotkeyClick
TabOrder = 9
Visible = False
@ -544,13 +551,13 @@ inherited frmOptionsToolbar: TfrmOptionsToolbar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblHotkey
AnchorSideTop.Side = asrCenter
Left = 196
Height = 31
Top = 304
Width = 129
Left = 152
Height = 23
Top = 249
Width = 101
AutoSize = True
BorderSpacing.Left = 2
Caption = 'Remove hotkey'
Caption = 'Remove hotke&y'
OnClick = btnRemoveHotKeyClick
TabOrder = 10
Visible = False

View file

@ -1,21 +1,21 @@
TFRMOPTIONSTOOLBAR.GBGROUPBOX.CAPTION=Appearance
TFRMOPTIONSTOOLBAR.LBLBARSIZE.CAPTION=Ba&r size:
TFRMOPTIONSTOOLBAR.LBLICONSIZE.CAPTION=Ic&on size:
TFRMOPTIONSTOOLBAR.CBFLATBUTTONS.CAPTION=Flat b&uttons
TFRMOPTIONSTOOLBAR.LBLBARSIZE.CAPTION=&Bar size:
TFRMOPTIONSTOOLBAR.LBLICONSIZE.CAPTION=Icon si&ze:
TFRMOPTIONSTOOLBAR.CBFLATBUTTONS.CAPTION=&Flat buttons
TFRMOPTIONSTOOLBAR.BTNINSERTBUTTON.CAPTION=&Insert new button
TFRMOPTIONSTOOLBAR.BTNCLONEBUTTON.CAPTION=&Clone button
TFRMOPTIONSTOOLBAR.BTNCLONEBUTTON.CAPTION=C&lone button
TFRMOPTIONSTOOLBAR.BTNDELETEBUTTON.CAPTION=&Delete
TFRMOPTIONSTOOLBAR.RGTOOLITEMTYPE.CAPTION=Button type
TFRMOPTIONSTOOLBAR.LBLICONFILE.CAPTION=Icon:
TFRMOPTIONSTOOLBAR.LBLICONFILE.CAPTION=Ico&n:
TFRMOPTIONSTOOLBAR.BTNOPENICON.CAPTION=>>
TFRMOPTIONSTOOLBAR.LBLTOOLTIP.CAPTION=Tooltip:
TFRMOPTIONSTOOLBAR.LBLINTERNALCOMMAND.CAPTION=Command:
TFRMOPTIONSTOOLBAR.LBLINTERNALPARAMETERS.CAPTION=Parameters:
TFRMOPTIONSTOOLBAR.LBLTOOLTIP.CAPTION=&Tooltip:
TFRMOPTIONSTOOLBAR.LBLINTERNALCOMMAND.CAPTION=Co&mmand:
TFRMOPTIONSTOOLBAR.LBLINTERNALPARAMETERS.CAPTION=&Parameters:
TFRMOPTIONSTOOLBAR.EDTINTERNALPARAMETERS.HINT=Enter command parameters, each in a separate line. Press F1 to see help on parameters.
TFRMOPTIONSTOOLBAR.LBLEXTERNALCOMMAND.CAPTION=Command:
TFRMOPTIONSTOOLBAR.LBLEXTERNALCOMMAND.CAPTION=Comman&d:
TFRMOPTIONSTOOLBAR.BTNOPENFILE.CAPTION=>>
TFRMOPTIONSTOOLBAR.LBLEXTERNALPARAMETERS.CAPTION=Parameters:
TFRMOPTIONSTOOLBAR.LBLSTARTPATH.CAPTION=Start path:
TFRMOPTIONSTOOLBAR.LBLEXTERNALPARAMETERS.CAPTION=Parameter&s:
TFRMOPTIONSTOOLBAR.LBLSTARTPATH.CAPTION=Start pat&h:
TFRMOPTIONSTOOLBAR.LBLHOTKEY.CAPTION=Hot key:
TFRMOPTIONSTOOLBAR.BTNEDITHOTKEY.CAPTION=Edit hotkey
TFRMOPTIONSTOOLBAR.BTNREMOVEHOTKEY.CAPTION=Remove hotkey
TFRMOPTIONSTOOLBAR.BTNEDITHOTKEY.CAPTION=Edit hot&key
TFRMOPTIONSTOOLBAR.BTNREMOVEHOTKEY.CAPTION=Remove hotke&y

View file

@ -10,8 +10,8 @@ inherited frmOptionsToolBase: TfrmOptionsToolBase
AnchorSideRight.Control = fneToolsPath
AnchorSideRight.Side = asrBottom
Left = 8
Height = 29
Top = 139
Height = 21
Top = 105
Width = 554
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
@ -23,15 +23,15 @@ inherited frmOptionsToolBase: TfrmOptionsToolBase
AnchorSideTop.Control = lblToolsPath
AnchorSideTop.Side = asrBottom
Left = 8
Height = 29
Top = 74
Height = 21
Top = 57
Width = 554
OnAcceptFileName = fneToolsPathAcceptFileName
DialogOptions = []
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 0
NumGlyphs = 1
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
MaxLength = 0
@ -43,11 +43,12 @@ inherited frmOptionsToolBase: TfrmOptionsToolBase
AnchorSideTop.Control = cbToolsUseExternalProgram
AnchorSideTop.Side = asrBottom
Left = 8
Height = 22
Top = 48
Width = 182
Height = 13
Top = 40
Width = 133
BorderSpacing.Top = 15
Caption = 'Path to program to execute'
Caption = '&Path to program to execute'
FocusControl = fneToolsPath
ParentColor = False
end
object lblToolsParameters: TLabel[3]
@ -55,11 +56,12 @@ inherited frmOptionsToolBase: TfrmOptionsToolBase
AnchorSideTop.Control = fneToolsPath
AnchorSideTop.Side = asrBottom
Left = 8
Height = 22
Top = 113
Width = 150
Height = 13
Top = 88
Width = 105
BorderSpacing.Top = 10
Caption = 'Additional parameters'
Caption = 'A&dditional parameters'
FocusControl = edtToolsParameters
ParentColor = False
end
object cbToolsKeepTerminalOpen: TCheckBox[4]
@ -67,12 +69,12 @@ inherited frmOptionsToolBase: TfrmOptionsToolBase
AnchorSideTop.Control = cbToolsRunInTerminal
AnchorSideTop.Side = asrBottom
Left = 23
Height = 25
Top = 207
Width = 381
Height = 17
Top = 157
Width = 269
BorderSpacing.Left = 15
BorderSpacing.Top = 2
Caption = 'Keep terminal window open after executing program'
Caption = '&Keep terminal window open after executing program'
OnChange = cbToolsKeepTerminalOpenChange
TabOrder = 4
end
@ -81,21 +83,21 @@ inherited frmOptionsToolBase: TfrmOptionsToolBase
AnchorSideTop.Control = edtToolsParameters
AnchorSideTop.Side = asrBottom
Left = 8
Height = 25
Top = 180
Width = 158
Height = 17
Top = 138
Width = 109
BorderSpacing.Top = 12
Caption = 'Execute in terminal'
Caption = '&Execute in terminal'
OnChange = cbToolsRunInTerminalChange
TabOrder = 3
end
object cbToolsUseExternalProgram: TCheckBox[6]
Left = 8
Height = 25
Height = 17
Top = 8
Width = 171
Width = 122
BorderSpacing.Top = 12
Caption = 'Use external program'
Caption = '&Use external program'
OnChange = cbToolsUseExternalProgramChange
TabOrder = 0
end

View file

@ -1,5 +1,5 @@
TFRMOPTIONSTOOLBASE.LBLTOOLSPATH.CAPTION=Path to program to execute
TFRMOPTIONSTOOLBASE.LBLTOOLSPARAMETERS.CAPTION=Additional parameters
TFRMOPTIONSTOOLBASE.CBTOOLSKEEPTERMINALOPEN.CAPTION=Keep terminal window open after executing program
TFRMOPTIONSTOOLBASE.CBTOOLSRUNINTERMINAL.CAPTION=Execute in terminal
TFRMOPTIONSTOOLBASE.CBTOOLSUSEEXTERNALPROGRAM.CAPTION=Use external program
TFRMOPTIONSTOOLBASE.LBLTOOLSPATH.CAPTION=&Path to program to execute
TFRMOPTIONSTOOLBASE.LBLTOOLSPARAMETERS.CAPTION=A&dditional parameters
TFRMOPTIONSTOOLBASE.CBTOOLSKEEPTERMINALOPEN.CAPTION=&Keep terminal window open after executing program
TFRMOPTIONSTOOLBASE.CBTOOLSRUNINTERMINAL.CAPTION=&Execute in terminal
TFRMOPTIONSTOOLBASE.CBTOOLSUSEEXTERNALPROGRAM.CAPTION=&Use external program

View file

@ -10,42 +10,43 @@ inherited frmOptionsViewer: TfrmOptionsViewer
AnchorSideRight.Control = fneToolsPath
AnchorSideRight.Side = asrBottom
Left = 8
Height = 260
Top = 244
Width = 551
Height = 244
Top = 186
Width = 554
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 12
BorderSpacing.Bottom = 10
Caption = 'Viewer Book Mode'
ChildSizing.TopBottomSpacing = 6
ClientHeight = 238
ClientWidth = 547
ClientHeight = 226
ClientWidth = 550
TabOrder = 5
object lblBackgroundColorViewerBook: TLabel
AnchorSideTop.Control = cbBackgroundColorViewerBook
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = cbBackgroundColorViewerBook
Left = 8
Height = 22
Top = 8
Width = 219
Caption = 'Background color in book viewer'
Height = 13
Top = 13
Width = 154
Caption = '&Background color in book viewer'
FocusControl = cbBackgroundColorViewerBook
ParentColor = False
end
object seNumberColumnsViewer: TSpinEdit
AnchorSideLeft.Control = cbFontColorViewerBook
AnchorSideTop.Control = cbFontColorViewerBook
AnchorSideTop.Side = asrBottom
Left = 247
Height = 29
Left = 182
Height = 21
Top = 62
Width = 36
BorderSpacing.Top = 5
MaxValue = 3
MinValue = 1
OnChange = seNumberColumnsViewerChange
TabOrder = 0
TabOrder = 5
Value = 1
end
object lblNumberColumnsViewer: TLabel
@ -53,10 +54,11 @@ inherited frmOptionsViewer: TfrmOptionsViewer
AnchorSideTop.Control = seNumberColumnsViewer
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Top = 65
Width = 235
Caption = 'Number of columns in book viewer'
Height = 13
Top = 66
Width = 163
Caption = '&Number of columns in book viewer'
FocusControl = seNumberColumnsViewer
ParentColor = False
end
object gbViewerExample: TGroupBox
@ -68,21 +70,21 @@ inherited frmOptionsViewer: TfrmOptionsViewer
AnchorSideBottom.Control = seNumberColumnsViewer
AnchorSideBottom.Side = asrBottom
Left = 8
Height = 137
Top = 95
Width = 531
Height = 133
Top = 87
Width = 534
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Around = 8
Caption = 'Example'
ClientHeight = 115
ClientWidth = 527
TabOrder = 1
ClientWidth = 530
TabOrder = 4
object pbViewerBook: TPaintBox
Left = 5
Height = 105
Top = 5
Width = 517
Width = 520
Align = alClient
BorderSpacing.Around = 5
OnPaint = pbViewerBookPaint
@ -96,7 +98,7 @@ inherited frmOptionsViewer: TfrmOptionsViewer
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = cbFontColorViewerBook
AnchorSideBottom.Side = asrBottom
Left = 507
Left = 510
Height = 22
Top = 35
Width = 24
@ -104,14 +106,14 @@ inherited frmOptionsViewer: TfrmOptionsViewer
BorderSpacing.Left = 4
Caption = '>>'
OnClick = btnFontViewerColorClick
TabOrder = 2
TabOrder = 3
end
object btnBackViewerColor: TButton
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cbBackgroundColorViewerBook
AnchorSideBottom.Control = cbBackgroundColorViewerBook
AnchorSideBottom.Side = asrBottom
Left = 507
Left = 510
Height = 22
Top = 8
Width = 24
@ -120,7 +122,7 @@ inherited frmOptionsViewer: TfrmOptionsViewer
BorderSpacing.Right = 5
Caption = '>>'
OnClick = btnBackViewerColorClick
TabOrder = 3
TabOrder = 1
end
object cbFontColorViewerBook: TColorBox
AnchorSideLeft.Control = cbBackgroundColorViewerBook
@ -128,43 +130,44 @@ inherited frmOptionsViewer: TfrmOptionsViewer
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = cbBackgroundColorViewerBook
AnchorSideRight.Side = asrBottom
Left = 247
Left = 182
Height = 22
Top = 35
Width = 256
Width = 324
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbPrettyNames]
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 5
ItemHeight = 16
OnChange = cbColorBoxChange
TabOrder = 4
TabOrder = 2
end
object lblFontColorViewerBook: TLabel
AnchorSideLeft.Control = lblBackgroundColorViewerBook
AnchorSideTop.Control = cbFontColorViewerBook
AnchorSideTop.Side = asrCenter
Left = 8
Height = 22
Top = 35
Width = 168
Height = 13
Top = 40
Width = 120
BorderSpacing.Top = 10
Caption = 'Font color in book viewer'
Caption = '&Font color in book viewer'
FocusControl = cbFontColorViewerBook
ParentColor = False
end
object cbBackgroundColorViewerBook: TColorBox
AnchorSideLeft.Control = lblBackgroundColorViewerBook
AnchorSideLeft.Side = asrBottom
AnchorSideRight.Control = btnBackViewerColor
Left = 247
Left = 182
Height = 22
Top = 8
Width = 256
Width = 324
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbPrettyNames]
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 20
ItemHeight = 16
OnChange = cbColorBoxChange
TabOrder = 5
TabOrder = 0
end
end
object optColorDialog: TColorDialog[8]

View file

@ -1,7 +1,7 @@
TFRMOPTIONSVIEWER.GBVIEWERBOOKMODE.CAPTION=Viewer Book Mode
TFRMOPTIONSVIEWER.LBLBACKGROUNDCOLORVIEWERBOOK.CAPTION=Background color in book viewer
TFRMOPTIONSVIEWER.LBLNUMBERCOLUMNSVIEWER.CAPTION=Number of columns in book viewer
TFRMOPTIONSVIEWER.LBLBACKGROUNDCOLORVIEWERBOOK.CAPTION=&Background color in book viewer
TFRMOPTIONSVIEWER.LBLNUMBERCOLUMNSVIEWER.CAPTION=&Number of columns in book viewer
TFRMOPTIONSVIEWER.GBVIEWEREXAMPLE.CAPTION=Example
TFRMOPTIONSVIEWER.BTNFONTVIEWERCOLOR.CAPTION=>>
TFRMOPTIONSVIEWER.BTNBACKVIEWERCOLOR.CAPTION=>>
TFRMOPTIONSVIEWER.LBLFONTCOLORVIEWERBOOK.CAPTION=Font color in book viewer
TFRMOPTIONSVIEWER.LBLFONTCOLORVIEWERBOOK.CAPTION=&Font color in book viewer

View file

@ -4,12 +4,13 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AutoSize = True
ClientHeight = 501
ClientWidth = 599
DesignTop = 27
object gbCustomFields: TGroupBox[0]
AnchorSideLeft.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 347
Height = 345
Top = 6
Width = 587
Anchors = [akTop, akLeft, akRight]
@ -17,7 +18,7 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
BorderSpacing.Around = 6
Caption = 'Custom fields by file type'
ChildSizing.TopBottomSpacing = 6
ClientHeight = 325
ClientHeight = 322
ClientWidth = 583
TabOrder = 0
object btnAddFields: TBitBtn
@ -25,29 +26,27 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideRight.Control = btnDeleteFields
Left = 233
Height = 32
Top = 287
Top = 284
Width = 110
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Add'
NumGlyphs = 0
Caption = 'A&dd'
OnClick = btnAddFieldsClick
TabOrder = 0
TabOrder = 2
end
object btnDeleteFields: TBitBtn
AnchorSideTop.Control = btnApplyFields
AnchorSideRight.Control = btnApplyFields
Left = 349
Height = 32
Top = 287
Top = 284
Width = 110
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Delete'
Caption = 'D&elete'
Enabled = False
NumGlyphs = 0
OnClick = btnDeleteFieldsClick
TabOrder = 1
TabOrder = 3
end
object lsbCustomFields: TListBox
AnchorSideTop.Control = gbCustomFields
@ -62,7 +61,9 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
BorderSpacing.Right = 8
ItemHeight = 0
OnSelectionChange = lsbCustomFieldsSelectionChange
TabOrder = 2
ScrollWidth = 561
TabOrder = 0
TopIndex = -1
end
object btnApplyFields: TBitBtn
AnchorSideTop.Control = pnlEdit
@ -71,14 +72,13 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideRight.Side = asrBottom
Left = 465
Height = 32
Top = 287
Top = 284
Width = 110
Anchors = [akTop, akRight]
BorderSpacing.Top = 12
Caption = 'Apply'
NumGlyphs = 0
Caption = 'A&pply'
OnClick = btnApplyFieldsClick
TabOrder = 3
TabOrder = 4
end
object pnlEdit: TPanel
AnchorSideLeft.Control = lsbCustomFields
@ -87,7 +87,7 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideRight.Control = lsbCustomFields
AnchorSideRight.Side = asrBottom
Left = 12
Height = 121
Height = 118
Top = 154
Width = 563
Anchors = [akTop, akLeft, akRight]
@ -95,45 +95,48 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
BorderSpacing.Top = 6
BevelOuter = bvNone
ChildSizing.TopBottomSpacing = 6
ClientHeight = 121
ClientHeight = 118
ClientWidth = 563
Enabled = False
TabOrder = 4
TabOrder = 1
object lblFieldsName: TLabel
AnchorSideTop.Control = edtFieldsName
AnchorSideTop.Side = asrCenter
Left = 1
Height = 22
Top = 15
Width = 105
Caption = 'Category name:'
Height = 18
Top = 17
Width = 102
Caption = 'Category &name:'
FocusControl = edtFieldsName
ParentColor = False
end
object lblFieldsMask: TLabel
AnchorSideTop.Control = edtFieldsMask
AnchorSideTop.Side = asrCenter
Left = 1
Height = 22
Top = 52
Width = 103
Caption = 'Category mask:'
Height = 18
Top = 53
Width = 100
Caption = 'Category &mask:'
FocusControl = edtFieldsMask
ParentColor = False
end
object lblFieldsList: TLabel
AnchorSideTop.Control = edtFieldsList
AnchorSideTop.Side = asrCenter
Left = 1
Height = 22
Height = 18
Top = 89
Width = 94
Caption = 'Category hint:'
Width = 93
Caption = 'Category &hint:'
FocusControl = edtFieldsList
ParentColor = False
end
object edtFieldsName: TEdit
AnchorSideTop.Control = pnlEdit
AnchorSideRight.Side = asrBottom
Left = 151
Height = 29
Height = 28
Top = 12
Width = 412
Anchors = [akTop, akLeft, akRight]
@ -146,8 +149,8 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnFieldsSearchTemplate
Left = 151
Height = 29
Top = 49
Height = 28
Top = 48
Width = 383
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 8
@ -160,13 +163,13 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnFieldsList
Left = 151
Height = 29
Top = 86
Height = 28
Top = 84
Width = 378
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 8
BorderSpacing.Right = 6
TabOrder = 2
TabOrder = 3
end
object btnFieldsSearchTemplate: TBitBtn
AnchorSideTop.Control = edtFieldsMask
@ -175,9 +178,9 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideBottom.Control = edtFieldsMask
AnchorSideBottom.Side = asrBottom
Left = 540
Height = 29
Height = 28
Hint = 'Template...'
Top = 49
Top = 48
Width = 23
Anchors = [akTop, akRight, akBottom]
Glyph.Data = {
@ -220,7 +223,7 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
OnClick = btnFieldsSearchTemplateClick
ParentShowHint = False
ShowHint = True
TabOrder = 3
TabOrder = 2
end
object btnFieldsList: TButton
AnchorSideLeft.Side = asrBottom
@ -230,8 +233,8 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideBottom.Control = edtFieldsList
AnchorSideBottom.Side = asrBottom
Left = 535
Height = 29
Top = 86
Height = 28
Top = 84
Width = 28
Anchors = [akTop, akRight, akBottom]
BorderSpacing.InnerBorder = 4
@ -248,8 +251,8 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 113
Top = 359
Height = 108
Top = 357
Width = 587
Anchors = [akTop, akLeft, akRight]
AutoSize = True
@ -257,7 +260,7 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
Caption = 'Show tool tip'
ChildSizing.LeftRightSpacing = 12
ChildSizing.TopBottomSpacing = 6
ClientHeight = 91
ClientHeight = 85
ClientWidth = 583
TabOrder = 1
object rbToolTipAllFiles: TRadioButton
@ -265,35 +268,35 @@ inherited frmOptionsToolTips: TfrmOptionsToolTips
AnchorSideTop.Control = rbToolTipNone
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 33
Width = 274
Height = 23
Top = 31
Width = 267
BorderSpacing.Top = 2
Caption = 'Show tool tip for all files in file panel'
TabOrder = 0
Caption = 'Sho&w tool tip for all files in file panel'
TabOrder = 1
end
object rbToolTipOnlyLarge: TRadioButton
AnchorSideLeft.Control = gbShowToolTip
AnchorSideTop.Control = rbToolTipAllFiles
AnchorSideTop.Side = asrBottom
Left = 12
Height = 25
Top = 60
Width = 336
Height = 23
Top = 56
Width = 326
BorderSpacing.Top = 2
Caption = 'Show tool tip for files in file panel if truncated'
TabOrder = 1
Caption = 'Show &tool tip for files in file panel if truncated'
TabOrder = 2
end
object rbToolTipNone: TRadioButton
AnchorSideLeft.Control = gbShowToolTip
AnchorSideTop.Control = gbShowToolTip
Left = 12
Height = 25
Height = 23
Top = 6
Width = 102
Caption = 'Don''t show'
Width = 97
Caption = 'Don''t &show'
Checked = True
TabOrder = 2
TabOrder = 0
TabStop = True
end
end

View file

@ -1,13 +1,13 @@
TFRMOPTIONSTOOLTIPS.GBCUSTOMFIELDS.CAPTION=Custom fields by file type
TFRMOPTIONSTOOLTIPS.BTNADDFIELDS.CAPTION=Add
TFRMOPTIONSTOOLTIPS.BTNDELETEFIELDS.CAPTION=Delete
TFRMOPTIONSTOOLTIPS.BTNAPPLYFIELDS.CAPTION=Apply
TFRMOPTIONSTOOLTIPS.LBLFIELDSNAME.CAPTION=Category name:
TFRMOPTIONSTOOLTIPS.LBLFIELDSMASK.CAPTION=Category mask:
TFRMOPTIONSTOOLTIPS.LBLFIELDSLIST.CAPTION=Category hint:
TFRMOPTIONSTOOLTIPS.BTNADDFIELDS.CAPTION=A&dd
TFRMOPTIONSTOOLTIPS.BTNDELETEFIELDS.CAPTION=D&elete
TFRMOPTIONSTOOLTIPS.BTNAPPLYFIELDS.CAPTION=A&pply
TFRMOPTIONSTOOLTIPS.LBLFIELDSNAME.CAPTION=Category &name:
TFRMOPTIONSTOOLTIPS.LBLFIELDSMASK.CAPTION=Category &mask:
TFRMOPTIONSTOOLTIPS.LBLFIELDSLIST.CAPTION=Category &hint:
TFRMOPTIONSTOOLTIPS.BTNFIELDSSEARCHTEMPLATE.HINT=Template...
TFRMOPTIONSTOOLTIPS.BTNFIELDSLIST.CAPTION=>>
TFRMOPTIONSTOOLTIPS.GBSHOWTOOLTIP.CAPTION=Show tool tip
TFRMOPTIONSTOOLTIPS.RBTOOLTIPALLFILES.CAPTION=Show tool tip for all files in file panel
TFRMOPTIONSTOOLTIPS.RBTOOLTIPONLYLARGE.CAPTION=Show tool tip for files in file panel if truncated
TFRMOPTIONSTOOLTIPS.RBTOOLTIPNONE.CAPTION=Don't show
TFRMOPTIONSTOOLTIPS.RBTOOLTIPALLFILES.CAPTION=Sho&w tool tip for all files in file panel
TFRMOPTIONSTOOLTIPS.RBTOOLTIPONLYLARGE.CAPTION=Show &tool tip for files in file panel if truncated
TFRMOPTIONSTOOLTIPS.RBTOOLTIPNONE.CAPTION=Don't &show

View file

@ -10,23 +10,22 @@ object frmTweakPlugin: TfrmTweakPlugin
OnCreate = FormCreate
Position = poScreenCenter
ShowInTaskBar = stNever
LCLVersion = '0.9.29'
LCLVersion = '1.1'
object nbTweakAll: TNotebook
Left = 0
Height = 445
Height = 437
Top = 0
Width = 544
Align = alClient
PageIndex = 0
Align = alClient
TabOrder = 0
TabStop = True
object pgTweakPacker: TPage
ClientWidth = 536
ClientHeight = 419
object pnlTweak: TPanel
Left = 6
Height = 407
Height = 425
Top = 6
Width = 524
Width = 532
Align = alClient
AutoSize = True
BorderSpacing.Around = 6
@ -34,17 +33,17 @@ object frmTweakPlugin: TfrmTweakPlugin
BorderStyle = bsSingle
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ClientHeight = 403
ClientWidth = 520
ClientHeight = 423
ClientWidth = 530
TabOrder = 0
object lblFlagsValue: TLabel
AnchorSideLeft.Control = lblFlags
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Control = lblFlags
AnchorSideTop.Side = asrBottom
Left = 21
Left = 25
Height = 1
Top = 83
Top = 98
Width = 1
ParentColor = False
end
@ -52,11 +51,12 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideLeft.Control = pnlTweak
AnchorSideTop.Control = pnlTweak
Left = 6
Height = 14
Height = 18
Top = 12
Width = 33
Width = 45
BorderSpacing.Top = 12
Caption = 'Plugin:'
Caption = '&Plugin:'
FocusControl = edtPlugin
ParentColor = False
end
object lblExtension: TLabel
@ -64,11 +64,12 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Control = edtPlugin
AnchorSideTop.Side = asrBottom
Left = 6
Height = 14
Top = 42
Width = 52
Height = 18
Top = 47
Width = 68
BorderSpacing.Top = 12
Caption = 'Extension:'
Caption = '&Extension:'
FocusControl = cbExt
ParentColor = False
end
object lblFlags: TLabel
@ -76,9 +77,9 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Control = pnlPackerExtsButtons
AnchorSideTop.Side = asrBottom
Left = 6
Height = 14
Top = 69
Width = 30
Height = 18
Top = 80
Width = 39
BorderSpacing.Top = 8
Caption = 'Flags:'
ParentColor = False
@ -89,10 +90,10 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = pnlPackerExtsButtons
AnchorSideRight.Side = asrBottom
Left = 70
Height = 21
Top = 9
Width = 444
Left = 86
Height = 28
Top = 7
Width = 438
Anchors = [akTop, akLeft, akRight]
TabOrder = 0
end
@ -103,10 +104,10 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = pnlTweak
AnchorSideRight.Side = asrBottom
Left = 70
Height = 23
Top = 38
Width = 444
Left = 86
Height = 31
Top = 41
Width = 438
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Left = 12
@ -114,49 +115,49 @@ object frmTweakPlugin: TfrmTweakPlugin
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.Layout = cclTopToBottomThenLeftToRight
ClientHeight = 23
ClientWidth = 444
ClientHeight = 31
ClientWidth = 438
TabOrder = 1
object cbExt: TComboBox
Left = 0
Height = 21
Height = 31
Top = 0
Width = 132
Width = 129
Constraints.MinWidth = 80
ItemHeight = 13
ItemHeight = 0
OnChange = cbExtChange
Style = csDropDownList
TabOrder = 0
end
object btnRemove: TButton
Left = 132
Height = 23
Left = 129
Height = 31
Top = 0
Width = 104
Width = 103
AutoSize = True
Caption = 'Remove'
Caption = '&Remove'
Constraints.MinWidth = 80
OnClick = btnRemoveClick
TabOrder = 1
end
object btnAdd: TButton
Left = 236
Height = 23
Left = 232
Height = 31
Top = 0
Width = 104
Width = 103
AutoSize = True
Caption = 'Add new'
Caption = 'A&dd new'
Constraints.MinWidth = 80
OnClick = btnAddClick
TabOrder = 2
end
object btnChange: TButton
Left = 340
Height = 23
Left = 335
Height = 31
Top = 0
Width = 104
Width = 103
AutoSize = True
Caption = 'Change'
Caption = 'C&hange'
Constraints.MinWidth = 80
OnClick = btnChangeClick
TabOrder = 3
@ -167,103 +168,103 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Control = lblFlags
AnchorSideRight.Control = pnlTweak
AnchorSideRight.Side = asrBottom
Left = 70
Height = 199
Top = 69
Width = 203
Left = 86
Height = 267
Top = 80
Width = 276
AutoSize = True
BevelOuter = bvNone
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 199
ClientWidth = 203
ClientHeight = 267
ClientWidth = 276
TabOrder = 2
object cbPK_CAPS_NEW: TCheckBox
Left = 0
Height = 17
Height = 23
Top = 0
Width = 203
Caption = 'Can create new archives'
Width = 276
Caption = 'Can create new archi&ves'
OnClick = cbPackerFlagsClick
TabOrder = 0
end
object cbPK_CAPS_MODIFY: TCheckBox
Left = 0
Height = 17
Top = 17
Width = 203
Caption = 'Can modify exisiting archives'
Height = 23
Top = 23
Width = 276
Caption = 'Can &modify exisiting archives'
OnClick = cbPackerFlagsClick
TabOrder = 1
end
object cbPK_CAPS_MULTIPLE: TCheckBox
Left = 0
Height = 17
Top = 34
Width = 203
Caption = 'Archive can contain multiple files'
Height = 23
Top = 46
Width = 276
Caption = '&Archive can contain multiple files'
OnClick = cbPackerFlagsClick
TabOrder = 2
end
object cbPK_CAPS_DELETE: TCheckBox
Left = 0
Height = 17
Top = 51
Width = 203
Caption = 'Can delete files'
Height = 23
Top = 69
Width = 276
Caption = 'Can de&lete files'
OnClick = cbPackerFlagsClick
TabOrder = 3
end
object cbPK_CAPS_OPTIONS: TCheckBox
Left = 0
Height = 17
Top = 68
Width = 203
Caption = 'Supports the options dialogbox'
Height = 23
Top = 92
Width = 276
Caption = 'S&upports the options dialogbox'
OnClick = cbPackerFlagsClick
TabOrder = 4
end
object cbPK_CAPS_MEMPACK: TCheckBox
Left = 0
Height = 17
Top = 85
Width = 203
Caption = 'Supports packing in memory'
Height = 23
Top = 115
Width = 276
Caption = 'Supports pac&king in memory'
OnClick = cbPackerFlagsClick
TabOrder = 5
end
object cbPK_CAPS_BY_CONTENT: TCheckBox
Left = 0
Height = 17
Top = 102
Width = 203
Caption = 'Detect archive type by content'
Height = 23
Top = 138
Width = 276
Caption = 'De&tect archive type by content'
OnClick = cbPackerFlagsClick
TabOrder = 6
end
object cbPK_CAPS_SEARCHTEXT: TCheckBox
Left = 0
Height = 17
Top = 119
Width = 203
Caption = 'Allow searching for text in archives'
Height = 23
Top = 161
Width = 276
Caption = 'Allow searchin&g for text in archives'
OnClick = cbPackerFlagsClick
TabOrder = 7
end
object cbPK_CAPS_HIDE: TCheckBox
Left = 0
Height = 17
Top = 136
Width = 203
Caption = 'Show as normal files (hide packer icon)'
Height = 23
Top = 184
Width = 276
Caption = 'Sho&w as normal files (hide packer icon)'
OnClick = cbPackerFlagsClick
TabOrder = 8
end
object cbPK_CAPS_ENCRYPT: TCheckBox
Left = 0
Height = 17
Top = 153
Width = 203
Caption = 'Supports encryption'
Height = 23
Top = 207
Width = 276
Caption = 'Supports e&ncryption'
OnClick = cbPackerFlagsClick
TabOrder = 9
end
@ -272,12 +273,12 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Control = cbPK_CAPS_ENCRYPT
AnchorSideTop.Side = asrBottom
Left = 0
Height = 23
Top = 176
Height = 31
Top = 236
Width = 100
AutoSize = True
BorderSpacing.Top = 6
Caption = 'Default'
Caption = 'De&fault'
Constraints.MinWidth = 100
OnClick = btnDefaultClick
TabOrder = 10
@ -286,31 +287,30 @@ object frmTweakPlugin: TfrmTweakPlugin
end
end
object pgTweakOther: TPage
ClientWidth = 540
ClientHeight = 435
object pnlTweakOther: TPanel
Left = 6
Height = 423
Height = 425
Top = 6
Width = 528
Width = 532
Align = alClient
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Around = 6
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 419
ClientWidth = 524
ClientHeight = 423
ClientWidth = 530
TabOrder = 0
object lblName: TLabel
AnchorSideLeft.Control = lblPlugin1
AnchorSideTop.Control = edtPlugin1
AnchorSideTop.Side = asrBottom
Left = 10
Height = 20
Top = 71
Width = 45
Caption = 'Name:'
Height = 18
Top = 68
Width = 41
Caption = '&Name:'
FocusControl = edtName
ParentColor = False
end
object lblDetectStr: TLabel
@ -318,10 +318,11 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Control = edtName
AnchorSideTop.Side = asrBottom
Left = 10
Height = 20
Top = 134
Width = 93
Caption = 'Detect string:'
Height = 18
Top = 128
Width = 92
Caption = 'D&etect string:'
FocusControl = edtDetectStr
ParentColor = False
end
object lblDescription: TLabel
@ -329,10 +330,11 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Control = edtDetectStr
AnchorSideTop.Side = asrBottom
Left = 10
Height = 20
Top = 197
Width = 86
Caption = 'Description:'
Height = 18
Top = 188
Width = 79
Caption = '&Description:'
FocusControl = edtDescription
ParentColor = False
end
object edtName: TEdit
@ -342,9 +344,9 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideRight.Control = edtPlugin1
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 97
Width = 506
Height = 28
Top = 92
Width = 510
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Bottom = 8
@ -357,9 +359,9 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideRight.Control = edtPlugin1
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 160
Width = 506
Height = 28
Top = 152
Width = 510
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Bottom = 8
@ -372,9 +374,9 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideRight.Control = edtPlugin1
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 223
Width = 506
Height = 28
Top = 212
Width = 510
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
BorderSpacing.Bottom = 8
@ -387,9 +389,9 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideRight.Control = pnlTweakOther
AnchorSideRight.Side = asrBottom
Left = 10
Height = 29
Top = 34
Width = 506
Height = 28
Top = 32
Width = 510
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 10
BorderSpacing.Top = 6
@ -402,12 +404,13 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideLeft.Control = pnlTweakOther
AnchorSideTop.Control = pnlTweakOther
Left = 10
Height = 20
Height = 18
Top = 8
Width = 51
Width = 45
BorderSpacing.Left = 10
BorderSpacing.Top = 8
Caption = 'Plugin:'
Caption = '&Plugin:'
FocusControl = edtPlugin1
ParentColor = False
end
end
@ -415,13 +418,13 @@ object frmTweakPlugin: TfrmTweakPlugin
end
object pnlButtons: TPanel
Left = 0
Height = 37
Top = 445
Height = 45
Top = 437
Width = 544
Align = alBottom
AutoSize = True
BevelOuter = bvNone
ClientHeight = 37
ClientHeight = 45
ClientWidth = 544
TabOrder = 1
object btnOK: TButton
@ -429,13 +432,13 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = btnCancel
Left = 329
Height = 23
Height = 31
Top = 7
Width = 100
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 8
Caption = 'OK'
Caption = '&OK'
Constraints.MinWidth = 100
Default = True
ModalResult = 1
@ -448,14 +451,14 @@ object frmTweakPlugin: TfrmTweakPlugin
AnchorSideBottom.Control = pnlButtons
AnchorSideBottom.Side = asrBottom
Left = 437
Height = 23
Height = 31
Top = 7
Width = 100
Anchors = [akTop, akRight, akBottom]
AutoSize = True
BorderSpacing.Around = 7
Cancel = True
Caption = 'Cancel'
Caption = '&Cancel'
Constraints.MinWidth = 100
ModalResult = 2
TabOrder = 1

View file

@ -1,24 +1,24 @@
TFRMTWEAKPLUGIN.CAPTION=Tweak plugin
TFRMTWEAKPLUGIN.LBLPLUGIN.CAPTION=Plugin:
TFRMTWEAKPLUGIN.LBLEXTENSION.CAPTION=Extension:
TFRMTWEAKPLUGIN.LBLPLUGIN.CAPTION=&Plugin:
TFRMTWEAKPLUGIN.LBLEXTENSION.CAPTION=&Extension:
TFRMTWEAKPLUGIN.LBLFLAGS.CAPTION=Flags:
TFRMTWEAKPLUGIN.BTNREMOVE.CAPTION=Remove
TFRMTWEAKPLUGIN.BTNADD.CAPTION=Add new
TFRMTWEAKPLUGIN.BTNCHANGE.CAPTION=Change
TFRMTWEAKPLUGIN.CBPK_CAPS_NEW.CAPTION=Can create new archives
TFRMTWEAKPLUGIN.CBPK_CAPS_MODIFY.CAPTION=Can modify exisiting archives
TFRMTWEAKPLUGIN.CBPK_CAPS_MULTIPLE.CAPTION=Archive can contain multiple files
TFRMTWEAKPLUGIN.CBPK_CAPS_DELETE.CAPTION=Can delete files
TFRMTWEAKPLUGIN.CBPK_CAPS_OPTIONS.CAPTION=Supports the options dialogbox
TFRMTWEAKPLUGIN.CBPK_CAPS_MEMPACK.CAPTION=Supports packing in memory
TFRMTWEAKPLUGIN.CBPK_CAPS_BY_CONTENT.CAPTION=Detect archive type by content
TFRMTWEAKPLUGIN.CBPK_CAPS_SEARCHTEXT.CAPTION=Allow searching for text in archives
TFRMTWEAKPLUGIN.CBPK_CAPS_HIDE.CAPTION=Show as normal files (hide packer icon)
TFRMTWEAKPLUGIN.CBPK_CAPS_ENCRYPT.CAPTION=Supports encryption
TFRMTWEAKPLUGIN.BTNDEFAULT.CAPTION=Default
TFRMTWEAKPLUGIN.LBLNAME.CAPTION=Name:
TFRMTWEAKPLUGIN.LBLDETECTSTR.CAPTION=Detect string:
TFRMTWEAKPLUGIN.LBLDESCRIPTION.CAPTION=Description:
TFRMTWEAKPLUGIN.LBLPLUGIN1.CAPTION=Plugin:
TFRMTWEAKPLUGIN.BTNOK.CAPTION=OK
TFRMTWEAKPLUGIN.BTNCANCEL.CAPTION=Cancel
TFRMTWEAKPLUGIN.BTNREMOVE.CAPTION=&Remove
TFRMTWEAKPLUGIN.BTNADD.CAPTION=A&dd new
TFRMTWEAKPLUGIN.BTNCHANGE.CAPTION=C&hange
TFRMTWEAKPLUGIN.CBPK_CAPS_NEW.CAPTION=Can create new archi&ves
TFRMTWEAKPLUGIN.CBPK_CAPS_MODIFY.CAPTION=Can &modify exisiting archives
TFRMTWEAKPLUGIN.CBPK_CAPS_MULTIPLE.CAPTION=&Archive can contain multiple files
TFRMTWEAKPLUGIN.CBPK_CAPS_DELETE.CAPTION=Can de&lete files
TFRMTWEAKPLUGIN.CBPK_CAPS_OPTIONS.CAPTION=S&upports the options dialogbox
TFRMTWEAKPLUGIN.CBPK_CAPS_MEMPACK.CAPTION=Supports pac&king in memory
TFRMTWEAKPLUGIN.CBPK_CAPS_BY_CONTENT.CAPTION=De&tect archive type by content
TFRMTWEAKPLUGIN.CBPK_CAPS_SEARCHTEXT.CAPTION=Allow searchin&g for text in archives
TFRMTWEAKPLUGIN.CBPK_CAPS_HIDE.CAPTION=Sho&w as normal files (hide packer icon)
TFRMTWEAKPLUGIN.CBPK_CAPS_ENCRYPT.CAPTION=Supports e&ncryption
TFRMTWEAKPLUGIN.BTNDEFAULT.CAPTION=De&fault
TFRMTWEAKPLUGIN.LBLNAME.CAPTION=&Name:
TFRMTWEAKPLUGIN.LBLDETECTSTR.CAPTION=D&etect string:
TFRMTWEAKPLUGIN.LBLDESCRIPTION.CAPTION=&Description:
TFRMTWEAKPLUGIN.LBLPLUGIN1.CAPTION=&Plugin:
TFRMTWEAKPLUGIN.BTNOK.CAPTION=&OK
TFRMTWEAKPLUGIN.BTNCANCEL.CAPTION=&Cancel

View file

@ -194,7 +194,7 @@ resourcestring
rsMsgLogTest = 'Test file integrity %s';
rsSearchResult = 'Search result';
rsShowHelpFor = 'Show help for %s';
rsShowHelpFor = '&Show help for %s';
rsClipboardContainsInvalidToolbarData = 'Clipboard doesn''t contain any valid toolbar data.';
// File operations dialog
@ -456,8 +456,16 @@ resourcestring
rsOptNewFilesPosition = 'at the top of the file list;after directories (if directories are sorted before files);at sorted position;at the bottom of the file list';
rsOptUpdatedFilesPosition = 'don''t change position;use the same setting as for new files;to sorted position';
rsOptFileOperationsProgressKind = 'separate window;minimized separate window;operations panel';
// Keyboard
rsOptLetters = 'None;Command Line;Quick Search;Quick Filter';
// Quick Search/Filter
rsOptSearchItems = '&Files;Di&rectories;Files a&nd Directories';
rsOptSearchCase = '&Sensitive;&Insensitive';
rsOptSearchOpt = '&Hide filter panel when not focused';
// Toolbar
rsOptToolbarButtonType = 'Separator;Internal command;External command;Menu';
rsOptToolbarButtonType = 'S&eparator;Inte&rnal command;E&xternal command;Men&u';
//Columns Menu
rsMenuConfigureCustomColumns= 'Configure custom columns';