mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-05 16:38:14 +02:00
added resourcestrings
git-svn-id: trunk@10390 -
This commit is contained in:
parent
dbc57f5c29
commit
711f6bdf70
@ -1,230 +1,200 @@
|
||||
object BuildFileDialog: TBuildFileDialog
|
||||
Caption = 'BuildFileDialog'
|
||||
ClientHeight = 344
|
||||
ClientWidth = 414
|
||||
KeyPreview = True
|
||||
OnCreate = BuildFileDialogCREATE
|
||||
OnKeyDown = BuildFileDialogKEYDOWN
|
||||
PixelsPerInch = 95
|
||||
Position = poScreenCenter
|
||||
HorzScrollBar.Page = 413
|
||||
VertScrollBar.Page = 343
|
||||
Left = 336
|
||||
Height = 344
|
||||
Top = 221
|
||||
Width = 414
|
||||
HorzScrollBar.Page = 413
|
||||
VertScrollBar.Page = 343
|
||||
ActiveControl = OkButton
|
||||
Caption = 'BuildFileDialog'
|
||||
KeyPreview = True
|
||||
OnCreate = BuildFileDialogCREATE
|
||||
OnKeyDown = BuildFileDialogKEYDOWN
|
||||
Position = poScreenCenter
|
||||
object OkButton: TButton
|
||||
Left = 106
|
||||
Height = 25
|
||||
Top = 310
|
||||
Width = 75
|
||||
Anchors = [akLeft, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = 'Ok'
|
||||
OnClick = OkButtonCLICK
|
||||
TabOrder = 0
|
||||
Left = 106
|
||||
end
|
||||
object CancelButton: TButton
|
||||
Left = 234
|
||||
Height = 25
|
||||
Top = 310
|
||||
Width = 75
|
||||
end
|
||||
object CancelButton: TButton
|
||||
Anchors = [akLeft, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = 'Cancel'
|
||||
ModalResult = 2
|
||||
TabOrder = 1
|
||||
Left = 234
|
||||
Height = 25
|
||||
Top = 310
|
||||
Width = 75
|
||||
end
|
||||
object Notebook1: TNotebook
|
||||
Align = alTop
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
PageIndex = 1
|
||||
Height = 304
|
||||
Width = 414
|
||||
Align = alTop
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
PageIndex = 2
|
||||
object GeneralPage: TPage
|
||||
Caption = 'Options'
|
||||
ClientWidth = 410
|
||||
ClientHeight = 274
|
||||
Left = 2
|
||||
Height = 274
|
||||
Top = 28
|
||||
Width = 410
|
||||
object WhenFileIsActiveGroupbox: TGroupBox
|
||||
Caption = 'When this file is active in source editor ...'
|
||||
ClientHeight = 64
|
||||
ClientWidth = 397
|
||||
ParentCtl3D = False
|
||||
TabOrder = 0
|
||||
Left = 6
|
||||
Height = 81
|
||||
Top = 12
|
||||
Width = 401
|
||||
Caption = 'When this file is active in source editor ...'
|
||||
ParentCtl3D = False
|
||||
TabOrder = 0
|
||||
object OverrideBuildProjectCheckbox: TCheckBox
|
||||
Caption = 'On build project execute the Build File command instead'
|
||||
TabOrder = 0
|
||||
Left = 6
|
||||
Height = 20
|
||||
Top = 9
|
||||
Width = 384
|
||||
Width = 344
|
||||
Caption = 'On build project execute the Build File command instead'
|
||||
TabOrder = 0
|
||||
end
|
||||
object OverrideRunProjectCheckbox: TCheckBox
|
||||
Caption = 'On run project execute the Run File command instead'
|
||||
TabOrder = 1
|
||||
Left = 6
|
||||
Height = 20
|
||||
Top = 33
|
||||
Width = 384
|
||||
Width = 329
|
||||
Caption = 'On run project execute the Run File command instead'
|
||||
TabOrder = 1
|
||||
end
|
||||
end
|
||||
end
|
||||
object BuildPage: TPage
|
||||
Caption = 'Build'
|
||||
ClientWidth = 410
|
||||
ClientHeight = 274
|
||||
Left = 2
|
||||
Height = 274
|
||||
Top = 28
|
||||
Width = 410
|
||||
object BuildCommandGroupbox: TGroupBox
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Build Command'
|
||||
ClientHeight = 53
|
||||
ClientWidth = 402
|
||||
ParentCtl3D = False
|
||||
TabOrder = 0
|
||||
Left = 4
|
||||
Height = 70
|
||||
Top = 52
|
||||
Width = 406
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Build Command'
|
||||
ParentCtl3D = False
|
||||
TabOrder = 0
|
||||
object BuildCommandMemo: TMemo
|
||||
Height = 53
|
||||
Width = 402
|
||||
Align = alClient
|
||||
Lines.Strings = (
|
||||
'CompileCommandMemo'
|
||||
)
|
||||
TabOrder = 0
|
||||
Height = 53
|
||||
Width = 402
|
||||
end
|
||||
end
|
||||
object BuildScanForFPCMsgCheckbox: TCheckBox
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Scan for FPC messages'
|
||||
TabOrder = 1
|
||||
Left = 10
|
||||
Height = 20
|
||||
Top = 122
|
||||
Width = 392
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Scan for FPC messages'
|
||||
TabOrder = 1
|
||||
end
|
||||
object BuildScanForMakeMsgCheckbox: TCheckBox
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Scan for Make messages'
|
||||
TabOrder = 2
|
||||
Left = 10
|
||||
Height = 20
|
||||
Top = 146
|
||||
Width = 392
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Scan for Make messages'
|
||||
TabOrder = 2
|
||||
end
|
||||
object BuildWorkingDirGroupbox: TGroupBox
|
||||
Caption = 'Working directory (Leave empty for file path)'
|
||||
ClientHeight = 31
|
||||
ClientWidth = 398
|
||||
ParentCtl3D = False
|
||||
TabOrder = 3
|
||||
Left = 4
|
||||
Height = 48
|
||||
Top = 4
|
||||
Width = 402
|
||||
Caption = 'Working directory (Leave empty for file path)'
|
||||
ParentCtl3D = False
|
||||
TabOrder = 3
|
||||
object BuildWorkDirCombobox: TComboBox
|
||||
Height = 25
|
||||
Width = 364
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
|
||||
MaxLength = 0
|
||||
ParentCtl3D = False
|
||||
TabOrder = 0
|
||||
Text = 'BuildWorkDirCombobox'
|
||||
Height = 25
|
||||
Width = 364
|
||||
end
|
||||
object BuildBrowseWorkDirButton: TButton
|
||||
Left = 364
|
||||
Height = 23
|
||||
Width = 24
|
||||
Anchors = [akTop, akRight]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = '...'
|
||||
OnClick = BuildBrowseWorkDirButtonCLICK
|
||||
TabOrder = 1
|
||||
Left = 364
|
||||
Height = 23
|
||||
Width = 24
|
||||
end
|
||||
end
|
||||
end
|
||||
object RunPage: TPage
|
||||
Caption = 'Run'
|
||||
ClientWidth = 410
|
||||
ClientHeight = 274
|
||||
Left = 2
|
||||
Height = 274
|
||||
Top = 28
|
||||
Width = 410
|
||||
object AlwaysCompileFirstCheckbox: TCheckBox
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Always Build before Run'
|
||||
TabOrder = 0
|
||||
Left = 10
|
||||
Height = 20
|
||||
Top = 4
|
||||
Width = 392
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Always Build before Run'
|
||||
TabOrder = 0
|
||||
end
|
||||
object RunCommandGroupbox: TGroupBox
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Run Command'
|
||||
ClientHeight = 53
|
||||
ClientWidth = 400
|
||||
ParentCtl3D = False
|
||||
TabOrder = 1
|
||||
Left = 4
|
||||
Height = 70
|
||||
Top = 92
|
||||
Width = 404
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Run Command'
|
||||
ParentCtl3D = False
|
||||
TabOrder = 1
|
||||
object RunCommandMemo: TMemo
|
||||
Height = 53
|
||||
Width = 400
|
||||
Align = alClient
|
||||
Lines.Strings = (
|
||||
'CompileCommandMemo'
|
||||
)
|
||||
TabOrder = 0
|
||||
Height = 53
|
||||
Width = 400
|
||||
end
|
||||
end
|
||||
object RunWorkDirGroupbox: TGroupBox
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Working Directory (Leave empty for file path)'
|
||||
ClientHeight = 32
|
||||
ClientWidth = 400
|
||||
ParentCtl3D = False
|
||||
TabOrder = 2
|
||||
Left = 4
|
||||
Height = 49
|
||||
Top = 36
|
||||
Width = 404
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'Working Directory (Leave empty for file path)'
|
||||
ParentCtl3D = False
|
||||
TabOrder = 2
|
||||
object RunWorkDirCombobox: TComboBox
|
||||
Height = 21
|
||||
Width = 364
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
|
||||
MaxLength = 0
|
||||
ParentCtl3D = False
|
||||
TabOrder = 0
|
||||
Text = 'RunWorkDirCombobox'
|
||||
Height = 21
|
||||
Width = 364
|
||||
end
|
||||
object RunBrowseWorkDirButton: TButton
|
||||
Left = 368
|
||||
Height = 23
|
||||
Width = 27
|
||||
HelpType = htKeyword
|
||||
Anchors = [akTop, akRight]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = '...'
|
||||
OnClick = BuildBrowseWorkDirButtonCLICK
|
||||
TabOrder = 1
|
||||
Left = 368
|
||||
Height = 23
|
||||
Width = 27
|
||||
HelpType = htKeyword
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1,72 +1,65 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TBuildFileDialog','FORMDATA',[
|
||||
'TPF0'#16'TBuildFileDialog'#15'BuildFileDialog'#7'Caption'#6#15'BuildFileDial'
|
||||
+'og'#12'ClientHeight'#3'X'#1#11'ClientWidth'#3#158#1#10'KeyPreview'#9#8'OnCr'
|
||||
+'eate'#7#21'BuildFileDialogCREATE'#9'OnKeyDown'#7#22'BuildFileDialogKEYDOWN'
|
||||
+#13'PixelsPerInch'#2'_'#8'Position'#7#14'poScreenCenter'#18'HorzScrollBar.Pa'
|
||||
+'ge'#3#157#1#18'VertScrollBar.Page'#3'W'#1#4'Left'#3'P'#1#6'Height'#3'X'#1#3
|
||||
+'Top'#3#221#0#5'Width'#3#158#1#0#7'TButton'#8'OkButton'#7'Anchors'#11#6'akLe'
|
||||
+'ft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#2'Ok'#7'On'
|
||||
+'Click'#7#13'OkButtonCLICK'#8'TabOrder'#2#0#4'Left'#2'j'#6'Height'#2#25#3'To'
|
||||
+'p'#3'6'#1#5'Width'#2'K'#0#0#7'TButton'#12'CancelButton'#7'Anchors'#11#6'akL'
|
||||
+'eft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'Cancel'
|
||||
+#11'ModalResult'#2#2#8'TabOrder'#2#1#4'Left'#3#234#0#6'Height'#2#25#3'Top'#3
|
||||
+'6'#1#5'Width'#2'K'#0#0#9'TNotebook'#9'Notebook1'#5'Align'#7#5'alTop'#7'Anch'
|
||||
+'ors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#9'PageIndex'#2#1#6'Heig'
|
||||
+'ht'#3'0'#1#5'Width'#3#158#1#0#5'TPage'#11'GeneralPage'#7'Caption'#6#7'Optio'
|
||||
+'ns'#11'ClientWidth'#3#154#1#12'ClientHeight'#3#18#1#4'Left'#2#2#6'Height'#3
|
||||
+#18#1#3'Top'#2#28#5'Width'#3#154#1#0#9'TGroupBox'#24'WhenFileIsActiveGroupbo'
|
||||
+'x'#7'Caption'#6'-When this file is active in source editor ...'#12'ClientHe'
|
||||
+'ight'#2'@'#11'ClientWidth'#3#141#1#11'ParentCtl3D'#8#8'TabOrder'#2#0#4'Left'
|
||||
+#2#6#6'Height'#2'Q'#3'Top'#2#12#5'Width'#3#145#1#0#9'TCheckBox'#28'OverrideB'
|
||||
+'uildProjectCheckbox'#7'Caption'#6'7On build project execute the Build File '
|
||||
+'command instead'#8'TabOrder'#2#0#4'Left'#2#6#6'Height'#2#20#3'Top'#2#9#5'Wi'
|
||||
+'dth'#3#128#1#0#0#9'TCheckBox'#26'OverrideRunProjectCheckbox'#7'Caption'#6'3'
|
||||
+'On run project execute the Run File command instead'#8'TabOrder'#2#1#4'Left'
|
||||
+#2#6#6'Height'#2#20#3'Top'#2'!'#5'Width'#3#128#1#0#0#0#0#5'TPage'#9'BuildPag'
|
||||
+'e'#7'Caption'#6#5'Build'#11'ClientWidth'#3#154#1#12'ClientHeight'#3#18#1#4
|
||||
+'Left'#2#2#6'Height'#3#18#1#3'Top'#2#28#5'Width'#3#154#1#0#9'TGroupBox'#20'B'
|
||||
+'uildCommandGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Captio'
|
||||
+'n'#6#13'Build Command'#12'ClientHeight'#2'5'#11'ClientWidth'#3#146#1#11'Par'
|
||||
+'entCtl3D'#8#8'TabOrder'#2#0#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'4'#5'Width'
|
||||
+#3#150#1#0#5'TMemo'#16'BuildCommandMemo'#5'Align'#7#8'alClient'#13'Lines.Str'
|
||||
+'ings'#1#6#18'CompileCommandMemo'#0#8'TabOrder'#2#0#6'Height'#2'5'#5'Width'#3
|
||||
+#146#1#0#0#0#9'TCheckBox'#26'BuildScanForFPCMsgCheckbox'#7'Anchors'#11#5'akT'
|
||||
+'op'#6'akLeft'#7'akRight'#0#7'Caption'#6#21'Scan for FPC messages'#8'TabOrde'
|
||||
+'r'#2#1#4'Left'#2#10#6'Height'#2#20#3'Top'#2'z'#5'Width'#3#136#1#0#0#9'TChec'
|
||||
+'kBox'#27'BuildScanForMakeMsgCheckbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'ak'
|
||||
+'Right'#0#7'Caption'#6#22'Scan for Make messages'#8'TabOrder'#2#2#4'Left'#2
|
||||
+#10#6'Height'#2#20#3'Top'#3#146#0#5'Width'#3#136#1#0#0#9'TGroupBox'#23'Build'
|
||||
+'WorkingDirGroupbox'#7'Caption'#6'-Working directory (Leave empty for file p'
|
||||
+'ath)'#12'ClientHeight'#2#31#11'ClientWidth'#3#142#1#11'ParentCtl3D'#8#8'Tab'
|
||||
+'Order'#2#3#4'Left'#2#4#6'Height'#2'0'#3'Top'#2#4#5'Width'#3#146#1#0#9'TComb'
|
||||
+'oBox'#20'BuildWorkDirCombobox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0
|
||||
+#16'AutoCompleteText'#11#22'cbactEndOfLineComplete'#20'cbactSearchAscending'
|
||||
+#0#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#4'Text'#6#20'BuildWork'
|
||||
+'DirCombobox'#6'Height'#2#25#5'Width'#3'l'#1#0#0#7'TButton'#24'BuildBrowseWo'
|
||||
+'rkDirButton'#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBord'
|
||||
+'er'#2#4#7'Caption'#6#3'...'#7'OnClick'#7#29'BuildBrowseWorkDirButtonCLICK'#8
|
||||
+'TabOrder'#2#1#4'Left'#3'l'#1#6'Height'#2#23#5'Width'#2#24#0#0#0#0#5'TPage'#7
|
||||
+'RunPage'#7'Caption'#6#3'Run'#11'ClientWidth'#3#154#1#12'ClientHeight'#3#18#1
|
||||
+#4'Left'#2#2#6'Height'#3#18#1#3'Top'#2#28#5'Width'#3#154#1#0#9'TCheckBox'#26
|
||||
+'AlwaysCompileFirstCheckbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7
|
||||
+'Caption'#6#23'Always Build before Run'#8'TabOrder'#2#0#4'Left'#2#10#6'Heigh'
|
||||
+'t'#2#20#3'Top'#2#4#5'Width'#3#136#1#0#0#9'TGroupBox'#18'RunCommandGroupbox'
|
||||
+#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#11'Run Command'
|
||||
+#12'ClientHeight'#2'5'#11'ClientWidth'#3#144#1#11'ParentCtl3D'#8#8'TabOrder'
|
||||
+#2#1#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'\'#5'Width'#3#148#1#0#5'TMemo'#14'R'
|
||||
+'unCommandMemo'#5'Align'#7#8'alClient'#13'Lines.Strings'#1#6#18'CompileComma'
|
||||
+'ndMemo'#0#8'TabOrder'#2#0#6'Height'#2'5'#5'Width'#3#144#1#0#0#0#9'TGroupBox'
|
||||
+#18'RunWorkDirGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Capt'
|
||||
+'ion'#6'-Working Directory (Leave empty for file path)'#12'ClientHeight'#2' '
|
||||
+#11'ClientWidth'#3#144#1#11'ParentCtl3D'#8#8'TabOrder'#2#2#4'Left'#2#4#6'Hei'
|
||||
+'ght'#2'1'#3'Top'#2'$'#5'Width'#3#148#1#0#9'TComboBox'#18'RunWorkDirCombobox'
|
||||
+#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#16'AutoCompleteText'#11#22'cb'
|
||||
+'actEndOfLineComplete'#20'cbactSearchAscending'#0#9'MaxLength'#2#0#11'Parent'
|
||||
+'Ctl3D'#8#8'TabOrder'#2#0#4'Text'#6#18'RunWorkDirCombobox'#6'Height'#2#21#5
|
||||
,'Width'#3'l'#1#0#0#7'TButton'#22'RunBrowseWorkDirButton'#7'Anchors'#11#5'akT'
|
||||
+'op'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#3'...'#7'On'
|
||||
+'Click'#7#29'BuildBrowseWorkDirButtonCLICK'#8'TabOrder'#2#1#4'Left'#3'p'#1#6
|
||||
+'Height'#2#23#5'Width'#2#27#8'HelpType'#7#9'htKeyword'#0#0#0#0#0#0
|
||||
'TPF0'#16'TBuildFileDialog'#15'BuildFileDialog'#4'Left'#3'P'#1#6'Height'#3'X'
|
||||
+#1#3'Top'#3#221#0#5'Width'#3#158#1#18'HorzScrollBar.Page'#3#157#1#18'VertScr'
|
||||
+'ollBar.Page'#3'W'#1#13'ActiveControl'#7#8'OkButton'#7'Caption'#6#15'BuildFi'
|
||||
+'leDialog'#10'KeyPreview'#9#8'OnCreate'#7#21'BuildFileDialogCREATE'#9'OnKeyD'
|
||||
+'own'#7#22'BuildFileDialogKEYDOWN'#8'Position'#7#14'poScreenCenter'#0#7'TBut'
|
||||
+'ton'#8'OkButton'#4'Left'#2'j'#6'Height'#2#25#3'Top'#3'6'#1#5'Width'#2'K'#7
|
||||
+'Anchors'#11#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Cap'
|
||||
+'tion'#6#2'Ok'#7'OnClick'#7#13'OkButtonCLICK'#8'TabOrder'#2#0#0#0#7'TButton'
|
||||
+#12'CancelButton'#4'Left'#3#234#0#6'Height'#2#25#3'Top'#3'6'#1#5'Width'#2'K'
|
||||
+#7'Anchors'#11#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#7'C'
|
||||
+'aption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#1#0#0#9'TNotebook'#9
|
||||
+'Notebook1'#6'Height'#3'0'#1#5'Width'#3#158#1#5'Align'#7#5'alTop'#7'Anchors'
|
||||
+#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#9'PageIndex'#2#2#0#5'TPage'
|
||||
+#11'GeneralPage'#7'Caption'#6#7'Options'#0#9'TGroupBox'#24'WhenFileIsActiveG'
|
||||
+'roupbox'#4'Left'#2#6#6'Height'#2'Q'#3'Top'#2#12#5'Width'#3#145#1#7'Caption'
|
||||
+#6'-When this file is active in source editor ...'#11'ParentCtl3D'#8#8'TabOr'
|
||||
+'der'#2#0#0#9'TCheckBox'#28'OverrideBuildProjectCheckbox'#4'Left'#2#6#6'Heig'
|
||||
+'ht'#2#20#3'Top'#2#9#5'Width'#3'X'#1#7'Caption'#6'7On build project execute '
|
||||
+'the Build File command instead'#8'TabOrder'#2#0#0#0#9'TCheckBox'#26'Overrid'
|
||||
+'eRunProjectCheckbox'#4'Left'#2#6#6'Height'#2#20#3'Top'#2'!'#5'Width'#3'I'#1
|
||||
+#7'Caption'#6'3On run project execute the Run File command instead'#8'TabOrd'
|
||||
+'er'#2#1#0#0#0#0#5'TPage'#9'BuildPage'#7'Caption'#6#5'Build'#0#9'TGroupBox'
|
||||
+#20'BuildCommandGroupbox'#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'4'#5'Width'#3
|
||||
+#150#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#13'Build C'
|
||||
+'ommand'#11'ParentCtl3D'#8#8'TabOrder'#2#0#0#5'TMemo'#16'BuildCommandMemo'#6
|
||||
+'Height'#2'5'#5'Width'#3#146#1#5'Align'#7#8'alClient'#13'Lines.Strings'#1#6
|
||||
+#18'CompileCommandMemo'#0#8'TabOrder'#2#0#0#0#0#9'TCheckBox'#26'BuildScanFor'
|
||||
+'FPCMsgCheckbox'#4'Left'#2#10#6'Height'#2#20#3'Top'#2'z'#5'Width'#3#136#1#7
|
||||
+'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#21'Scan for FPC me'
|
||||
+'ssages'#8'TabOrder'#2#1#0#0#9'TCheckBox'#27'BuildScanForMakeMsgCheckbox'#4
|
||||
+'Left'#2#10#6'Height'#2#20#3'Top'#3#146#0#5'Width'#3#136#1#7'Anchors'#11#5'a'
|
||||
+'kTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#22'Scan for Make messages'#8'TabO'
|
||||
+'rder'#2#2#0#0#9'TGroupBox'#23'BuildWorkingDirGroupbox'#4'Left'#2#4#6'Height'
|
||||
+#2'0'#3'Top'#2#4#5'Width'#3#146#1#7'Caption'#6'-Working directory (Leave emp'
|
||||
+'ty for file path)'#11'ParentCtl3D'#8#8'TabOrder'#2#3#0#9'TComboBox'#20'Buil'
|
||||
+'dWorkDirCombobox'#6'Height'#2#25#5'Width'#3'l'#1#7'Anchors'#11#5'akTop'#6'a'
|
||||
+'kLeft'#7'akRight'#0#16'AutoCompleteText'#11#22'cbactEndOfLineComplete'#20'c'
|
||||
+'bactSearchAscending'#0#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#4
|
||||
+'Text'#6#20'BuildWorkDirCombobox'#0#0#7'TButton'#24'BuildBrowseWorkDirButton'
|
||||
+#4'Left'#3'l'#1#6'Height'#2#23#5'Width'#2#24#7'Anchors'#11#5'akTop'#7'akRigh'
|
||||
+'t'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#3'...'#7'OnClick'#7#29
|
||||
+'BuildBrowseWorkDirButtonCLICK'#8'TabOrder'#2#1#0#0#0#0#5'TPage'#7'RunPage'#7
|
||||
+'Caption'#6#3'Run'#0#9'TCheckBox'#26'AlwaysCompileFirstCheckbox'#4'Left'#2#10
|
||||
+#6'Height'#2#20#3'Top'#2#4#5'Width'#3#136#1#7'Anchors'#11#5'akTop'#6'akLeft'
|
||||
+#7'akRight'#0#7'Caption'#6#23'Always Build before Run'#8'TabOrder'#2#0#0#0#9
|
||||
+'TGroupBox'#18'RunCommandGroupbox'#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'\'#5
|
||||
+'Width'#3#148#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6#11
|
||||
+'Run Command'#11'ParentCtl3D'#8#8'TabOrder'#2#1#0#5'TMemo'#14'RunCommandMemo'
|
||||
+#6'Height'#2'5'#5'Width'#3#144#1#5'Align'#7#8'alClient'#13'Lines.Strings'#1#6
|
||||
+#18'CompileCommandMemo'#0#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#18'RunWorkDirGr'
|
||||
+'oupbox'#4'Left'#2#4#6'Height'#2'1'#3'Top'#2'$'#5'Width'#3#148#1#7'Anchors'
|
||||
+#11#5'akTop'#6'akLeft'#7'akRight'#0#7'Caption'#6'-Working Directory (Leave e'
|
||||
+'mpty for file path)'#11'ParentCtl3D'#8#8'TabOrder'#2#2#0#9'TComboBox'#18'Ru'
|
||||
+'nWorkDirCombobox'#6'Height'#2#21#5'Width'#3'l'#1#7'Anchors'#11#5'akTop'#6'a'
|
||||
+'kLeft'#7'akRight'#0#16'AutoCompleteText'#11#22'cbactEndOfLineComplete'#20'c'
|
||||
+'bactSearchAscending'#0#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#4
|
||||
+'Text'#6#18'RunWorkDirCombobox'#0#0#7'TButton'#22'RunBrowseWorkDirButton'#4
|
||||
+'Left'#3'p'#1#6'Height'#2#23#5'Width'#2#27#8'HelpType'#7#9'htKeyword'#7'Anch'
|
||||
+'ors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6
|
||||
+#3'...'#7'OnClick'#7#29'BuildBrowseWorkDirButtonCLICK'#8'TabOrder'#2#1#0#0#0
|
||||
+#0#0#0
|
||||
]);
|
||||
|
@ -7,7 +7,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, LResources, LCLType, Forms, Controls, Graphics, Dialogs,
|
||||
Buttons, ExtCtrls, StdCtrls, BasicCodeTools, FileUtil, IDEProcs, InputHistory,
|
||||
EnvironmentOpts, TransferMacros;
|
||||
LazarusIDEStrConsts, EnvironmentOpts, TransferMacros;
|
||||
|
||||
type
|
||||
TIDEDirective = (
|
||||
@ -90,7 +90,7 @@ type
|
||||
procedure BuildBrowseWorkDirButtonCLICK(Sender: TObject);
|
||||
procedure BuildFileDialogCREATE(Sender: TObject);
|
||||
procedure BuildFileDialogKEYDOWN(Sender: TObject; var Key: Word;
|
||||
Shift: TShiftState);
|
||||
Shift: TShiftState);
|
||||
procedure BuildMacroSelectionBoxAddMacro(Sender: TObject);
|
||||
procedure OkButtonCLICK(Sender: TObject);
|
||||
procedure RunMacroSelectionBoxAddMacro(Sender: TObject);
|
||||
@ -510,7 +510,7 @@ begin
|
||||
BuildMacroSelectionBox:=TMacroSelectionBox.Create(Self);
|
||||
with BuildMacroSelectionBox do begin
|
||||
Name:='BuildMacroSelectionBox';
|
||||
Caption:='Macros';
|
||||
Caption:=lisEdtExtToolMacros;
|
||||
OnAddMacro:=@BuildMacroSelectionBoxAddMacro;
|
||||
AnchorToNeighbour(akTop,5,BuildScanForMakeMsgCheckbox);
|
||||
BorderSpacing.Around:=3;
|
||||
@ -521,13 +521,31 @@ begin
|
||||
RunMacroSelectionBox:=TMacroSelectionBox.Create(Self);
|
||||
with RunMacroSelectionBox do begin
|
||||
Name:='RunMacroSelectionBox';
|
||||
Caption:='Macros';
|
||||
Caption:=lisEdtExtToolMacros;
|
||||
OnAddMacro:=@RunMacroSelectionBoxAddMacro;
|
||||
AnchorToNeighbour(akTop,5,RunCommandGroupbox);
|
||||
BorderSpacing.Around:=3;
|
||||
Align:=alBottom;
|
||||
Parent:=RunPage;
|
||||
end;
|
||||
|
||||
GeneralPage.Caption:=dlgFROpts;
|
||||
WhenFileIsActiveGroupbox.Caption:=lisBFWhenThisFileIsActiveInSourceEditor;
|
||||
OverrideBuildProjectCheckbox.Caption:=
|
||||
lisBFOnBuildProjectExecuteTheBuildFileCommandInstead;
|
||||
OverrideRunProjectCheckbox.Caption:=
|
||||
lisBFOnRunProjectExecuteTheRunFileCommandInstead;
|
||||
|
||||
BuildPage.Caption:=lisMenuBuild;
|
||||
BuildWorkingDirGroupbox.Caption:=lisBFWorkingDirectoryLeaveEmptyForFilePath;
|
||||
BuildCommandGroupbox.Caption:=lisBFBuildCommand;
|
||||
BuildScanForFPCMsgCheckbox.Caption:=lisCOScanForFPCMessages;
|
||||
BuildScanForMakeMsgCheckbox.Caption:=lisCOScanForMakeMessages;
|
||||
|
||||
RunPage.Caption:=lisMenuProjectRun;
|
||||
AlwaysCompileFirstCheckbox.Caption:=lisBFAlwaysBuildBeforeRun;
|
||||
RunWorkDirGroupbox.Caption:=lisBFWorkingDirectoryLeaveEmptyForFilePath2;
|
||||
RunCommandGroupbox.Caption:=lisBFRunCommand;
|
||||
end;
|
||||
|
||||
procedure TBuildFileDialog.BuildBrowseWorkDirButtonCLICK(Sender: TObject);
|
||||
@ -540,9 +558,9 @@ begin
|
||||
try
|
||||
InputHistories.ApplyFileDialogSettings(OpenDialog);
|
||||
if Sender=BuildBrowseWorkDirButton then
|
||||
OpenDialog.Title:='Working directory for building'
|
||||
OpenDialog.Title:=lisWorkingDirectoryForBuilding
|
||||
else if Sender=RunBrowseWorkDirButton then
|
||||
OpenDialog.Title:='Working directory for run'
|
||||
OpenDialog.Title:=lisWorkingDirectoryForRun
|
||||
else
|
||||
exit;
|
||||
OpenDialog.Filename:='';
|
||||
@ -605,7 +623,7 @@ end;
|
||||
|
||||
procedure TBuildFileDialog.UpdateCaption;
|
||||
begin
|
||||
Caption:='Configure Build '+Filename;
|
||||
Caption:=Format(lisConfigureBuild, [Filename]);
|
||||
end;
|
||||
|
||||
procedure TBuildFileDialog.ReadDirectiveList;
|
||||
@ -745,7 +763,7 @@ begin
|
||||
AddButton:=TButton.Create(Self);
|
||||
with AddButton do begin
|
||||
Name:='AddButton';
|
||||
Caption:='Add';
|
||||
Caption:=lisCodeTemplAdd;
|
||||
OnClick:=@AddButtonClick;
|
||||
Enabled:=false;
|
||||
AutoSize:=true;
|
||||
|
@ -268,10 +268,17 @@ resourcestring
|
||||
lisMenuProjectOptions = 'Project Options ...';
|
||||
|
||||
lisMenuBuild = 'Build';
|
||||
lisBFWorkingDirectoryLeaveEmptyForFilePath = 'Working directory (Leave '
|
||||
+'empty for file path)';
|
||||
lisBFBuildCommand = 'Build Command';
|
||||
lisMenuBuildAll = 'Build all';
|
||||
lisMenuQuickCompile = 'Quick compile';
|
||||
lisMenuAbortBuild = 'Abort Build';
|
||||
lisMenuProjectRun = 'Run';
|
||||
lisBFAlwaysBuildBeforeRun = 'Always Build before Run';
|
||||
lisBFWorkingDirectoryLeaveEmptyForFilePath2 = 'Working Directory (Leave '
|
||||
+'empty for file path)';
|
||||
lisBFRunCommand = 'Run Command';
|
||||
lisMenuPause = 'Pause';
|
||||
lisMenuStepInto = 'Step into';
|
||||
lisMenuStepOver = 'Step over';
|
||||
@ -1275,6 +1282,12 @@ resourcestring
|
||||
dlgTextToFing = '&Text to Find';
|
||||
dlgReplaceWith = '&Replace With';
|
||||
dlgFROpts = 'Options';
|
||||
lisBFWhenThisFileIsActiveInSourceEditor = 'When this file is active in '
|
||||
+'source editor ...';
|
||||
lisBFOnBuildProjectExecuteTheBuildFileCommandInstead = 'On build project '
|
||||
+'execute the Build File command instead';
|
||||
lisBFOnRunProjectExecuteTheRunFileCommandInstead = 'On run project execute '
|
||||
+'the Run File command instead';
|
||||
lisCEFilter = '(Filter)';
|
||||
dlgCaseSensitive = 'Case Sensitive';
|
||||
lisDistinguishBigAndSmallLettersEGAAndA = 'Distinguish big and small '
|
||||
@ -1715,6 +1728,7 @@ resourcestring
|
||||
dlgUnitDepCaption = 'Unit dependencies';
|
||||
dlgUnitDepBrowse = 'Open';
|
||||
dlgUnitDepRefresh = 'Refresh';
|
||||
lisToDoGoto = 'Goto';
|
||||
|
||||
// Doc Editor
|
||||
lisDocumentationEditor = 'Documentation Editor';
|
||||
@ -2297,6 +2311,9 @@ resourcestring
|
||||
lisEdtExtToolAlt = 'Alt';
|
||||
lisEdtExtToolShift = 'Shift';
|
||||
lisEdtExtToolMacros = 'Macros';
|
||||
lisWorkingDirectoryForBuilding = 'Working directory for building';
|
||||
lisWorkingDirectoryForRun = 'Working directory for run';
|
||||
lisConfigureBuild = 'Configure Build %s';
|
||||
lisEdtExtToolInsert = 'Insert';
|
||||
lisEdtExtToolTitleAndFilenameRequired = 'Title and Filename required';
|
||||
lisEdtExtToolAValidToolNeedsAtLeastATitleAndAFilename = 'A valid tool needs '
|
||||
@ -3195,7 +3212,7 @@ resourcestring
|
||||
lisPListType = 'Type';
|
||||
lisPListAll = '<All>';
|
||||
lisPListNone = '<None>';
|
||||
lisUIClearIncludedByReference = 'Clear included by reference';
|
||||
lisUIClearIncludedByReference = 'Clear include cache';
|
||||
|
||||
implementation
|
||||
end.
|
||||
|
@ -1,25 +1,26 @@
|
||||
object frmTodo: TfrmTodo
|
||||
ActiveControl = lvTodo
|
||||
Caption = 'frmTodo'
|
||||
ClientHeight = 300
|
||||
ClientWidth = 500
|
||||
KeyPreview = True
|
||||
OnKeyDown = FormKeyDown
|
||||
PixelsPerInch = 96
|
||||
Position = poScreenCenter
|
||||
HorzScrollBar.Page = 499
|
||||
VertScrollBar.Page = 299
|
||||
Left = 313
|
||||
Height = 300
|
||||
Top = 610
|
||||
Width = 500
|
||||
HorzScrollBar.Page = 499
|
||||
VertScrollBar.Page = 299
|
||||
ActiveControl = lvTodo
|
||||
Caption = 'frmTodo'
|
||||
KeyPreview = True
|
||||
OnCreate = FormCreate
|
||||
OnKeyDown = FormKeyDown
|
||||
Position = poScreenCenter
|
||||
object StatusBar: TStatusBar
|
||||
Panels = <>
|
||||
Height = 23
|
||||
Top = 277
|
||||
Height = 20
|
||||
Top = 280
|
||||
Width = 500
|
||||
Panels = <>
|
||||
end
|
||||
object lvTodo: TListView
|
||||
Height = 232
|
||||
Top = 48
|
||||
Width = 500
|
||||
Align = alClient
|
||||
Columns = <
|
||||
item
|
||||
@ -40,60 +41,49 @@ object frmTodo: TfrmTodo
|
||||
end>
|
||||
RowSelect = True
|
||||
ScrollBars = ssAutoBoth
|
||||
TabOrder = 0
|
||||
ViewStyle = vsReport
|
||||
OnDblClick = tbGotoClick
|
||||
Height = 229
|
||||
Top = 48
|
||||
Width = 500
|
||||
end
|
||||
object ToolBar: TToolBar
|
||||
Height = 48
|
||||
Width = 500
|
||||
ButtonHeight = 46
|
||||
ButtonWidth = 47
|
||||
Caption = 'ToolBar'
|
||||
Flat = True
|
||||
Height = 48
|
||||
Images = ImageList1
|
||||
ParentShowHint = False
|
||||
ShowCaptions = True
|
||||
ShowHint = True
|
||||
TabOrder = 1
|
||||
Height = 48
|
||||
Width = 500
|
||||
object tbOptions: TToolButton
|
||||
Left = 145
|
||||
Top = 2
|
||||
Caption = 'Options'
|
||||
ImageIndex = 3
|
||||
Visible = False
|
||||
Left = 142
|
||||
Height = 46
|
||||
Top = 2
|
||||
Width = 47
|
||||
end
|
||||
object tbPrint: TToolButton
|
||||
Left = 98
|
||||
Top = 2
|
||||
Caption = 'Print'
|
||||
ImageIndex = 2
|
||||
Visible = False
|
||||
Left = 95
|
||||
Height = 46
|
||||
Top = 2
|
||||
Width = 47
|
||||
end
|
||||
object tbRefresh: TToolButton
|
||||
Left = 1
|
||||
Top = 2
|
||||
Caption = 'Refresh'
|
||||
ImageIndex = 0
|
||||
OnClick = tbRefreshClick
|
||||
Left = 1
|
||||
Height = 46
|
||||
Top = 2
|
||||
Width = 47
|
||||
end
|
||||
object tbGoto: TToolButton
|
||||
Left = 51
|
||||
Top = 2
|
||||
Caption = 'Goto'
|
||||
ImageIndex = 1
|
||||
OnClick = tbGotoClick
|
||||
Left = 48
|
||||
Height = 46
|
||||
Top = 2
|
||||
Width = 47
|
||||
end
|
||||
end
|
||||
object ImageList1: TImageList
|
||||
|
106
ide/todolist.lrs
106
ide/todolist.lrs
@ -1,55 +1,55 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TfrmTodo','FORMDATA',[
|
||||
'TPF0'#8'TfrmTodo'#7'frmTodo'#13'ActiveControl'#7#6'lvTodo'#7'Caption'#6#7'fr'
|
||||
+'mTodo'#12'ClientHeight'#3','#1#11'ClientWidth'#3#244#1#10'KeyPreview'#9#9'O'
|
||||
+'nKeyDown'#7#11'FormKeyDown'#13'PixelsPerInch'#2'`'#8'Position'#7#14'poScree'
|
||||
+'nCenter'#18'HorzScrollBar.Page'#3#243#1#18'VertScrollBar.Page'#3'+'#1#4'Lef'
|
||||
+'t'#3'9'#1#6'Height'#3','#1#3'Top'#3'b'#2#5'Width'#3#244#1#0#10'TStatusBar'#9
|
||||
+'StatusBar'#6'Panels'#14#0#6'Height'#2#23#3'Top'#3#21#1#5'Width'#3#244#1#0#0
|
||||
+#9'TListView'#6'lvTodo'#5'Align'#7#8'alClient'#7'Columns'#14#1#8'AutoSize'#9
|
||||
+#7'Caption'#6#7'Caption'#0#1#8'AutoSize'#9#7'Caption'#6#7'Caption'#0#1#8'Aut'
|
||||
+'oSize'#9#7'Caption'#6#7'Caption'#0#1#8'AutoSize'#9#7'Caption'#6#7'Caption'#0
|
||||
+#0#9'RowSelect'#9#10'ScrollBars'#7#10'ssAutoBoth'#9'ViewStyle'#7#8'vsReport'
|
||||
+#10'OnDblClick'#7#11'tbGotoClick'#6'Height'#3#229#0#3'Top'#2'0'#5'Width'#3
|
||||
+#244#1#0#0#8'TToolBar'#7'ToolBar'#12'ButtonHeight'#2'.'#11'ButtonWidth'#2'/'
|
||||
+#7'Caption'#6#7'ToolBar'#4'Flat'#9#6'Height'#2'0'#6'Images'#7#10'ImageList1'
|
||||
+#14'ParentShowHint'#8#12'ShowCaptions'#9#8'ShowHint'#9#8'TabOrder'#2#1#6'Hei'
|
||||
+'ght'#2'0'#5'Width'#3#244#1#0#11'TToolButton'#9'tbOptions'#7'Caption'#6#7'Op'
|
||||
+'tions'#10'ImageIndex'#2#3#7'Visible'#8#4'Left'#3#142#0#6'Height'#2'.'#3'Top'
|
||||
+#2#2#5'Width'#2'/'#0#0#11'TToolButton'#7'tbPrint'#7'Caption'#6#5'Print'#10'I'
|
||||
+'mageIndex'#2#2#7'Visible'#8#4'Left'#2'_'#6'Height'#2'.'#3'Top'#2#2#5'Width'
|
||||
+#2'/'#0#0#11'TToolButton'#9'tbRefresh'#7'Caption'#6#7'Refresh'#10'ImageIndex'
|
||||
+#2#0#7'OnClick'#7#14'tbRefreshClick'#4'Left'#2#1#6'Height'#2'.'#3'Top'#2#2#5
|
||||
+'Width'#2'/'#0#0#11'TToolButton'#6'tbGoto'#7'Caption'#6#4'Goto'#10'ImageInde'
|
||||
+'x'#2#1#7'OnClick'#7#11'tbGotoClick'#4'Left'#2'0'#6'Height'#2'.'#3'Top'#2#2#5
|
||||
+'Width'#2'/'#0#0#0#10'TImageList'#10'ImageList1'#4'left'#2'y'#3'top'#2'*'#6
|
||||
+'Bitmap'#10#232#6#0#0'li'#4#0#0#0#16#0#0#0#16#0#0#0#156#1#0#0'/* XPM */'#10
|
||||
+'static char *graphic[] = {'#10'"16 16 3 1",'#10'". c None",'#10'", c #31313'
|
||||
+'1",'#10'"- c #5AADFF",'#10'"................",'#10'"................",'#10
|
||||
+'"................",'#10'".......,,,,,,...",'#10'".....,,---,,,,..",'#10'"..'
|
||||
+'..,,--,,,.....",'#10'"....,--,........",'#10'"...,,--,........",'#10'"...,-'
|
||||
+'-,.........",'#10'"...,--,.........",'#10'"...,--,.........",'#10'".,,---,,'
|
||||
+',,......",'#10'"..,-----,.......",'#10'"...,,-,,........",'#10'"....,,,....'
|
||||
+'.....",'#10'".....,.........."}'#10#171#1#0#0'/* XPM */'#10'static char *gr'
|
||||
+'aphic[] = {'#10'"16 16 4 1",'#10'". c None",'#10'", c #313131",'#10'"- c #F'
|
||||
+'FFFFF",'#10'"* c #FF0000",'#10'"................",'#10'"................",'
|
||||
+#10'"...,,,,,,,......",'#10'"...,------,.....",'#10'"...,-------,....",'#10
|
||||
+'"...,--------,...",'#10'"...,--------,...",'#10'"...,--------,...",'#10'".*'
|
||||
+'.,--------,...",'#10'"..***********...",'#10'".*.,--------,...",'#10'"...,-'
|
||||
+'-------,...",'#10'"...,--------,...",'#10'"...,,,,,,,,,,...",'#10'"........'
|
||||
+'........",'#10'"................"}'#10#201#1#0#0'/* XPM */'#10'static char '
|
||||
+'*graphic[] = {'#10'"16 16 6 1",'#10'". c #000000",'#10'", c #848484",'#10'"'
|
||||
+'- c #313131",'#10'"* c None",'#10'"a c #C7C7C7",'#10'"b c #00FF00",'#10'"..'
|
||||
+',.-...........",'#10'"..,.-...........",'#10'"****************",'#10'"*****'
|
||||
+'***********",'#10'"*******-------**",'#10'"******-.....-***",'#10'"*****-..'
|
||||
+'...-****",'#10'"****-.....-----*",'#10'"***--------aa--*",'#10'"**-aaaaaaaa'
|
||||
+'a-,-*",'#10'"**----------,,-*",'#10'"**-a.abaaa-,,--*",'#10'"**------------'
|
||||
+'**",'#10'"**-aaaaaaaa--***",'#10'"***---------****",'#10'"****************"'
|
||||
+'}'#10#186#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"16 16 5 1",'
|
||||
+#10'". c None",'#10'", c #313131",'#10'"- c #005AC6",'#10'"* c #FFFFFF",'#10
|
||||
+'"a c #FF0000",'#10'"................",'#10'".,,,,,,,,,,,,,,.",'#10'".,-----'
|
||||
+'-------,.",'#10'".,,,,,,,,,,,,,,.",'#10'".,************,.",'#10'".,*a***aa*'
|
||||
+'****,.",'#10'".,*aa*aa******,.",'#10'".,**aaa*******,.",'#10'".,***a*******'
|
||||
+'*,.",'#10'".,*a***aa*****,.",'#10'".,*aa*aa******,.",'#10'".,**aaa*******,.'
|
||||
+'",'#10'".,***a********,.",'#10'".,************,.",'#10'".,,,,,,,,,,,,,,.",'
|
||||
+#10'"................"}'#10#0#0#0
|
||||
'TPF0'#8'TfrmTodo'#7'frmTodo'#4'Left'#3'9'#1#6'Height'#3','#1#3'Top'#3'b'#2#5
|
||||
+'Width'#3#244#1#18'HorzScrollBar.Page'#3#243#1#18'VertScrollBar.Page'#3'+'#1
|
||||
+#13'ActiveControl'#7#6'lvTodo'#7'Caption'#6#7'frmTodo'#10'KeyPreview'#9#8'On'
|
||||
+'Create'#7#10'FormCreate'#9'OnKeyDown'#7#11'FormKeyDown'#8'Position'#7#14'po'
|
||||
+'ScreenCenter'#0#10'TStatusBar'#9'StatusBar'#6'Height'#2#20#3'Top'#3#24#1#5
|
||||
+'Width'#3#244#1#6'Panels'#14#0#0#0#9'TListView'#6'lvTodo'#6'Height'#3#232#0#3
|
||||
+'Top'#2'0'#5'Width'#3#244#1#5'Align'#7#8'alClient'#7'Columns'#14#1#8'AutoSiz'
|
||||
+'e'#9#7'Caption'#6#7'Caption'#0#1#8'AutoSize'#9#7'Caption'#6#7'Caption'#0#1#8
|
||||
+'AutoSize'#9#7'Caption'#6#7'Caption'#0#1#8'AutoSize'#9#7'Caption'#6#7'Captio'
|
||||
+'n'#0#0#9'RowSelect'#9#10'ScrollBars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#9'Vie'
|
||||
+'wStyle'#7#8'vsReport'#10'OnDblClick'#7#11'tbGotoClick'#0#0#8'TToolBar'#7'To'
|
||||
+'olBar'#6'Height'#2'0'#5'Width'#3#244#1#12'ButtonHeight'#2'.'#11'ButtonWidth'
|
||||
+#2'/'#7'Caption'#6#7'ToolBar'#4'Flat'#9#6'Images'#7#10'ImageList1'#14'Parent'
|
||||
+'ShowHint'#8#12'ShowCaptions'#9#8'ShowHint'#9#8'TabOrder'#2#1#0#11'TToolButt'
|
||||
+'on'#9'tbOptions'#4'Left'#3#145#0#3'Top'#2#2#7'Caption'#6#7'Options'#10'Imag'
|
||||
+'eIndex'#2#3#7'Visible'#8#0#0#11'TToolButton'#7'tbPrint'#4'Left'#2'b'#3'Top'
|
||||
+#2#2#7'Caption'#6#5'Print'#10'ImageIndex'#2#2#7'Visible'#8#0#0#11'TToolButto'
|
||||
+'n'#9'tbRefresh'#4'Left'#2#1#3'Top'#2#2#7'Caption'#6#7'Refresh'#10'ImageInde'
|
||||
+'x'#2#0#7'OnClick'#7#14'tbRefreshClick'#0#0#11'TToolButton'#6'tbGoto'#4'Left'
|
||||
+#2'3'#3'Top'#2#2#7'Caption'#6#4'Goto'#10'ImageIndex'#2#1#7'OnClick'#7#11'tbG'
|
||||
+'otoClick'#0#0#0#10'TImageList'#10'ImageList1'#4'left'#2'y'#3'top'#2'*'#6'Bi'
|
||||
+'tmap'#10#232#6#0#0'li'#4#0#0#0#16#0#0#0#16#0#0#0#156#1#0#0'/* XPM */'#10'st'
|
||||
+'atic char *graphic[] = {'#10'"16 16 3 1",'#10'". c None",'#10'", c #313131"'
|
||||
+','#10'"- c #5AADFF",'#10'"................",'#10'"................",'#10'".'
|
||||
+'...............",'#10'".......,,,,,,...",'#10'".....,,---,,,,..",'#10'"....'
|
||||
+',,--,,,.....",'#10'"....,--,........",'#10'"...,,--,........",'#10'"...,--,'
|
||||
+'.........",'#10'"...,--,.........",'#10'"...,--,.........",'#10'".,,---,,,,'
|
||||
+'......",'#10'"..,-----,.......",'#10'"...,,-,,........",'#10'"....,,,......'
|
||||
+'...",'#10'".....,.........."}'#10#171#1#0#0'/* XPM */'#10'static char *grap'
|
||||
+'hic[] = {'#10'"16 16 4 1",'#10'". c None",'#10'", c #313131",'#10'"- c #FFF'
|
||||
+'FFF",'#10'"* c #FF0000",'#10'"................",'#10'"................",'#10
|
||||
+'"...,,,,,,,......",'#10'"...,------,.....",'#10'"...,-------,....",'#10'"..'
|
||||
+'.,--------,...",'#10'"...,--------,...",'#10'"...,--------,...",'#10'".*.,-'
|
||||
+'-------,...",'#10'"..***********...",'#10'".*.,--------,...",'#10'"...,----'
|
||||
+'----,...",'#10'"...,--------,...",'#10'"...,,,,,,,,,,...",'#10'"...........'
|
||||
+'.....",'#10'"................"}'#10#201#1#0#0'/* XPM */'#10'static char *gr'
|
||||
+'aphic[] = {'#10'"16 16 6 1",'#10'". c #000000",'#10'", c #848484",'#10'"- c'
|
||||
+' #313131",'#10'"* c None",'#10'"a c #C7C7C7",'#10'"b c #00FF00",'#10'"..,.-'
|
||||
+'...........",'#10'"..,.-...........",'#10'"****************",'#10'"********'
|
||||
+'********",'#10'"*******-------**",'#10'"******-.....-***",'#10'"*****-.....'
|
||||
+'-****",'#10'"****-.....-----*",'#10'"***--------aa--*",'#10'"**-aaaaaaaaa-,'
|
||||
+'-*",'#10'"**----------,,-*",'#10'"**-a.abaaa-,,--*",'#10'"**------------**"'
|
||||
+','#10'"**-aaaaaaaa--***",'#10'"***---------****",'#10'"****************"}'
|
||||
+#10#186#1#0#0'/* XPM */'#10'static char *graphic[] = {'#10'"16 16 5 1",'#10
|
||||
+'". c None",'#10'", c #313131",'#10'"- c #005AC6",'#10'"* c #FFFFFF",'#10'"a'
|
||||
+' c #FF0000",'#10'"................",'#10'".,,,,,,,,,,,,,,.",'#10'".,-------'
|
||||
+'-----,.",'#10'".,,,,,,,,,,,,,,.",'#10'".,************,.",'#10'".,*a***aa***'
|
||||
+'**,.",'#10'".,*aa*aa******,.",'#10'".,**aaa*******,.",'#10'".,***a********,'
|
||||
+'.",'#10'".,*a***aa*****,.",'#10'".,*aa*aa******,.",'#10'".,**aaa*******,.",'
|
||||
+#10'".,***a********,.",'#10'".,************,.",'#10'".,,,,,,,,,,,,,,.",'#10
|
||||
+'"................"}'#10#0#0#0
|
||||
]);
|
||||
|
@ -78,6 +78,7 @@ type
|
||||
tbOptions: TToolButton;
|
||||
tbPrint: TToolButton;
|
||||
tbRefresh: TToolButton;
|
||||
procedure FormCreate(Sender: TObject);
|
||||
procedure tbGotoClick(Sender: TObject);
|
||||
procedure tbRefreshClick(Sender: TObject);
|
||||
procedure FormKeyDown(Sender: TObject; var Key: Word; Shift:TShiftState);
|
||||
@ -119,27 +120,6 @@ uses
|
||||
constructor TfrmTodo.Create(AOwner: TComponent);
|
||||
begin
|
||||
inherited Create(AOwner);
|
||||
fBuild:=False;
|
||||
fScannedFile:=TStringList.Create;
|
||||
|
||||
Caption := lisTodoListCaption;
|
||||
|
||||
tbRefresh.Hint := lisTodolistRefresh;
|
||||
tbGoto.Hint := listodoListGotoLine;
|
||||
tbPrint.Hint :=listodoListPrintList;
|
||||
tbOptions.Hint := lisToDoListOptions;
|
||||
|
||||
with lvTodo do
|
||||
begin
|
||||
Column[0].Caption := ' !';
|
||||
Column[0].Width := 25;
|
||||
Column[1].Caption := lisToDoLDescription;
|
||||
Column[1].Width := 250;
|
||||
Column[2].Caption := lisToDoLFile;
|
||||
Column[2].Width := 150;
|
||||
Column[3].Caption := lisToDoLLine;
|
||||
Column[3].Width := 50;
|
||||
end;
|
||||
end;
|
||||
|
||||
destructor TfrmTodo.Destroy;
|
||||
@ -271,6 +251,36 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TfrmTodo.FormCreate(Sender: TObject);
|
||||
begin
|
||||
fBuild:=False;
|
||||
fScannedFile:=TStringList.Create;
|
||||
|
||||
Caption := lisTodoListCaption;
|
||||
|
||||
tbRefresh.Hint := lisTodolistRefresh;
|
||||
tbGoto.Hint := listodoListGotoLine;
|
||||
tbPrint.Hint :=listodoListPrintList;
|
||||
tbOptions.Hint := lisToDoListOptions;
|
||||
|
||||
tbOptions.Caption:=dlgFROpts;
|
||||
tbPrint.Caption:=srVK_PRINT;
|
||||
tbRefresh.Caption:=dlgUnitDepRefresh;
|
||||
tbGoto.Caption:=lisToDoGoto;
|
||||
|
||||
with lvTodo do
|
||||
begin
|
||||
Column[0].Caption := ' !';
|
||||
Column[0].Width := 25;
|
||||
Column[1].Caption := lisToDoLDescription;
|
||||
Column[1].Width := 250;
|
||||
Column[2].Caption := lisToDoLFile;
|
||||
Column[2].Width := 150;
|
||||
Column[3].Caption := lisToDoLLine;
|
||||
Column[3].Width := 50;
|
||||
end;
|
||||
end;
|
||||
|
||||
//Find the {$I filename} directive. If exists, call LoadFile()
|
||||
procedure TfrmTodo.ParseDirective(aDirective : String);
|
||||
Var N : Integer;
|
||||
|
@ -560,6 +560,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -888,6 +892,10 @@ msgstr "Bou"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Bou CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Bou Komponent"
|
||||
@ -1269,7 +1277,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1532,6 +1540,10 @@ msgstr ""
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3144,6 +3156,10 @@ msgstr ""
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr ""
|
||||
@ -5020,10 +5036,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6168,6 +6192,10 @@ msgstr ""
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr ""
|
||||
@ -8832,6 +8860,10 @@ msgstr ""
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr ""
|
||||
@ -8876,6 +8908,10 @@ msgstr ""
|
||||
msgid "Words"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr ""
|
||||
@ -8884,6 +8920,18 @@ msgstr ""
|
||||
msgid "Working directory"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr ""
|
||||
|
@ -557,6 +557,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -885,6 +889,10 @@ msgstr ""
|
||||
msgid "Build CodeTools"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr ""
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr ""
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3141,6 +3153,10 @@ msgstr ""
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr ""
|
||||
@ -5017,10 +5033,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6165,6 +6189,10 @@ msgstr ""
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr ""
|
||||
@ -8829,6 +8857,10 @@ msgstr ""
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr ""
|
||||
@ -8873,6 +8905,10 @@ msgstr ""
|
||||
msgid "Words"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr ""
|
||||
@ -8881,6 +8917,18 @@ msgstr ""
|
||||
msgid "Working directory"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr ""
|
||||
|
@ -557,6 +557,10 @@ msgstr "La tecla d'alternativa defineix el mode columna"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Construeix sempre (inclús si res ha canviat)"
|
||||
@ -885,6 +889,10 @@ msgstr "Munta"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Munta les eines del codi"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Munta el component"
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr "Fitxers de configuració:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Configura %sMunta el Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr "Configura Arxiu Build+Run ..."
|
||||
@ -3141,6 +3153,10 @@ msgstr "Vés a l'editor anterior"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Vés a la directiva include del fitxer inclòs actual"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Vés a XY"
|
||||
@ -5017,10 +5033,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Ajuda en línia"
|
||||
@ -6165,6 +6189,10 @@ msgstr "Banda de goma"
|
||||
msgid "Run"
|
||||
msgstr "Executa"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Executa el fitxer"
|
||||
@ -8829,6 +8857,10 @@ msgstr "Quan es creen noves formes, afegeix-les a les formes creades automàtica
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "On"
|
||||
@ -8873,6 +8905,10 @@ msgstr "Completa la paraula"
|
||||
msgid "Words"
|
||||
msgstr "Paraules"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Directori de treball:"
|
||||
@ -8881,6 +8917,18 @@ msgstr "Directori de treball:"
|
||||
msgid "Working directory"
|
||||
msgstr "Directori de treball"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "S'ha produït un error d'escriptura"
|
||||
|
@ -560,6 +560,10 @@ msgstr "ALT-Taste aktiviert Spaltenmodus"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr "Alternative Taste (oder 2-Tastenkombination)"
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Immer einen Build durchführen (selbst dann, wenn nichts geändert wurde)"
|
||||
@ -888,6 +892,10 @@ msgstr "Erstellen"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Codetools erstellen"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Komponenten erstellen"
|
||||
@ -1269,7 +1277,7 @@ msgid "Clear dependency filename"
|
||||
msgstr "Namen der Abhängigkeit löschen"
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1532,6 +1540,10 @@ msgstr "Konfigurationsdateien:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "%sLazarus erstellen%s konfigurieren"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr "Konfiguriere Erzeuge+Starte Datei ..."
|
||||
@ -3144,6 +3156,10 @@ msgstr "Zu vorigem Editorfenster wechseln"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Zur Include-Anweisung der aktuellen Include-Datei springen"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Zu Position springen"
|
||||
@ -5020,10 +5036,18 @@ msgstr "Alte Vorfahren"
|
||||
msgid "Old Class"
|
||||
msgstr "Alte Klasse"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "Wenn nichts ansteht"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Onlinehilfe"
|
||||
@ -6168,6 +6192,10 @@ msgstr "Gummiband"
|
||||
msgid "Run"
|
||||
msgstr "Start"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Datei ausführen"
|
||||
@ -8832,6 +8860,10 @@ msgstr "Beim Erzeugen neuer Formulare diese zu den Autogenerierten hinzufügen"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "Beim Umschalten von Dateien im Quelltexteditor"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Wo"
|
||||
@ -8876,6 +8908,10 @@ msgstr "Wortvervollständigung"
|
||||
msgid "Words"
|
||||
msgstr "Worte"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Arbeitsverzeichnis:"
|
||||
@ -8884,6 +8920,18 @@ msgstr "Arbeitsverzeichnis:"
|
||||
msgid "Working directory"
|
||||
msgstr "Arbeitsverzeichnis"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Schreibfehler"
|
||||
|
@ -556,6 +556,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -884,6 +888,10 @@ msgstr "Construir"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Construir CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Construir Componente"
|
||||
@ -1265,7 +1273,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1528,6 +1536,10 @@ msgstr "Archivos de configuración"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Configurar %s Construcción de Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3140,6 +3152,10 @@ msgstr "Ir a editor anterior"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Ir a directiva de inclusión del archivo include actual"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Ir a XY"
|
||||
@ -5016,10 +5032,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Ayuda en línea"
|
||||
@ -6164,6 +6188,10 @@ msgstr "Banda borrador"
|
||||
msgid "Run"
|
||||
msgstr "Ejecutar"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Ejecutar archivo"
|
||||
@ -8828,6 +8856,10 @@ msgstr "Al crear formularios nuevos, añadirlos a formularios creados automátic
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Donde"
|
||||
@ -8872,6 +8904,10 @@ msgstr "Completado de palabra"
|
||||
msgid "Words"
|
||||
msgstr "Palabras"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Directorio de Trabajo:"
|
||||
@ -8880,6 +8916,18 @@ msgstr "Directorio de Trabajo:"
|
||||
msgid "Working directory"
|
||||
msgstr "Directorio de trabajo"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr ""
|
||||
|
@ -546,6 +546,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Aina käännetään kaikki (vaikka mikään ei muuttunutkaan)"
|
||||
@ -874,6 +878,10 @@ msgstr "Käännä"
|
||||
msgid "Build CodeTools"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr ""
|
||||
@ -1255,7 +1263,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1518,6 +1526,10 @@ msgstr ""
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3130,6 +3142,10 @@ msgstr ""
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr ""
|
||||
@ -5006,10 +5022,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6154,6 +6178,10 @@ msgstr "Alueen reunojen esille tuominen"
|
||||
msgid "Run"
|
||||
msgstr "Suorita"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr ""
|
||||
@ -8818,6 +8846,10 @@ msgstr "Kun tehdään uusi lomake niin se laitetaan automaattisesti luotaviin lo
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Mistä"
|
||||
@ -8862,6 +8894,10 @@ msgstr ""
|
||||
msgid "Words"
|
||||
msgstr "Sanat"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr ""
|
||||
@ -8870,6 +8906,18 @@ msgstr ""
|
||||
msgid "Working directory"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Tiedoston tallentaminen ei onnistunut"
|
||||
|
@ -558,6 +558,10 @@ msgstr "La touche Alt met en mode colonne"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Toujours construit (seulement si rien n'est changé)"
|
||||
@ -886,6 +890,10 @@ msgstr "Construire"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Construire les outils de code"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Construire les composants"
|
||||
@ -1267,7 +1275,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1530,6 +1538,10 @@ msgstr "Fichiers de configuration:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Configurer %sConstruire Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3142,6 +3154,10 @@ msgstr "Aller à l'éditeur précédent"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Aller à la déclaration d'inclusion du fichier courant"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Aller en XY"
|
||||
@ -5018,10 +5034,18 @@ msgstr "Anciens ancêtres"
|
||||
msgid "Old Class"
|
||||
msgstr "Ancienne classe"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Aide en ligne"
|
||||
@ -6166,6 +6190,10 @@ msgstr "Elastique"
|
||||
msgid "Run"
|
||||
msgstr "Exécuter"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Exécuter le fichier"
|
||||
@ -8830,6 +8858,10 @@ msgstr "Ajouter les nouvelles fiches à celles créées automatiquement"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Ou"
|
||||
@ -8874,6 +8906,10 @@ msgstr "Compléter le mot"
|
||||
msgid "Words"
|
||||
msgstr "Mots"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Répertoire de travail:"
|
||||
@ -8882,6 +8918,18 @@ msgstr "Répertoire de travail:"
|
||||
msgid "Working directory"
|
||||
msgstr "Répertoire de travail"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Erreur d'écriture"
|
||||
|
@ -557,6 +557,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -885,6 +889,10 @@ msgstr ""
|
||||
msgid "Build CodeTools"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr ""
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr ""
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3141,6 +3153,10 @@ msgstr ""
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr ""
|
||||
@ -5017,10 +5033,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6165,6 +6189,10 @@ msgstr ""
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr ""
|
||||
@ -8829,6 +8857,10 @@ msgstr ""
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr ""
|
||||
@ -8873,6 +8905,10 @@ msgstr ""
|
||||
msgid "Words"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr ""
|
||||
@ -8881,6 +8917,18 @@ msgstr ""
|
||||
msgid "Working directory"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr ""
|
||||
|
@ -560,6 +560,10 @@ msgstr "Mode kolom set Alt-Key"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Selalu membangun (meskipun jika tidak ada yang berubah)"
|
||||
@ -888,6 +892,10 @@ msgstr "Bangun"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Bangun CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Bangun Komponen"
|
||||
@ -1269,7 +1277,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1532,6 +1540,10 @@ msgstr "File Konfig:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Konfigurasi %sBuild Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3144,6 +3156,10 @@ msgstr "Pergi ke editor sebelumnya"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Pergi ke direktif include dari file include saat ini"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Pergi ke XY"
|
||||
@ -5020,10 +5036,18 @@ msgstr "Karuhun Lama"
|
||||
msgid "Old Class"
|
||||
msgstr "Kelas Lama"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "Saat menganggur"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Panduan Online"
|
||||
@ -6168,6 +6192,10 @@ msgstr "Glang karet"
|
||||
msgid "Run"
|
||||
msgstr "Jalankan"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Jalankan File"
|
||||
@ -8832,6 +8860,10 @@ msgstr "ketika pembuatan form baru, tambahkan ke otomatis-buat form"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "Saat menukar file dalam editor sumber"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Dimana"
|
||||
@ -8876,6 +8908,10 @@ msgstr "Penyempurnaan kata"
|
||||
msgid "Words"
|
||||
msgstr "Kata"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Direktori Kerja:"
|
||||
@ -8884,6 +8920,18 @@ msgstr "Direktori Kerja:"
|
||||
msgid "Working directory"
|
||||
msgstr "Direktori Pekerjaan"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Penulisan Salah"
|
||||
|
@ -558,6 +558,10 @@ msgstr "Alt-tasto imposta la modalità colonna"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Esegui sempre il build (anche se non è cambiato nulla)"
|
||||
@ -886,6 +890,10 @@ msgstr "Esegui build"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Esegui build dei CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Esegui build del componente"
|
||||
@ -1267,7 +1275,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1530,6 +1538,10 @@ msgstr "File di configurazione:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Configura %sEsegui un build di Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3142,6 +3154,10 @@ msgstr "Vai all'editor precedente"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Vai alla direttiva include del file include corrente"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Vai a XY"
|
||||
@ -5018,10 +5034,18 @@ msgstr "Vecchi antenati"
|
||||
msgid "Old Class"
|
||||
msgstr "Vecchia classe"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "On idle"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Aiuto in linea"
|
||||
@ -6166,6 +6190,10 @@ msgstr "Elastico"
|
||||
msgid "Run"
|
||||
msgstr "Esegui"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Esegui il file"
|
||||
@ -8830,6 +8858,10 @@ msgstr "Durante la creazione di nuove form, aggiungile alle form auto-create"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "Durante lo switch dei file nell'editor dei sorgenti"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Dove"
|
||||
@ -8874,6 +8906,10 @@ msgstr "Completamento parole"
|
||||
msgid "Words"
|
||||
msgstr "Parole"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Directory di lavoro:"
|
||||
@ -8882,6 +8918,18 @@ msgstr "Directory di lavoro:"
|
||||
msgid "Working directory"
|
||||
msgstr "Directory di lavoro"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Errore di scrittura"
|
||||
|
@ -556,6 +556,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "常に生成(変更がなくても)"
|
||||
@ -884,6 +888,10 @@ msgstr "生成"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "コードツール生成"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "コンポーネント生成"
|
||||
@ -1265,7 +1273,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1528,6 +1536,10 @@ msgstr "コンフィグファイル:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3140,6 +3152,10 @@ msgstr ""
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr ""
|
||||
@ -5016,10 +5032,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "オンラインヘルプ"
|
||||
@ -6164,6 +6188,10 @@ msgstr ""
|
||||
msgid "Run"
|
||||
msgstr "実行"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "ファイルを実行"
|
||||
@ -8828,6 +8856,10 @@ msgstr ""
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr ""
|
||||
@ -8872,6 +8904,10 @@ msgstr ""
|
||||
msgid "Words"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "作業ディレクトリ:"
|
||||
@ -8880,6 +8916,18 @@ msgstr "作業ディレクトリ:"
|
||||
msgid "Working directory"
|
||||
msgstr "作業ディレクトリ"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "書き込みエラー"
|
||||
|
@ -557,6 +557,10 @@ msgstr "Alt-toets stelt kolommodus in"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr "Alternatieve toets (of 2 toets combinaties)"
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Altijd bouwen (ook als er niks is gewijzigd)"
|
||||
@ -885,6 +889,10 @@ msgstr "Bouw"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Bouw CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Bouw Component"
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr "Maak schoon afhankelijkheid bestandsnaam "
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr "Configuratiebestanden:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Configureer %sLazarus Bouwen%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr "Configureer Bouw+Start bestand ..."
|
||||
@ -3141,6 +3153,10 @@ msgstr "Ga naar vorige tekstverwerker"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Ga naar include opdracht van huidig include bestand"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Ga naar XY"
|
||||
@ -5017,10 +5033,18 @@ msgstr "Oude Ancestors"
|
||||
msgid "Old Class"
|
||||
msgstr "Oude Klasse"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "On idle"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Online help"
|
||||
@ -6165,6 +6189,10 @@ msgstr "Elastiek"
|
||||
msgid "Run"
|
||||
msgstr "Starten"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Start bestand"
|
||||
@ -8829,6 +8857,10 @@ msgstr "Nieuwe forms toevoegen aan de \"auto-created forms\""
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "Bij het wisselen van bestand in de bewerker"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Waar"
|
||||
@ -8873,6 +8905,10 @@ msgstr "Woord completering"
|
||||
msgid "Words"
|
||||
msgstr "Woorden"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Werkdirectory:"
|
||||
@ -8881,6 +8917,18 @@ msgstr "Werkdirectory:"
|
||||
msgid "Working directory"
|
||||
msgstr "Werkdirectory"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Schrijffout"
|
||||
|
@ -549,6 +549,10 @@ msgstr "Tecla Alt ajusta o modo de coluna"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Sempre build (exatamente se nada foi modificado)"
|
||||
@ -877,6 +881,10 @@ msgstr "Build"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Build Ferramentas de Codigo"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Build Componente"
|
||||
@ -1258,7 +1266,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1521,6 +1529,10 @@ msgstr "Arquivos de configuração:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Configurar %sBuild Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3133,6 +3145,10 @@ msgstr "Ir para o editor anterior"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Ir para diretiva include do atual 'arquivo include'"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Ir para XY"
|
||||
@ -5009,10 +5025,18 @@ msgstr "Ancestor Antigo"
|
||||
msgid "Old Class"
|
||||
msgstr "Classe Antiga"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "Em idle"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Ajuda Online"
|
||||
@ -6157,6 +6181,10 @@ msgstr "Faixa de Borracha"
|
||||
msgid "Run"
|
||||
msgstr "Executar"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Executar Arquivo"
|
||||
@ -8821,6 +8849,10 @@ msgstr "Quando criar novos formulários, adiciona-los para formulários criados
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "Quando atualizar arquivo em source editor"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Onde"
|
||||
@ -8865,6 +8897,10 @@ msgstr "Complementação de Palavra"
|
||||
msgid "Words"
|
||||
msgstr "Palavras"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Diretorio de Trabalho:"
|
||||
@ -8873,6 +8909,18 @@ msgstr "Diretorio de Trabalho:"
|
||||
msgid "Working directory"
|
||||
msgstr "Diretório de trabalho"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Erro de Escrita"
|
||||
|
@ -559,6 +559,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -887,6 +891,10 @@ msgstr "Buduj"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Buduj CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Buduj komponent"
|
||||
@ -1268,7 +1276,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1531,6 +1539,10 @@ msgstr "Pliki konfiguracyjne:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Konfiguruj %sBuduj Lazarusa%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3143,6 +3155,10 @@ msgstr "Przejdź do poprzedniego edytora"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Przejdź do $include dla wstawionego pliku"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Idź do XY"
|
||||
@ -5019,10 +5035,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6167,6 +6191,10 @@ msgstr "Obwódka do rozciągania"
|
||||
msgid "Run"
|
||||
msgstr "Uruchom"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Uruchom plik"
|
||||
@ -8831,6 +8859,10 @@ msgstr "Nowe formularze dodawaj do tworzonych automatycznie"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Szukaj"
|
||||
@ -8875,6 +8907,10 @@ msgstr "Uzupełnienie słowa"
|
||||
msgid "Words"
|
||||
msgstr "Wielkość liter"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Katalog roboczy:"
|
||||
@ -8883,6 +8919,18 @@ msgstr "Katalog roboczy:"
|
||||
msgid "Working directory"
|
||||
msgstr "Katalog roboczy"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Błąd zapisu"
|
||||
|
@ -557,6 +557,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -885,6 +889,10 @@ msgstr "Buduj"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Buduj CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Buduj komponent"
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr "Pliki konfiguracyjne:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Konfiguruj %sBuduj Lazarusa%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3141,6 +3153,10 @@ msgstr "Przejd
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Przejd¼ do $include dla wstawionego pliku"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Id¼ do XY"
|
||||
@ -5017,10 +5033,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6165,6 +6189,10 @@ msgstr "Obw
|
||||
msgid "Run"
|
||||
msgstr "Uruchom"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Uruchom plik"
|
||||
@ -8829,6 +8857,10 @@ msgstr "Nowe formularze dodawaj do tworzonych automatycznie"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Szukaj"
|
||||
@ -8873,6 +8905,10 @@ msgstr "Uzupe
|
||||
msgid "Words"
|
||||
msgstr "Wielko¶æ liter"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Katalog roboczy:"
|
||||
@ -8881,6 +8917,18 @@ msgstr "Katalog roboczy:"
|
||||
msgid "Working directory"
|
||||
msgstr "Katalog roboczy"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "B³±d zapisu"
|
||||
|
@ -557,6 +557,10 @@ msgstr ""
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -885,6 +889,10 @@ msgstr "Buduj"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Buduj CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Buduj komponent"
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr "Pliki konfiguracyjne:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Konfiguruj %sBuduj Lazarusa%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3141,6 +3153,10 @@ msgstr "Przejd
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "PrzejdŸ do $include dla wstawionego pliku"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "IdŸ do XY"
|
||||
@ -5017,10 +5033,18 @@ msgstr ""
|
||||
msgid "Old Class"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr ""
|
||||
@ -6165,6 +6189,10 @@ msgstr "Obw
|
||||
msgid "Run"
|
||||
msgstr "Uruchom"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Uruchom plik"
|
||||
@ -8829,6 +8857,10 @@ msgstr "Nowe formularze dodawaj do tworzonych automatycznie"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Szukaj"
|
||||
@ -8873,6 +8905,10 @@ msgstr "Uzupe
|
||||
msgid "Words"
|
||||
msgstr "WielkoϾ liter"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Katalog roboczy:"
|
||||
@ -8881,6 +8917,18 @@ msgstr "Katalog roboczy:"
|
||||
msgid "Working directory"
|
||||
msgstr "Katalog roboczy"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "B³¹d zapisu"
|
||||
|
@ -750,6 +750,14 @@ msgstr ""
|
||||
msgid "Build"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenubuildall
|
||||
msgid "Build all"
|
||||
msgstr ""
|
||||
@ -766,6 +774,18 @@ msgstr ""
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenupause
|
||||
msgid "Pause"
|
||||
msgstr ""
|
||||
@ -3838,6 +3858,18 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liscefilter
|
||||
msgid "(Filter)"
|
||||
msgstr ""
|
||||
@ -5362,6 +5394,10 @@ msgstr ""
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdocumentationeditor
|
||||
msgid "Documentation Editor"
|
||||
msgstr ""
|
||||
@ -7026,6 +7062,18 @@ msgstr ""
|
||||
msgid "Macros"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolinsert
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
@ -9575,6 +9623,6 @@ msgid "<None>"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
|
@ -557,6 +557,10 @@ msgstr "Кнопка Alt - режим колонок"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr "Альтернативная клавиша (или двухклавишная комбинация)"
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "Собирать всегда (даже при отсутствии изменений)"
|
||||
@ -885,6 +889,10 @@ msgstr "Сборка"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Собрать CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Собрать компонент"
|
||||
@ -1266,7 +1274,7 @@ msgid "Clear dependency filename"
|
||||
msgstr "Очистить имя файла зависимости"
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1529,6 +1537,10 @@ msgstr "Файлы настроек:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Настройка сборки Lazarus"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr "Настроить Сборку+Запуск ..."
|
||||
@ -3141,6 +3153,10 @@ msgstr "Переход к предыдущему редактору"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Переход по директиве include текущего включаемого файла"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Переход по координате"
|
||||
@ -5017,10 +5033,18 @@ msgstr "Старые Предки"
|
||||
msgid "Old Class"
|
||||
msgstr "Старый Класс"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "При простое"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Оперативная справка"
|
||||
@ -6165,6 +6189,10 @@ msgstr "Поле заметок"
|
||||
msgid "Run"
|
||||
msgstr "Запуск"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Запустить файл"
|
||||
@ -8829,6 +8857,10 @@ msgstr "При создании новых форм добавить их к а
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "При переключении файла в редакторе исходного кода"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Где"
|
||||
@ -8873,6 +8905,10 @@ msgstr "Завершение слов"
|
||||
msgid "Words"
|
||||
msgstr "Слова"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Рабочий каталог:"
|
||||
@ -8881,6 +8917,18 @@ msgstr "Рабочий каталог:"
|
||||
msgid "Working directory"
|
||||
msgstr "Рабочий каталог"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Ошибка записи"
|
||||
|
@ -546,6 +546,10 @@ msgstr "Alt-клавіша встан. реж. колонки"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr ""
|
||||
@ -874,6 +878,10 @@ msgstr "Побудувати"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "Побудувати CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "Побудувати компонент"
|
||||
@ -1255,7 +1263,7 @@ msgid "Clear dependency filename"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1518,6 +1526,10 @@ msgstr "Файли налаштувань:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "Налаштувати %sПобудувати Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr ""
|
||||
@ -3130,6 +3142,10 @@ msgstr "Перейти до попереднього редактора"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "Перейти за директивою include поточного включеного файлу"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "Перейти за координатою XY"
|
||||
@ -5006,10 +5022,18 @@ msgstr "Старі предки"
|
||||
msgid "Old Class"
|
||||
msgstr "Старий клас"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "В паузах"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "Мережева довідка"
|
||||
@ -6154,6 +6178,10 @@ msgstr "Поле приміток"
|
||||
msgid "Run"
|
||||
msgstr "Запуск"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "Запустити файл"
|
||||
@ -8818,6 +8846,10 @@ msgstr "При створенні нових форм додати їх до а
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "Коли перемикається файл в редакторі коду"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "Де"
|
||||
@ -8862,6 +8894,10 @@ msgstr "Завершення слів"
|
||||
msgid "Words"
|
||||
msgstr "Слова"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "Робоча тека:"
|
||||
@ -8870,6 +8906,18 @@ msgstr "Робоча тека:"
|
||||
msgid "Working directory"
|
||||
msgstr "Робоча тека"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "Помилка запису"
|
||||
|
@ -560,6 +560,10 @@ msgstr "Alt-Key 设置为列编辑模式"
|
||||
msgid "Alternative key (or 2 keys combination)"
|
||||
msgstr "可选键(或者两个键一起)"
|
||||
|
||||
#: lazarusidestrconsts:lisbfalwaysbuildbeforerun
|
||||
msgid "Always Build before Run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisprojoptsalwaysbuildevenifnothingchanged
|
||||
msgid "Always build (even if nothing changed)"
|
||||
msgstr "总是编译(即使没有任何改变) "
|
||||
@ -888,6 +892,10 @@ msgstr "构建"
|
||||
msgid "Build CodeTools"
|
||||
msgstr "构建 CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:lisbfbuildcommand
|
||||
msgid "Build Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisbuildcomponent
|
||||
msgid "Build Component"
|
||||
msgstr "构建组件"
|
||||
@ -1269,7 +1277,7 @@ msgid "Clear dependency filename"
|
||||
msgstr "清除依赖关系的文件名"
|
||||
|
||||
#: lazarusidestrconsts:lisuiclearincludedbyreference
|
||||
msgid "Clear included by reference"
|
||||
msgid "Clear include cache"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebugoptionsfrmclearlogonrun
|
||||
@ -1532,6 +1540,10 @@ msgstr "配置文件:"
|
||||
msgid "Configure %sBuild Lazarus%s"
|
||||
msgstr "配置 %s重建 Lazarus%s"
|
||||
|
||||
#: lazarusidestrconsts:lisconfigurebuild
|
||||
msgid "Configure Build %s"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuconfigbuildfile
|
||||
msgid "Configure Build+Run File ..."
|
||||
msgstr "配置 编译+运行 文件 ..."
|
||||
@ -3144,6 +3156,10 @@ msgstr "上一个编辑窗口"
|
||||
msgid "Go to to include directive of current include file"
|
||||
msgstr "前往当前文件包含指示处"
|
||||
|
||||
#: lazarusidestrconsts:listodogoto
|
||||
msgid "Goto"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:srkmecgotoxy
|
||||
msgid "Goto XY"
|
||||
msgstr "转到 XY"
|
||||
@ -5020,10 +5036,18 @@ msgstr "旧的祖先"
|
||||
msgid "Old Class"
|
||||
msgstr "旧的类"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonbuildprojectexecutethebuildfilecommandinstead
|
||||
msgid "On build project execute the Build File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisceoonidle
|
||||
msgid "On idle"
|
||||
msgstr "空闲状态"
|
||||
|
||||
#: lazarusidestrconsts:lisbfonrunprojectexecutetherunfilecommandinstead
|
||||
msgid "On run project execute the Run File command instead"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuonlinehelp
|
||||
msgid "Online Help"
|
||||
msgstr "在线帮助"
|
||||
@ -6168,6 +6192,10 @@ msgstr "橡皮圈"
|
||||
msgid "Run"
|
||||
msgstr "运行"
|
||||
|
||||
#: lazarusidestrconsts:lisbfruncommand
|
||||
msgid "Run Command"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenurunfile
|
||||
msgid "Run File"
|
||||
msgstr "运行文件"
|
||||
@ -8832,6 +8860,10 @@ msgstr "创建一个新的窗体时,添加到自动创建的窗体"
|
||||
msgid "When switching file in source editor"
|
||||
msgstr "当再源代码编辑器中切换文件时"
|
||||
|
||||
#: lazarusidestrconsts:lisbfwhenthisfileisactiveinsourceeditor
|
||||
msgid "When this file is active in source editor ..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisfindfilewhere
|
||||
msgid "Where"
|
||||
msgstr "位置"
|
||||
@ -8876,6 +8908,10 @@ msgstr "单词自动完成"
|
||||
msgid "Words"
|
||||
msgstr "单词"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath2
|
||||
msgid "Working Directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisedtexttoolworkingdirectory
|
||||
msgid "Working Directory:"
|
||||
msgstr "工作目录:"
|
||||
@ -8884,6 +8920,18 @@ msgstr "工作目录:"
|
||||
msgid "Working directory"
|
||||
msgstr "工作目录"
|
||||
|
||||
#: lazarusidestrconsts:lisbfworkingdirectoryleaveemptyforfilepath
|
||||
msgid "Working directory (Leave empty for file path)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforbuilding
|
||||
msgid "Working directory for building"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisworkingdirectoryforrun
|
||||
msgid "Working directory for run"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:liswriteerror
|
||||
msgid "Write Error"
|
||||
msgstr "写入错误"
|
||||
|
Loading…
Reference in New Issue
Block a user