mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 15:30:38 +02:00
codetools: fpc template from config cache
git-svn-id: trunk@26628 -
This commit is contained in:
parent
33b28ccbcd
commit
10bd683ca8
@ -174,11 +174,11 @@ ResourceString
|
||||
// definetemplates
|
||||
ctsUnknownFunction = 'Unknown function %s';
|
||||
ctsSyntaxErrorInExpr = 'Syntax Error in expression "%s"';
|
||||
ctsDefaultppc386Symbol = 'Default ppc386 symbol';
|
||||
ctsDefaultppc386TargetOperatingSystem = 'Default ppc386 target Operating System';
|
||||
ctsDefaultppc386SourceOperatingSystem = 'Default ppc386 source Operating System';
|
||||
ctsDefaultppc386Source2OperatingSystem = 'Default ppc386 source Operating System 2';
|
||||
ctsDefaultppc386TargetProcessor = 'Default ppc386 target processor';
|
||||
ctsDefaultFPCSymbol = 'Default fpc symbol';
|
||||
ctsDefaultFPCTargetOperatingSystem = 'Default fpc target Operating System';
|
||||
ctsDefaultFPCSourceOperatingSystem = 'Default fpc source Operating System';
|
||||
ctsDefaultFPCSource2OperatingSystem = 'Default fpc source Operating System 2';
|
||||
ctsDefaultFPCTargetProcessor = 'Default fpc target processor';
|
||||
ctsFreePascalCompilerInitialMacros = 'Free Pascal Compiler initial macros';
|
||||
ctsFreePascalSourcesPlusDesc = 'Free Pascal Sources, %s';
|
||||
ctsSourceFilenamesForStandardFPCUnits =
|
||||
|
@ -667,6 +667,7 @@ type
|
||||
TargetOS: string; // will be passed lowercase
|
||||
TargetCPU: string; // will be passed lowercase
|
||||
Compiler: string; // full file name
|
||||
CompilerOptions: string;
|
||||
// values
|
||||
CompilerDate: longint;
|
||||
TargetCompiler: string; // when Compiler is fpc, this is the real compiler (e.g. ppc386)
|
||||
@ -713,7 +714,7 @@ type
|
||||
procedure SaveToFile(Filename: string);
|
||||
procedure IncreaseChangeStamp;
|
||||
property ChangeStamp: integer read FChangeStamp;
|
||||
function Find(CompilerFilename, TargetOS, TargetCPU: string;
|
||||
function Find(CompilerFilename, CompilerOptions, TargetOS, TargetCPU: string;
|
||||
CreateIfNotExists: boolean): TFPCTargetConfigCache;
|
||||
end;
|
||||
|
||||
@ -780,6 +781,7 @@ type
|
||||
FCaches: TFPCDefinesCache;
|
||||
FChangeStamp: integer;
|
||||
FCompilerFilename: string;
|
||||
FCompilerOptions: string;
|
||||
FFPCSourceDirectory: string;
|
||||
FTargetCPU: string;
|
||||
FTargetOS: string;
|
||||
@ -793,6 +795,7 @@ type
|
||||
fSrcDuplicates: TStringToStringTree; // lower case unit to semicolon separated list of files
|
||||
fFlags: TFPCUnitToSrcCacheFlags;
|
||||
procedure SetCompilerFilename(const AValue: string);
|
||||
procedure SetCompilerOptions(const AValue: string);
|
||||
procedure SetFPCSourceDirectory(const AValue: string);
|
||||
procedure SetTargetCPU(const AValue: string);
|
||||
procedure SetTargetOS(const AValue: string);
|
||||
@ -807,6 +810,7 @@ type
|
||||
procedure Clear;
|
||||
property Caches: TFPCDefinesCache read FCaches;
|
||||
property CompilerFilename: string read FCompilerFilename write SetCompilerFilename;
|
||||
property CompilerOptions: string read FCompilerOptions write SetCompilerOptions;
|
||||
property TargetOS: string read FTargetOS write SetTargetOS; // case insensitive, will be passed lowercase
|
||||
property TargetCPU: string read FTargetCPU write SetTargetCPU; // case insensitive, will be passed lowercase
|
||||
property FPCSourceDirectory: string read FFPCSourceDirectory write SetFPCSourceDirectory;
|
||||
@ -894,6 +898,8 @@ function GatherUnitsInFPCSources(Files: TStringList;
|
||||
TargetOS: string = ''; TargetCPU: string = '';
|
||||
Duplicates: TStringToStringTree = nil; // lower case unit to semicolon separated list of files
|
||||
Rules: TFPCSourceRules = nil): TStringToStringTree;
|
||||
function CreateFPCTemplate(Config: TFPCTargetConfigCache;
|
||||
Owner: TObject): TDefineTemplate;
|
||||
procedure CheckPPUSources(PPUFiles, // lowercase unitname to filename
|
||||
UnitToSource, // lowercase unitname to file name
|
||||
UnitToDuplicates: TStringToStringTree; // lowercase unitname to semicolon separated list of files
|
||||
@ -1597,6 +1603,74 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
function CreateFPCTemplate(Config: TFPCTargetConfigCache; Owner: TObject
|
||||
): TDefineTemplate;
|
||||
var
|
||||
Node: TAVLTreeNode;
|
||||
StrItem: PStringToStringTreeItem;
|
||||
NewDefTempl: TDefineTemplate;
|
||||
TargetOS: String;
|
||||
SrcOS: String;
|
||||
SrcOS2: String;
|
||||
TargetCPU: String;
|
||||
begin
|
||||
Result:=TDefineTemplate.Create(StdDefTemplFPC,
|
||||
ctsFreePascalCompilerInitialMacros,'','',da_Block);
|
||||
|
||||
// define #TargetOS
|
||||
TargetOS:=Config.TargetOS;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define TargetOS',
|
||||
ctsDefaultFPCTargetOperatingSystem,
|
||||
ExternalMacroStart+'TargetOS',TargetOS,da_DefineRecurse);
|
||||
Result.AddChild(NewDefTempl);
|
||||
// define #SrcOS
|
||||
SrcOS:=GetDefaultSrcOSForTargetOS(TargetOS);
|
||||
if SrcOS='' then SrcOS:=TargetOS;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define SrcOS',
|
||||
ctsDefaultFPCSourceOperatingSystem,
|
||||
ExternalMacroStart+'SrcOS',SrcOS,da_DefineRecurse);
|
||||
Result.AddChild(NewDefTempl);
|
||||
// define #SrcOS2
|
||||
SrcOS2:=GetDefaultSrcOS2ForTargetOS(TargetOS);
|
||||
if SrcOS2='' then SrcOS2:=TargetOS;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define SrcOS2',
|
||||
ctsDefaultFPCSource2OperatingSystem,
|
||||
ExternalMacroStart+'SrcOS2',SrcOS2,da_DefineRecurse);
|
||||
Result.AddChild(NewDefTempl);
|
||||
// define #TargetProcessor
|
||||
TargetCPU:=Config.TargetCPU;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define TargetProcessor',
|
||||
ctsDefaultFPCTargetProcessor,
|
||||
ExternalMacroStart+'TargetProcessor',TargetCPU,
|
||||
da_DefineRecurse);
|
||||
Result.AddChild(NewDefTempl);
|
||||
|
||||
if Config.Defines<>nil then begin
|
||||
Node:=Config.Defines.Tree.FindLowest;
|
||||
while Node<>nil do begin
|
||||
StrItem:=PStringToStringTreeItem(Node.Data);
|
||||
NewDefTempl:=TDefineTemplate.Create('Define '+StrItem^.Name,
|
||||
'Macro',StrItem^.Name,StrItem^.Value,da_DefineRecurse);
|
||||
Result.AddChild(NewDefTempl);
|
||||
Node:=Config.Defines.Tree.FindSuccessor(Node);
|
||||
end;
|
||||
end;
|
||||
|
||||
if Config.Undefines<>nil then begin
|
||||
Node:=Config.Defines.Tree.FindLowest;
|
||||
while Node<>nil do begin
|
||||
StrItem:=PStringToStringTreeItem(Node.Data);
|
||||
NewDefTempl:=TDefineTemplate.Create('Undefine '+StrItem^.Name,
|
||||
'Macro',StrItem^.Name,'',da_UndefineRecurse);
|
||||
Result.AddChild(NewDefTempl);
|
||||
Node:=Config.Defines.Tree.FindSuccessor(Node);
|
||||
end;
|
||||
end;
|
||||
|
||||
Result.SetFlags([dtfAutoGenerated],[],false);
|
||||
Result.SetDefineOwner(Owner,true);
|
||||
end;
|
||||
|
||||
procedure CheckPPUSources(PPUFiles, UnitToSource,
|
||||
UnitToDuplicates: TStringToStringTree;
|
||||
var Duplicates, Missing: TStringToStringTree);
|
||||
@ -4146,7 +4220,7 @@ var
|
||||
if Description<>'' then
|
||||
Desc:=Description
|
||||
else
|
||||
Desc:=ctsDefaultppc386Symbol;
|
||||
Desc:=ctsDefaultFPCSymbol;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define '+SymbolName,
|
||||
Desc,SymbolName,SymbolValue,da_DefineRecurse);
|
||||
AddTemplate(NewDefTempl);
|
||||
@ -4328,21 +4402,21 @@ begin
|
||||
// define #TargetOS
|
||||
TargetOS:=copy(Buf,1,i-1);
|
||||
NewDefTempl:=TDefineTemplate.Create('Define TargetOS',
|
||||
ctsDefaultppc386TargetOperatingSystem,
|
||||
ctsDefaultFPCTargetOperatingSystem,
|
||||
ExternalMacroStart+'TargetOS',TargetOS,da_DefineRecurse);
|
||||
AddTemplate(NewDefTempl);
|
||||
// define #SrcOS
|
||||
SrcOS:=GetDefaultSrcOSForTargetOS(TargetOS);
|
||||
if SrcOS='' then SrcOS:=TargetOS;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define SrcOS',
|
||||
ctsDefaultppc386SourceOperatingSystem,
|
||||
ctsDefaultFPCSourceOperatingSystem,
|
||||
ExternalMacroStart+'SrcOS',SrcOS,da_DefineRecurse);
|
||||
AddTemplate(NewDefTempl);
|
||||
// define #SrcOS2
|
||||
SrcOS2:=GetDefaultSrcOS2ForTargetOS(TargetOS);
|
||||
if SrcOS2='' then SrcOS2:=TargetOS;
|
||||
NewDefTempl:=TDefineTemplate.Create('Define SrcOS2',
|
||||
ctsDefaultppc386Source2OperatingSystem,
|
||||
ctsDefaultFPCSource2OperatingSystem,
|
||||
ExternalMacroStart+'SrcOS2',SrcOS2,da_DefineRecurse);
|
||||
AddTemplate(NewDefTempl);
|
||||
break;
|
||||
@ -4377,7 +4451,7 @@ begin
|
||||
if Buf[i] in [#10,#13] then begin
|
||||
TargetProcessor:=copy(Buf,1,i-1);
|
||||
NewDefTempl:=TDefineTemplate.Create('Define TargetProcessor',
|
||||
ctsDefaultppc386TargetProcessor,
|
||||
ctsDefaultFPCTargetProcessor,
|
||||
ExternalMacroStart+'TargetProcessor',TargetProcessor,
|
||||
da_DefineRecurse);
|
||||
AddTemplate(NewDefTempl);
|
||||
@ -6548,6 +6622,7 @@ end;
|
||||
procedure TFPCTargetConfigCache.Clear;
|
||||
begin
|
||||
CompilerDate:=0;
|
||||
CompilerOptions:='';
|
||||
TargetCompiler:='';
|
||||
TargetCompilerDate:=0;
|
||||
ConfigFiles.Clear;
|
||||
@ -6593,6 +6668,7 @@ begin
|
||||
if (TargetOS<>Item.TargetOS)
|
||||
or (TargetCPU<>Item.TargetCPU)
|
||||
or (Compiler<>Item.Compiler)
|
||||
or (CompilerOptions<>Item.CompilerOptions)
|
||||
then
|
||||
exit;
|
||||
end;
|
||||
@ -6619,6 +6695,7 @@ begin
|
||||
TargetOS:=Item.TargetOS;
|
||||
TargetCPU:=Item.TargetCPU;
|
||||
Compiler:=Item.Compiler;
|
||||
CompilerOptions:=Item.CompilerOptions;
|
||||
// values
|
||||
CompilerDate:=Item.CompilerDate;
|
||||
TargetCompiler:=Item.TargetCompiler;
|
||||
@ -6674,10 +6751,11 @@ begin
|
||||
|
||||
TargetOS:=XMLConfig.GetValue(Path+'TargetOS','');
|
||||
TargetCPU:=XMLConfig.GetValue(Path+'TargetCPU','');
|
||||
Compiler:=XMLConfig.GetValue(Path+'Compiler','');
|
||||
CompilerDate:=XMLConfig.GetValue(Path+'CompilerDate',0);
|
||||
TargetCompiler:=XMLConfig.GetValue(Path+'TargetCompiler','');
|
||||
TargetCompilerDate:=XMLConfig.GetValue(Path+'TargetCompilerDate',0);
|
||||
Compiler:=XMLConfig.GetValue(Path+'Compiler/File','');
|
||||
CompilerOptions:=XMLConfig.GetValue(Path+'Compiler/Options','');
|
||||
CompilerDate:=XMLConfig.GetValue(Path+'Compiler/Date',0);
|
||||
TargetCompiler:=XMLConfig.GetValue(Path+'TargetCompiler/File','');
|
||||
TargetCompilerDate:=XMLConfig.GetValue(Path+'TargetCompiler/Date',0);
|
||||
ConfigFiles.LoadFromXMLConfig(XMLConfig,Path+'Configs/');
|
||||
|
||||
// defines: format: Define<Number>/Name,Value
|
||||
@ -6765,9 +6843,10 @@ var
|
||||
begin
|
||||
XMLConfig.SetDeleteValue(Path+'TargetOS',TargetOS,'');
|
||||
XMLConfig.SetDeleteValue(Path+'TargetCPU',TargetCPU,'');
|
||||
XMLConfig.SetDeleteValue(Path+'Compiler',Compiler,'');
|
||||
XMLConfig.SetDeleteValue(Path+'CompilerDate',CompilerDate,0);
|
||||
XMLConfig.SetDeleteValue(Path+'TargetCompiler',TargetCompiler,'');
|
||||
XMLConfig.SetDeleteValue(Path+'Compiler/File',Compiler,'');
|
||||
XMLConfig.SetDeleteValue(Path+'Compiler/Options',CompilerOptions,'');
|
||||
XMLConfig.SetDeleteValue(Path+'Compiler/Date',CompilerDate,0);
|
||||
XMLConfig.SetDeleteValue(Path+'TargetCompiler/File',TargetCompiler,'');
|
||||
XMLConfig.SetDeleteValue(Path+'TargetCompilerDate',TargetCompilerDate,0);
|
||||
ConfigFiles.SaveToXMLConfig(XMLConfig,Path+'Configs/');
|
||||
|
||||
@ -6920,8 +6999,11 @@ begin
|
||||
OldOptions.Assign(Self);
|
||||
Clear;
|
||||
// run fpc and parse output
|
||||
if ExtraOptions<>'' then ExtraOptions:=' '+ExtraOptions;
|
||||
ExtraOptions:='-T'+LowerCase(TargetOS)+' -P'+LowerCase(TargetCPU);
|
||||
if ExtraOptions<>'' then
|
||||
ExtraOptions:=' '+ExtraOptions;
|
||||
ExtraOptions:='-T'+LowerCase(TargetOS)+' -P'+LowerCase(TargetCPU)+ExtraOptions;
|
||||
if CompilerOptions<>'' then
|
||||
ExtraOptions:=ExtraOptions+' '+CompilerOptions;
|
||||
RunFPCVerbose(Compiler,TestFilename,CfgFiles,TargetCompiler,UnitPaths,
|
||||
Defines,Undefines,ExtraOptions);
|
||||
CompilerDate:=FileAgeCached(Compiler);
|
||||
@ -7047,8 +7129,9 @@ begin
|
||||
FChangeStamp:=low(FChangeStamp);
|
||||
end;
|
||||
|
||||
function TFPCTargetConfigCaches.Find(CompilerFilename, TargetOS,
|
||||
TargetCPU: string; CreateIfNotExists: boolean): TFPCTargetConfigCache;
|
||||
function TFPCTargetConfigCaches.Find(CompilerFilename, CompilerOptions,
|
||||
TargetOS, TargetCPU: string; CreateIfNotExists: boolean
|
||||
): TFPCTargetConfigCache;
|
||||
var
|
||||
Node: TAVLTreeNode;
|
||||
Cmp: TFPCTargetConfigCache;
|
||||
@ -7060,6 +7143,7 @@ begin
|
||||
Cmp:=TFPCTargetConfigCache.Create(nil);
|
||||
try
|
||||
Cmp.Compiler:=CompilerFilename;
|
||||
Cmp.CompilerOptions:=CompilerOptions;
|
||||
Cmp.TargetOS:=TargetOS;
|
||||
Cmp.TargetCPU:=TargetCPU;
|
||||
Node:=fItems.Find(cmp);
|
||||
@ -7587,6 +7671,13 @@ begin
|
||||
ClearConfigCache;
|
||||
end;
|
||||
|
||||
procedure TFPCUnitToSrcCache.SetCompilerOptions(const AValue: string);
|
||||
begin
|
||||
if FCompilerOptions=AValue then exit;
|
||||
FCompilerOptions:=AValue;
|
||||
ClearConfigCache;
|
||||
end;
|
||||
|
||||
procedure TFPCUnitToSrcCache.SetFPCSourceDirectory(const AValue: string);
|
||||
var
|
||||
NewValue: String;
|
||||
@ -7668,7 +7759,8 @@ begin
|
||||
if Caches.TestFilename='' then
|
||||
raise Exception.Create('TFPCUnitToSrcCache.GetConfigCache missing TestFilename');
|
||||
if FConfigCache=nil then begin
|
||||
FConfigCache:=Caches.ConfigCaches.Find(CompilerFilename,TargetOS,TargetCPU,true);
|
||||
FConfigCache:=Caches.ConfigCaches.Find(CompilerFilename,CompilerOptions,
|
||||
TargetOS,TargetCPU,true);
|
||||
FConfigCache.FreeNotification(Self);
|
||||
end;
|
||||
if AutoUpdate and FConfigCache.NeedsUpdate then
|
||||
|
@ -129,6 +129,26 @@ msgstr "Directori del depurador"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "no s'ha trobat la classe predeterminada progenitora TObject"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "no s'ha trobat l'interfície predeterminada progenitora IInterface"
|
||||
@ -137,26 +157,6 @@ msgstr "no s'ha trobat l'interfície predeterminada progenitora IInterface"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "s'esperava un paràmetre predeterminat, però s'ha trobat %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "So font 2 predeterminat del ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "SO font predeterminat del ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Símbol ppc386 predeterminat"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "SO de destinació predeterminat del ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Processador destinació predeterminat del ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -132,6 +132,26 @@ msgstr "Debugger-Verzeichnis"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "Default-Klassenvorfahr TObject nicht gefunden"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "Default-Interfacevorfahr IInterface nicht gefunden"
|
||||
@ -140,26 +160,6 @@ msgstr "Default-Interfacevorfahr IInterface nicht gefunden"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "Default-Parameter erwartet aber %s gefunden"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Voreingestelltes ppc386-Quellbetriebssystem 2"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Voreingestelltes ppc386-Quellbetriebssystem"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Voreingestelltes ppc386-Symbol"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Voreingestelltes ppc386-Zielbetriebssystem"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Voreingestellter ppc386-Zielprozessor"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr "Default-Eigenschaft nicht gefunden"
|
||||
|
@ -129,6 +129,26 @@ msgstr "Directorio del Depurador"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "clase ancestro por defecto TObject no encontrada"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "interface ancestro por defecto IInterface no encontrada"
|
||||
@ -137,26 +157,6 @@ msgstr "interface ancestro por defecto IInterface no encontrada"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "se esperaba parámetro por defecto, pero se encontró %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Por defecto fuentes ppc386 del Sistema Operativo 2"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Por defecto ppc386 fuentes del Sistema Operativo"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Símbolo por defecto ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Por defecto ppc386 destino del Sistema Operativo"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Por defecto ppc386 procesador de destino"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr "propiedad por defecto no encontrada"
|
||||
|
@ -128,6 +128,26 @@ msgstr "Directorio del Depurador"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "clase ancestro por defecto TObject no encontrada"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "interface ancestro por defecto IInterface no encontrada"
|
||||
@ -136,26 +156,6 @@ msgstr "interface ancestro por defecto IInterface no encontrada"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "se esperaba parámetro por defecto, pero se encontró %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Por defecto ppc386 fuentes del Sistema Operativo"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Símbolo por defecto ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Por defecto ppc386 destino del Sistema Operativo"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Por defecto ppc386 procesador de destino"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -124,6 +124,26 @@ msgstr ""
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr ""
|
||||
@ -132,26 +152,6 @@ msgstr ""
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -130,6 +130,26 @@ msgstr "Répertoire débogueur"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "ancêtre de classe par défaut (TObject) non trouvé"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "Ancêtre par défaut de IInterface non trouvée"
|
||||
@ -138,26 +158,6 @@ msgstr "Ancêtre par défaut de IInterface non trouvée"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "paramètre default attendu, mais %s trouvé"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "OS2 source par défaut pour ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "OS source par défaut pour ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Symbole par défaut de ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "OS cible par défaut pour ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Micro processeur cible par défaut pour ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -130,6 +130,26 @@ msgstr "Direktori Debugger"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "karuhun class default TObject tidak ditemukan"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "karuhun interface default IInterface tidak ditemukan"
|
||||
@ -138,26 +158,6 @@ msgstr "karuhun interface default IInterface tidak ditemukan"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "parameter default diharapkan, tapi %s yang ditemukan"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Sumber default Sistem Operasi 2 ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Sumber default Sistem Operasi ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Simbol ppc386 default"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Target default Sistem Operasi ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Target prosesor default ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -128,6 +128,26 @@ msgstr "Directory del debugger"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "antenato di classe predefinita TObject non trovato"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "antenato di interfaccia predefinita IInterface non trovato"
|
||||
@ -136,26 +156,6 @@ msgstr "antenato di interfaccia predefinita IInterface non trovato"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "era previsto un parametro predefinito invece è stato trovato %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Sorgenti di default ppc386 del OS2"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Sistema operativo sorgente ppc386 predefinito"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Simbolo ppc386 predefinito"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Sistema operativo di destinazione ppc386 predefinito"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Processore di destinazione ppc386 predefinito"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -131,6 +131,26 @@ msgstr "Derintuvės aplankas"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "nerastas klasės protėvis TObject"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "nerastas interfeiso protėvis IInterface"
|
||||
@ -139,26 +159,6 @@ msgstr "nerastas interfeiso protėvis IInterface"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "tikėtasi numatyto parametro, tačiau aptikta %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Numatyta ppc386 pirminė operacinė sistema 2"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Numatyta ppc386 pirminė operacinė sistema"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Numatytas ppc386 simbolis"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Numatyta ppc386 paskirties operacinė sistema"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Numatytas ppc386 paskirties procesorius"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr "numatytoji reikšmė nerasta"
|
||||
|
@ -129,6 +129,26 @@ msgstr ""
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr ""
|
||||
@ -137,26 +157,6 @@ msgstr ""
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -129,6 +129,26 @@ msgstr "Diretório Depurador"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "classe ancestral padrão \"TObject\" não encontrada"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "interface ancestral padrão \"IInterface\" não encontrada"
|
||||
@ -137,26 +157,6 @@ msgstr "interface ancestral padrão \"IInterface\" não encontrada"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "parâmetro padrão esperado, mas %s encontrado"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Sistema operacional 2 fonte padrão ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Sistema operacional fonte padrão ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Símbolo padrão ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Sistema operacional alvo padrão ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Processador alvo padrão ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr "propriedade padrão não encontrada"
|
||||
|
@ -133,6 +133,26 @@ msgstr "Katalog odpluskwiacza"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "nie znaleziono domyślnego przodka klasy: TObject"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "nie znaleziono domyślnego przodka interfejsu: IInterface"
|
||||
@ -141,26 +161,6 @@ msgstr "nie znaleziono domyślnego przodka interfejsu: IInterface"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "zamiast domyślnego parametru znaleziono %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Domyślny system operacyjny źródła ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Domyślny symbol ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Domyślny docelowy system operacyjny ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Domyślny docelowy procesor ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -124,6 +124,26 @@ msgstr ""
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr ""
|
||||
@ -132,26 +152,6 @@ msgstr ""
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -129,6 +129,26 @@ msgstr "Каталог отладчика"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "класс-предок по умолчанию - TObject - не найден"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "интерфейс-предок по умолчанию - IInterface - не найден"
|
||||
@ -137,26 +157,6 @@ msgstr "интерфейс-предок по умолчанию - IInterface -
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "ожидается параметр по умолчанию, найдено %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Исходная операционная система 2 для ppc386 по умолчанию"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Исходная операционная система для ppc386 по умолчанию"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Символ ppc386 по умолчанию"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Целевая операционная система для ppc386 по умолчанию"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Целевой процессор для ppc386 по умолчанию"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr "свойство по умолчанию не найдено"
|
||||
|
@ -130,6 +130,26 @@ msgstr ""
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr ""
|
||||
@ -138,26 +158,6 @@ msgstr ""
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -124,6 +124,26 @@ msgstr "Тека налагоджувача"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "не знайдений клас-предок за замовчуванням TObject"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "не знайдений інтерфейс-предок за замовчуванням IInterface"
|
||||
@ -132,26 +152,6 @@ msgstr "не знайдений інтерфейс-предок за замов
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "очікується параметр за замовчуванням, але знайдено %s"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "За замовчуванням код Операційної Системи 2 pp386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Операційна система для коду за замовчуванням для ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "Символ ppc386 за замовчуванням"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Операційна система для виконуваного файлу за замовчуванням для ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Процесор для виконуваного файлу за замовчуванням для ppc386"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr ""
|
||||
|
@ -132,6 +132,26 @@ msgstr "调试器目录"
|
||||
msgid "default class ancestor TObject not found"
|
||||
msgstr "默认类TObject的父类未找到"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsource2operatingsystem
|
||||
msgid "Default fpc source Operating System 2"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsourceoperatingsystem
|
||||
msgid "Default fpc source Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpcsymbol
|
||||
msgid "Default fpc symbol"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetoperatingsystem
|
||||
msgid "Default fpc target Operating System"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultfpctargetprocessor
|
||||
msgid "Default fpc target processor"
|
||||
msgstr ""
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultinterfaceancestoriinterfacenotfound
|
||||
msgid "default interface ancestor IInterface not found"
|
||||
msgstr "默认接口IInterface的父类未找到"
|
||||
@ -140,26 +160,6 @@ msgstr "默认接口IInterface的父类未找到"
|
||||
msgid "default parameter expected, but %s found"
|
||||
msgstr "本应是默认的参数, 但是 %s 出现"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386source2operatingsystem
|
||||
msgid "Default ppc386 source Operating System 2"
|
||||
msgstr "Default ppc386 source Operating System 2"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386sourceoperatingsystem
|
||||
msgid "Default ppc386 source Operating System"
|
||||
msgstr "Default ppc386 source Operating System"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386symbol
|
||||
msgid "Default ppc386 symbol"
|
||||
msgstr "默认ppc386语法"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetoperatingsystem
|
||||
msgid "Default ppc386 target Operating System"
|
||||
msgstr "Default ppc386 target Operating System"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultppc386targetprocessor
|
||||
msgid "Default ppc386 target processor"
|
||||
msgstr "Default ppc386 target processor"
|
||||
|
||||
#: codetoolsstrconsts.ctsdefaultpropertynotfound
|
||||
msgid "default property not found"
|
||||
msgstr "默认属性未找到"
|
||||
|
Loading…
Reference in New Issue
Block a user