mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 03:40:31 +02:00
MG: applied localization from Vasily
git-svn-id: trunk@3367 -
This commit is contained in:
parent
9fe39dbb20
commit
92a823fa10
@ -37,7 +37,7 @@ interface
|
||||
uses
|
||||
Forms, SysUtils, Buttons, Classes, Graphics, GraphType, StdCtrls, LCLType,
|
||||
LCLLinux, LMessages, Controls, ComCtrls, ExtCtrls, PropEdits, GraphPropEdits,
|
||||
TypInfo, Messages, LResources, Laz_XMLCfg, Menus, Dialogs;
|
||||
TypInfo, Messages, LResources, Laz_XMLCfg, Menus, Dialogs,LazarusIdeStrConsts;
|
||||
|
||||
|
||||
type
|
||||
@ -1737,7 +1737,7 @@ constructor TObjectInspector.Create(AnOwner: TComponent);
|
||||
|
||||
begin
|
||||
inherited Create(AnOwner);
|
||||
Caption := 'Object Inspector';
|
||||
Caption := dlgObjInsp;
|
||||
FPropertyEditorHook:=nil;
|
||||
FComponentList:=TComponentSelectionList.Create;
|
||||
FUpdatingAvailComboBox:=false;
|
||||
|
@ -37,7 +37,7 @@ interface
|
||||
uses
|
||||
Classes, SysUtils, IDEProcs, LazConf, LResources, Forms, Controls, Buttons,
|
||||
ExtCtrls, StdCtrls, ComCtrls, Dialogs, Laz_XMLCfg, CodeToolManager,
|
||||
DefineTemplates, SourceChanger, EditDefineTree, SynEdit;
|
||||
DefineTemplates, SourceChanger, EditDefineTree, SynEdit,LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
TCodeToolsOptions = class
|
||||
@ -583,7 +583,7 @@ begin
|
||||
Width:=485;
|
||||
Height:=435;
|
||||
Position:=poScreenCenter;
|
||||
Caption:='CodeTools Options';
|
||||
Caption:=dlgCodeToolsOpts;
|
||||
OnResize:=@CodeToolsOptsDlgResize;
|
||||
|
||||
NoteBook:=TNoteBook.Create(Self);
|
||||
@ -592,12 +592,13 @@ begin
|
||||
Parent:=Self;
|
||||
SetBounds(0,0,Self.ClientWidth,Self.ClientHeight-50);
|
||||
if PageCount>0 then
|
||||
Pages[0]:='General'
|
||||
Pages[0]:=lisMenuInsertGeneral
|
||||
else
|
||||
Pages.Add('General');;
|
||||
Pages.Add('Code Creation');
|
||||
Pages.Add('Line Splitting');
|
||||
Pages.Add('Space');
|
||||
Pages.Add(lisMenuInsertGeneral);;//by VVI - using first phrase, otherwise we''ll encounter a problem with .po
|
||||
|
||||
Pages.Add(dlgCodeCreation);
|
||||
Pages.Add(dlgLineSplitting );
|
||||
Pages.Add(dlgSpaceNotCosmos);
|
||||
end;
|
||||
|
||||
SetupGeneralPage;
|
||||
@ -615,7 +616,7 @@ begin
|
||||
Height:=23;
|
||||
Left:=Self.ClientWidth-Width-15;
|
||||
Top:=Self.ClientHeight-Height-15;
|
||||
Caption:='Cancel';
|
||||
Caption:=dlgCancel;
|
||||
OnClick:=@CancelButtonClick;
|
||||
Visible:=true;
|
||||
end;
|
||||
@ -651,7 +652,7 @@ begin
|
||||
Name:='SrcPathGroupBox';
|
||||
Parent:=NoteBook.Page[0];
|
||||
SetBounds(8,7,Self.ClientWidth-20,51);
|
||||
Caption:='Additional Source search path for all projects (.pp;.pas)';
|
||||
Caption:=dlgAdditionalSrcPath ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -669,7 +670,7 @@ begin
|
||||
Parent:=NoteBook.Page[0];
|
||||
SetBounds(8,SrcPathGroupBox.Top+SrcPathGroupBox.Height+7,
|
||||
SrcPathGroupBox.Width,95);
|
||||
Caption:='Jumping (e.g. Method Jumping)';
|
||||
Caption:=dlgJumpingETC;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -678,7 +679,7 @@ begin
|
||||
Name:='AdjustTopLineDueToCommentCheckBox';
|
||||
Parent:=JumpingGroupBox;
|
||||
SetBounds(5,6,Parent.ClientWidth-10,Height);
|
||||
Caption:='Adjust top line due to comment in front';
|
||||
Caption:=dlgAdjustTopLine;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -690,7 +691,7 @@ begin
|
||||
AdjustTopLineDueToCommentCheckBox.Top+2
|
||||
+AdjustTopLineDueToCommentCheckBox.Height,
|
||||
AdjustTopLineDueToCommentCheckBox.Width,Height);
|
||||
Caption:='Center Cursor Line';
|
||||
Caption:=dlgcentercursorline;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -701,7 +702,7 @@ begin
|
||||
SetBounds(JumpCenteredCheckBox.Left,
|
||||
JumpCenteredCheckBox.Top+JumpCenteredCheckBox.Height+2,
|
||||
JumpCenteredCheckBox.Width,Height);
|
||||
Caption:='Cursor beyond EOL';
|
||||
Caption:=dlgcursorbeyondeol;
|
||||
Visible:=true;
|
||||
end;
|
||||
end;
|
||||
@ -714,11 +715,11 @@ begin
|
||||
Parent:=NoteBook.Page[1];
|
||||
SetBounds(8,6,
|
||||
(Self.ClientWidth div 2)-12,80);
|
||||
Caption:='Class part insert policy';
|
||||
Caption:=dlgClassInsertPolicy ;
|
||||
with Items do begin
|
||||
BeginUpdate;
|
||||
Add('Alphabetically');
|
||||
Add('Last');
|
||||
Add(dlgAlphabetically);
|
||||
Add(dlgCDTLast);
|
||||
EndUpdate;
|
||||
end;
|
||||
Visible:=true;
|
||||
@ -733,12 +734,12 @@ begin
|
||||
ClassPartInsertPolicyRadioGroup.Top,
|
||||
ClassPartInsertPolicyRadioGroup.Width,
|
||||
ClassPartInsertPolicyRadioGroup.Height);
|
||||
Caption:='Method insert policy';
|
||||
Caption:=dlgMethodInsPolicy ;
|
||||
with Items do begin
|
||||
BeginUpdate;
|
||||
Add('Alphabetically');
|
||||
Add('Last');
|
||||
Add('Class order');
|
||||
Add(dlgAlphabetically);
|
||||
Add(dlgCDTLast);
|
||||
Add(dlgCDTClassOrder );
|
||||
EndUpdate;
|
||||
end;
|
||||
Visible:=true;
|
||||
@ -752,13 +753,13 @@ begin
|
||||
ClassPartInsertPolicyRadioGroup.Top
|
||||
+ClassPartInsertPolicyRadioGroup.Height+7,
|
||||
(Self.ClientWidth div 2)-12,100);
|
||||
Caption:='Keyword policy';
|
||||
Caption:=dlgKeywordPolicy ;
|
||||
with Items do begin
|
||||
BeginUpdate;
|
||||
Add('None');
|
||||
Add('lowercase');
|
||||
Add('UPPERCASE');
|
||||
Add('Lowercase, first letter up');
|
||||
Add(dlgEnvNone);
|
||||
Add(dlgCDTLower);
|
||||
Add(dlgCDTUPPERCASE);
|
||||
Add(dlg1UP2low);
|
||||
EndUpdate;
|
||||
end;
|
||||
OnClick:=@UpdateExamples;
|
||||
@ -772,13 +773,13 @@ begin
|
||||
SetBounds(KeyWordPolicyRadioGroup.Left+KeyWordPolicyRadioGroup.Width+8,
|
||||
KeyWordPolicyRadioGroup.Top,
|
||||
KeyWordPolicyRadioGroup.Width,KeyWordPolicyRadioGroup.Height);
|
||||
Caption:='Identifier policy';
|
||||
Caption:=dlgIdentifierPolicy;
|
||||
with Items do begin
|
||||
BeginUpdate;
|
||||
Add('None');
|
||||
Add('lowercase');
|
||||
Add('UPPERCASE');
|
||||
Add('Lowercase, first letter up');
|
||||
Add(dlgEnvNone);
|
||||
Add(dlgCDTLower);
|
||||
Add(dlgCDTUPPERCASE);
|
||||
Add(dlg1UP2low);
|
||||
EndUpdate;
|
||||
end;
|
||||
OnClick:=@UpdateExamples;
|
||||
@ -792,7 +793,7 @@ begin
|
||||
SetBounds(KeyWordPolicyRadioGroup.Left,
|
||||
KeyWordPolicyRadioGroup.Top+KeyWordPolicyRadioGroup.Height+7,
|
||||
Self.ClientWidth-20,125);
|
||||
Caption:='Property completion';
|
||||
Caption:=dlgPropertyCompletion ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -801,7 +802,7 @@ begin
|
||||
Name:='PropertyCompletionCheckBox';
|
||||
Parent:=PropertyCompletionGroupBox;
|
||||
SetBounds(6,5,200,Height);
|
||||
Caption:='Complete properties';
|
||||
Caption:=dlgCompleteProperties ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -812,7 +813,7 @@ begin
|
||||
SetBounds(PropertyCompletionCheckBox.Left,
|
||||
PropertyCompletionCheckBox.Top+PropertyCompletionCheckBox.Height+5,
|
||||
100,Height);
|
||||
Caption:='Read prefix';
|
||||
Caption:=dlgCDTReadPrefix ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -831,7 +832,7 @@ begin
|
||||
SetBounds(6,PropertyReadIdentPrefixLabel.Top
|
||||
+PropertyReadIdentPrefixLabel.Height+5,
|
||||
PropertyReadIdentPrefixLabel.Width,Height);
|
||||
Caption:='Write prefix';
|
||||
Caption:=dlgCDTWritePrefix ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -851,7 +852,7 @@ begin
|
||||
SetBounds(6,PropertyWriteIdentPrefixLabel.Top
|
||||
+PropertyWriteIdentPrefixLabel.Height+5,
|
||||
PropertyReadIdentPrefixLabel.Width,Height);
|
||||
Caption:='Stored postfix';
|
||||
Caption:=dlgCDTStoredPostfix;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -870,7 +871,7 @@ begin
|
||||
Parent:=PropertyCompletionGroupBox;
|
||||
SetBounds((PropertyCompletionGroupBox.ClientWidth-20) div 2,
|
||||
PropertyReadIdentPrefixLabel.Top,120,Height);
|
||||
Caption:='Variable prefix';
|
||||
Caption:=dlgCDTVariablePrefix ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -890,7 +891,7 @@ begin
|
||||
SetBounds(PrivatVariablePrefixLabel.Left,
|
||||
PrivatVariablePrefixLabel.Top+PrivatVariablePrefixLabel.Height+5,
|
||||
120,Height);
|
||||
Caption:='Set property Variable';
|
||||
Caption:=dlgSetPropertyVariable ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -912,7 +913,7 @@ begin
|
||||
Name:='LineLengthLabel';
|
||||
Parent:=NoteBook.Page[2];
|
||||
SetBounds(8,7,Canvas.TextWidth('Max line length: '),Height);
|
||||
Caption:='Max line length:';
|
||||
Caption:=dlgMaxLineLength ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -933,7 +934,7 @@ begin
|
||||
Parent:=NoteBook.Page[2];
|
||||
SetBounds(6,LineLengthLabel.Top+LineLengthLabel.Height+7,
|
||||
(Self.ClientWidth-24) div 2,150);
|
||||
Caption:='Do not split line In front of:';
|
||||
Caption:=dlgNotSplitLineFront ;
|
||||
CreateAtomCheckBoxes(DoNotSplitLineInFrontGroupBox,DoNotSplitAtoms,2);
|
||||
OnClick:=@UpdateExamples;
|
||||
Visible:=true;
|
||||
@ -947,7 +948,7 @@ begin
|
||||
DoNotSplitLineInFrontGroupBox.Top+DoNotSplitLineInFrontGroupBox.Height+7,
|
||||
DoNotSplitLineInFrontGroupBox.Width,
|
||||
DoNotSplitLineInFrontGroupBox.Height);
|
||||
Caption:='Do not split line after:';
|
||||
Caption:=dlgNotSplitLineAfter ;
|
||||
CreateAtomCheckBoxes(DoNotSplitLineAfterGroupBox,DoNotSplitAtoms,2);
|
||||
OnClick:=@UpdateExamples;
|
||||
Visible:=true;
|
||||
@ -962,7 +963,7 @@ begin
|
||||
Top:=LineLengthLabel.Top;
|
||||
Width:=Self.ClientWidth-10-Left;
|
||||
Height:=Self.ClientHeight-92-Top;
|
||||
Caption:='Preview (Max line length = 1)';
|
||||
Caption:=dlgCDTPreview;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
@ -983,7 +984,7 @@ begin
|
||||
Parent:=NoteBook.Page[3];
|
||||
SetBounds(6,6,
|
||||
(Self.ClientWidth-24) div 2,150);
|
||||
Caption:='Insert space in front of';
|
||||
Caption:=dlgInsSpaceFront ;
|
||||
CreateAtomCheckBoxes(DoInsertSpaceInFrontGroupBox,DoInsertSpaceAtoms,2);
|
||||
OnClick:=@UpdateExamples;
|
||||
Visible:=true;
|
||||
@ -998,7 +999,7 @@ begin
|
||||
DoInsertSpaceInFrontGroupBox.Top,
|
||||
DoInsertSpaceInFrontGroupBox.Width,
|
||||
DoInsertSpaceInFrontGroupBox.Height);
|
||||
Caption:='Insert space after';
|
||||
Caption:=dlgInsSpaceAfter ;
|
||||
CreateAtomCheckBoxes(DoInsertSpaceAfterGroupBox,DoInsertSpaceAtoms,2);
|
||||
OnClick:=@UpdateExamples;
|
||||
Visible:=true;
|
||||
@ -1012,7 +1013,7 @@ begin
|
||||
Top:=DoInsertSpaceInFrontGroupBox.Top+DoInsertSpaceInFrontGroupBox.Height+7;
|
||||
Width:=Self.ClientWidth-10-Left;
|
||||
Height:=Self.ClientHeight-92-Top;
|
||||
Caption:='Preview';
|
||||
Caption:=dlgWRDPreview ;
|
||||
Visible:=true;
|
||||
end;
|
||||
|
||||
|
@ -42,7 +42,7 @@ interface
|
||||
|
||||
uses
|
||||
Forms, Classes, SysUtils, ComCtrls, Buttons, StdCtrls, ExtCtrls, LazConf,
|
||||
Laz_XMLCfg, FileCtrl, Dialogs, Controls, PathEditorDlg, IDEProcs;
|
||||
Laz_XMLCfg, FileCtrl, Dialogs, Controls, PathEditorDlg, IDEProcs, LazarusIDEStrConsts;
|
||||
|
||||
type
|
||||
{ Compiler Options object used to hold the compiler options }
|
||||
@ -1350,7 +1350,7 @@ begin
|
||||
|
||||
Assert(False, 'Trace:Compiler Options Form Created');
|
||||
SetBounds((Screen.Width-440) div 2,(Screen.Height-500) div 2,435,480);
|
||||
Caption := 'Compiler Options';
|
||||
Caption := dlgCompilerOptions ;
|
||||
OnShow := @CreateForm;
|
||||
|
||||
nbMain := TNotebook.Create(Self);
|
||||
@ -1362,13 +1362,13 @@ begin
|
||||
|
||||
// Add the pages
|
||||
if nbMain.PageCount>0 then
|
||||
nbMain.Pages[0] := 'Search Paths'
|
||||
nbMain.Pages[0] := dlgSearchPaths
|
||||
else
|
||||
nbMain.Pages.Add('Search Paths');
|
||||
nbMain.Pages.Add('Parsing');
|
||||
nbMain.Pages.Add('Code Generation');
|
||||
nbMain.Pages.Add('Linking');
|
||||
nbMain.Pages.Add('Other');
|
||||
nbMain.Pages.Add(dlgSearchPaths );
|
||||
nbMain.Pages.Add(dlgCOParsing );
|
||||
nbMain.Pages.Add(dlgCodeGeneration );
|
||||
nbMain.Pages.Add(dlgCOLinking );
|
||||
nbMain.Pages.Add(dlgCOOther );
|
||||
|
||||
{
|
||||
bvlButtonBar := TBevel.Create(Self);
|
||||
@ -1485,7 +1485,7 @@ begin
|
||||
end;
|
||||
inc(i);
|
||||
end;
|
||||
MessageDlg('Show compiler options','Options: '#13+TestStr,mtInformation,
|
||||
MessageDlg(dlgShowCompilerOptions,dlgCOOpts+#13+TestStr,mtInformation,
|
||||
[mbOk],0);
|
||||
end;
|
||||
|
||||
@ -1741,7 +1741,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 45;
|
||||
Width := 250;
|
||||
Caption := 'Style:';
|
||||
Caption := dlgCOStyle;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -1753,7 +1753,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 16;
|
||||
Width := 50;
|
||||
Caption := 'Intel';
|
||||
Caption := 'Intel';//Really we should localize this? :)
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -1777,7 +1777,7 @@ begin
|
||||
Left := 150;
|
||||
Height := 16;
|
||||
Width := 50;
|
||||
Caption := 'As-Is';
|
||||
Caption := dlgCOAsIs ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -1789,7 +1789,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 316;
|
||||
Width := Self.ClientWidth-28;
|
||||
Caption := 'Symantec Checking:';
|
||||
Caption := dlgSymantecChecking ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -1797,7 +1797,7 @@ begin
|
||||
with chkSymD2Ext do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Delphi 2 Extensions';
|
||||
Caption := dlgDelphi2Ext ;
|
||||
Top := 10;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1809,7 +1809,7 @@ begin
|
||||
with chkSymCOper do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'C Style Operators (*=, +=, /= and -=)';
|
||||
Caption := dlgCOCOps;
|
||||
Top := 34;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1821,7 +1821,7 @@ begin
|
||||
with chkSymIncludeAssertions do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Include Assertion Code';
|
||||
Caption := dlgAssertCode ;
|
||||
Top := 58;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1833,7 +1833,7 @@ begin
|
||||
with chkSymAllowLab do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Allow LABEL and GOTO';
|
||||
Caption := dlgLabelGoto ;
|
||||
Top := 82;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1845,7 +1845,7 @@ begin
|
||||
with chkSymCPPInline do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'C++ Styled INLINE';
|
||||
Caption := dlgCppInline ;
|
||||
Top := 106;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1857,7 +1857,7 @@ begin
|
||||
with chkSymCMacros do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'C Style Macros (global)';
|
||||
Caption := dlgCMacro;
|
||||
Top := 130;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1869,7 +1869,7 @@ begin
|
||||
with chkSymTP7Compat do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'TP/BP 7.0 Compatible';
|
||||
Caption := dlgBP7Cptb ;
|
||||
Top := 154;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1881,7 +1881,7 @@ begin
|
||||
with chkSymConstInit do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Constructor name must be ''' + 'init' + ''' (destructor must be ''' + 'done' + ''')';
|
||||
Caption := dlgInitDoneOnly ;
|
||||
Top := 178;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1893,7 +1893,7 @@ begin
|
||||
with chkSymStaticKwd do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Static Keyword in Objects';
|
||||
Caption := dlgStaticKeyword ;
|
||||
Top := 202;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1905,7 +1905,7 @@ begin
|
||||
with chkSymDelphiCompat do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Delphi Compatible';
|
||||
Caption := dlgDeplhiComp;
|
||||
Top := 226;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1917,7 +1917,7 @@ begin
|
||||
with chkSymUseAnsiStrings do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'Use Ansi Strings';
|
||||
Caption := dlgCOAnsiStr ;
|
||||
Top := 250;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1929,7 +1929,7 @@ begin
|
||||
with chkSymGPCCompat do
|
||||
begin
|
||||
Parent := grpSymantecChk;
|
||||
Caption := 'GPC (GNU Pascal Compiler) Compatible';
|
||||
Caption := dlgGPCComp ;
|
||||
Top := 274;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -1955,11 +1955,11 @@ begin
|
||||
Left := 10;
|
||||
Height := 70;
|
||||
Width := 85;
|
||||
Caption := 'Unit Style:';
|
||||
Caption := dlgCOUnitStyle ;
|
||||
with Items do begin
|
||||
Add('Static');
|
||||
Add('Dynamic');
|
||||
Add('Smart');
|
||||
Add(dlgStatic );
|
||||
Add(dlgDynamic );
|
||||
Add(dlgCOSmart );
|
||||
end;
|
||||
Visible := True;
|
||||
end;
|
||||
@ -1973,7 +1973,7 @@ begin
|
||||
Left := grpUnitStyle.Left + grpUnitStyle.Width + 10;
|
||||
Height := 70;
|
||||
Width := 165;
|
||||
Caption := 'Checks:';
|
||||
Caption := dlgCOChecks ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -1993,7 +1993,7 @@ begin
|
||||
with chkChecksRange do
|
||||
begin
|
||||
Parent := grpChecks;
|
||||
Caption := 'Range';
|
||||
Caption := dlgCORange ;
|
||||
Top := 8;
|
||||
Left := 85;
|
||||
Height := 16;
|
||||
@ -2005,7 +2005,7 @@ begin
|
||||
with chkChecksOverflow do
|
||||
begin
|
||||
Parent := grpChecks;
|
||||
Caption := 'Overflow';
|
||||
Caption := dlgCOOverflow ;
|
||||
Top := 29;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -2017,7 +2017,7 @@ begin
|
||||
with chkChecksStack do
|
||||
begin
|
||||
Parent := grpChecks;
|
||||
Caption := 'Stack';
|
||||
Caption := dlgCOStack ;
|
||||
Top := 29;
|
||||
Left := 85;
|
||||
Height := 16;
|
||||
@ -2035,7 +2035,7 @@ begin
|
||||
Left := grpChecks.Left + grpChecks.Width + 10;
|
||||
Height := 55;
|
||||
Width := 80;
|
||||
Caption := 'Heap Size:';
|
||||
Caption := dlgHeapSize +':';
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2043,7 +2043,7 @@ begin
|
||||
with edtHeapSize do
|
||||
begin
|
||||
Parent := grpHeapSize;
|
||||
Caption := 'Heap Size';
|
||||
Caption := dlgHeapSize ;
|
||||
Top := 8;
|
||||
Left := 5;
|
||||
Height := 23;
|
||||
@ -2062,7 +2062,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 70;
|
||||
Width := 110;
|
||||
Caption := 'Generate:';
|
||||
Caption := dlgCOGenerate ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2074,7 +2074,7 @@ begin
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
Width := 95;
|
||||
Caption := 'Faster Code';
|
||||
Caption := dlgCOFast;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2086,7 +2086,7 @@ begin
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
Width := 95;
|
||||
Caption := 'Smaller Code';
|
||||
Caption := dlgCOSmaller ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2101,7 +2101,7 @@ begin
|
||||
Left := grpGenerate.Left + grpGenerate.Width + 10;
|
||||
Height := 90;
|
||||
Width := 230;
|
||||
Caption := 'Target Processor:';
|
||||
Caption := dlgTargetProc ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2152,7 +2152,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 132;
|
||||
Width := 350;
|
||||
Caption := 'Optimizations:';
|
||||
Caption := dlgOptimiz ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2160,7 +2160,7 @@ begin
|
||||
with chkOptVarsInReg do
|
||||
begin
|
||||
Parent := grpOptimizations;
|
||||
Caption := 'Keep certain variables in registers';
|
||||
Caption := dlgCOKeepVarsReg ;
|
||||
Top := 5;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -2172,7 +2172,7 @@ begin
|
||||
with chkOptUncertain do
|
||||
begin
|
||||
Parent := grpOptimizations;
|
||||
Caption := 'Uncertain Optimizations';
|
||||
Caption := dlgUncertOpt ;
|
||||
Top := 26;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -2197,7 +2197,7 @@ begin
|
||||
with radOptLevel1 do
|
||||
begin
|
||||
Parent := grpOptimizations;
|
||||
Caption := 'Level 1 (Quick Optimizations)';
|
||||
Caption := dlgLevel1Opt ;
|
||||
Top := 52;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -2209,7 +2209,7 @@ begin
|
||||
with radOptLevel2 do
|
||||
begin
|
||||
Parent := grpOptimizations;
|
||||
Caption := 'Level 2 (Level 1 + Slower Optimizations)';
|
||||
Caption := dlgLevel2Opt;
|
||||
Top := 73;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -2221,7 +2221,7 @@ begin
|
||||
with radOptLevel3 do
|
||||
begin
|
||||
Parent := grpOptimizations;
|
||||
Caption := 'Level 3 (Level 2 + Uncertain)';
|
||||
Caption := dlgLevel3Opt ;
|
||||
Top := 94;
|
||||
Left := 5;
|
||||
Height := 16;
|
||||
@ -2247,7 +2247,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 151;
|
||||
Width := Self.ClientWidth-28;
|
||||
Caption := 'Debugging:';
|
||||
Caption := dlgCODebugging ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2255,7 +2255,7 @@ begin
|
||||
with chkDebugGDB do
|
||||
begin
|
||||
Parent := grpDebugging;
|
||||
Caption := 'Generate Debugging Info For GDB (Slows Compiling)';
|
||||
Caption := dlgCOGDB ;
|
||||
Top := 6;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2267,7 +2267,7 @@ begin
|
||||
with chkDebugDBX do
|
||||
begin
|
||||
Parent := grpDebugging;
|
||||
Caption := 'Generate Debugging Info For DBX (Slows Compiling)';
|
||||
Caption := dlgCODBX;
|
||||
Top := 27;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2279,7 +2279,7 @@ begin
|
||||
with chkUseLineInfoUnit do
|
||||
begin
|
||||
Parent := grpDebugging;
|
||||
Caption := 'Display Line Numbers in Run-time Error Backtraces';
|
||||
Caption := dlgLNumsBct;
|
||||
Top := 48;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2291,7 +2291,7 @@ begin
|
||||
with chkUseHeaptrc do
|
||||
begin
|
||||
Parent := grpDebugging;
|
||||
Caption := 'Use Heaptrc Unit';
|
||||
Caption := dlgCOHeaptrc ;
|
||||
Top := 69;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2303,7 +2303,7 @@ begin
|
||||
with chkGenGProfCode do
|
||||
begin
|
||||
Parent := grpDebugging;
|
||||
Caption := 'Generate code for gprof';
|
||||
Caption := dlgGPROF ;
|
||||
Top := 90;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2315,7 +2315,7 @@ begin
|
||||
with chkSymbolsStrip do
|
||||
begin
|
||||
Parent := grpDebugging;
|
||||
Caption := 'Strip Symbols From Executable';
|
||||
Caption := dlgCOStrip;
|
||||
Top := 111;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2333,7 +2333,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 70;
|
||||
Width := Self.ClientWidth-28;
|
||||
Caption := 'Link Libraries:';
|
||||
Caption := dlgLinkLibraries ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2341,7 +2341,7 @@ begin
|
||||
with radLibsLinkDynamic do
|
||||
begin
|
||||
Parent := grpLinkLibraries;
|
||||
Caption := 'Link With Dynamic Libraries';
|
||||
Caption := dlgLinkDinLibs;
|
||||
Top := 6;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2353,7 +2353,7 @@ begin
|
||||
with radLibsLinkStatic do
|
||||
begin
|
||||
Parent := grpLinkLibraries;
|
||||
Caption := 'Link With Static Libraries';
|
||||
Caption := dlgLinkStatLibs ;
|
||||
Top := 27;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2371,7 +2371,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 75;
|
||||
Width := Self.ClientWidth-28;
|
||||
Caption := 'Options:';
|
||||
Caption := dlgCOOpts;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2379,7 +2379,7 @@ begin
|
||||
with chkOptionsLinkOpt do
|
||||
begin
|
||||
Parent := grpOptions;
|
||||
Caption := 'Pass Options To The Linker (Delimiter is space)';
|
||||
Caption := dlgPassOptsLinker ;
|
||||
Top := 6;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2416,7 +2416,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 212;
|
||||
Width := Self.ClientWidth-28;
|
||||
Caption := 'Verbosity:';
|
||||
Caption := dlgVerbosity;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2424,7 +2424,7 @@ begin
|
||||
with chkErrors do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Errors';
|
||||
Caption := dlgCOShowErr ;
|
||||
Top := 6;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2436,7 +2436,7 @@ begin
|
||||
with chkWarnings do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Warnings';
|
||||
Caption := dlgShowWarnings ;
|
||||
Top := 27;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2448,7 +2448,7 @@ begin
|
||||
with chkNotes do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Notes';
|
||||
Caption := dlgShowNotes ;
|
||||
Top := 48;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2460,7 +2460,7 @@ begin
|
||||
with chkHints do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Hints';
|
||||
Caption := dlgShowHint ;
|
||||
Top := 69;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2472,7 +2472,7 @@ begin
|
||||
with chkGeneralInfo do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show General Info';
|
||||
Caption := dlgShowGeneralInfo ;
|
||||
Top := 90;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2484,7 +2484,7 @@ begin
|
||||
with chkLineNumbers do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Line Numbers';
|
||||
Caption := dlgShowLineNumbers ;
|
||||
Top := 111;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2496,7 +2496,7 @@ begin
|
||||
with chkAllProcsOnError do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show all procs on error';
|
||||
Caption := dlgShowProcsError ;
|
||||
Top := 132;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2508,7 +2508,7 @@ begin
|
||||
with chkEverything do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Everything';
|
||||
Caption := dlgShowEverything ;
|
||||
Top := 153;
|
||||
Left := chkErrors.Left;
|
||||
Height := chkErrors.Height;
|
||||
@ -2520,7 +2520,7 @@ begin
|
||||
with chkDebugInfo do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Debug Info';
|
||||
Caption := dlgShowDebugInfo ;
|
||||
Top := 6;
|
||||
Left := (grpVerbosity.ClientWidth div 2)+4;
|
||||
Height := 16;
|
||||
@ -2532,7 +2532,7 @@ begin
|
||||
with chkUsedFiles do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Used Files';
|
||||
Caption := dlgShowUsedFiles ;
|
||||
Top := 27;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2544,7 +2544,7 @@ begin
|
||||
with chkTriedFiles do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Tried Files';
|
||||
Caption := dlgShowTriedFiles ;
|
||||
Top := 48;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2556,7 +2556,7 @@ begin
|
||||
with chkDefinedMacros do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Defined Macros';
|
||||
Caption := dlgShowDefinedMacros ;
|
||||
Top := 69;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2568,7 +2568,7 @@ begin
|
||||
with chkCompiledProc do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Compiled Procedures';
|
||||
Caption := dlgShowCompiledProcedures ;
|
||||
Top := 90;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2580,7 +2580,7 @@ begin
|
||||
with chkConditionals do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Conditionals';
|
||||
Caption := dlgShowConditionals ;
|
||||
Top := 111;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2592,7 +2592,7 @@ begin
|
||||
with chkNothing do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Nothing (only errors)';
|
||||
Caption := dlgShowNothing ;
|
||||
Top := 132;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2604,7 +2604,7 @@ begin
|
||||
with chkFPCLogo do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Write an FPC Logo';
|
||||
Caption := dlgWriteFPCLogo ;
|
||||
Top := 153;
|
||||
Left := chkDebugInfo.Left;
|
||||
Height := chkDebugInfo.Height;
|
||||
@ -2616,7 +2616,7 @@ begin
|
||||
with chkHintsForUnusedProjectUnits do
|
||||
begin
|
||||
Parent := grpVerbosity;
|
||||
Caption := 'Show Hints for unused project units';
|
||||
Caption := dlgHintsUnused ;
|
||||
Top := 174;
|
||||
Left := ChkErrors.Left;
|
||||
Height := ChkErrors.Height;
|
||||
@ -2634,7 +2634,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 95;
|
||||
Width := Self.ClientWidth-28;
|
||||
Caption := 'Config Files:';
|
||||
Caption := dlgConfigFiles ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2642,7 +2642,7 @@ begin
|
||||
with chkConfigFile do
|
||||
begin
|
||||
Parent := grpConfigFile;
|
||||
Caption := 'Use Compiler Config File (fpc.cfg)';
|
||||
Caption := dlgUseFpcCfg ;
|
||||
Top := 6;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2654,7 +2654,7 @@ begin
|
||||
with chkAdditionalConfigFile do
|
||||
begin
|
||||
Parent := grpConfigFile;
|
||||
Caption := 'Use Additional Compiler Config File';
|
||||
Caption := dlgUseAdditionalConfig ;
|
||||
Top := 27;
|
||||
Left := 8;
|
||||
Height := 16;
|
||||
@ -2684,7 +2684,7 @@ begin
|
||||
Left := 10;
|
||||
Height := 50;
|
||||
Width := 200;
|
||||
Caption := 'Stop after number of errors:';
|
||||
Caption := dlgStopAfterNrErr ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2716,7 +2716,7 @@ begin
|
||||
Top := 7;
|
||||
Width := Self.ClientWidth-28;
|
||||
Height := 50;
|
||||
Caption := 'Other Unit Files (Delimiter is semicolon):';
|
||||
Caption := dlgOtherUnitFiles ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2756,7 +2756,7 @@ begin
|
||||
Top := grpOtherUnits.Top+grpOtherUnits.Height+5;
|
||||
Width := grpOtherUnits.Width;
|
||||
Height := grpOtherUnits.Height;
|
||||
Caption := 'Include Files:';
|
||||
Caption := dlgCOIncFiles ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2796,7 +2796,7 @@ begin
|
||||
Left := grpOtherUnits.Left;
|
||||
Width := grpOtherUnits.Width;
|
||||
Height := grpOtherUnits.Height;
|
||||
Caption := 'Other Sources: (.pp/.pas files)';
|
||||
Caption := dlgCOSources ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2836,7 +2836,7 @@ begin
|
||||
Left := grpOtherUnits.Left;
|
||||
Width := grpOtherUnits.Width;
|
||||
Height := grpOtherUnits.Height;
|
||||
Caption := 'Libraries:';
|
||||
Caption := dlgCOLibraries ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2876,7 +2876,7 @@ begin
|
||||
Left := grpOtherUnits.Left;
|
||||
Width := grpOtherUnits.Width;
|
||||
Height := grpOtherUnits.Height;
|
||||
Caption := 'Path To Compiler:';
|
||||
Caption := dlgToFPCPath ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2902,7 +2902,7 @@ begin
|
||||
Left := grpOtherUnits.Left;
|
||||
Width := grpOtherUnits.Width;
|
||||
Height := grpOtherUnits.Height;
|
||||
Caption := 'Unit output directory:';
|
||||
Caption := dlgUnitOutp ;
|
||||
Visible := True;
|
||||
end;
|
||||
|
||||
@ -2928,7 +2928,7 @@ begin
|
||||
Top:=grpUnitOutputDir.Top+grpUnitOutputDir.Height+5;
|
||||
Width:=150;
|
||||
Height:=45;
|
||||
Caption:='LCL Widget Type';
|
||||
Caption:=dlgLCLWidgetType ;
|
||||
with Items do begin
|
||||
Add('gtk');
|
||||
Add('win32');
|
||||
@ -2956,7 +2956,7 @@ begin
|
||||
Height := 23;
|
||||
Top := Self.Height - btnApply.Height - 15;
|
||||
Left := Self.Width - btnApply.Width - 10;
|
||||
Caption := 'Apply';
|
||||
Caption := dlgButApply;
|
||||
OnClick := @ButtonApplyClicked;
|
||||
Visible := True;
|
||||
end;
|
||||
@ -2969,7 +2969,7 @@ begin
|
||||
Height := 23;
|
||||
Top := Self.Height - btnCancel.Height - 15;
|
||||
Left := btnApply.Left - btnCancel.Width - 5;
|
||||
Caption := 'Cancel';
|
||||
Caption := dlgCancel ;
|
||||
OnClick := @ButtonCancelClicked;
|
||||
Visible := True;
|
||||
end;
|
||||
@ -2995,7 +2995,7 @@ begin
|
||||
Height := 23;
|
||||
Top := Self.Height - btnTest.Height - 15;
|
||||
Left := btnOK.Left - btnTest.Width - 5;
|
||||
Caption := 'Show Options';
|
||||
Caption := dlgCOShowOptions ;
|
||||
OnClick := @ButtonTestClicked;
|
||||
Visible := True;
|
||||
end;
|
||||
|
@ -430,7 +430,129 @@ resourcestring
|
||||
dlgEdEdit = 'Edit...';
|
||||
dlgEdDelete = 'Delete';
|
||||
dlgIndentCodeTo = 'Indent code to';
|
||||
|
||||
//CodeTools dialogue
|
||||
dlgCodeToolsOpts = 'CodeTools Options';
|
||||
dlgCodeCreation = 'Code Creation';
|
||||
dlgLineSplitting = 'Line Splitting';
|
||||
dlgSpaceNotCosmos{:)} = 'Space';
|
||||
dlgAdditionalSrcPath = 'Additional Source search path for all projects (.pp;.pas)';
|
||||
dlgJumpingETC = 'Jumping (e.g. Method Jumping)';
|
||||
dlgAdjustTopLine = 'Adjust top line due to comment in front';
|
||||
dlgCenterCursorLine = 'Center Cursor Line';
|
||||
dlgCursorBeyondEOL = 'Cursor beyond EOL';
|
||||
dlgClassInsertPolicy = 'Class part insert policy';
|
||||
dlgAlphabetically = 'Alphabetically';
|
||||
dlgCDTLast = 'Last';
|
||||
dlgMethodInsPolicy = 'Method insert policy';
|
||||
dlgCDTClassOrder = 'Class order';
|
||||
dlgKeywordPolicy = 'Keyword policy';
|
||||
dlgCDTLower = 'lowercase';
|
||||
dlgCDTUPPERCASE = 'UPPERCASE';
|
||||
dlg1UP2low = 'Lowercase, first letter up';
|
||||
dlgIdentifierPolicy = 'Identifier policy';
|
||||
dlgPropertyCompletion = 'Property completion';
|
||||
dlgCompleteProperties = 'Complete properties';
|
||||
dlgCDTReadPrefix = 'Read prefix';
|
||||
dlgCDTWritePrefix = 'Write prefix';
|
||||
dlgCDTStoredPostfix = 'Stored postfix';
|
||||
dlgCDTVariablePrefix = 'Variable prefix';
|
||||
dlgSetPropertyVariable = 'Set property Variable';
|
||||
dlgMaxLineLength = 'Max line length:';
|
||||
dlgNotSplitLineFront = 'Do not split line In front of:';
|
||||
dlgNotSplitLineAfter = 'Do not split line after:';
|
||||
dlgCDTPreview = 'Preview (Max line length = 1)';
|
||||
dlgInsSpaceFront = 'Insert space in front of';
|
||||
dlgInsSpaceAfter = 'Insert space after';
|
||||
dlgWRDPreview = 'Preview';
|
||||
//Windows (no,no,course, not M$ :) ) captions
|
||||
locwndSrcEditor = 'Lazarus Source Editor';
|
||||
dlgCompilerOptions = 'Compiler Options';
|
||||
dlgSearchPaths = 'Search Paths';
|
||||
dlgCOParsing = 'Parsing';
|
||||
dlgCodeGeneration = 'Code Generation';
|
||||
dlgCOLinking = 'Linking';
|
||||
dlgCOOther = 'Other';
|
||||
dlgShowCompilerOptions = 'Show compiler options';
|
||||
dlgCOOpts = 'Options: ';
|
||||
dlgCOStyle = 'Style:';
|
||||
dlgCOAsIs = 'As-Is';
|
||||
dlgSymantecChecking = 'Symantec Checking:';
|
||||
dlgDelphi2Ext = 'Delphi 2 Extensions';
|
||||
dlgCOCOps = 'C Style Operators (*=, +=, /= and -=)';
|
||||
dlgAssertCode = 'Include Assertion Code';
|
||||
dlgLabelGoto = 'Allow LABEL and GOTO';
|
||||
dlgCppInline = 'C++ Styled INLINE';
|
||||
dlgCMacro = 'C Style Macros (global)';
|
||||
dlgBP7Cptb = 'TP/BP 7.0 Compatible';
|
||||
dlgInitDoneOnly = 'Constructor name must be ''' + 'init' + ''' (destructor must be ''' + 'done' + ''')';
|
||||
dlgStaticKeyword = 'Static Keyword in Objects';
|
||||
dlgDeplhiComp = 'Delphi Compatible';
|
||||
dlgCOAnsiStr = 'Use Ansi Strings';
|
||||
dlgGPCComp = 'GPC (GNU Pascal Compiler) Compatible';
|
||||
dlgCOUnitStyle = 'Unit Style:';
|
||||
dlgStatic = 'Static';
|
||||
dlgDynamic = 'Dynamic';
|
||||
dlgCOSmart = 'Smart';
|
||||
dlgCOChecks = 'Checks:';
|
||||
dlgCORange = 'Range';
|
||||
dlgCOOverflow = 'Overflow';
|
||||
dlgCOStack = 'Stack';
|
||||
dlgHeapSize = 'Heap Size';
|
||||
dlgCOGenerate = 'Generate:';
|
||||
dlgCOFast = 'Faster Code';
|
||||
dlgCOSmaller = 'Smaller Code';
|
||||
dlgTargetProc = 'Target Processor:';
|
||||
dlgOptimiz = 'Optimizations:';
|
||||
dlgCOKeepVarsReg = 'Keep certain variables in registers';
|
||||
dlgUncertOpt = 'Uncertain Optimizations';
|
||||
dlgLevel1Opt = 'Level 1 (Quick Optimizations)';
|
||||
dlgLevel2Opt = 'Level 2 (Level 1 + Slower Optimizations)';
|
||||
dlgLevel3Opt = 'Level 3 (Level 2 + Uncertain)';
|
||||
dlgCODebugging = 'Debugging:';
|
||||
dlgCOGDB = 'Generate Debugging Info For GDB (Slows Compiling)';
|
||||
dlgCODBX = 'Generate Debugging Info For DBX (Slows Compiling)';
|
||||
dlgLNumsBct = 'Display Line Numbers in Run-time Error Backtraces';
|
||||
dlgCOHeaptrc = 'Use Heaptrc Unit';
|
||||
dlgGPROF = 'Generate code for gprof';
|
||||
dlgCOStrip = 'Strip Symbols From Executable';
|
||||
dlgLinkLibraries = 'Link Libraries:';
|
||||
dlgLinkDinLibs = 'Link With Dynamic Libraries';
|
||||
dlgLinkStatLibs = 'Link With Static Libraries';
|
||||
dlgPassOptsLinker = 'Pass Options To The Linker (Delimiter is space)';
|
||||
dlgVerbosity = 'Verbosity:';
|
||||
dlgCOShowErr = 'Show Errors';
|
||||
dlgShowWarnings = 'Show Warnings';
|
||||
dlgShowNotes = 'Show Notes';
|
||||
dlgShowHint = 'Show Hints';
|
||||
dlgShowGeneralInfo = 'Show General Info';
|
||||
dlgShowProcsError = 'Show all procs on error';
|
||||
dlgShowEverything ='Show Everything';
|
||||
dlgShowDebugInfo = 'Show Debug Info';
|
||||
dlgShowUsedFiles = 'Show Used Files';
|
||||
dlgShowTriedFiles = 'Show Tried Files';
|
||||
dlgShowDefinedMacros = 'Show Defined Macros';
|
||||
dlgShowCompiledProcedures = 'Show Compiled Procedures';
|
||||
dlgShowConditionals = 'Show Conditionals';
|
||||
dlgShowNothing = 'Show Nothing (only errors)';
|
||||
dlgWriteFPCLogo = 'Write an FPC Logo';
|
||||
dlgHintsUnused = 'Show Hints for unused project units';
|
||||
dlgConfigFiles = 'Config Files:';
|
||||
dlgUseFpcCfg = 'Use Compiler Config File (fpc.cfg)';
|
||||
dlgUseAdditionalConfig = 'Use Additional Compiler Config File';
|
||||
dlgStopAfterNrErr = 'Stop after number of errors:';
|
||||
dlgOtherUnitFiles = 'Other Unit Files (Delimiter is semicolon):';
|
||||
dlgCOIncFiles = 'Include Files:';
|
||||
dlgCOSources = 'Other Sources: (.pp/.pas files)';
|
||||
dlgCOLibraries = 'Libraries:';
|
||||
dlgToFPCPath = 'Path To Compiler:';
|
||||
dlgUnitOutp = 'Unit output directory:';
|
||||
dlgLCLWidgetType = 'LCL Widget Type';
|
||||
dlgButApply = 'Apply';
|
||||
dlgCOShowOptions = 'Show Options';
|
||||
dlgMainViewForms = 'View project forms';
|
||||
dlgMainViewUnits = 'View project units';
|
||||
dlgMulti = 'Multi';
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -350,6 +350,10 @@ msgstr ""
|
||||
msgid "Forms..."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuviewunitdependencies
|
||||
msgid "View Unit Dependencies"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lismenuviewtoggleformunit
|
||||
msgid "Toggle form/unit view"
|
||||
msgstr ""
|
||||
@ -1218,3 +1222,483 @@ msgstr ""
|
||||
msgid "Indent code to"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcodetoolsopts
|
||||
msgid "CodeTools Options"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcodecreation
|
||||
msgid "Code Creation"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglinesplitting
|
||||
msgid "Line Splitting"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgspacenotcosmos
|
||||
msgid "Space"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgadditionalsrcpath
|
||||
msgid "Additional Source search path for all projects (.pp;.pas)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgjumpingetc
|
||||
msgid "Jumping (e.g. Method Jumping)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgadjusttopline
|
||||
msgid "Adjust top line due to comment in front"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcentercursorline
|
||||
msgid "Center Cursor Line"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcursorbeyondeol
|
||||
msgid "Cursor beyond EOL"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgclassinsertpolicy
|
||||
msgid "Class part insert policy"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgalphabetically
|
||||
msgid "Alphabetically"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtlast
|
||||
msgid "Last"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgmethodinspolicy
|
||||
msgid "Method insert policy"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtclassorder
|
||||
msgid "Class order"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgkeywordpolicy
|
||||
msgid "Keyword policy"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtlower
|
||||
msgid "lowercase"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtuppercase
|
||||
msgid "UPPERCASE"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlg1up2low
|
||||
msgid "Lowercase, first letter up"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgidentifierpolicy
|
||||
msgid "Identifier policy"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpropertycompletion
|
||||
msgid "Property completion"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcompleteproperties
|
||||
msgid "Complete properties"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtreadprefix
|
||||
msgid "Read prefix"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtwriteprefix
|
||||
msgid "Write prefix"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtstoredpostfix
|
||||
msgid "Stored postfix"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtvariableprefix
|
||||
msgid "Variable prefix"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgsetpropertyvariable
|
||||
msgid "Set property Variable"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgmaxlinelength
|
||||
msgid "Max line length:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgnotsplitlinefront
|
||||
msgid "Do not split line In front of:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgnotsplitlineafter
|
||||
msgid "Do not split line after:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtpreview
|
||||
msgid "Preview (Max line length = 1)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlginsspacefront
|
||||
msgid "Insert space in front of"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlginsspaceafter
|
||||
msgid "Insert space after"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgwrdpreview
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:locwndsrceditor
|
||||
msgid "Lazarus Source Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcompileroptions
|
||||
msgid "Compiler Options"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgsearchpaths
|
||||
msgid "Search Paths"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoparsing
|
||||
msgid "Parsing"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcodegeneration
|
||||
msgid "Code Generation"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcolinking
|
||||
msgid "Linking"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoother
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowcompileroptions
|
||||
msgid "Show compiler options"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoopts
|
||||
msgid "Options: "
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcostyle
|
||||
msgid "Style:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoasis
|
||||
msgid "As-Is"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgsymantecchecking
|
||||
msgid "Symantec Checking:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgdelphi2ext
|
||||
msgid "Delphi 2 Extensions"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcocops
|
||||
msgid "C Style Operators (*=, +=, /= and -=)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgassertcode
|
||||
msgid "Include Assertion Code"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglabelgoto
|
||||
msgid "Allow LABEL and GOTO"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcppinline
|
||||
msgid "C++ Styled INLINE"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcmacro
|
||||
msgid "C Style Macros (global)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgbp7cptb
|
||||
msgid "TP/BP 7.0 Compatible"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlginitdoneonly
|
||||
msgid "Constructor name must be 'init' (destructor must be 'done')"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgstatickeyword
|
||||
msgid "Static Keyword in Objects"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgdeplhicomp
|
||||
msgid "Delphi Compatible"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoansistr
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlggpccomp
|
||||
msgid "GPC (GNU Pascal Compiler) Compatible"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcounitstyle
|
||||
msgid "Unit Style:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgstatic
|
||||
msgid "Static"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgdynamic
|
||||
msgid "Dynamic"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcosmart
|
||||
msgid "Smart"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcochecks
|
||||
msgid "Checks:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcorange
|
||||
msgid "Range"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcooverflow
|
||||
msgid "Overflow"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcostack
|
||||
msgid "Stack"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgheapsize
|
||||
msgid "Heap Size"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcogenerate
|
||||
msgid "Generate:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcofast
|
||||
msgid "Faster Code"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcosmaller
|
||||
msgid "Smaller Code"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgtargetproc
|
||||
msgid "Target Processor:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgoptimiz
|
||||
msgid "Optimizations:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcokeepvarsreg
|
||||
msgid "Keep certain variables in registers"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlguncertopt
|
||||
msgid "Uncertain Optimizations"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglevel1opt
|
||||
msgid "Level 1 (Quick Optimizations)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglevel2opt
|
||||
msgid "Level 2 (Level 1 + Slower Optimizations)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglevel3opt
|
||||
msgid "Level 3 (Level 2 + Uncertain)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcodebugging
|
||||
msgid "Debugging:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcogdb
|
||||
msgid "Generate Debugging Info For GDB (Slows Compiling)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcodbx
|
||||
msgid "Generate Debugging Info For DBX (Slows Compiling)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglnumsbct
|
||||
msgid "Display Line Numbers in Run-time Error Backtraces"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoheaptrc
|
||||
msgid "Use Heaptrc Unit"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlggprof
|
||||
msgid "Generate code for gprof"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcostrip
|
||||
msgid "Strip Symbols From Executable"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglinklibraries
|
||||
msgid "Link Libraries:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglinkdinlibs
|
||||
msgid "Link With Dynamic Libraries"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglinkstatlibs
|
||||
msgid "Link With Static Libraries"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpassoptslinker
|
||||
msgid "Pass Options To The Linker (Delimiter is space)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgverbosity
|
||||
msgid "Verbosity:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoshowerr
|
||||
msgid "Show Errors"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowwarnings
|
||||
msgid "Show Warnings"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshownotes
|
||||
msgid "Show Notes"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowhint
|
||||
msgid "Show Hints"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowgeneralinfo
|
||||
msgid "Show General Info"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowprocserror
|
||||
msgid "Show all procs on error"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshoweverything
|
||||
msgid "Show Everything"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowdebuginfo
|
||||
msgid "Show Debug Info"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowusedfiles
|
||||
msgid "Show Used Files"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowtriedfiles
|
||||
msgid "Show Tried Files"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowdefinedmacros
|
||||
msgid "Show Defined Macros"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowcompiledprocedures
|
||||
msgid "Show Compiled Procedures"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshowconditionals
|
||||
msgid "Show Conditionals"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgshownothing
|
||||
msgid "Show Nothing (only errors)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgwritefpclogo
|
||||
msgid "Write an FPC Logo"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlghintsunused
|
||||
msgid "Show Hints for unused project units"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgconfigfiles
|
||||
msgid "Config Files:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgusefpccfg
|
||||
msgid "Use Compiler Config File (fpc.cfg)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlguseadditionalconfig
|
||||
msgid "Use Additional Compiler Config File"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgstopafternrerr
|
||||
msgid "Stop after number of errors:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgotherunitfiles
|
||||
msgid "Other Unit Files (Delimiter is semicolon):"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoincfiles
|
||||
msgid "Include Files:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcosources
|
||||
msgid "Other Sources: (.pp/.pas files)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcolibraries
|
||||
msgid "Libraries:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgtofpcpath
|
||||
msgid "Path To Compiler:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgunitoutp
|
||||
msgid "Unit output directory:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlglclwidgettype
|
||||
msgid "LCL Widget Type"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgbutapply
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgcoshowoptions
|
||||
msgid "Show Options"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgmainviewforms
|
||||
msgid "View project forms"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgmainviewunits
|
||||
msgid "View project units"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgmulti
|
||||
msgid "Multi"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2,6 +2,10 @@
|
||||
msgid "Selection tool"
|
||||
msgstr "Инструмент выбора"
|
||||
|
||||
#: lazarusidestrconsts:lismenuconvertdfmtolfm
|
||||
msgid "Convert DFM file to LFM"
|
||||
msgstr "ðÒÅÏÂÒÁÚÏ×ÁÔØ DFM × LFM"
|
||||
|
||||
#: lazarusidestrconsts:liscursorcolumnincurrenteditor
|
||||
msgid "Cursor column in current editor"
|
||||
msgstr "Колонка курсора в этом редакторе"
|
||||
@ -118,6 +122,14 @@ msgstr "
|
||||
msgid "Open"
|
||||
msgstr "Открыть"
|
||||
|
||||
#: lazarusidestrconsts:lismenurevert
|
||||
msgid "Revert"
|
||||
msgstr "ïÂÒÁÔÎÙÊ ÜËÓÐÏÒÔ"
|
||||
|
||||
#: lazarusidestrconsts:lismenusettings
|
||||
msgid "Configure custom tools ..."
|
||||
msgstr "îÁÓÔÒÏÉÔØ ÉÎÓÔÒÕÍÅÎÔÙ ÐÏÌØÚÏ×ÁÔÅÌÑ"
|
||||
|
||||
#: lazarusidestrconsts:lismenuopenrecent
|
||||
msgid "Open Recent"
|
||||
msgstr "Открыть недавнее"
|
||||
@ -186,6 +198,10 @@ msgstr "
|
||||
msgid "Tabs to spaces in selection"
|
||||
msgstr "ТАБ сделать пробелами в выделенном"
|
||||
|
||||
#: lazarusidestrconsts:lismenuviewunitdependencies
|
||||
msgid "View Unit Dependencies"
|
||||
msgstr "ðÏËÁÚÁÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÍÏÄÕÌÅÊ"
|
||||
|
||||
#: lazarusidestrconsts:lismenucommentselection
|
||||
msgid "Comment selection"
|
||||
msgstr "Закомментировать"
|
||||
@ -348,6 +364,10 @@ msgstr "
|
||||
msgid "New Project"
|
||||
msgstr "Создать проект"
|
||||
|
||||
#: lazarusidestrconsts:lismenunewprojectfromfile
|
||||
msgid "New Project from file"
|
||||
msgstr "óÏÚÄÁÔØ ÐÒÏÅËÔ ÉÚ ÆÁÊÌÁ"
|
||||
|
||||
#: lazarusidestrconsts:lismenuopenproject
|
||||
msgid "Open Project"
|
||||
msgstr "Открыть проект"
|
||||
@ -505,7 +525,7 @@ msgid "Please check the compiler name"
|
||||
msgstr "Проверьте имя компилятора"
|
||||
|
||||
#: lazarusidestrconsts:lisaboutlazarusmsg
|
||||
msgid "License: GPL/LGPL\015Lazarus are the class libraries for Free Pascal that emulate Delphi.\015Free Pascal is a (L)GPL'ed compiler that runs on Linux,\015Win32, OS/2, 68K and more. Free Pascal is designed to be able to\015understand and compile Delphi syntax, which is of course OOP.\015Lazarus is the missing part of the puzzle that will allow you to\015develop Delphi like programs in all of the above platforms.\015The IDE will eventually become a RAD tool like Delphi.\015\015As Lazarus is growing we need more developers.\015For example: Write a nicer about dialog with a logo."
|
||||
msgid "License: GPL/LGPL\nLazarus are the class libraries for Free Pascal that emulate Delphi.\nFree Pascal is a (L)GPL'ed compiler that runs on Linux,\nWin32, OS/2, 68K and more. Free Pascal is designed to be able to\nunderstand and compile Delphi syntax, which is of course OOP.\nLazarus is the missing part of the puzzle that will allow you to\ndevelop Delphi like programs in all of the above platforms.\nThe IDE will eventually become a RAD tool like Delphi.\n\nAs Lazarus is growing we need more developers.\nFor example: Write a nicer about dialog with a logo."
|
||||
msgstr "Лицензия: GPL/LGPL\015Lazarus - это библиотеки классов для FreePascal, эмулирующие Delphi.\015Free Pascal - это (L)GPLьный компилятор, запускаемый под Linux,\015Win32, OS/2, 68K и др. Free Pascal разработан\015для компиляции програм с синтаксисом Delphi, который, естественно, ООП.\015Lazarus - утраченне звено, которое позволит Вам\015разрабатывать программы типа Delphis подо всеми вышеуказанными платформами.\015IDE когда-нибудь станет инструментом RAD, как и Delphi.\015\015По мере роста Lazarus, нам нужно больше разработчиков.\015Например, написать лучший диалог 'О программе' с логотипом."
|
||||
|
||||
#: lazarusidestrconsts:lisunitnamealreadyexistscap
|
||||
@ -528,6 +548,10 @@ msgstr "
|
||||
msgid "Save all"
|
||||
msgstr "Сохранить все"
|
||||
|
||||
#: lazarusidestrconsts:lismenuviewtoggleformunit
|
||||
msgid "Toggle form/unit view"
|
||||
msgstr "ðÅÒÅËÌÀÞÉÔØ ÆÏÒÍÕ/ÍÏÄÕÌØ"
|
||||
|
||||
#: lazarusidestrconsts:lishinttoggleformunit
|
||||
msgid "Toggle Form/Unit"
|
||||
msgstr "Переключить форму/модуль"
|
||||
@ -1124,3 +1148,480 @@ msgstr "
|
||||
msgid "Indent code to"
|
||||
msgstr "Выровнять код по"
|
||||
|
||||
#: lazarusidestrconsts:dlgcodetoolsopts
|
||||
msgid "CodeTools Options"
|
||||
msgstr "ðÁÒÁÍÅÔÒÙ CodeTools"
|
||||
|
||||
#: lazarusidestrconsts:dlgcodecreation
|
||||
msgid "Code Creation"
|
||||
msgstr "óÏÚÄÁÎÉÅ ËÏÄÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlglinesplitting
|
||||
msgid "Line Splitting"
|
||||
msgstr "òÁÚÒÙ× ÓÔÒÏË"
|
||||
|
||||
#: lazarusidestrconsts:dlgspacenotcosmos
|
||||
msgid "Space"
|
||||
msgstr "ðÒÏÂÅÌ"
|
||||
|
||||
#: lazarusidestrconsts:dlgadditionalsrcpath
|
||||
msgid "Additional Source search path for all projects (.pp;.pas)"
|
||||
msgstr "äÏÐÏÌÎÉÔÅÌØÎÙÅ ÐÕÔÉ ÉÓÈÏÄÎÉËÏ× ÄÌÑ ×ÓÅÈ ÐÒÏÅËÔÏ× (.pp;.pas)"
|
||||
|
||||
#: lazarusidestrconsts:dlgjumpingetc
|
||||
msgid "Jumping (e.g. Method Jumping)"
|
||||
msgstr "ðÅÒÅÈÏÄ (ÎÁÐÒÉÍÅÒ, ÐÏ ÍÅÔÏÄÕ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgadjusttopline
|
||||
msgid "Adjust top line due to comment in front"
|
||||
msgstr "÷ÙÒÏ×ÎÑÔØ ×ÅÒÈÎÀÀ ÓÔÒÏËÕ ÐÏ ËÏÍÍÅÎÔÁÒÉÀ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcentercursorline
|
||||
msgid "Center Cursor Line"
|
||||
msgstr "ëÕÒÓÏÒ × ÃÅÎÔÒÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcursorbeyondeol
|
||||
msgid "Cursor beyond EOL"
|
||||
msgstr "ëÕÒÓÏÒ ×ÎÅ ËÏÎÃÁ ÓÔÒÏËÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgclassinsertpolicy
|
||||
msgid "Class part insert policy"
|
||||
msgstr "ðÏÌÉÔÉËÁ ×ÓÔÁ×ËÉ ÞÁÓÔÅÊ ËÌÁÓÓÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgalphabetically
|
||||
msgid "Alphabetically"
|
||||
msgstr "ðÏ ÁÌÆÁ×ÉÔÕ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtlast
|
||||
msgid "Last"
|
||||
msgstr "ðÏÓÌÅÄÎÉÍ"
|
||||
|
||||
#: lazarusidestrconsts:dlgmethodinspolicy
|
||||
msgid "Method insert policy"
|
||||
msgstr "ðÏÌÉÔÉËÁ ×ÓÔÁ×ËÉ ÍÅÔÏÄÏ×"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtclassorder
|
||||
msgid "Class order"
|
||||
msgstr "÷ ÐÏÒÑÄËÅ ËÌÁÓÓÏ×"
|
||||
|
||||
#: lazarusidestrconsts:dlgkeywordpolicy
|
||||
msgid "Keyword policy"
|
||||
msgstr "ðÏÌÉÔÉËÁ ËÌÀÞÅ×ÙÈ ÓÌÏ×"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtlower
|
||||
msgid "lowercase"
|
||||
msgstr "ÎÉÖÎÉÊ ÒÅÇÉÓÔÒ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtuppercase
|
||||
msgid "UPPERCASE"
|
||||
msgstr "÷åòèîéê òåçéóôò"
|
||||
|
||||
#: lazarusidestrconsts:dlg1up2low
|
||||
msgid "Lowercase, first letter up"
|
||||
msgstr "ôÏÌØËÏ 1Ñ ÂÕË×Á ÚÁÇÌÁ×ÎÁÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgidentifierpolicy
|
||||
msgid "Identifier policy"
|
||||
msgstr "ðÏÌÉÔÉËÁ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ×"
|
||||
|
||||
#: lazarusidestrconsts:dlgpropertycompletion
|
||||
msgid "Property completion"
|
||||
msgstr "úÁ×ÅÒÛÅÎÉÅ Ó×ÏÊÓÔ×"
|
||||
|
||||
#: lazarusidestrconsts:dlgcompleteproperties
|
||||
msgid "Complete properties"
|
||||
msgstr "úÁ×ÅÒÛÁÔØ Ó×ÏÊÓÔ×Á"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtreadprefix
|
||||
msgid "Read prefix"
|
||||
msgstr "ðÒÅÆÉËÓ READ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtwriteprefix
|
||||
msgid "Write prefix"
|
||||
msgstr "ðÒÅÆÉËÓ WRITE"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtstoredpostfix
|
||||
msgid "Stored postfix"
|
||||
msgstr "ðÒÅÆÉËÓ STORED"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtvariableprefix
|
||||
msgid "Variable prefix"
|
||||
msgstr "ðÒÅÆÉËÓ ÐÅÒÅÍÅÎÎÏÊ"
|
||||
|
||||
#: lazarusidestrconsts:dlgsetpropertyvariable
|
||||
msgid "Set property Variable"
|
||||
msgstr "ðÅÒÅÍÅÎÎÁÑ Ó×ÏÊÓÔ×Á"
|
||||
|
||||
#: lazarusidestrconsts:dlgmaxlinelength
|
||||
msgid "Max line length:"
|
||||
msgstr "max ÄÌÉÎÁ ÓÔÒÏËÉ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgnotsplitlinefront
|
||||
msgid "Do not split line In front of:"
|
||||
msgstr "îÅ ÒÁÚÒÙ×ÁÔØ ÓÔÒÏËÕ ÐÅÒÅÄ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgnotsplitlineafter
|
||||
msgid "Do not split line after:"
|
||||
msgstr "îÅ ÒÁÚÒÙ×ÁÔØ ÓÔÒÏËÕ ÐÏÓÌÅ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcdtpreview
|
||||
msgid "Preview (Max line length = 1)"
|
||||
msgstr "ðÒÅÄÐÒÏÓÍÏÔÒ(max ÄÌÉÎÁ=1)"
|
||||
|
||||
#: lazarusidestrconsts:dlginsspacefront
|
||||
msgid "Insert space in front of"
|
||||
msgstr "÷ÓÔÁ×ÌÑÔØ ÐÒÏÂÅÌÙ ÐÅÒÅÄ"
|
||||
|
||||
#: lazarusidestrconsts:dlginsspaceafter
|
||||
msgid "Insert space after"
|
||||
msgstr "÷ÓÔÁ×ÌÑÔØ ÐÒÏÂÅÌÙ ÐÏÓÌÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgwrdpreview
|
||||
msgid "Preview"
|
||||
msgstr "ðÒÅÄÐÒÏÓÍÏÔÒ"
|
||||
|
||||
#: lazarusidestrconsts:locwndsrceditor
|
||||
msgid "Lazarus Source Editor"
|
||||
msgstr "òÅÄÁËÔÏÒ ÉÓÈÏÄÎÏÇÏ ËÏÄÁ Lazarus"
|
||||
|
||||
#: lazarusidestrconsts:dlgcompileroptions
|
||||
msgid "Compiler Options"
|
||||
msgstr "ïÐÃÉÉ ËÏÍÐÉÌÑÔÏÒÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgsearchpaths
|
||||
msgid "Search Paths"
|
||||
msgstr "ðÕÔÉ ÐÏÉÓËÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoparsing
|
||||
msgid "Parsing"
|
||||
msgstr "ïÂÒÁÂÏÔËÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcodegeneration
|
||||
msgid "Code Generation"
|
||||
msgstr "óÏÚÄÁÎÉÅ ËÏÄÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcolinking
|
||||
msgid "Linking"
|
||||
msgstr "ó×ÑÚÙ×ÁÎÉÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoother
|
||||
msgid "Other"
|
||||
msgstr "äÒÕÇÏÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowcompileroptions
|
||||
msgid "Show compiler options"
|
||||
msgstr "ðÏËÁÚÁÔØ ÏÐÃÉÉ ËÏÍÐÉÌÑÔÏÒÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoopts
|
||||
msgid "Options: "
|
||||
msgstr "ðÁÒÁÍÅÔÒÙ: "
|
||||
|
||||
#: lazarusidestrconsts:dlgcostyle
|
||||
msgid "Style:"
|
||||
msgstr "óÔÉÌØ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoasis
|
||||
msgid "As-Is"
|
||||
msgstr "ëÁË-ÅÓÔØ"
|
||||
|
||||
#: lazarusidestrconsts:dlgsymantecchecking
|
||||
msgid "Symantec Checking:"
|
||||
msgstr "ðÒÏ×ÅÒËÁ ÓÅÍÁÎÔÉËÉ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgdelphi2ext
|
||||
msgid "Delphi 2 Extensions"
|
||||
msgstr "òÁÓÛÉÒÅÎÉÑ Delphi 2"
|
||||
|
||||
#: lazarusidestrconsts:dlgcocops
|
||||
msgid "C Style Operators (*=, +=, /= and -=)"
|
||||
msgstr "ïÐÅÒÁÔÏÒÙ ÓÔÉÌÑ C (*=, +=, /= and -=)"
|
||||
|
||||
#: lazarusidestrconsts:dlgassertcode
|
||||
msgid "Include Assertion Code"
|
||||
msgstr "÷ËÌÀÞÉÔØ ËÏÄ Assert"
|
||||
|
||||
#: lazarusidestrconsts:dlglabelgoto
|
||||
msgid "Allow LABEL and GOTO"
|
||||
msgstr "òÁÚÒÅÛÉÔØ LABEL É GOTO"
|
||||
|
||||
#: lazarusidestrconsts:dlgcppinline
|
||||
msgid "C++ Styled INLINE"
|
||||
msgstr "INLINE ÓÔÉÌÑ C++"
|
||||
|
||||
#: lazarusidestrconsts:dlgcmacro
|
||||
msgid "C Style Macros (global)"
|
||||
msgstr "íÁËÒÏÓÙ ÓÔÉÌÑ C (ÇÌÏÂÁÌØÎÏ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgbp7cptb
|
||||
msgid "TP/BP 7.0 Compatible"
|
||||
msgstr "óÏ×ÍÅÓÔÉÍÏÓÔØ Ó TP/BP 7.0"
|
||||
|
||||
#: lazarusidestrconsts:dlginitdoneonly
|
||||
msgid "Constructor name must be 'init' (destructor must be 'done')"
|
||||
msgstr "ëÏÎÓÔÒÕËÔÏÒ ÄÏÌÖÅÎ ÂÙÔØ 'init' (ÄÅÓÔÒÕËÔÏÒ - 'done')"
|
||||
|
||||
#: lazarusidestrconsts:dlgstatickeyword
|
||||
msgid "Static Keyword in Objects"
|
||||
msgstr "ëÌÀÞÅ×ÏÅ ÓÌÏ×Ï Static × ÏÂßÅËÔÁÈ"
|
||||
|
||||
#: lazarusidestrconsts:dlgdeplhicomp
|
||||
msgid "Delphi Compatible"
|
||||
msgstr "óÏ×ÍÅÓÔÉÍÏÓÔØ Ó Delphi"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoansistr
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "éÓÐÏÌØÚÏ×ÁÔØ ÓÔÒÏËÉ Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlggpccomp
|
||||
msgid "GPC (GNU Pascal Compiler) Compatible"
|
||||
msgstr "óÏ×ÍÅÓÔÉÍÏÓÔØ Ó GPC (GNU Pascal Compiler)"
|
||||
|
||||
#: lazarusidestrconsts:dlgcounitstyle
|
||||
msgid "Unit Style:"
|
||||
msgstr "óÔÉÌØ ÍÏÄÕÌÅÊ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgstatic
|
||||
msgid "Static"
|
||||
msgstr "óÔÁÔÉÞÅÓËÉÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgdynamic
|
||||
msgid "Dynamic"
|
||||
msgstr "äÉÎÁÍÉÞÅÓËÉÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcosmart
|
||||
msgid "Smart"
|
||||
msgstr "'õÍÎÙÅ'"
|
||||
|
||||
#: lazarusidestrconsts:dlgcochecks
|
||||
msgid "Checks:"
|
||||
msgstr "ðÒÏ×ÅÒËÁ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcorange
|
||||
msgid "Range"
|
||||
msgstr "äÉÁÐÁÚÏÎÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcooverflow
|
||||
msgid "Overflow"
|
||||
msgstr "ðÅÒÅÐÏÌÎÅÎÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcostack
|
||||
msgid "Stack"
|
||||
msgstr "óÔÅËÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgheapsize
|
||||
msgid "Heap Size"
|
||||
msgstr "òÁÚÍÅÒ ËÕÞÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcogenerate
|
||||
msgid "Generate:"
|
||||
msgstr "óÏÚÄÁÔØ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcofast
|
||||
msgid "Faster Code"
|
||||
msgstr "âÙÓÔÒÙÊ ËÏÄ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcosmaller
|
||||
msgid "Smaller Code"
|
||||
msgstr "íÅÎØÛÉÊ ËÏÄ"
|
||||
|
||||
#: lazarusidestrconsts:dlgtargetproc
|
||||
msgid "Target Processor:"
|
||||
msgstr "ðÒÏÃÅÓÓÏÒ ÂÉÎÁÒÎÉËÁ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgoptimiz
|
||||
msgid "Optimizations:"
|
||||
msgstr "ïÐÔÉÍÉÚÁÃÉÑ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcokeepvarsreg
|
||||
msgid "Keep certain variables in registers"
|
||||
msgstr "èÒÁÎÉÔØ ÎÅË. ÐÅÒÅÍÅÎÎÙÅ × ÒÅÇÉÓÔÒÁÈ"
|
||||
|
||||
#: lazarusidestrconsts:dlguncertopt
|
||||
msgid "Uncertain Optimizations"
|
||||
msgstr "îÅÓÔÁÎÄÁÒÔÎÁÑ ÏÐÔÉÍÉÚÁÃÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlglevel1opt
|
||||
msgid "Level 1 (Quick Optimizations)"
|
||||
msgstr "õÒÏ×ÅÎØ 1 (ÂÙÓÔÒÁÑ)"
|
||||
|
||||
#: lazarusidestrconsts:dlglevel2opt
|
||||
msgid "Level 2 (Level 1 + Slower Optimizations)"
|
||||
msgstr "õÒÏ×ÅÎØ 2 (ÕÒÏ×ÅÎØ 1 + ÂÏÌÅÅ ÍÅÄÌÅÎÎÁÑ)"
|
||||
|
||||
#: lazarusidestrconsts:dlglevel3opt
|
||||
msgid "Level 3 (Level 2 + Uncertain)"
|
||||
msgstr "õÒÏ×ÅÎØ 3 (ÕÒÏ×ÅÎØ 3 + ÎÅÓÔÁÎÄÁÒÔÎÁÑ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgcodebugging
|
||||
msgid "Debugging:"
|
||||
msgstr "ïÔÌÁÄËÁ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcogdb
|
||||
msgid "Generate Debugging Info For GDB (Slows Compiling)"
|
||||
msgstr "çÅÎÅÒÉÒÏ×ÁÔØ ÉÎÆÏÒÍÁÃÉÀ ÄÌÑ GDB (ÚÁÍÅÄÌÑÅÔ ÓÂÏÒËÕ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgcodbx
|
||||
msgid "Generate Debugging Info For DBX (Slows Compiling)"
|
||||
msgstr "çÅÎÅÒÉÒÏ×ÁÔØ ÉÎÆÏÒÍÁÃÉÀ ÄÌÑ DBX (ÚÁÍÅÄÌÑÅÔ ÓÂÏÒËÕ)"
|
||||
|
||||
#: lazarusidestrconsts:dlglnumsbct
|
||||
msgid "Display Line Numbers in Run-time Error Backtraces"
|
||||
msgstr "÷ÙÄÁÔØ ÎÏÍÅÒÁ ÓÔÒÏË × ÏÛÉÂËÁÈ ×ÒÅÍÅÎÉ ÉÓÐÏÌÎÅÎÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoheaptrc
|
||||
msgid "Use Heaptrc Unit"
|
||||
msgstr "éÓÐÏÌØÚÏ×ÁÔØ ÍÏÄÕÌØ Heaprc"
|
||||
|
||||
#: lazarusidestrconsts:dlggprof
|
||||
msgid "Generate code for gprof"
|
||||
msgstr "óÏÚÄÁÔØ ËÏÄ ÄÌÑ gprof"
|
||||
|
||||
#: lazarusidestrconsts:dlgcostrip
|
||||
msgid "Strip Symbols From Executable"
|
||||
msgstr "÷ÙÒÅÚÁÔØ ÓÉÍ×ÏÌÙ ÉÚ ÂÉÎÁÒÎÉËÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlglinklibraries
|
||||
msgid "Link Libraries:"
|
||||
msgstr "ó×ÑÚÙ×ÁÔØ Ó ÂÉÂÌÉÏÔÅËÁÍÉ:"
|
||||
|
||||
#: lazarusidestrconsts:dlglinkdinlibs
|
||||
msgid "Link With Dynamic Libraries"
|
||||
msgstr "ó×ÑÚÁÔØ Ó ÄÉÎÁÍÉÞÅÓËÉÍÉ ÂÉÂÌÉÏÔÅËÁÍÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlglinkstatlibs
|
||||
msgid "Link With Static Libraries"
|
||||
msgstr "ó×ÑÚÁÔØ ÓÏ ÓÔÁÔÉÞÅÓËÉÍÉ ÂÉÂÌÉÏÔÅËÁÍÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgpassoptslinker
|
||||
msgid "Pass Options To The Linker (Delimiter is space)"
|
||||
msgstr "ðÅÒÅÄÁÔØ ÏÐÃÉÉ ÌÉÎËÅÒÕ (ÏÔÄÅÌÑÔØ ÐÒÏÂÅÌÁÍÉ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgverbosity
|
||||
msgid "Verbosity:"
|
||||
msgstr "ðÏÄÒÏÂÎÏÓÔØ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoshowerr
|
||||
msgid "Show Errors"
|
||||
msgstr "ðÏËÁÚÁÔØ ÏÛÉÂËÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowwarnings
|
||||
msgid "Show Warnings"
|
||||
msgstr "ðÏËÁÚÁÔØ ÐÒÅÄÕÐÒÅÖÄÅÎÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshownotes
|
||||
msgid "Show Notes"
|
||||
msgstr "ðÏËÁÚÁÔØ ÚÁÍÅÔËÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowhint
|
||||
msgid "Show Hints"
|
||||
msgstr "ðÏËÁÚÁÔØ ÐÏÄÓËÁÚËÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowgeneralinfo
|
||||
msgid "Show General Info"
|
||||
msgstr "ðÏËÁÚÁÔØ ÏÂÝÉÅ Ó×ÅÄÅÎÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowprocserror
|
||||
msgid "Show all procs on error"
|
||||
msgstr "÷ÓÅ ÐÒÏÃ-ÒÙ ÐÒÉ ÏÛÉÂËÁÈ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshoweverything
|
||||
msgid "Show Everything"
|
||||
msgstr "ðÏËÁÚÁÔØ ×ÓÅ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowdebuginfo
|
||||
msgid "Show Debug Info"
|
||||
msgstr "ïÔÌÁÄÏÞÎÙÅ Ó×ÅÄÅÎÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowusedfiles
|
||||
msgid "Show Used Files"
|
||||
msgstr "éÓÐÏÌØÚÏ×ÁÎÎÙÅ ÆÁÊÌÙ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowtriedfiles
|
||||
msgid "Show Tried Files"
|
||||
msgstr "éÓÐÙÔÙ×ÁÅÍÙÅ ÆÁÊÌÙ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowdefinedmacros
|
||||
msgid "Show Defined Macros"
|
||||
msgstr "ðÏËÁÚÁÔØ ÍÁËÒÏÓÙ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowcompiledprocedures
|
||||
msgid "Show Compiled Procedures"
|
||||
msgstr "ïÔËÏÍÐÉÒÉÒÏ×ÁÎÎÙÅ ÐÒÏÃ-ÒÙ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshowconditionals
|
||||
msgid "Show Conditionals"
|
||||
msgstr "ðÏËÁÚÁÔØ ÕÓÌÏ×ÉÑ"
|
||||
|
||||
#: lazarusidestrconsts:dlgshownothing
|
||||
msgid "Show Nothing (only errors)"
|
||||
msgstr "îÉÞÅÇÏ (ÔÏÌØËÏ ÏÛÉÂËÉ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgwritefpclogo
|
||||
msgid "Write an FPC Logo"
|
||||
msgstr "÷ÙÄÁÔØ ÌÏÇÏÔÉÐ FPC"
|
||||
|
||||
#: lazarusidestrconsts:dlghintsunused
|
||||
msgid "Show Hints for unused project units"
|
||||
msgstr "ðÏÄÓËÁÚËÉ ÄÌÑ ÎÅÎÕÖÎÙÈ ÍÏÄÕÌÅÊ ÐÒÏÅËÔÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgconfigfiles
|
||||
msgid "Config Files:"
|
||||
msgstr "æÁÊÌÙ ÎÁÓÔÒÏÅË:"
|
||||
|
||||
#: lazarusidestrconsts:dlgusefpccfg
|
||||
msgid "Use Compiler Config File (fpc.cfg)"
|
||||
msgstr "éÓÐÏÌØÚÏ×ÁÔØ ÆÁÊÌ ÎÁÓÔÒÏÅË fpc.cfg"
|
||||
|
||||
#: lazarusidestrconsts:dlguseadditionalconfig
|
||||
msgid "Use Additional Compiler Config File"
|
||||
msgstr "äÏÐÏÌÎÉÔÅÌØÎÙÊ ÆÁÊÌ ÎÁÓÔÒÏÅË ËÏÍÐÉÌÑÔÏÒÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgstopafternrerr
|
||||
msgid "Stop after number of errors:"
|
||||
msgstr "ïÓÔÁÎÏ× ÐÏÓÌÅ ÞÉÓÌÁ ÏÛÉÂÏË"
|
||||
|
||||
#: lazarusidestrconsts:dlgotherunitfiles
|
||||
msgid "Other Unit Files (Delimiter is semicolon):"
|
||||
msgstr "äÒÕÇÉÅ ÆÁÊÌÙ ÍÏÄÕÌÅÊ (ÒÁÚÄÅÌÑÔØ ÔÏÞËÏÊ Ó ÚÁÐÑÔÏÊ)"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoincfiles
|
||||
msgid "Include Files:"
|
||||
msgstr "÷ËÌÀÞÁÅÍÙÅ ÆÁÊÌÙ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgcosources
|
||||
msgid "Other Sources: (.pp/.pas files)"
|
||||
msgstr "äÒÕÇÉÅ ÉÓÈÏÄÎÉËÉ: (ÆÁÊÌÙ .pp/.pas)"
|
||||
|
||||
#: lazarusidestrconsts:dlgcolibraries
|
||||
msgid "Libraries:"
|
||||
msgstr "âÉÂÌÉÏÔÅËÁ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgtofpcpath
|
||||
msgid "Path To Compiler:"
|
||||
msgstr "ðÕÔØ Ë ËÏÍÐÉÌÑÔÏÒÕ:"
|
||||
|
||||
#: lazarusidestrconsts:dlgunitoutp
|
||||
msgid "Unit output directory:"
|
||||
msgstr "ëÁÔÁÌÏÇ ÄÌÑ ÓÏÂÒÁÎÎÙÈ ÍÏÄÕÌÅÊ:"
|
||||
|
||||
|
||||
#: lazarusidestrconsts:dlgbutapply
|
||||
msgid "Apply"
|
||||
msgstr "ðÒÉÍÅÎÉÔØ"
|
||||
|
||||
#: lazarusidestrconsts:dlgcoshowoptions
|
||||
msgid "Show Options"
|
||||
msgstr "ðÏËÁÚÁÔØ ÏÐÃÉÉ"
|
||||
|
||||
#: lazarusidestrconsts:dlgmainviewforms
|
||||
msgid "View project forms"
|
||||
msgstr "ðÏËÁÚÁÔØ ÆÏÒÍÙ ÐÒÏÅËÔÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgmainviewunits
|
||||
msgid "View project units"
|
||||
msgstr "ðÏËÁÚÁÔØ ÍÏÄÕÌÉ ÐÒÏÅËÔÁ"
|
||||
|
||||
#: lazarusidestrconsts:dlgmulti
|
||||
msgid "Multi"
|
||||
msgstr "íÕÌØÔÉ"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user